content
stringlengths
4
1.04M
lang
stringclasses
358 values
score
int64
0
5
repo_name
stringlengths
5
114
repo_path
stringlengths
4
229
repo_licenses
listlengths
1
8
- breadcrumb_title _('Runners') - page_title _('Runners') #js-admin-runners{ data: admin_runners_data_attributes }
Haml
1
nowkoai/test
app/views/admin/runners/index.html.haml
[ "MIT" ]
/* Unused, but here to silence a linker warning. */ ENTRY(Reset_Handler) /* define memory layout */ MEMORY { FLASH_TEXT (rx) : ORIGIN = 0x00000000, LENGTH = 1024K RAM (rwx) : ORIGIN = 0x1FFF0000, LENGTH = 256K } _stack_size = 2K; /* define output sections */ SECTIONS { /* Program code and read-only data goes to FLASH_TEXT. */ .text : { /* vector table MUST start at 0x0 */ . = 0; KEEP(*(.isr_vector)) /* flash configuration MUST be at 0x400 */ . = 0x400; KEEP(*(.flash_config)) /* everything else */ *(.text) *(.text.*) *(.rodata) *(.rodata.*) . = ALIGN(4); } >FLASH_TEXT = 0xFF } INCLUDE "targets/arm.ld"
Linker Script
4
ybkimm/tinygo
targets/nxpmk66f18.ld
[ "Apache-2.0" ]
FORMAT: 1A HOST: http://os-dev-gateway.nebo15.com:8080/ # Annon API Gateway Annon is a configurable API gateway that acts as a reverse proxy with a plugin system. Plugins are reducing boilerplate that must be done in each service, making overall development faster. Also it stores all requests, responses and key metrics, making it easy to debug your application. Inspired by [Kong](https://getkong.org/). It's free. Source code is available on [GitHub](https://github.com/Nebo15/annon.api). > "Annon" translates from the Sindarin word for 'Great Door or Gate'. Sindarin is one of the many languages spoken by the immortal Elves. Annon consist of multiple main parts: - [Annon API Gateway](https://github.com/Nebo15/annon.api). - [Annon Dashboard](https://github.com/Nebo15/annon.web) - UI that allows to manage Annon settings, review and analyze Requests. - [Annon Status Pages](https://github.com/Nebo15/annon.status.web) - UI that renders APIs status pages; - [EView](https://hex.pm/packages/eview) - hex package that allows to receive and modify client responses from Elixir application to match [Nebo #15 API Manifest](http://docs.apimanifest.apiary.io/). So your back-ends will respond in a same way as Annon does. - [Mithril](https://github.com/Nebo15/mithril.api) - authentication and role management service. ## Goals of the Project - Provide single easy to use API management system for medium-to-large scale applications. - Reduce amount of work needed in other components by orchestrating common functionalities. - Monitoring - control response time and get answer "what happened" even in a single request perspective. Provide data for in-depth analysis. - Authorization - set authentication and authorization requirements for each resource and reject requests that do not satisfy them. - Improve platform scalability. ## General Features ### Caching and Performance For performance issues Annon has build-in cache manager, it will load data from DB only once, all further work will be based on this cached data. Whenever a single node receives request that changes cached data, it's responsible to notify all other nodes in cluster about change, and they should reload configurations from DB. Whenever new node joins to a cluster, all other nodes should drop their cache, to resolve consistency issues. This feature is done via [skycluster](https://github.com/Nebo15/skycluster) package. All gateway nodes is connected via Erlang distribution protocol. It support different discovery strategies: - `kubernetes` - selecting pods via Kubernetes API; - `gossip` - multicast UDP gossip, using a configurable port/multicast address; - `epmd` - using standart Erlang Port Mapper Daemon. ### Request ID's When receiving request gateway will generate unique `request_id`. It is used to log request and this request is sent to all upstream, so whole back-ends that is affected by a request will create logs with same request id's. Optionally, you can send `X-Request-ID` header with your own request id, but you need to make sure that its length not less than 20 characters. Also, if should be unique, or you will receive error response. ### Request Logger Annon stores all requests and responses by their unique Request ID's in a Cassandra database. You use this information to query requests and get base analytics via [Requests API](#reference/requests/collection/get-all-requests). API consumers may provide a custom request ID by sending `X-Request-ID: <request_id>` header. Thus, your Front-End and upstream back-ends can log information with a single unique ID. Also, idempotency plug is relying on this logs to provide idempotency guarantees for requests with same `X-Idempotency-Key: <idempotency_key>` headers. ### Monitoring To monitor services status we will use DogStatsD integration, that will receive following metrics: - `request.count` (counter) - [API](#reference/apis) hit rate. - `request.size` (gauge) - HTTP `Content-Length ` request size. - `responses.count` (counter) - same as `request.count` but sent after request dispatch and additionally tagged with `http.status`. - `latencies.{client,gateway,upstream}` (gauge) - total request latency for a API consumer, additionally tagged with `http.status`. All metrics have tags: `http.host`, `http.port`, `http.method`, `api.name` and `api.id` (if matches any), `request.id`. This allows to set different aggregated views on counter data. We recommend you to try [DataDog](https://www.datadoghq.com/) for collecting and displaying performance metrics. But this is not a hard constraint, instead you can use any StatsD collector. ### Requests Idempotency Annon guarantees that replayed requests with same `X-Idempotency-Key: <key>` and same request will get permanent response. This is useful in a financial application, where you need good protection from duplicate user actions. ### Requests Tracing Annon supports [OpenTracing](http://opentracing.io/) in Erlang via [Otter](https://github.com/Bluehouse-Technology/otter) library. This means that by implementing OpenTracing API in other services you can trace complete request impact for each of your services. ### Management UI ![UI Screenshow](https://github.com/Nebo15/annon.web/raw/master/docs/images/ui-animated.gif) ## Installation Annon can be installed by compiling it from sources, but we recommend you to use our pre-build Docker containers: - [Annon API Gateway](https://hub.docker.com/r/nebo15/annon_api/); - [Annon Dashboard](https://hub.docker.com/r/nebo15/annon.web/); - [Annon Status Pages](https://hub.docker.com/r/nebo15/annon.status.web/); - [Cassandra](https://hub.docker.com/r/nebo15/alpine-cassandra/). Our containers are based on Alpine Linux wich is a security-oriented, lightweight Linux distribution based on musl libc and busybox. ### Kubernetes You can deploy it to Kubernetes using [example configs from Annon's Infra repo](https://github.com/Nebo15/annon.infra/blob/master/kubernetes). ### Docker Compose For local environments we provide an [example Docker Compose configuration](https://github.com/Nebo15/annon.infra/tree/master/docker-compose). You can use this one-liner to deploy all Annon components on a local machine: `curl -L http://bit.ly/annon_compose | bash` ## Source Code Documentation Also there are auto-generated code documentation [available here](https://nebo15.github.io/annon.api/api-reference.html#content). ## License See [LICENSE.md](https://github.com/Nebo15/annon.api/blob/master/LICENSE.md). # Group APIs API is a endpoint definition for any upstream back-end. They can be extended by Annons plugins. #### Processing Order Notice that even truough we trying to protect you from creating overllaping API configurations, we can not guarantee that they always unique. API that was defined earlier will always have higher priority, thus after creating overlapping API it won't work, but you won't break the one that were working earlier. ### Pattern Matching #### Wildcard Domains In API request settings you can use `%` to match any substring in a request host. Eg: `%.example.com` will match `user1.example.com`. #### API Path In API request settings you can use `%` to match any substring in a request path. Eg: `/blog/%/comments` will match `/blog/my_post/comments` (and a `/blog/my_post/comments` since path is prefix for request). ## APIs [/apis] ### Get APIs [GET /apis{?name,limit,starting_after,ending_before}] + Parameters + name: `My API` (string, optional) - Filter APIs by their names. + limit: 20 (number, optional) - A limit on the number of objects to be returned, between 1 and 100. Default: 50. + starting_after: 56c31536a60ad644060041af (string, optional) - A cursor to fetch next page. Taken from collection response. + ending_before: 56c31536a60ad644060041aa (string, optional) - A cursor to fetch previous page. Taken from collection response. + Response 200 (application/json) + Attributes (Response_Collection) + data (array[`API__Response`]) ### Create API [POST] + Request (application/json) + Attributes + api (`API__Request`, required) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`API__Response`) + Response 409 (application/json) + Attributes (Response_Error) + meta (Response__Meta) + code: 409 (number) + error (`Response__Error_DuplicateEntity`) ### Get API [GET /apis/{id}] + Parameters + id: 1 (string, required) + Response 200 (application/json) + Attributes (Response_OK) + data (`API__Response`) ### Update or Create API [PUT /apis/{id}] + Parameters + id: 1 (string, required) + Request (application/json) + Attributes + api (`API__Request`, required) + Response 200 (application/json) + Attributes (Response_OK) + data (`API__Response`) + Response 201 (application/json) + Headers Location: /apis/1 + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`API__Response`) ### Configure API [PATCH /apis/{id}] + Parameters + id: 1 (string, required) + Request (application/json) + Attributes (object) + api (object) - Any of API's fields. + name: my_api (string, optional) - Unique name for API. + Response 200 (application/json) + Attributes (Response_OK) + data (`API__Response`) ### Delete API [DELETE /apis/{id}] + Parameters + id: 1 (string, required) + Request (application/json) + Response 204 (application/json) ## Plugins [/apis/{api_id}/plugins] This is a general section that describes methods for managing API Plugins. Each plugin has it's own settings structure, their description is provided in sections below. ### Get all Plugins binded to an API [GET] + Parameters + api_id: 1 (string, required) + Response 200 (application/json) + Attributes (Response_Collection) + data (array[Plugin]) ### Update or Bind Plugin [PUT /apis/{api_id}/plugins/{plugin_name}] + Parameters + api_id: 1 (string) + plugin_name: proxy (string) + Request (application/json) + Attributes + plugin (`Plugin_Proxy__Request`) + Response 200 (application/json) + Attributes (Response_OK) + data (`Plugin_Proxy__Response`) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`Plugin_Proxy__Response`) ### Unbind Plugin [DELETE /apis/{api_id}/plugins/{plugin_name}] + Parameters + api_id: 1 (string, required) + plugin_name: proxy (string, required) + Request (application/json) + Response 204 (application/json) # Group Plugins ## Proxy [/apis/{api_id}/plugins/proxy] Proxy allows: - Send HTTP requests from API to a `upstream`. - Modify path and trim API-related part from it. - Add headers to upstream request (for example, to authentificate on back-end behind gateway). - Proxy `X-Request-ID` header, so all upstream back-ends can log request state with same UUID. ### Strip Request Path You can set `strip_api_path` setting if you want to exclude API-related prefix from upstream request. Request Path | Proxy Path | API Path | `strip_api_path` | Upstream Request ------------ | ---------- | -------- | ------- | -------- `/api` | `/proxy` | `/api` | `false` | `/proxy/api` `/api/foo` | `/proxy` | `/api` | `false` | `/proxy/api/foo` `/api` | `/` | `/api` | `false` | `/api` `/api/foo` | `/` | `/api` | `false` | `/api/foo` `/api` | `/proxy` | `/api` | `true` | `/proxy` `/api/foo` | `/proxy` | `/api` | `true` | `/proxy/foo` `/api` | `/` | `/api` | `true` | `/` `/api/foo` | `/` | `/api` | `true` | `/foo` ### Bind or Update Proxy Plugin [PUT] + Parameters + api_id: 1 (string, required) - API ID. + Request (application/json) + Attributes + plugin (`Plugin_Proxy__Request`) + Response 200 (application/json) + Attributes (Response_OK) + data (`Plugin_Proxy__Response`) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`Plugin_Proxy__Response`) ## Authentication [/apis/{api_id}/plugins/auth] This plugin authenticates API consumers by using a configured strategy. Right now it supports two strategies: - `jwt` - uses JSON Web Token to resolve consumer ID and scope. - `oauth` - uses token from `Authorization: Bearer <token>` header and subsequent request to resolve consumer ID and scope via third-party provider. ### JWT Strategy Decodes JWT tokens received from API Consumer and validates it signature by a configured secret key. If token is invalid, appropriate error response will be send back to api consumer. It requests `consumer_id` to be present in token itself, but Consumer `scope` can be resolved by: 1. Adding `scope` field in JWT token. 2. Subsequent request to a third-party provider. **Warning!** JWT signature should be Base64 encoded. Some providers (for example, Auth0) already encode it for you. #### Consumer Usage Consumer should send `Authorization: Bearer <jwt_token>` header with his requests. #### Subsequent requests You can configure this strategy to resolve consumer scope by a subsequent request to a third-party provider, in this case GET request will be send to `url_template` with substituted `{consumer_id}`. Annon will expect `HTTP 200` response in following format: ``` { "data": { "user_id": "user-dsljsdflkdflj", "details": { "scope": "originator_loans:upload" } } } ``` `$.data.user_id` will be mapped to Consumer ID. `$.data.details.scope` will be mapped to Consumer Scope. **OR** ``` { "data": { "consumer_id": "user-dsljsdflkdflj", "consumer_scope": "originator_loans:upload" } } ``` If any other response is sent, Consumer will have no scopes but `X-Consumer-ID` header will be sent to upstream. #### Auth0 Support **Configuration** To configure Annon copy-paste your `Client Secret` from `Clients` -> `Settings` to plugins `signature` configuration. **Issuing a Token** To receive an valid JWT with scopes token you must: 1. Set `app_metadata` for all your users, it should have AT LEAST one array with consumer ID: ``` { "consumer_id": "my_consumer_id" } ``` 2. (Optional) If you prefer to receive scopes from Auth0 `app_metadata` should also have scopes array: ``` { "consumer_id": "my_consumer_id", "consumer_scope": "email:read email:send" } ``` You can set default scopes in `Client` -> `Settings` -> `Advanced` -> `App Metadata`. 3. When authorizing consumers set correct scope to receive JWT token with `app_metadata`: `scope=openid app_metadata`. 4. Whenever you make requests to Annon, use `id_token` from Auth0 response (it's a JWT token that we need) in a `Authorization: Bearer <id_token>` header. ### oAuth Strategy Recieves `access_token` from a `Authorization: Bearer <access_token>` header and sends a subsequent request to resolve Consumer ID and scopes via third-party provider (eg. [Mithril](http://docs.mithril1.apiary.io/#)). #### Consumer Usage Consumer should send `Authorization: Bearer <access_token>` header with his requests. #### Subsequent requests GET request will be send to `url_template` with substituted `{access_token}`. Annon will expect `HTTP 200` response in following formats: ``` { "data": { "user_id": "user-dsljsdflkdflj", "details": { "scope": "originator_loans:upload" } } } ``` `$.data.user_id` will be mapped to Consumer ID. `$.data.details.scope` will be mapped to Consumer Scope. **OR** ``` { "data": { "consumer_id": "user-dsljsdflkdflj", "consumer_scope": "originator_loans:upload" } } ``` If any other response is sent, Consumer will not be autheticated. ### Bind or Update Authentication Plugin [PUT] + Parameters + api_id: 1 (string, required) - API ID. + Request (application/json) + Attributes + plugin (`Plugin_Auth__Request`) + Response 200 (application/json) + Attributes (Response_OK) + data (`Plugin_Auth__Response`) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`Plugin_Auth__Response`) ## ACL [/apis/{api_id}/plugins/acl] ACL allows to set scope to access certain subpaths of your API. Once enabled it will restrict access to all subpaths of API, and you need to allow access to them by whitelisting paths or path patterns. It expects scope to be set in Auth plugin, if scope is not set, API consumers will receive responses `unathorized` error. Proxy configuration consist of pattern matches on request method and path: ``` rules: [ {methods: ["GET", "POST", "PUT", "DELETE"], path: ".*", scopes: ["request_api"]}, {methods: ["GET"], path: "^/profiles/me", scopes: ["read_profile"]}, {methods: ["POST", "PUT"], path: "^/profiles/me", scopes: ["update_profile"]}, {methods: ["DELETE"], path: "^/profiles/me", scopes: ["delete_profile"]} ] ``` Path is relative to API path, so you **don't need to specify API path prefix**! **All rules is applied in a order they were defined.** ### Bind or Update ACL Plugin [PUT] + Parameters + api_id: 1 (string, required) - API ID. + Request (application/json) + Attributes + plugin (`Plugin_ACL__Request`) + Response 200 (application/json) + Attributes (Response_OK) + data (`Plugin_ACL__Response`) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`Plugin_ACL__Response`) ## Validator [/apis/{api_id}/plugins/validator] Validator plugin allows to set a [JSON Schema](http://json-schema.org/) to validate request to a API by pattern mathching request path: ``` rules: [ {methods: ["POST", "PUT"], path: ".*", schema: "{}"}, {methods: ["POST"], path: "^/profiles/me", schema: "{}"} ] ``` Path is relative to API path, so you **don't need to specify API path prefix**! **All rules is applied in a order they were defined.** ### Bind or Update Validator Plugin [PUT] + Parameters + api_id: 1 (string, required) - API ID. + Request (application/json) + Attributes + plugin (`Plugin_Validator__Request`) + Response 200 (application/json) + Attributes (Response_OK) + data (`Plugin_Validator__Response`) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`Plugin_Validator__Response`) ## Idempotency [/apis/{api_id}/plugins/idempotency] Gateway supports idempotency for safely retrying POST requests without accidentally duplicating entity. Gateway always send back the same response for requests made with the same key. However, you cannot use the same key with different request parameters. To perform an idempotent request, send a POST requests with `X-Idempotency-Key: <idempotency_key>` header. `idempotency_key` can be any unique string up to 255 characters, we recommend to use UUIDs. Enabling idempotency will increase response latency - Requests will be created synchronously to enshure read-after-write consistency. ### Bind or Update Idempotency Plugin [PUT] + Parameters + api_id: 1 (string, required) - API ID. + Request (application/json) + Attributes + plugin (`Plugin_Idempotency__Request`) + Response 200 (application/json) + Attributes (Response_OK) + data (`Plugin_Idempotency__Response`) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`Plugin_Idempotency__Response`) ## IP Restriction [/apis/{api_id}/plugins/ip_restriction] Whitelist or blacklist IP ranges from accessing an API. You can specify matches by replacing ranges with `*`. Rules applied in a predicted order: * If there is an ip whitelist - block requests from IP's that not in this list. * If IP is in blacklist and not in white list - block request. * If IP is in blacklist and in whitelist - allow request. ### Bind or Update IP Restriction Plugin [PUT] + Parameters + api_id: 1 (string, required) - API ID. + Request (application/json) + Attributes + plugin (`Plugin_IP_Restriction__Request`) + Response 200 (application/json) + Attributes (Response_OK) + data (`Plugin_IP_Restriction__Response`) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`Plugin_IP_Restriction__Response`) ## User Agent Restriction [/apis/{api_id}/plugins/ua_restriction] Whitelist or blacklist User Agents from accessing an API. You can specify matches by replacing ranges with `*`. Rules applied in a predicted order: * If there is an User Agent whitelist - block requests from User Agents that not in this list. * If User Agent is in blacklist and not in white list - block request. * If User Agent is in blacklist and in whitelist - allow request. ### Bind or Update User Agent Restriction Plugin [PUT] + Parameters + api_id: 1 (string, required) - API ID. + Request (application/json) + Attributes + plugin (`Plugin_UA_Restriction__Request`) + Response 200 (application/json) + Attributes (Response_OK) + data (`Plugin_UA_Restriction__Response`) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`Plugin_UA_Restriction__Response`) ## CORS [/apis/{api_id}/plugins/cors] Plugin allows to request your APIs with Cross-Origin Resource Sharing (CORS) mechanism. When enabled requests to API will return the following headers: On preflight (`OPTIONS`) requests: - `Access-Control-Allow-Origin` - `Access-Control-Allow-Credentials` - `Access-Control-Max-Age` - `Access-Control-Allow-Headers` - `Access-Control-Allow-Methods` On `GET`, `POST`, `PUT` and other requests: - `Access-Control-Allow-Origin` - `Access-Control-Expose-Headers` - `Access-Control-Allow-Credentials` ### Bind or Update CORS Plugin [PUT] + Parameters + api_id: 1 (string, required) - API ID. + Request (application/json) + Attributes + plugin (`Plugin_CORS__Request`) + Response 200 (application/json) + Attributes (Response_OK) + data (`Plugin_CORS__Response`) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`Plugin_CORS__Response`) ## Rate Limit [/apis/{api_id}/plugins/rate_limit] This plugin allows you to rate limit requests from API Consumers based on `X-Consumer-ID` header returned from authorization plugins. If consumer is not identified, rate limit won't apply to it, since it's up to you how to configure API access policy. **This plugin is in development.** ### Bind or Update Rate Limiter Plugin [PUT] + Parameters + api_id: 1 (string, required) - API ID. + Request (application/json) + Attributes + plugin (`Plugin_Rate_Limit__Request`) + Response 200 (application/json) + Attributes (Response_OK) + data (`Plugin_Rate_Limit__Response`) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`Plugin_Rate_Limit__Response`) ## Load Shedding [/apis/{api_id}/plugins/load_shedding] This plugin allows to set requests rate limits for an API and drops requests that go over the limit. **This plugin is in development.** ### Bind or Update Load Shedding Plugin [PUT] + Parameters + api_id: 1 (string, required) - API ID. + Request (application/json) + Attributes + plugin (`Plugin_Load_Shedding__Request`) + Response 200 (application/json) + Attributes (Response_OK) + data (`Plugin_Load_Shedding__Response`) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`Plugin_Load_Shedding__Response`) ## Static Responses [/apis/{api_id}/plugins/static_responses] This plugin allows to serve static responses to API requests, wich allows you to build some responses directly at the edge instead of forwarding them to an internal cluster. It can be used to mock service responses or to push common responses to the edge service. **This plugin is in development.** ### Bind or Update Static Responses Plugin [PUT] + Parameters + api_id: 1 (string, required) - API ID. + Request (application/json) + Attributes + plugin (`Plugin_Static_Responses__Request`) + Response 200 (application/json) + Attributes (Response_OK) + data (`Plugin_Static_Responses__Response`) + Response 201 (application/json) + Attributes (Response_OK) + meta (Response__Meta) + code: 201 (number) + data (`Plugin_Static_Responses__Response`) # Group Requests ## Requests [/requests] ### Get all Requests [GET /requests{?idempotency_key,api_ids,status_codes,ip_addresses,limit,starting_after,ending_before}] + Parameters + `idempotency_key`: `my_idemp_key` (string, optional) - Filter Requests by idempotency key. + `api_ids`: `api_id1,api_id2` (string, optional) - List of API IDs to filter Requests, separated by comma. + `status_codes`: `200,201` (string, optional) - List of HTTP response status codes to filter Requests, separated by comma. + `ip_addresses`: `127.0.0.1,182.211.120.002` (string, optional) - List of IP Addresses to filter Requests, separated by comma. + limit: 20 (number, optional) - A limit on the number of objects to be returned, between 1 and 100. Default: 50. + starting_after: 56c31536a60ad644060041af (string, optional) - A cursor to fetch next page. Taken from collection response. + ending_before: 56c31536a60ad644060041aa (string, optional) - A cursor to fetch previous page. Taken from collection response. + Response 200 (application/json) + Attributes (Response_Collection) + data (array[Request]) ### Get Request [GET /requests/{id}] + Parameters + id: `my_request-sfsdfjsdoqknjdnd` (string, required) + Response 200 (application/json) + Attributes (Response_Collection) + data (Request_Expanded) ### Delete Request [DELETE /requests/{id}] + Parameters + id: `my_request-sfsdfjsdoqknjdnd` (string, required) + Request (application/json) + Response 204 (application/json) # Group Service Status ## Requests Metrics [/requests_metrics{?interval,api_ids}] ### Get Requests Metrics [GET] + Parameters + `interval`: `5 minute` (string, optional) - Interval for time-based aggregation of latencies data. Supports following formats: `5 minites`, `1 minute`, `1 hour, `5 hours`, `1 day`, `5 days`. Term count can be any number. + `api_ids`: `api_id1,api_id2` (string, optional) - List of API IDs to filter Requests, separated by comma. + Response 200 (application/json) + Attributes (Response_OK) + data (`Metrics`) ## Cluster Status [/cluster_status] ### Get Cluster Status [GET] + Response 200 (application/json) + Attributes (Response_OK) + data (`Cluster_Status`) ## APIs Status [/apis_status{?interval}] This endpoint can be publicly available (just configure API for it). ### Get APIs Status [GET] This endpoint returns list of disclosed APIs statuses and can be used to render service status page. + Parameters + `interval`: `5 minute` (string, optional) - Interval for time-based aggregation of latencies data. Supports following formats: `5 minites`, `1 minute`, `1 hour, `5 hours`, `1 day`, `5 days`. Term count can be any number. + Response 200 (application/json) + Attributes (Response_Collection) + data (array[`API_Status`]) # Group Dictionaries ## Cluster Status [/dictionaries/plugins] ### Get all Plugins [GET] + Response 200 (application/json) + Attributes (Response_Collection) + data (`Plugin_Dictionary_Entry`) # Data Structures ## Responses ### `Response_Collection` + meta (Response__Meta, fixed-type) + data (array[], fixed-type) + paging (Response__Pagination, fixed-type) ### `Response_OK` + meta (Response__Meta, fixed-type) + data (object, fixed-type) ### `Response_Error` + meta (Response__Meta, fixed-type) + code: 400 (number) + error (Response__Error, fixed-type) ### `Response__Meta` + code: 200 (number) - HTTP response code. + url: http://example.com/resource (string) - URL to requested resource. + type (enum) - Type of data that is located in `data` attribute. - object (string) - `data` attribute is a JSON object. - list (string) - `data` attribute is a list. + code: 200 (number) - HTTP response code. + `idempotency_key`: `idemp-ssjssdjoa8308u0us0` (string, optional) - [Idempotency key](http://docs.apimanifest.apiary.io/#introduction/optional-features/idempotent-requests). Send it trough `X-Idempotency-Key` header. + `request_id`: `req-adasdoijasdojsda` (string) - [Request ID](http://docs.apimanifest.apiary.io/#introduction/interacting-with-api/request-id). Send it with `X-Request-ID` header. ### `Response__Error` + type: type_atom (string) - Atom that represents error type. + message: Error description (string) - Human-readable error message. This is for developers, not end-users. ### `Response__Error_DuplicateEntity` + type: `object_already_exists` (string) - Atom that represents error type. + message: This API already exists (string) - Human-readable error message. This is for developers, not end-users. ### `Response__Error_ValidationFailed` + type: validation_failed (string) - type of an error. + message: Validation failed. You can find validators description at our API Manifest: http://docs.apimanifest.apiary.io/#introduction/interacting-with-api/errors. (string) + invalid (array) + `entry_type`: `json_data_proprty` (string) - Type of error. + entry: $.cvv (string) - JSON Path to an invalid property. + rules (array) + rule: required (string) - String constant that represents validation rule type. List of all types can be found in [API Manifest](http://docs.apimanifest.apiary.io/#introduction/interacting-with-api/errors). + params (array) - Validation Parameters. ### `Response__Pagination` + limit: 20 (number) - A limit on the number of objects to be returned, between 1 and 100. Default: 50. + cursors (object) + `starting_after`: 56c31536a60ad644060041af (string) - A cursor for use in pagination. An object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with `obj_foo`, your subsequent call can include `starting_after=obj_foo` in order to fetch the next page of the list. + `ending_before`: 56c31536a60ad644060041aa (string) - A cursor for use in pagination. An object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with `obj_bar`, your subsequent call can include `ending_before=obj_bar` in order to fetch the previous page of the list. + size: 1000 (number) - Total number of objects in collection. + has_more: false (boolean) - Is this collection have more data to load in the same style as last request loaded it. ## General ### `HTTP_Verb` (enum) - POST (string) - PUT (string) - GET (string) - DELETE (string) ### `Cluster_Status` + cluster_size: 3 (number) - Number of nodes joined to cluster. + cluster_strategy: `kubernetes` (enum) - Cluster formation strategy. - `kubernetes` (string) - `epmd` (string) - `gossip` (string) + nodes (array[`Cluster_Node_Status`]) - List of nodes joined to a cluster and information about them. + open_ports (array[number]) - List of all opened ports. - 80 - 8080 ### `Cluster_Node_Status` + name: `nonode@nohost` (string) + otp_release: `19` (string) + process_count: 656 (number) + process_limit: 262144 (number) + run_queue: 0 (number) + uptime: 239.873 (number) - Seconds since node VM start. ### `Metrics` + latencies (array[API_Latencies]) + `status_codes` (array[`Requests_Status_Codes`]) ## APIs ### `API__Request` + name: my_api (string, required) - Unique name for API. + description: `My API example` (string, optional) - Description of an API. + docs_url: `http://docs.annon.apiary.io/` (string, optional) - Link to the API documentation page. + health (`API_Health`, optional) + request (`API_Request__Request`, fixed-type) - Request description. + disclose_status: false (boolean, optional) - If `true` API status will be publically available in API Status endpoint. + matching_priority: 1 (number, optional) - Priority in which APIs are matched agains consumer request path. Default value is 1. ### `API_Request__Request` + methods (array[`HTTP_Verb`], required) - HTTP request method. + scheme: http (string) - HTTP request scheme. May be: `http`, `https`. + host: `os-dev-gateway.nebo15.com` (string, required) - DNS address of your API or its IP. + port: 80 (number) - Port on which your API recieves requests. + path: /andrew/ (string, required) - Public path to your API. Must start with `/`. All requests that start with `path` will fall onto API rules. ### `API_Embed` + id: 56c31536a60ad644060041af (string) - Unique ID for API. + name: my_api (string, required) - Unique name for API. + request (`API_Request__Request`, fixed-type) - Request description. ### `API__Response` + id: 56c31536a60ad644060041af (string) - Unique ID for API. + Include API__Request + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `API_Status` + id: 56c31536a60ad644060041af (string) - Unique ID for API. + name: my_api (string, required) - Unique name for API. + description: `My API example` (string, optional) - Description of an API. + docs_url: `http://docs.annon.apiary.io/` (string, optional) - Link to the API documentation page. + health (`API_Health`) + metrics (object) + latencies (array[API_Latencies]) ### `API_Health` (enum) - `operational` (string) - `degradated_perfomance` (string) - `partial_outage` (string) - `major_outage` (string) ### `API_Latencies` + api_id: 56c31536a60ad644060041af (string) - Unique ID for API. + `avg_client_request_latency`: 100 (number) + `avg_gateway_latency`: 2 (number) + `avg_upstream_latency`: 98 (number) + tick: `2017-04-20T19:15:00Z` (string, required) - ISO 8601 date and time in UTC timezone. ## Plugins ### Plugin + name: myplugin (string, required) - Plugin name + is_enabled: true (boolean, required) - Flag that shows that plagin is enabled or disabled. + settings (object, fixed-type) - Object that describes API plugin settings. + key: value - A key-value storage for your API plugins. ### `Plugin_Response` + Include Plugin + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `Plugin_Dictionary_Entry` + name: plugin_name (string) - Plugin name + validation_schema: `{}` (string) - JSON schema to validate plugin settings. + deps (array[]) - List of plugin names this plugin depends in runtime. + is_system: false (boolean) - System plugins can't be configured via ManagementAPI. ## Proxy Plugin ### `Plugin_Proxy__Request` + name: proxy (string, required) + is_enabled: true (boolean, required) + settings (Plugin_Proxy__Settings, fixed-type) ### `Plugin_Proxy__Response` + Include Plugin_Proxy__Request + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `Plugin_Proxy__Settings` + upstream (`Plugin_Proxy__Settings_Upstream`, required) + `preserve_host`: false (boolean, optional) - Keep HTTP HOST host header when proxying request to an upstream. + `strip_api_path`: false (boolean, optional) - Strip API part of path when sending request to upstream. + `additional_headers` (array[`Plugin_Proxy__Settings__Additional_Header`], optional) - Additional headers that should be sent to upstream. + `stripped_headers` (array[string], optional) - Headers that should NOT be sent to upstream. + `x-Unwanted-Header` ### `Plugin_Proxy__Settings__Additional_Header` + `X-Consumer-Header`: `header_value` (string) ### `Plugin_Proxy__Settings_Upstream` + scheme: https (string) - HTTP request scheme. May be: `http`, `https`, `amqp`, `ws`. + host: binlist.net (string) - DNS address of your upstream or its IP. + port: 443 (number) - Port on which your upstream recieves requests. + path: /json/545708 (string) - Path to your upstream API. You can omit this parameter to preserve path from original request. ## ACL Plugin ### `Plugin_ACL__Request` + name: acl (string, required) + is_enabled: true (boolean, required) + settings (Plugin_ACL__Settings, fixed-type) ### `Plugin_ACL__Response` + Include Plugin_ACL__Request + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `Plugin_ACL__Settings` + rules (array[`Plugin_ACL__Settings_Rule`], fixed-type) - signature to decode JWT token. ### `Plugin_ACL__Settings_Rule` + methods (array[`HTTP_Verb`], required) + path: ^my_resource/ (string, required) - Regular expression on path. **Warning!** It's relative to API path. + scope: `request_api profile:read` (string, required) - Requied scope to request API, delimited by space. ## Validator Plugin ### `Plugin_Validator__Request` + name: validator (string, required) + is_enabled: true (boolean, required) + settings (Plugin_Validator__Settings, fixed-type) ### `Plugin_Validator__Response` + Include Plugin_Validator__Request + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `Plugin_Validator__Settings` + rules (array[`Plugin_Validator__Settings_Rule`], fixed-type) ### `Plugin_Validator__Settings_Rule` + methods (array[enum], required) - POST (string) - PUT (string) - PATCH (string) + path: `^my_resource/` (string, required) - Regular expression on path. **Warning!** It's relative to API path. + schema: `{}` (string, required) - [JSON Schema](http://json-schema.org/) for validating request body. ## Idempotency Plugin ### `Plugin_Idempotency__Request` + name: idempotency (string, required) + is_enabled: true (boolean, required) + settings (`Plugin_Idempotency__Settings`, required) ### `Plugin_Idempotency__Response` + Include Plugin_Idempotency__Request + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `Plugin_Idempotency__Settings` + key_ttl: 600 (number, required) - Time to live for idempotency keys. If set to `0` keys will never expire. ## IP Restrictions Plugin ### `Plugin_IP_Restriction__Request` + name: ip_restriction (string, required) + is_enabled: true (boolean, required) + settings (`Plugin_IP_Restriction__Settings`, fixed-type) ### `Plugin_IP_Restriction__Response` + Include Plugin_IP_Restriction__Request + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `Plugin_IP_Restriction__Settings` + whitelist (array[string], fixed-type, optional) - Whitelist of IP addresses or their ranges. + 255.255.255.1 (string) + 127.0.0.* (string) + blacklist (array[string], fixed-type, optional) - Blacklist of IP addresses or their ranges. + 255.255.255.1 (string) + 127.0.0.* (string) ## User Agent Restriction Plugin ### `Plugin_UA_Restriction__Request` + name: ua_restriction (string, required) + is_enabled: true (boolean, required) + settings (`Plugin_UA_Restriction__Settings`, fixed-type) ### `Plugin_UA_Restriction__Response` + Include Plugin_UA_Restriction__Request + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `Plugin_UA_Restriction__Settings` + whitelist (array[string], fixed-type, optional) - Whitelist of User Agents or patterns. + `Chrome*` (string) + `Mozilla Firefox` (string) + blacklist (array[string], fixed-type, optional) - Blacklist of User Agents or patterns. + `Google*` (string) + `MyBot (version 1.0)` (string) ## Authentication Plugin ### `Plugin_Auth__Request` + name: auth (string, required) + is_enabled: true (boolean, required) + One of + settings (Plugin_Auth__Settings_oAuth, fixed-type) + settings (Plugin_Auth__Settings_JWT, fixed-type) + settings (Plugin_Auth__Settings_JWTs, fixed-type) ### `Plugin_Auth__Response` + Include Plugin_Auth__Request + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `Plugin_Auth__Settings_oAuth` + strategy: oauth (string, required) + `url_template`: `http://ec2-52-58-60-8.eu-central-1.compute.amazonaws.com:8081/0/api.svc/tokens/{access_token}` (string, required) - Inside `url_template` you can use `{access_token}` to substitle with access token in a request path. ### `Plugin_Auth__Settings_JWT` + strategy: jwt (string, required) + `third_party_resolver`: false (string, required) - Do not resolve scopes with subsequence request. + secret: c3VwZXJfY29vbEhhY2tlcgo= (string, required) - Base64 encoded secret to decode JWT token. + algorithm (enum) - Algorithm that is used to generate signature. - HS256 (string) - HS384 (string) - HS512 (string) ### `Plugin_Auth__Settings_JWTs` + strategy: jwt (string, required) + `third_party_resolver`: true (boolean, required) - Resolve scopes with subsequent request. + `url_template`: `http://ec2-52-58-60-8.eu-central-1.compute.amazonaws.com:8081/0/api.svc/party/{consumer_id}/scopes` (string, optional) - Inside `url_template` you can use `{consumer_id}` to substitle consumer ID in a request path. + secret: c3VwZXJfY29vbEhhY2tlcgo= (string, required) - Base64 encoded secret to decode JWT token. + algorithm (enum) - Algorithm that is used to generate signature. - HS256 (string) - HS384 (string) - HS512 (string) ## Rate Limit Plugin ### `Plugin_Rate_Limit__Request` + name: rate_limit (string, required) + is_enabled: true (boolean, required) + settings (Plugin_Rate_Limit__Settings, fixed-type) ### `Plugin_Rate_Limit__Response` + Include Plugin_Rate_Limit__Request + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `Plugin_Rate_Limit__Settings` + rules (array[`Plugin_Rate_Limit_Rule`], fixed-type) + `consumer_id_header`: `X-Consumer-ID` (string, required) - Header with Consumer unique indentified, which is used as key for counting requests count. ### `Plugin_Rate_Limit_Rule` + `max_request_count`: 1000 (number, required) - Maximum requests count for each API Consumer. + `time`: 600 (number, required) - Period time. + `time_unit` (enum, required) - Period time unit. - seconds (string) - minutes (string) - hours (string) - days (string) - weeks (string) ## CORS Plugin ### `Plugin_CORS__Request` + name: cors (string, required) + is_enabled: true (boolean, required) + settings (`Plugin_CORS__Settings`, required) ### `Plugin_CORS__Response` + Include Plugin_CORS__Request + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `Plugin_CORS__Settings` + One of + origin: `*` (string, optional) - Allow all origins + origin: `https?.*example\d?\.com$` (string, required) - Regular expression to whitelist request origins. + origin (array[string], required) - List of allowed [request origins](https://www.w3.org/TR/cors/#access-control-allow-origin-response-header). - http://example1.com (string) - http://example2.com (string) + credentials: true (boolean, optional) - Indicates whether or not the actual request can be made using credentials. Credentials are cookies, authorization headers or TLS client certificates. + max_age: 1728000 (number, optional) - Indicates how long the results of a preflight request (that is the information contained in the `Access-Control-Allow-Methods` and `Access-Control-Allow-Headers` headers) can be cached. + headers (array[string], optional) - Whitelist of allowed request headers. - `Authorization` (string) - `Content-Type` (string) - `Accept` (string) - `Origin` (string) - `User-Agent` (string) - `DNT` (string) - `Cache-Control` (string) - `X-Mx-ReqToken` (string) - `Keep-Alive` (string) - `X-Requested-With` (string) - `If-Modified-Since` (string) - `X-CSRF-Token` (string) + expose (array[string], optional) - Indicates which headers can be exposed as part of the response by listing their names. + methods (array[string], optional) - List of allowed HTTP verbs. - GET (string) - POST (string) - PUT (string) - PATCH (string) - DELETE (string) - OPTIONS (string) ## Load Shedding Plugin ### `Plugin_Load_Shedding__Request` + name: load_shedding (string, required) + is_enabled: true (boolean, required) + settings (Plugin_Load_Shedding__Settings, fixed-type) ### `Plugin_Load_Shedding__Response` + Include Plugin_Load_Shedding__Request + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `Plugin_Load_Shedding__Settings` + rules (array[`Plugin_Load_Shedding_Rule`], fixed-type) ### `Plugin_Load_Shedding_Rule` + `max_request_count`: 1000 (number, required) - Maximum requests count. + `time`: 600 (number, required) - Period time. + `time_unit` (enum, required) - Period time unit. - seconds (string) - minutes (string) ## Static Responses Plugin ### `Plugin_Static_Responses__Request` + name: static_responses (string, required) + is_enabled: true (boolean, required) + settings (Plugin_Static_Responses__Settings, fixed-type) ### `Plugin_Static_Responses__Response` + Include Plugin_Static_Responses__Request + created_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. + updated_at: `2017-04-20T19:14:13Z` (string, required) - ISO 8601 date and time in UTC timezone. ### `Plugin_Static_Responses__Settings` + rules (array[`Plugin_Static_Responses_Rule`], fixed-type) ### `Plugin_Static_Responses_Rule` + methods (array[enum], required) - POST (string) - PUT (string) - PATCH (string) + path: `^my_resource/` (string, required) - Regular expression on path. **Warning!** It's relative to API path. + content: `{"hello": "world"}` (string, required) - Response content. + content_type: `application/json` (string, required) - HTTP Content-Type for response. + `additional_response_headers` (array[`Plugin_Static_Responses_Rule__Response_Header`], optional) - Additional response headers. They will override default value is it's present. ### `Plugin_Static_Responses_Rule__Response_Header` + name: `x-my-header` (string, required) + value: `my_value` (string, required) ## Requests ### Request + id: `tl8nd5019bkendi1uadl2nqq38g69dbf` (string) - unique request identifier. + idempotency_key: `myidempotencykey` (string) - Idempotency Key if consumer sent it, `null` otherwise. + inserted_at: `2016-11-04T16:16:20.875777` (string) + api (`API_Embed`, optional) + status_code: 200 (number) - HTTP status code. + ip_address: `10.2.87.0` (string) - Consumer IP address. ### `Request_Expanded` + Include Request + updated_at: `2016-11-04T16:16:20.875777` (string) + request (object, fixed-type) + method: GET (string) + uri: /mypath (string) + query (object, optional) - URI query for http request if was present, otherwise - `nil`. + headers (object) - List of headers that was sent by consumer. + body (object) - JSON HTTP request body. + response (object, fixed-type) + status_code: 200 (number) - HTTP status code. + headers (object) - List of headers that was sent to a consumer. + body (object) - JSON response body that is sent to consumer. + latencies + gateway: 100 (number) - Latency in **micro**seconds. + upstream: 100 (number) - Latency in **micro**seconds. + client_request: 100 (number) - Latency in **micro**seconds. ### `Requests_Status_Codes` + api_id: 56c31536a60ad644060041af (string) - Unique ID for API. + count: 1 (number) - Count of occurances or `status_code` in a given `tick - interval` range. + status_code: 301 (number) - HTTP status code. + tick: `2017-04-20T19:15:00Z` (string, required) - ISO 8601 date and time in UTC timezone.
API Blueprint
4
gabheadz/annon.api
apiary.apib
[ "MIT" ]
# Check rule loading. # # RUN: %{llbuild} ninja load-manifest %s > %t 2> %t.err # RUN: %{FileCheck} < %t %s # RUN: %{FileCheck} --check-prefix=CHECK-ERR < %t.err %s # CHECK: rule rule1 # CHECK: command = "command ${expr} arg $\narg2" rule rule1 command = command ${expr} arg $ arg2 # CHECK-ERR: rules.ninja:[[@LINE+2]]:5: error: duplicate rule rule rule2 rule rule2 # CHECK-ERR: rules.ninja:[[@LINE+2]]:5: error: unexpected variable rule rule3 unknown_variable = value # CHECK-ERR: rules.ninja:[[@LINE+1]]:0: error: missing 'command' variable assignment rule rule4 # Ensure we diagnose attempts to define a new phony rule. # CHECK-ERR: rules.ninja:[[@LINE+1]]:5: error: duplicate rule rule phony # Check all the valid rule variables. # CHECK-ERR-NOT: unexpected variable pool somepool depth = 5 rule rule5 command = command description = description deps = gcc depfile = depfile generator = true pool = somepool restat = true rspfile = rspfile rspfile_content = rspfile_content
Ninja
4
trombonehero/swift-llbuild
tests/Ninja/Loader/rules.ninja
[ "Apache-2.0" ]
%!PS-Adobe-3.0 %%Creator: cairo 1.16.0 (https://cairographics.org) %%CreationDate: Sat Jan 25 14:11:28 2020 %%Pages: 1 %%DocumentData: Clean7Bit %%LanguageLevel: 2 %%DocumentMedia: 170x120mm 482 340 0 () () %%BoundingBox: 0 0 482 341 %%EndComments %%BeginProlog /languagelevel where { pop languagelevel } { 1 } ifelse 2 lt { /Helvetica findfont 12 scalefont setfont 50 500 moveto (This print job requires a PostScript Language Level 2 printer.) show showpage quit } if /q { gsave } bind def /Q { grestore } bind def /cm { 6 array astore concat } bind def /w { setlinewidth } bind def /J { setlinecap } bind def /j { setlinejoin } bind def /M { setmiterlimit } bind def /d { setdash } bind def /m { moveto } bind def /l { lineto } bind def /c { curveto } bind def /h { closepath } bind def /re { exch dup neg 3 1 roll 5 3 roll moveto 0 rlineto 0 exch rlineto 0 rlineto closepath } bind def /S { stroke } bind def /f { fill } bind def /f* { eofill } bind def /n { newpath } bind def /W { clip } bind def /W* { eoclip } bind def /BT { } bind def /ET { } bind def /BDC { mark 3 1 roll /BDC pdfmark } bind def /EMC { mark /EMC pdfmark } bind def /cairo_store_point { /cairo_point_y exch def /cairo_point_x exch def } def /Tj { show currentpoint cairo_store_point } bind def /TJ { { dup type /stringtype eq { show } { -0.001 mul 0 cairo_font_matrix dtransform rmoveto } ifelse } forall currentpoint cairo_store_point } bind def /cairo_selectfont { cairo_font_matrix aload pop pop pop 0 0 6 array astore cairo_font exch selectfont cairo_point_x cairo_point_y moveto } bind def /Tf { pop /cairo_font exch def /cairo_font_matrix where { pop cairo_selectfont } if } bind def /Td { matrix translate cairo_font_matrix matrix concatmatrix dup /cairo_font_matrix exch def dup 4 get exch 5 get cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def /Tm { 2 copy 8 2 roll 6 array astore /cairo_font_matrix exch def cairo_store_point /cairo_font where { pop cairo_selectfont } if } bind def /g { setgray } bind def /rg { setrgbcolor } bind def /d1 { setcachedevice } bind def /cairo_data_source { CairoDataIndex CairoData length lt { CairoData CairoDataIndex get /CairoDataIndex CairoDataIndex 1 add def } { () } ifelse } def /cairo_flush_ascii85_file { cairo_ascii85_file status { cairo_ascii85_file flushfile } if } def /cairo_image { image cairo_flush_ascii85_file } def /cairo_imagemask { imagemask cairo_flush_ascii85_file } def /cairo_set_page_size { % Change paper size, but only if different from previous paper size otherwise % duplex fails. PLRM specifies a tolerance of 5 pts when matching paper size % so we use the same when checking if the size changes. /setpagedevice where { pop currentpagedevice /PageSize known { 2 copy currentpagedevice /PageSize get aload pop exch 4 1 roll sub abs 5 gt 3 1 roll sub abs 5 gt or } { true } ifelse { 2 array astore 2 dict begin /PageSize exch def /ImagingBBox null def currentdict end setpagedevice } { pop pop } ifelse } { pop } ifelse } def %%EndProlog %%BeginSetup %%EndSetup %%Page: 1 1 %%BeginPageSetup %%PageMedia: 170x120mm %%PageBoundingBox: 0 0 482 341 482 341 cairo_set_page_size %%EndPageSetup q 0 0 482 341 rectclip 1 0 0 -1 0 341 cm q Q q q 0 0 482 341 re W n [ 1 0 0 1 0 0 ] concat q 0 g 8.503937 w 0 J 0 j [] 0.0 d 4 M q 1 0 0 1 0 0 cm 0 340.156 m 37.797 283.465 75.59 226.77 113.387 170.078 c 75.59 113.387 37.797 56.691 0 0 c 28.348 0 56.691 0 85.039 0 c 122.836 56.691 160.629 113.387 198.426 170.078 c 160.629 226.77 122.836 283.465 85.039 340.156 c 56.691 340.156 28.348 340.156 0 340.156 c h 0 340.156 m S Q q 1 0 0 1 0 0 cm 113.387 340.156 m 226.773 170.078 l 113.387 0 l 198.426 0 l 425.195 340.156 l 340.156 340.156 l 269.293 233.859 l 198.426 340.156 l h 113.387 340.156 m S Q q 1 0 0 1 0 0 cm 387.402 240.945 m 349.609 184.254 l 481.891 184.25 l 481.891 240.945 l h 387.402 240.945 m S Q q 1 0 0 1 0 0 cm 330.711 155.906 m 292.914 99.215 l 481.891 99.211 l 481.891 155.906 l h 330.711 155.906 m S Q Q Q Q Q showpage %%Trailer %%EOF
PostScript
2
aavogt/wiwinwlh
img/cover.ps
[ "BSD-Source-Code" ]
/* * Copyright (C) 2009 The Guava Authors * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.google.common.collect; import static com.google.common.base.Preconditions.checkArgument; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentMap; /** * MapMaker emulation. * * @author Charles Fry */ public final class MapMaker { private int initialCapacity = 16; public MapMaker() {} public MapMaker initialCapacity(int initialCapacity) { if (initialCapacity < 0) { throw new IllegalArgumentException(); } this.initialCapacity = initialCapacity; return this; } public MapMaker concurrencyLevel(int concurrencyLevel) { checkArgument( concurrencyLevel >= 1, "concurrency level (%s) must be at least 1", concurrencyLevel); // GWT technically only supports concurrencyLevel == 1, but we silently // ignore other positive values. return this; } public <K, V> ConcurrentMap<K, V> makeMap() { return new ConcurrentHashMap<K, V>(initialCapacity); } }
Java
4
ksodhi2/guava
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/MapMaker.java
[ "Apache-2.0" ]
// Suck stuff in. PollDevice(eth7) -> c0 :: Classifier(12/0806 20/0001, 12/0806 20/0002, 12/0800, -); out :: Queue(1024) -> ToDevice(eth4); // ARP request need to be answered, obviously c0[0] -> ARPResponder(7.0.0.1 00:C0:95:E1:FC:D6) -> out; // ARP responses are handed to Linux c0[1] -> ToHost(); // Non-IP packets are dropped c0[3] -> Discard; // Other IP packets. Split on UDP, TCP and rest c0[2] -> Strip(14) -> CheckIPHeader() -> c1 :: Classifier(9/17, 9/6, -); // TCP packets c1[1] -> Print(TCP) -> out; // UDP packets c1[0] -> Print(UDP) -> udp_mon :: IPRateMonitor(DST, PACKETS, 0, 10, 30) -> udp_block :: Block(20) -> out; // non-UDP and non-TCP packets c1[2] -> Print(UNKNOWN) -> out;
Click
4
MacWR/Click-changed-for-ParaGraph
conf/demo.click
[ "Apache-2.0" ]
// Copyright (c) 2013-2021 Bluespec, Inc. All Rights Reserved package Branch_Predictor; // ================================================================ // Branch Predictor for RISC-V CPU // // This is a "null" branch predictor, for purposes of comparision with // a real branch predictor. // It just predicts PC+4 (or PC+2 for 'C' instrs). // ================================================================ // Exports export Branch_Predictor_IFC (..), mkBranch_Predictor; // ================================================================ // BSV library imports import FIFOF :: *; // ---------------- // BSV additional libs import Cur_Cycle :: *; // ================================================================ // Project imports import ISA_Decls :: *; import CPU_Globals :: *; // ================================================================ interface Branch_Predictor_IFC; method Action reset; // ---------------- // Request prediction for given pc; available on 'predict_rsp' on next cycle method Action predict_req (WordXL pc); // ---------------- // Response for 'predict_req' from an earlier cycle. // Args describe current instruction just now fetched in Fetch stage, // and are used to choose RAS actions if any, and size of // fall-through PC if no prediction. (* always_ready *) method WordXL predict_rsp (Bool is_i32_not_i16, Instr instr); // ---------------- // Train BTB and RAS. // First 3 args are from current fetch, to train RAS. // cf_info arg is from Exec stage (downpipe), from an earlier (older) instruction. method Action bp_train (WordXL pc, Bool is_i32_not_i16, Instr instr, CF_Info cf_info); endinterface // ================================================================ (* synthesize *) module mkBranch_Predictor (Branch_Predictor_IFC); // This reg holds the PC being predicted (currently probing the btb) Reg #(WordXL) rg_pc <- mkRegU; // ---------------------------------------------------------------- // INTERFACE method Action reset; noAction; endmethod // ---------------- // Request prediction for given pc; available on 'predict_rsp' on next cycle method Action predict_req (WordXL pc); rg_pc <= pc; endmethod // ---------------- // Response for 'predict_req' from an earlier cycle. // Args describe current instruction just now fetched in Fetch stage, // and are used to choose RAS actions if any, and size of // fall-through PC if no prediction. method WordXL predict_rsp (Bool is_i32_not_i16, Instr instr); let pred_pc = rg_pc + (is_i32_not_i16 ? 4 : 2); return pred_pc; endmethod // ---------------- // Train BTB and RAS. // First 3 args are from current fetch, to train RAS. // cf_info arg is from Exec stage (downpipe), from an earlier (older) instruction. method Action bp_train (WordXL pc, Bool is_i32_not_i16, Instr instr, CF_Info cf_info); noAction; endmethod endmodule // ================================================================ endpackage
Bluespec
5
darius-bluespec/Flute
src_Core/CPU/Branch_Predictor_NULL.bsv
[ "Apache-2.0" ]
/** * Author......: See docs/credits.txt * License.....: MIT */ #include "inc_vendor.h" #include "inc_types.h" #include "inc_platform.h" #include "inc_common.h" #include "inc_hash_streebog512.h" CONSTANT_VK u64a sbob512_sl64[8][256] = { { 0xd031c397ce553fe6UL, 0x16ba5b01b006b525UL, 0xa89bade6296e70c8UL, 0x6a1f525d77d3435bUL, 0x6e103570573dfa0bUL, 0x660efb2a17fc95abUL, 0x76327a9e97634bf6UL, 0x4bad9d6462458bf5UL, 0xf1830caedbc3f748UL, 0xc5c8f542669131ffUL, 0x95044a1cdc48b0cbUL, 0x892962df3cf8b866UL, 0xb0b9e208e930c135UL, 0xa14fb3f0611a767cUL, 0x8d2605f21c160136UL, 0xd6b71922fecc549eUL, 0x37089438a5907d8bUL, 0x0b5da38e5803d49cUL, 0x5a5bcc9cea6f3cbcUL, 0xedae246d3b73ffe5UL, 0xd2b87e0fde22edceUL, 0x5e54abb1ca8185ecUL, 0x1de7f88fe80561b9UL, 0xad5e1a870135a08cUL, 0x2f2adbd665cecc76UL, 0x5780b5a782f58358UL, 0x3edc8a2eede47b3fUL, 0xc9d95c3506bee70fUL, 0x83be111d6c4e05eeUL, 0xa603b90959367410UL, 0x103c81b4809fde5dUL, 0x2c69b6027d0c774aUL, 0x399080d7d5c87953UL, 0x09d41e16487406b4UL, 0xcdd63b1826505e5fUL, 0xf99dc2f49b0298e8UL, 0x9cd0540a943cb67fUL, 0xbca84b7f891f17c5UL, 0x723d1db3b78df2a6UL, 0x78aa6e71e73b4f2eUL, 0x1433e699a071670dUL, 0x84f21be454620782UL, 0x98df3327b4d20f2fUL, 0xf049dce2d3769e5cUL, 0xdb6c60199656eb7aUL, 0x648746b2078b4783UL, 0x32cd23598dcbadcfUL, 0x1ea4955bf0c7da85UL, 0xe9a143401b9d46b5UL, 0xfd92a5d9bbec21b8UL, 0xc8138c790e0b8e1bUL, 0x2ee00b9a6d7ba562UL, 0xf85712b893b7f1fcUL, 0xeb28fed80bea949dUL, 0x564a65eb8a40ea4cUL, 0x6c9988e8474a2823UL, 0x4535898b121d8f2dUL, 0xabd8c03231accbf4UL, 0xba2e91cab9867cbdUL, 0x7960be3def8e263aUL, 0x0c11a977602fd6f0UL, 0xcb50e1ad16c93527UL, 0xeae22e94035ffd89UL, 0x2866d12f5de2ce1aUL, 0xff1b1841ab9bf390UL, 0x9f9339de8cfe0d43UL, 0x964727c8c48a0bf7UL, 0x524502c6aaae531cUL, 0x9b9c5ef3ac10b413UL, 0x4fa2fa4942ab32a5UL, 0x3f165a62e551122bUL, 0xc74148da76e6e3d7UL, 0x924840e5e464b2a7UL, 0xd372ae43d69784daUL, 0x233b72a105e11a86UL, 0xa48a04914941a638UL, 0xb4b68525c9de7865UL, 0xddeabaaca6cf8002UL, 0x0a9773c250b6bd88UL, 0xc284ffbb5ebd3393UL, 0x8ba0df472c8f6a4eUL, 0x2aef6cb74d951c32UL, 0x427983722a318d41UL, 0x73f7cdffbf389bb2UL, 0x074c0af9382c026cUL, 0x8a6a0f0b243a035aUL, 0x6fdae53c5f88931fUL, 0xc68b98967e538ac3UL, 0x44ff59c71aa8e639UL, 0xe2fce0ce439e9229UL, 0xa20cde2479d8cd40UL, 0x19e89fa2c8ebd8e9UL, 0xf446bbcff398270cUL, 0x43b3533e2284e455UL, 0xd82f0dcd8e945046UL, 0x51066f12b26ce820UL, 0xe73957af6bc5426dUL, 0x081ece5a40c16fa0UL, 0x3b193d4fc5bfab7bUL, 0x7fe66488df174d42UL, 0x0e9814ef705804d8UL, 0x8137ac857c39d7c6UL, 0xb1733244e185a821UL, 0x695c3f896f11f867UL, 0xf6cf0657e3eff524UL, 0x1aabf276d02963d5UL, 0x2da3664e75b91e5eUL, 0x0289bd981077d228UL, 0x90c1fd7df413608fUL, 0x3c5537b6fd93a917UL, 0xaa12107e3919a2e0UL, 0x0686dab530996b78UL, 0xdaa6b0559ee3826eUL, 0xc34e2ff756085a87UL, 0x6d5358a44fff4137UL, 0xfc587595b35948acUL, 0x7ca5095cc7d5f67eUL, 0xfb147f6c8b754ac0UL, 0xbfeb26ab91ddacf9UL, 0x6896efc567a49173UL, 0xca9a31e11e7c5c33UL, 0xbbe44186b13315a9UL, 0x0ddb793b689abfe4UL, 0x70b4a02ba7fa208eUL, 0xe47a3a7b7307f951UL, 0x8cecd5be14a36822UL, 0xeeed49b923b144d9UL, 0x17708b4db8b3dc31UL, 0x6088219f2765fed3UL, 0xb3fa8fdcf1f27a09UL, 0x910b2d31fca6099bUL, 0x0f52c4a378ed6dccUL, 0x50ccbf5ebad98134UL, 0x6bd582117f662a4fUL, 0x94ce9a50d4fdd9dfUL, 0x2b25bcfb45207526UL, 0x67c42b661f49fcbfUL, 0x492420fc723259ddUL, 0x03436dd418c2bb3cUL, 0x1f6e4517f872b391UL, 0xa08563bc69af1f68UL, 0xd43ea4baeebb86b6UL, 0x01cad04c08b56914UL, 0xac94cacb0980c998UL, 0x54c3d8739a373864UL, 0x26fec5c02dbacac2UL, 0xdea9d778be0d3b3eUL, 0x040f672d20eeb950UL, 0xe5b0ea377bb29045UL, 0xf30ab136cbb42560UL, 0x62019c0737122cfbUL, 0xe86b930c13282fa1UL, 0xcc1ceb542ee5374bUL, 0x538fd28aa21b3a08UL, 0x1b61223ad89c0ac1UL, 0x36c24474ad25149fUL, 0x7a23d3e9f74c9d06UL, 0xbe21f6e79968c5edUL, 0xcf5f868036278c77UL, 0xf705d61beb5a9c30UL, 0x4d2b47d152dce08dUL, 0x5f9e7bfdc234ecf8UL, 0x247778583dcd18eaUL, 0x867ba67c4415d5aaUL, 0x4ce1979d5a698999UL, 0x0000000000000000UL, 0xec64f42133c696f1UL, 0xb57c5569c16b1171UL, 0xc1c7926f467f88afUL, 0x654d96fe0f3e2e97UL, 0x15f936d5a8c40e19UL, 0xb8a72c52a9f1ae95UL, 0xa9517daa21db19dcUL, 0x58d27104fa18ee94UL, 0x5918a148f2ad8780UL, 0x5cdd1629daf657c4UL, 0x8274c15164fb6cfaUL, 0xd1fb13dbc6e056f2UL, 0x7d6fd910cf609f6aUL, 0xb63f38bdd9a9aa4dUL, 0x3d9fe7faf526c003UL, 0x74bbc706871499deUL, 0xdf630734b6b8522aUL, 0x3ad3ed03cd0ac26fUL, 0xfadeaf2083c023d4UL, 0xc00d42234ecae1bbUL, 0x8538cba85cd76e96UL, 0xc402250e6e2458ebUL, 0x47bc3413026a5d05UL, 0xafd7a71f114272a4UL, 0x978df784cc3f62e3UL, 0xb96dfc1ea144c781UL, 0x21b2cf391596c8aeUL, 0x318e4e8d950916f3UL, 0xce9556cc3e92e563UL, 0x385a509bdd7d1047UL, 0x358129a0b5e7afa3UL, 0xe6f387e363702b79UL, 0xe0755d5653e94001UL, 0x7be903a5fff9f412UL, 0x12b53c2c90e80c75UL, 0x3307f315857ec4dbUL, 0x8fafb86a0c61d31eUL, 0xd9e5dd8186213952UL, 0x77f8aad29fd622e2UL, 0x25bda814357871feUL, 0x7571174a8fa1f0caUL, 0x137fec60985d6561UL, 0x30449ec19dbc7fe7UL, 0xa540d4dd41f4cf2cUL, 0xdc206ae0ae7ae916UL, 0x5b911cd0e2da55a8UL, 0xb2305f90f947131dUL, 0x344bf9ecbd52c6b7UL, 0x5d17c665d2433ed0UL, 0x18224feec05eb1fdUL, 0x9e59e992844b6457UL, 0x9a568ebfa4a5dd07UL, 0xa3c60e68716da454UL, 0x7e2cb4c4d7a22456UL, 0x87b176304ca0bcbeUL, 0x413aeea632f3367dUL, 0x9915e36bbc67663bUL, 0x40f03eea3a465f69UL, 0x1c2d28c3e0b008adUL, 0x4e682a054a1e5bb1UL, 0x05c5b761285bd044UL, 0xe1bf8d1a5b5c2915UL, 0xf2c0617ac3014c74UL, 0xb7f5e8f1d11cc359UL, 0x63cb4c4b3fa745efUL, 0x9d1a84469c89df6bUL, 0xe33630824b2bfb3dUL, 0xd5f474f6e60eefa2UL, 0xf58c6b83fb2d4e18UL, 0x4676e45f0adf3411UL, 0x20781f751d23a1baUL, 0xbd629b3381aa7ed1UL, 0xae1d775319f71bb0UL, 0xfed1c80da32e9a84UL, 0x5509083f92825170UL, 0x29ac01635557a70eUL, 0xa7c9694551831d04UL, 0x8e65682604d4ba0aUL, 0x11f651f8882ab749UL, 0xd77dc96ef6793d8aUL, 0xef2799f52b042dcdUL, 0x48eef0b07a8730c9UL, 0x22f1a2ed0d547392UL, 0x6142f1d32fd097c7UL, 0x4a674d286af0e2e1UL, 0x80fd7cc9748cbed2UL, 0x717e7067af4f499aUL, 0x938290a9ecd1dbb3UL, 0x88e3b293344dd172UL, 0x2734158c250fa3d6UL, }, { 0x7e37e62dfc7d40c3UL, 0x776f25a4ee939e5bUL, 0xe045c850dd8fb5adUL, 0x86ed5ba711ff1952UL, 0xe91d0bd9cf616b35UL, 0x37e0ab256e408ffbUL, 0x9607f6c031025a7aUL, 0x0b02f5e116d23c9dUL, 0xf3d8486bfb50650cUL, 0x621cff27c40875f5UL, 0x7d40cb71fa5fd34aUL, 0x6daa6616daa29062UL, 0x9f5f354923ec84e2UL, 0xec847c3dc507c3b3UL, 0x025a3668043ce205UL, 0xa8bf9e6c4dac0b19UL, 0xfa808be2e9bebb94UL, 0xb5b99c5277c74fa3UL, 0x78d9bc95f0397bccUL, 0xe332e50cdbad2624UL, 0xc74fce129332797eUL, 0x1729eceb2ea709abUL, 0xc2d6b9f69954d1f8UL, 0x5d898cbfbab8551aUL, 0x859a76fb17dd8adbUL, 0x1be85886362f7fb5UL, 0xf6413f8ff136cd8aUL, 0xd3110fa5bbb7e35cUL, 0x0a2feed514cc4d11UL, 0xe83010edcd7f1ab9UL, 0xa1e75de55f42d581UL, 0xeede4a55c13b21b6UL, 0xf2f5535ff94e1480UL, 0x0cc1b46d1888761eUL, 0xbce15fdb6529913bUL, 0x2d25e8975a7181c2UL, 0x71817f1ce2d7a554UL, 0x2e52c5cb5c53124bUL, 0xf9f7a6beef9c281dUL, 0x9e722e7d21f2f56eUL, 0xce170d9b81dca7e6UL, 0x0e9b82051cb4941bUL, 0x1e712f623c49d733UL, 0x21e45cfa42f9f7dcUL, 0xcb8e7a7f8bba0f60UL, 0x8e98831a010fb646UL, 0x474ccf0d8e895b23UL, 0xa99285584fb27a95UL, 0x8cc2b57205335443UL, 0x42d5b8e984eff3a5UL, 0x012d1b34021e718cUL, 0x57a6626aae74180bUL, 0xff19fc06e3d81312UL, 0x35ba9d4d6a7c6dfeUL, 0xc9d44c178f86ed65UL, 0x506523e6a02e5288UL, 0x03772d5c06229389UL, 0x8b01f4fe0b691ec0UL, 0xf8dabd8aed825991UL, 0x4c4e3aec985b67beUL, 0xb10df0827fbf96a9UL, 0x6a69279ad4f8dae1UL, 0xe78689dcd3d5ff2eUL, 0x812e1a2b1fa553d1UL, 0xfbad90d6eba0ca18UL, 0x1ac543b234310e39UL, 0x1604f7df2cb97827UL, 0xa6241c6951189f02UL, 0x753513cceaaf7c5eUL, 0x64f2a59fc84c4efaUL, 0x247d2b1e489f5f5aUL, 0xdb64d718ab474c48UL, 0x79f4a7a1f2270a40UL, 0x1573da832a9bebaeUL, 0x3497867968621c72UL, 0x514838d2a2302304UL, 0xf0af6537fd72f685UL, 0x1d06023e3a6b44baUL, 0x678588c3ce6edd73UL, 0x66a893f7cc70acffUL, 0xd4d24e29b5eda9dfUL, 0x3856321470ea6a6cUL, 0x07c3418c0e5a4a83UL, 0x2bcbb22f5635bacdUL, 0x04b46cd00878d90aUL, 0x06ee5ab80c443b0fUL, 0x3b211f4876c8f9e5UL, 0x0958c38912eede98UL, 0xd14b39cdbf8b0159UL, 0x397b292072f41be0UL, 0x87c0409313e168deUL, 0xad26e98847caa39fUL, 0x4e140c849c6785bbUL, 0xd5ff551db7f3d853UL, 0xa0ca46d15d5ca40dUL, 0xcd6020c787fe346fUL, 0x84b76dcf15c3fb57UL, 0xdefda0fca121e4ceUL, 0x4b8d7b6096012d3dUL, 0x9ac642ad298a2c64UL, 0x0875d8bd10f0af14UL, 0xb357c6ea7b8374acUL, 0x4d6321d89a451632UL, 0xeda96709c719b23fUL, 0xf76c24bbf328bc06UL, 0xc662d526912c08f2UL, 0x3ce25ec47892b366UL, 0xb978283f6f4f39bdUL, 0xc08c8f9e9d6833fdUL, 0x4f3917b09e79f437UL, 0x593de06fb2c08c10UL, 0xd6887841b1d14bdaUL, 0x19b26eee32139db0UL, 0xb494876675d93e2fUL, 0x825937771987c058UL, 0x90e9ac783d466175UL, 0xf1827e03ff6c8709UL, 0x945dc0a8353eb87fUL, 0x4516f9658ab5b926UL, 0x3f9573987eb020efUL, 0xb855330b6d514831UL, 0x2ae6a91b542bcb41UL, 0x6331e413c6160479UL, 0x408f8e8180d311a0UL, 0xeff35161c325503aUL, 0xd06622f9bd9570d5UL, 0x8876d9a20d4b8d49UL, 0xa5533135573a0c8bUL, 0xe168d364df91c421UL, 0xf41b09e7f50a2f8fUL, 0x12b09b0f24c1a12dUL, 0xda49cc2ca9593dc4UL, 0x1f5c34563e57a6bfUL, 0x54d14f36a8568b82UL, 0xaf7cdfe043f6419aUL, 0xea6a2685c943f8bcUL, 0xe5dcbfb4d7e91d2bUL, 0xb27addde799d0520UL, 0x6b443caed6e6ab6dUL, 0x7bae91c9f61be845UL, 0x3eb868ac7cae5163UL, 0x11c7b65322e332a4UL, 0xd23c1491b9a992d0UL, 0x8fb5982e0311c7caUL, 0x70ac6428e0c9d4d8UL, 0x895bc2960f55fcc5UL, 0x76423e90ec8defd7UL, 0x6ff0507ede9e7267UL, 0x3dcf45f07a8cc2eaUL, 0x4aa06054941f5cb1UL, 0x5810fb5bb0defd9cUL, 0x5efea1e3bc9ac693UL, 0x6edd4b4adc8003ebUL, 0x741808f8e8b10dd2UL, 0x145ec1b728859a22UL, 0x28bc9f7350172944UL, 0x270a06424ebdccd3UL, 0x972aedf4331c2bf6UL, 0x059977e40a66a886UL, 0x2550302a4a812ed6UL, 0xdd8a8da0a7037747UL, 0xc515f87a970e9b7bUL, 0x3023eaa9601ac578UL, 0xb7e3aa3a73fbada6UL, 0x0fb699311eaae597UL, 0x0000000000000000UL, 0x310ef19d6204b4f4UL, 0x229371a644db6455UL, 0x0decaf591a960792UL, 0x5ca4978bb8a62496UL, 0x1c2b190a38753536UL, 0x41a295b582cd602cUL, 0x3279dcc16426277dUL, 0xc1a194aa9f764271UL, 0x139d803b26dfd0a1UL, 0xae51c4d441e83016UL, 0xd813fa44ad65dfc1UL, 0xac0bf2bc45d4d213UL, 0x23be6a9246c515d9UL, 0x49d74d08923dcf38UL, 0x9d05032127d066e7UL, 0x2f7fdeff5e4d63c7UL, 0xa47e2a0155247d07UL, 0x99b16ff12fa8bfedUL, 0x4661d4398c972aafUL, 0xdfd0bbc8a33f9542UL, 0xdca79694a51d06cbUL, 0xb020ebb67da1e725UL, 0xba0f0563696daa34UL, 0xe4f1a480d5f76ca7UL, 0xc438e34e9510eaf7UL, 0x939e81243b64f2fcUL, 0x8defae46072d25cfUL, 0x2c08f3a3586ff04eUL, 0xd7a56375b3cf3a56UL, 0x20c947ce40e78650UL, 0x43f8a3dd86f18229UL, 0x568b795eac6a6987UL, 0x8003011f1dbb225dUL, 0xf53612d3f7145e03UL, 0x189f75da300dec3cUL, 0x9570db9c3720c9f3UL, 0xbb221e576b73dbb8UL, 0x72f65240e4f536ddUL, 0x443be25188abc8aaUL, 0xe21ffe38d9b357a8UL, 0xfd43ca6ee7e4f117UL, 0xcaa3614b89a47eecUL, 0xfe34e732e1c6629eUL, 0x83742c431b99b1d4UL, 0xcf3a16af83c2d66aUL, 0xaae5a8044990e91cUL, 0x26271d764ca3bd5fUL, 0x91c4b74c3f5810f9UL, 0x7c6dd045f841a2c6UL, 0x7f1afd19fe63314fUL, 0xc8f957238d989ce9UL, 0xa709075d5306ee8eUL, 0x55fc5402aa48fa0eUL, 0x48fa563c9023beb4UL, 0x65dfbeabca523f76UL, 0x6c877d22d8bce1eeUL, 0xcc4d3bf385e045e3UL, 0xbebb69b36115733eUL, 0x10eaad6720fd4328UL, 0xb6ceb10e71e5dc2aUL, 0xbdcc44ef6737e0b7UL, 0x523f158ea412b08dUL, 0x989c74c52db6ce61UL, 0x9beb59992b945de8UL, 0x8a2cefca09776f4cUL, 0xa3bd6b8d5b7e3784UL, 0xeb473db1cb5d8930UL, 0xc3fba2c29b4aa074UL, 0x9c28181525ce176bUL, 0x683311f2d0c438e4UL, 0x5fd3bad7be84b71fUL, 0xfc6ed15ae5fa809bUL, 0x36cdb0116c5efe77UL, 0x29918447520958c8UL, 0xa29070b959604608UL, 0x53120ebaa60cc101UL, 0x3a0c047c74d68869UL, 0x691e0ac6d2da4968UL, 0x73db4974e6eb4751UL, 0x7a838afdf40599c9UL, 0x5a4acd33b4e21f99UL, 0x6046c94fc03497f0UL, 0xe6ab92e8d1cb8ea2UL, 0x3354c7f5663856f1UL, 0xd93ee170af7bae4dUL, 0x616bd27bc22ae67cUL, 0x92b39a10397a8370UL, 0xabc8b3304b8e9890UL, 0xbf967287630b02b2UL, 0x5b67d607b6fc6e15UL, }, { 0x8ab0a96846e06a6dUL, 0x43c7e80b4bf0b33aUL, 0x08c9b3546b161ee5UL, 0x39f1c235eba990beUL, 0xc1bef2376606c7b2UL, 0x2c209233614569aaUL, 0xeb01523b6fc3289aUL, 0x946953ab935aceddUL, 0x272838f63e13340eUL, 0x8b0455eca12ba052UL, 0x77a1b2c4978ff8a2UL, 0xa55122ca13e54086UL, 0x2276135862d3f1cdUL, 0xdb8ddfde08b76cfeUL, 0x5d1e12c89e4a178aUL, 0x0e56816b03969867UL, 0xee5f79953303ed59UL, 0xafed748bab78d71dUL, 0x6d929f2df93e53eeUL, 0xf5d8a8f8ba798c2aUL, 0xf619b1698e39cf6bUL, 0x95ddaf2f749104e2UL, 0xec2a9c80e0886427UL, 0xce5c8fd8825b95eaUL, 0xc4e0d9993ac60271UL, 0x4699c3a5173076f9UL, 0x3d1b151f50a29f42UL, 0x9ed505ea2bc75946UL, 0x34665acfdc7f4b98UL, 0x61b1fb53292342f7UL, 0xc721c0080e864130UL, 0x8693cd1696fd7b74UL, 0x872731927136b14bUL, 0xd3446c8a63a1721bUL, 0x669a35e8a6680e4aUL, 0xcab658f239509a16UL, 0xa4e5de4ef42e8ab9UL, 0x37a7435ee83f08d9UL, 0x134e6239e26c7f96UL, 0x82791a3c2df67488UL, 0x3f6ef00a8329163cUL, 0x8e5a7e42fdeb6591UL, 0x5caaee4c7981ddb5UL, 0x19f234785af1e80dUL, 0x255ddde3ed98bd70UL, 0x50898a32a99cccacUL, 0x28ca4519da4e6656UL, 0xae59880f4cb31d22UL, 0x0d9798fa37d6db26UL, 0x32f968f0b4ffcd1aUL, 0xa00f09644f258545UL, 0xfa3ad5175e24de72UL, 0xf46c547c5db24615UL, 0x713e80fbff0f7e20UL, 0x7843cf2b73d2aafaUL, 0xbd17ea36aedf62b4UL, 0xfd111bacd16f92cfUL, 0x4abaa7dbc72d67e0UL, 0xb3416b5dad49fad3UL, 0xbca316b24914a88bUL, 0x15d150068aecf914UL, 0xe27c1debe31efc40UL, 0x4fe48c759beda223UL, 0x7edcfd141b522c78UL, 0x4e5070f17c26681cUL, 0xe696cac15815f3bcUL, 0x35d2a64b3bb481a7UL, 0x800cff29fe7dfdf6UL, 0x1ed9fac3d5baa4b0UL, 0x6c2663a91ef599d1UL, 0x03c1199134404341UL, 0xf7ad4ded69f20554UL, 0xcd9d9649b61bd6abUL, 0xc8c3bde7eadb1368UL, 0xd131899fb02afb65UL, 0x1d18e352e1fae7f1UL, 0xda39235aef7ca6c1UL, 0xa1bbf5e0a8ee4f7aUL, 0x91377805cf9a0b1eUL, 0x3138716180bf8e5bUL, 0xd9f83acbdb3ce580UL, 0x0275e515d38b897eUL, 0x472d3f21f0fbbcc6UL, 0x2d946eb7868ea395UL, 0xba3c248d21942e09UL, 0xe7223645bfde3983UL, 0xff64feb902e41bb1UL, 0xc97741630d10d957UL, 0xc3cb1722b58d4eccUL, 0xa27aec719cae0c3bUL, 0x99fecb51a48c15fbUL, 0x1465ac826d27332bUL, 0xe1bd047ad75ebf01UL, 0x79f733af941960c5UL, 0x672ec96c41a3c475UL, 0xc27feba6524684f3UL, 0x64efd0fd75e38734UL, 0xed9e60040743ae18UL, 0xfb8e2993b9ef144dUL, 0x38453eb10c625a81UL, 0x6978480742355c12UL, 0x48cf42ce14a6ee9eUL, 0x1cac1fd606312dceUL, 0x7b82d6ba4792e9bbUL, 0x9d141c7b1f871a07UL, 0x5616b80dc11c4a2eUL, 0xb849c198f21fa777UL, 0x7ca91801c8d9a506UL, 0xb1348e487ec273adUL, 0x41b20d1e987b3a44UL, 0x7460ab55a3cfbbe3UL, 0x84e628034576f20aUL, 0x1b87d16d897a6173UL, 0x0fe27defe45d5258UL, 0x83cde6b8ca3dbeb7UL, 0x0c23647ed01d1119UL, 0x7a362a3ea0592384UL, 0xb61f40f3f1893f10UL, 0x75d457d1440471dcUL, 0x4558da34237035b8UL, 0xdca6116587fc2043UL, 0x8d9b67d3c9ab26d0UL, 0x2b0b5c88ee0e2517UL, 0x6fe77a382ab5da90UL, 0x269cc472d9d8fe31UL, 0x63c41e46faa8cb89UL, 0xb7abbc771642f52fUL, 0x7d1de4852f126f39UL, 0xa8c6ba3024339ba0UL, 0x600507d7cee888c8UL, 0x8fee82c61a20afaeUL, 0x57a2448926d78011UL, 0xfca5e72836a458f0UL, 0x072bcebb8f4b4cbdUL, 0x497bbe4af36d24a1UL, 0x3cafe99bb769557dUL, 0x12fa9ebd05a7b5a9UL, 0xe8c04baa5b836bdbUL, 0x4273148fac3b7905UL, 0x908384812851c121UL, 0xe557d3506c55b0fdUL, 0x72ff996acb4f3d61UL, 0x3eda0c8e64e2dc03UL, 0xf0868356e6b949e9UL, 0x04ead72abb0b0ffcUL, 0x17a4b5135967706aUL, 0xe3c8e16f04d5367fUL, 0xf84f30028daf570cUL, 0x1846c8fcbd3a2232UL, 0x5b8120f7f6ca9108UL, 0xd46fa231ecea3ea6UL, 0x334d947453340725UL, 0x58403966c28ad249UL, 0xbed6f3a79a9f21f5UL, 0x68ccb483a5fe962dUL, 0xd085751b57e1315aUL, 0xfed0023de52fd18eUL, 0x4b0e5b5f20e6addfUL, 0x1a332de96eb1ab4cUL, 0xa3ce10f57b65c604UL, 0x108f7ba8d62c3cd7UL, 0xab07a3a11073d8e1UL, 0x6b0dad1291bed56cUL, 0xf2f366433532c097UL, 0x2e557726b2cee0d4UL, 0x0000000000000000UL, 0xcb02a476de9b5029UL, 0xe4e32fd48b9e7ac2UL, 0x734b65ee2c84f75eUL, 0x6e5386bccd7e10afUL, 0x01b4fc84e7cbca3fUL, 0xcfe8735c65905fd5UL, 0x3613bfda0ff4c2e6UL, 0x113b872c31e7f6e8UL, 0x2fe18ba255052aebUL, 0xe974b72ebc48a1e4UL, 0x0abc5641b89d979bUL, 0xb46aa5e62202b66eUL, 0x44ec26b0c4bbff87UL, 0xa6903b5b27a503c7UL, 0x7f680190fc99e647UL, 0x97a84a3aa71a8d9cUL, 0xdd12ede16037ea7cUL, 0xc554251ddd0dc84eUL, 0x88c54c7d956be313UL, 0x4d91696048662b5dUL, 0xb08072cc9909b992UL, 0xb5de5962c5c97c51UL, 0x81b803ad19b637c9UL, 0xb2f597d94a8230ecUL, 0x0b08aac55f565da4UL, 0xf1327fd2017283d6UL, 0xad98919e78f35e63UL, 0x6ab9519676751f53UL, 0x24e921670a53774fUL, 0xb9fd3d1c15d46d48UL, 0x92f66194fbda485fUL, 0x5a35dc7311015b37UL, 0xded3f4705477a93dUL, 0xc00a0eb381cd0d8dUL, 0xbb88d809c65fe436UL, 0x16104997beacba55UL, 0x21b70ac95693b28cUL, 0x59f4c5e225411876UL, 0xd5db5eb50b21f499UL, 0x55d7a19cf55c096fUL, 0xa97246b4c3f8519fUL, 0x8552d487a2bd3835UL, 0x54635d181297c350UL, 0x23c2efdc85183bf2UL, 0x9f61f96ecc0c9379UL, 0x534893a39ddc8fedUL, 0x5edf0b59aa0a54cbUL, 0xac2c6d1a9f38945cUL, 0xd7aebba0d8aa7de7UL, 0x2abfa00c09c5ef28UL, 0xd84cc64f3cf72fbfUL, 0x2003f64db15878b3UL, 0xa724c7dfc06ec9f8UL, 0x069f323f68808682UL, 0xcc296acd51d01c94UL, 0x055e2bae5cc0c5c3UL, 0x6270e2c21d6301b6UL, 0x3b842720382219c0UL, 0xd2f0900e846ab824UL, 0x52fc6f277a1745d2UL, 0xc6953c8ce94d8b0fUL, 0xe009f8fe3095753eUL, 0x655b2c7992284d0bUL, 0x984a37d54347dfc4UL, 0xeab5aebf8808e2a5UL, 0x9a3fd2c090cc56baUL, 0x9ca0e0fff84cd038UL, 0x4c2595e4afade162UL, 0xdf6708f4b3bc6302UL, 0xbf620f237d54ebcaUL, 0x93429d101c118260UL, 0x097d4fd08cddd4daUL, 0x8c2f9b572e60ecefUL, 0x708a7c7f18c4b41fUL, 0x3a30dba4dfe9d3ffUL, 0x4006f19a7fb0f07bUL, 0x5f6bf7dd4dc19ef4UL, 0x1f6d064732716e8fUL, 0xf9fbcc866a649d33UL, 0x308c8de567744464UL, 0x8971b0f972a0292cUL, 0xd61a47243f61b7d8UL, 0xefeb8511d4c82766UL, 0x961cb6be40d147a3UL, 0xaab35f25f7b812deUL, 0x76154e407044329dUL, 0x513d76b64e570693UL, 0xf3479ac7d2f90aa8UL, 0x9b8b2e4477079c85UL, 0x297eb99d3d85ac69UL, }, { 0x3ef29d249b2c0a19UL, 0xe9e16322b6f8622fUL, 0x5536994047757f7aUL, 0x9f4d56d5a47b0b33UL, 0x822567466aa1174cUL, 0xb8f5057deb082fb2UL, 0xcc48c10bf4475f53UL, 0x373088d4275dec3aUL, 0x968f4325180aed10UL, 0x173d232cf7016151UL, 0xae4ed09f946fcc13UL, 0xfd4b4741c4539873UL, 0x1b5b3f0dd9933765UL, 0x2ffcb0967b644052UL, 0xe02376d20a89840cUL, 0xa3ae3a70329b18d7UL, 0x419cbd2335de8526UL, 0xfafebf115b7c3199UL, 0x0397074f85aa9b0dUL, 0xc58ad4fb4836b970UL, 0xbec60be3fc4104a8UL, 0x1eff36dc4b708772UL, 0x131fdc33ed8453b6UL, 0x0844e33e341764d3UL, 0x0ff11b6eab38cd39UL, 0x64351f0a7761b85aUL, 0x3b5694f509cfba0eUL, 0x30857084b87245d0UL, 0x47afb3bd2297ae3cUL, 0xf2ba5c2f6f6b554aUL, 0x74bdc4761f4f70e1UL, 0xcfdfc64471edc45eUL, 0xe610784c1dc0af16UL, 0x7aca29d63c113f28UL, 0x2ded411776a859afUL, 0xac5f211e99a3d5eeUL, 0xd484f949a87ef33bUL, 0x3ce36ca596e013e4UL, 0xd120f0983a9d432cUL, 0x6bc40464dc597563UL, 0x69d5f5e5d1956c9eUL, 0x9ae95f043698bb24UL, 0xc9ecc8da66a4ef44UL, 0xd69508c8a5b2eac6UL, 0xc40c2235c0503b80UL, 0x38c193ba8c652103UL, 0x1ceec75d46bc9e8fUL, 0xd331011937515ad1UL, 0xd8e2e56886eca50fUL, 0xb137108d5779c991UL, 0x709f3b6905ca4206UL, 0x4feb50831680caefUL, 0xec456af3241bd238UL, 0x58d673afe181abbeUL, 0x242f54e7cad9bf8cUL, 0x0211f1810dcc19fdUL, 0x90bc4dbb0f43c60aUL, 0x9518446a9da0761dUL, 0xa1bfcbf13f57012aUL, 0x2bde4f8961e172b5UL, 0x27b853a84f732481UL, 0xb0b1e643df1f4b61UL, 0x18cc38425c39ac68UL, 0xd2b7f7d7bf37d821UL, 0x3103864a3014c720UL, 0x14aa246372abfa5cUL, 0x6e600db54ebac574UL, 0x394765740403a3f3UL, 0x09c215f0bc71e623UL, 0x2a58b947e987f045UL, 0x7b4cdf18b477bdd8UL, 0x9709b5eb906c6fe0UL, 0x73083c268060d90bUL, 0xfedc400e41f9037eUL, 0x284948c6e44be9b8UL, 0x728ecae808065bfbUL, 0x06330e9e17492b1aUL, 0x5950856169e7294eUL, 0xbae4f4fce6c4364fUL, 0xca7bcf95e30e7449UL, 0x7d7fd186a33e96c2UL, 0x52836110d85ad690UL, 0x4dfaa1021b4cd312UL, 0x913abb75872544faUL, 0xdd46ecb9140f1518UL, 0x3d659a6b1e869114UL, 0xc23f2cabd719109aUL, 0xd713fe062dd46836UL, 0xd0a60656b2fbc1dcUL, 0x221c5a79dd909496UL, 0xefd26dbca1b14935UL, 0x0e77eda0235e4fc9UL, 0xcbfd395b6b68f6b9UL, 0x0de0eaefa6f4d4c4UL, 0x0422ff1f1a8532e7UL, 0xf969b85eded6aa94UL, 0x7f6e2007aef28f3fUL, 0x3ad0623b81a938feUL, 0x6624ee8b7aada1a7UL, 0xb682e8ddc856607bUL, 0xa78cc56f281e2a30UL, 0xc79b257a45faa08dUL, 0x5b4174e0642b30b3UL, 0x5f638bff7eae0254UL, 0x4bc9af9c0c05f808UL, 0xce59308af98b46aeUL, 0x8fc58da9cc55c388UL, 0x803496c7676d0eb1UL, 0xf33caae1e70dd7baUL, 0xbb6202326ea2b4bfUL, 0xd5020f87201871cbUL, 0x9d5ca754a9b712ceUL, 0x841669d87de83c56UL, 0x8a6184785eb6739fUL, 0x420bba6cb0741e2bUL, 0xf12d5b60eac1ce47UL, 0x76ac35f71283691cUL, 0x2c6bb7d9fecedb5fUL, 0xfccdb18f4c351a83UL, 0x1f79c012c3160582UL, 0xf0abadae62a74cb7UL, 0xe1a5801c82ef06fcUL, 0x67a21845f2cb2357UL, 0x5114665f5df04d9dUL, 0xbf40fd2d74278658UL, 0xa0393d3fb73183daUL, 0x05a409d192e3b017UL, 0xa9fb28cf0b4065f9UL, 0x25a9a22942bf3d7cUL, 0xdb75e22703463e02UL, 0xb326e10c5ab5d06cUL, 0xe7968e8295a62de6UL, 0xb973f3b3636ead42UL, 0xdf571d3819c30ce5UL, 0xee549b7229d7cbc5UL, 0x12992afd65e2d146UL, 0xf8ef4e9056b02864UL, 0xb7041e134030e28bUL, 0xc02edd2adad50967UL, 0x932b4af48ae95d07UL, 0x6fe6fb7bc6dc4784UL, 0x239aacb755f61666UL, 0x401a4bedbdb807d6UL, 0x485ea8d389af6305UL, 0xa41bc220adb4b13dUL, 0x753b32b89729f211UL, 0x997e584bb3322029UL, 0x1d683193ceda1c7fUL, 0xff5ab6c0c99f818eUL, 0x16bbd5e27f67e3a1UL, 0xa59d34ee25d233cdUL, 0x98f8ae853b54a2d9UL, 0x6df70afacb105e79UL, 0x795d2e99b9bba425UL, 0x8e437b6744334178UL, 0x0186f6ce886682f0UL, 0xebf092a3bb347bd2UL, 0xbcd7fa62f18d1d55UL, 0xadd9d7d011c5571eUL, 0x0bd3e471b1bdffdeUL, 0xaa6c2f808eeafef4UL, 0x5ee57d31f6c880a4UL, 0xf50fa47ff044fca0UL, 0x1addc9c351f5b595UL, 0xea76646d3352f922UL, 0x0000000000000000UL, 0x85909f16f58ebea6UL, 0x46294573aaf12cccUL, 0x0a5512bf39db7d2eUL, 0x78dbd85731dd26d5UL, 0x29cfbe086c2d6b48UL, 0x218b5d36583a0f9bUL, 0x152cd2adfacd78acUL, 0x83a39188e2c795bcUL, 0xc3b9da655f7f926aUL, 0x9ecba01b2c1d89c3UL, 0x07b5f8509f2fa9eaUL, 0x7ee8d6c926940dcfUL, 0x36b67e1aaf3b6ecaUL, 0x86079859702425abUL, 0xfb7849dfd31ab369UL, 0x4c7c57cc932a51e2UL, 0xd96413a60e8a27ffUL, 0x263ea566c715a671UL, 0x6c71fc344376dc89UL, 0x4a4f595284637af8UL, 0xdaf314e98b20bcf2UL, 0x572768c14ab96687UL, 0x1088db7c682ec8bbUL, 0x887075f9537a6a62UL, 0x2e7a4658f302c2a2UL, 0x619116dbe582084dUL, 0xa87dde018326e709UL, 0xdcc01a779c6997e8UL, 0xedc39c3dac7d50c8UL, 0xa60a33a1a078a8c0UL, 0xc1a82be452b38b97UL, 0x3f746bea134a88e9UL, 0xa228ccbebafd9a27UL, 0xabead94e068c7c04UL, 0xf48952b178227e50UL, 0x5cf48cb0fb049959UL, 0x6017e0156de48abdUL, 0x4438b4f2a73d3531UL, 0x8c528ae649ff5885UL, 0xb515ef924dfcfb76UL, 0x0c661c212e925634UL, 0xb493195cc59a7986UL, 0x9cda519a21d1903eUL, 0x32948105b5be5c2dUL, 0x194ace8cd45f2e98UL, 0x438d4ca238129cdbUL, 0x9b6fa9cabefe39d4UL, 0x81b26009ef0b8c41UL, 0xded1ebf691a58e15UL, 0x4e6da64d9ee6481fUL, 0x54b06f8ecf13fd8aUL, 0x49d85e1d01c9e1f5UL, 0xafc826511c094ee3UL, 0xf698a33075ee67adUL, 0x5ac7822eec4db243UL, 0x8dd47c28c199da75UL, 0x89f68337db1ce892UL, 0xcdce37c57c21dda3UL, 0x530597de503c5460UL, 0x6a42f2aa543ff793UL, 0x5d727a7e73621ba9UL, 0xe232875307459df1UL, 0x56a19e0fc2dfe477UL, 0xc61dd3b4cd9c227dUL, 0xe5877f03986a341bUL, 0x949eb2a415c6f4edUL, 0x6206119460289340UL, 0x6380e75ae84e11b0UL, 0x8be772b6d6d0f16fUL, 0x50929091d596cf6dUL, 0xe86795ec3e9ee0dfUL, 0x7cf927482b581432UL, 0xc86a3e14eec26db4UL, 0x7119cda78dacc0f6UL, 0xe40189cd100cb6ebUL, 0x92adbc3a028fdff7UL, 0xb2a017c2d2d3529cUL, 0x200dabf8d05c8d6bUL, 0x34a78f9ba2f77737UL, 0xe3b4719d8f231f01UL, 0x45be423c2f5bb7c1UL, 0xf71e55fefd88e55dUL, 0x6853032b59f3ee6eUL, 0x65b3e9c4ff073aaaUL, 0x772ac3399ae5ebecUL, 0x87816e97f842a75bUL, 0x110e2db2e0484a4bUL, 0x331277cb3dd8deddUL, 0xbd510cac79eb9fa5UL, 0x352179552a91f5c7UL, }, { 0x05ba7bc82c9b3220UL, 0x31a54665f8b65e4fUL, 0xb1b651f77547f4d4UL, 0x8bfa0d857ba46682UL, 0x85a96c5aa16a98bbUL, 0x990faef908eb79c9UL, 0xa15e37a247f4a62dUL, 0x76857dcd5d27741eUL, 0xf8c50b800a1820bcUL, 0xbe65dcb201f7a2b4UL, 0x666d1b986f9426e7UL, 0x4cc921bf53c4e648UL, 0x95410a0f93d9ca42UL, 0x20cdccaa647ba4efUL, 0x429a4060890a1871UL, 0x0c4ea4f69b32b38bUL, 0xccda362dde354cd3UL, 0x96dc23bc7c5b2fa9UL, 0xc309bb68aa851ab3UL, 0xd26131a73648e013UL, 0x021dc52941fc4db2UL, 0xcd5adab7704be48aUL, 0xa77965d984ed71e6UL, 0x32386fd61734bba4UL, 0xe82d6dd538ab7245UL, 0x5c2147ea6177b4b1UL, 0x5da1ab70cf091ce8UL, 0xac907fce72b8bdffUL, 0x57c85dfd972278a8UL, 0xa4e44c6a6b6f940dUL, 0x3851995b4f1fdfe4UL, 0x62578ccaed71bc9eUL, 0xd9882bb0c01d2c0aUL, 0x917b9d5d113c503bUL, 0xa2c31e11a87643c6UL, 0xe463c923a399c1ceUL, 0xf71686c57ea876dcUL, 0x87b4a973e096d509UL, 0xaf0d567d9d3a5814UL, 0xb40c2a3f59dcc6f4UL, 0x3602f88495d121ddUL, 0xd3e1dd3d9836484aUL, 0xf945e71aa46688e5UL, 0x7518547eb2a591f5UL, 0x9366587450c01d89UL, 0x9ea81018658c065bUL, 0x4f54080cbc4603a3UL, 0x2d0384c65137bf3dUL, 0xdc325078ec861e2aUL, 0xea30a8fc79573ff7UL, 0x214d2030ca050cb6UL, 0x65f0322b8016c30cUL, 0x69be96dd1b247087UL, 0xdb95ee9981e161b8UL, 0xd1fc1814d9ca05f8UL, 0x820ed2bbcc0de729UL, 0x63d76050430f14c7UL, 0x3bccb0e8a09d3a0fUL, 0x8e40764d573f54a2UL, 0x39d175c1e16177bdUL, 0x12f5a37c734f1f4bUL, 0xab37c12f1fdfc26dUL, 0x5648b167395cd0f1UL, 0x6c04ed1537bf42a7UL, 0xed97161d14304065UL, 0x7d6c67daab72b807UL, 0xec17fa87ba4ee83cUL, 0xdfaf79cb0304fbc1UL, 0x733f060571bc463eUL, 0x78d61c1287e98a27UL, 0xd07cf48e77b4ada1UL, 0xb9c262536c90dd26UL, 0xe2449b5860801605UL, 0x8fc09ad7f941fcfbUL, 0xfad8cea94be46d0eUL, 0xa343f28b0608eb9fUL, 0x9b126bd04917347bUL, 0x9a92874ae7699c22UL, 0x1b017c42c4e69ee0UL, 0x3a4c5c720ee39256UL, 0x4b6e9f5e3ea399daUL, 0x6ba353f45ad83d35UL, 0xe7fee0904c1b2425UL, 0x22d009832587e95dUL, 0x842980c00f1430e2UL, 0xc6b3c0a0861e2893UL, 0x087433a419d729f2UL, 0x341f3dadd42d6c6fUL, 0xee0a3faefbb2a58eUL, 0x4aee73c490dd3183UL, 0xaab72db5b1a16a34UL, 0xa92a04065e238fdfUL, 0x7b4b35a1686b6fccUL, 0x6a23bf6ef4a6956cUL, 0x191cb96b851ad352UL, 0x55d598d4d6de351aUL, 0xc9604de5f2ae7ef3UL, 0x1ca6c2a3a981e172UL, 0xde2f9551ad7a5398UL, 0x3025aaff56c8f616UL, 0x15521d9d1e2860d9UL, 0x506fe31cfa45073aUL, 0x189c55f12b647b0bUL, 0x0180ec9aae7ea859UL, 0x7cec8b40050c105eUL, 0x2350e5198bf94104UL, 0xef8ad33455cc0dd7UL, 0x07a7bee16d677f92UL, 0xe5e325b90de76997UL, 0x5a061591a26e637aUL, 0xb611ef1618208b46UL, 0x09f4df3eb7a981abUL, 0x1ebb078ae87dacc0UL, 0xb791038cb65e231fUL, 0x0fd38d4574b05660UL, 0x67edf702c1ea8ebeUL, 0xba5f4be0831238cdUL, 0xe3c477c2cefebe5cUL, 0x0dce486c354c1bd2UL, 0x8c5db36416c31910UL, 0x26ea9ed1a7627324UL, 0x039d29b3ef82e5ebUL, 0x9f28fc82cbf2ae02UL, 0xa8aae89cf05d2786UL, 0x431aacfa2774b028UL, 0xcf471f9e31b7a938UL, 0x581bd0b8e3922ec8UL, 0xbc78199b400bef06UL, 0x90fb71c7bf42f862UL, 0x1f3beb1046030499UL, 0x683e7a47b55ad8deUL, 0x988f4263a695d190UL, 0xd808c72a6e638453UL, 0x0627527bc319d7cbUL, 0xebb04466d72997aeUL, 0xe67e0c0ae2658c7cUL, 0x14d2f107b056c880UL, 0x7122c32c30400b8cUL, 0x8a7ae11fd5dacedbUL, 0xa0dedb38e98a0e74UL, 0xad109354dcc615a6UL, 0x0be91a17f655cc19UL, 0x8ddd5ffeb8bdb149UL, 0xbfe53028af890aedUL, 0xd65ba6f5b4ad7a6aUL, 0x7956f0882997227eUL, 0x10e8665532b352f9UL, 0x0e5361dfdacefe39UL, 0xcec7f3049fc90161UL, 0xff62b561677f5f2eUL, 0x975ccf26d22587f0UL, 0x51ef0f86543baf63UL, 0x2f1e41ef10cbf28fUL, 0x52722635bbb94a88UL, 0xae8dbae73344f04dUL, 0x410769d36688fd9aUL, 0xb3ab94de34bbb966UL, 0x801317928df1aa9bUL, 0xa564a0f0c5113c54UL, 0xf131d4bebdb1a117UL, 0x7f71a2f3ea8ef5b5UL, 0x40878549c8f655c3UL, 0x7ef14e6944f05decUL, 0xd44663dcf55137d8UL, 0xf2acfd0d523344fcUL, 0x0000000000000000UL, 0x5fbc6e598ef5515aUL, 0x16cf342ef1aa8532UL, 0xb036bd6ddb395c8dUL, 0x13754fe6dd31b712UL, 0xbbdfa77a2d6c9094UL, 0x89e7c8ac3a582b30UL, 0x3c6b0e09cdfa459dUL, 0xc4ae0589c7e26521UL, 0x49735a777f5fd468UL, 0xcafd64561d2c9b18UL, 0xda1502032f9fc9e1UL, 0x8867243694268369UL, 0x3782141e3baf8984UL, 0x9cb5d53124704be9UL, 0xd7db4a6f1ad3d233UL, 0xa6f989432a93d9bfUL, 0x9d3539ab8a0ee3b0UL, 0x53f2caaf15c7e2d1UL, 0x6e19283c76430f15UL, 0x3debe2936384edc4UL, 0x5e3c82c3208bf903UL, 0x33b8834cb94a13fdUL, 0x6470deb12e686b55UL, 0x359fd1377a53c436UL, 0x61caa57902f35975UL, 0x043a975282e59a79UL, 0xfd7f70482683129cUL, 0xc52ee913699ccd78UL, 0x28b9ff0e7dac8d1dUL, 0x5455744e78a09d43UL, 0xcb7d88ccb3523341UL, 0x44bd121b4a13cfbaUL, 0x4d49cd25fdba4e11UL, 0x3e76cb208c06082fUL, 0x3ff627ba2278a076UL, 0xc28957f204fbb2eaUL, 0x453dfe81e46d67e3UL, 0x94c1e6953da7621bUL, 0x2c83685cff491764UL, 0xf32c1197fc4deca5UL, 0x2b24d6bd922e68f6UL, 0xb22b78449ac5113fUL, 0x48f3b6edd1217c31UL, 0x2e9ead75beb55ad6UL, 0x174fd8b45fd42d6bUL, 0x4ed4e4961238abfaUL, 0x92e6b4eefebeb5d0UL, 0x46a0d7320bef8208UL, 0x47203ba8a5912a51UL, 0x24f75bf8e69e3e96UL, 0xf0b1382413cf094eUL, 0xfee259fbc901f777UL, 0x276a724b091cdb7dUL, 0xbdf8f501ee75475fUL, 0x599b3c224dec8691UL, 0x6d84018f99c1eafeUL, 0x7498b8e41cdb39acUL, 0xe0595e71217c5bb7UL, 0x2aa43a273c50c0afUL, 0xf50b43ec3f543b6eUL, 0x838e3e2162734f70UL, 0xc09492db4507ff58UL, 0x72bfea9fdfc2ee67UL, 0x11688acf9ccdfaa0UL, 0x1a8190d86a9836b9UL, 0x7acbd93bc615c795UL, 0xc7332c3a286080caUL, 0x863445e94ee87d50UL, 0xf6966a5fd0d6de85UL, 0xe9ad814f96d5da1cUL, 0x70a22fb69e3ea3d5UL, 0x0a69f68d582b6440UL, 0xb8428ec9c2ee757fUL, 0x604a49e3ac8df12cUL, 0x5b86f90b0c10cb23UL, 0xe1d9b2eb8f02f3eeUL, 0x29391394d3d22544UL, 0xc8e0a17f5cd0d6aaUL, 0xb58cc6a5f7a26eadUL, 0x8193fb08238f02c2UL, 0xd5c68f465b2f9f81UL, 0xfcff9cd288fdbac5UL, 0x77059157f359dc47UL, 0x1d262e3907ff492bUL, 0xfb582233e59ac557UL, 0xddb2bce242f8b673UL, 0x2577b76248e096cfUL, 0x6f99c4a6d83da74cUL, 0xc1147e41eb795701UL, 0xf48baf76912a9337UL, }, { 0x45b268a93acde4ccUL, 0xaf7f0be884549d08UL, 0x048354b3c1468263UL, 0x925435c2c80efed2UL, 0xee4e37f27fdffba7UL, 0x167a33920c60f14dUL, 0xfb123b52ea03e584UL, 0x4a0cab53fdbb9007UL, 0x9deaf6380f788a19UL, 0xcb48ec558f0cb32aUL, 0xb59dc4b2d6fef7e0UL, 0xdcdbca22f4f3ecb6UL, 0x11df5813549a9c40UL, 0xe33fdedf568aced3UL, 0xa0c1c8124322e9c3UL, 0x07a56b8158fa6d0dUL, 0x77279579b1e1f3ddUL, 0xd9b18b74422ac004UL, 0xb8ec2d9fffabc294UL, 0xf4acf8a82d75914fUL, 0x7bbf69b1ef2b6878UL, 0xc4f62faf487ac7e1UL, 0x76ce809cc67e5d0cUL, 0x6711d88f92e4c14cUL, 0x627b99d9243dedfeUL, 0x234aa5c3dfb68b51UL, 0x909b1f15262dbf6dUL, 0x4f66ea054b62bcb5UL, 0x1ae2cf5a52aa6ae8UL, 0xbea053fbd0ce0148UL, 0xed6808c0e66314c9UL, 0x43fe16cd15a82710UL, 0xcd049231a06970f6UL, 0xe7bc8a6c97cc4cb0UL, 0x337ce835fcb3b9c0UL, 0x65def2587cc780f3UL, 0x52214ede4132bb50UL, 0x95f15e4390f493dfUL, 0x870839625dd2e0f1UL, 0x41313c1afb8b66afUL, 0x91720af051b211bcUL, 0x477d427ed4eea573UL, 0x2e3b4ceef6e3be25UL, 0x82627834eb0bcc43UL, 0x9c03e3dd78e724c8UL, 0x2877328ad9867df9UL, 0x14b51945e243b0f2UL, 0x574b0f88f7eb97e2UL, 0x88b6fa989aa4943aUL, 0x19c4f068cb168586UL, 0x50ee6409af11faefUL, 0x7df317d5c04eaba4UL, 0x7a567c5498b4c6a9UL, 0xb6bbfb804f42188eUL, 0x3cc22bcf3bc5cd0bUL, 0xd04336eaaa397713UL, 0xf02fac1bec33132cUL, 0x2506dba7f0d3488dUL, 0xd7e65d6bf2c31a1eUL, 0x5eb9b2161ff820f5UL, 0x842e0650c46e0f9fUL, 0x716beb1d9e843001UL, 0xa933758cab315ed4UL, 0x3fe414fda2792265UL, 0x27c9f1701ef00932UL, 0x73a4c1ca70a771beUL, 0x94184ba6e76b3d0eUL, 0x40d829ff8c14c87eUL, 0x0fbec3fac77674cbUL, 0x3616a9634a6a9572UL, 0x8f139119c25ef937UL, 0xf545ed4d5aea3f9eUL, 0xe802499650ba387bUL, 0x6437e7bd0b582e22UL, 0xe6559f89e053e261UL, 0x80ad52e305288dfcUL, 0x6dc55a23e34b9935UL, 0xde14e0f51ad0ad09UL, 0xc6390578a659865eUL, 0x96d7617109487cb1UL, 0xe2d6cb3a21156002UL, 0x01e915e5779faed1UL, 0xadb0213f6a77dcb7UL, 0x9880b76eb9a1a6abUL, 0x5d9f8d248644cf9bUL, 0xfd5e4536c5662658UL, 0xf1c6b9fe9bacbdfdUL, 0xeacd6341be9979c4UL, 0xefa7221708405576UL, 0x510771ecd88e543eUL, 0xc2ba51cb671f043dUL, 0x0ad482ac71af5879UL, 0xfe787a045cdac936UL, 0xb238af338e049aedUL, 0xbd866cc94972ee26UL, 0x615da6ebbd810290UL, 0x3295fdd08b2c1711UL, 0xf834046073bf0aeaUL, 0xf3099329758ffc42UL, 0x1caeb13e7dcfa934UL, 0xba2307481188832bUL, 0x24efce42874ce65cUL, 0x0e57d61fb0e9da1aUL, 0xb3d1bad6f99b343cUL, 0xc0757b1c893c4582UL, 0x2b510db8403a9297UL, 0x5c7698c1f1db614aUL, 0x3e0d0118d5e68cb4UL, 0xd60f488e855cb4cfUL, 0xae961e0df3cb33d9UL, 0x3a8e55ab14a00ed7UL, 0x42170328623789c1UL, 0x838b6dd19c946292UL, 0x895fef7ded3b3aebUL, 0xcfcbb8e64e4a3149UL, 0x064c7e642f65c3dcUL, 0x3d2b3e2a4c5a63daUL, 0x5bd3f340a9210c47UL, 0xb474d157a1615931UL, 0xac5934da1de87266UL, 0x6ee365117af7765bUL, 0xc86ed36716b05c44UL, 0x9ba6885c201d49c5UL, 0xb905387a88346c45UL, 0x131072c4bab9ddffUL, 0xbf49461ea751af99UL, 0xd52977bc1ce05ba1UL, 0xb0f785e46027db52UL, 0x546d30ba6e57788cUL, 0x305ad707650f56aeUL, 0xc987c682612ff295UL, 0xa5ab8944f5fbc571UL, 0x7ed528e759f244caUL, 0x8ddcbbce2c7db888UL, 0xaa154abe328db1baUL, 0x1e619be993ece88bUL, 0x09f2bd9ee813b717UL, 0x7401aa4b285d1cb3UL, 0x21858f143195caeeUL, 0x48c381841398d1b8UL, 0xfcb750d3b2f98889UL, 0x39a86a998d1ce1b9UL, 0x1f888e0ce473465aUL, 0x7899568376978716UL, 0x02cf2ad7ee2341bfUL, 0x85c713b5b3f1a14eUL, 0xff916fe12b4567e7UL, 0x7c1a0230b7d10575UL, 0x0c98fcc85eca9ba5UL, 0xa3e7f720da9e06adUL, 0x6a6031a2bbb1f438UL, 0x973e74947ed7d260UL, 0x2cf4663918c0ff9aUL, 0x5f50a7f368678e24UL, 0x34d983b4a449d4cdUL, 0x68af1b755592b587UL, 0x7f3c3d022e6dea1bUL, 0xabfc5f5b45121f6bUL, 0x0d71e92d29553574UL, 0xdffdf5106d4f03d8UL, 0x081ba87b9f8c19c6UL, 0xdb7ea1a3ac0981bbUL, 0xbbca12ad66172dfaUL, 0x79704366010829c7UL, 0x179326777bff5f9cUL, 0x0000000000000000UL, 0xeb2476a4c906d715UL, 0x724dd42f0738df6fUL, 0xb752ee6538ddb65fUL, 0x37ffbc863df53ba3UL, 0x8efa84fcb5c157e6UL, 0xe9eb5c73272596aaUL, 0x1b0bdabf2535c439UL, 0x86e12c872a4d4e20UL, 0x9969a28bce3e087aUL, 0xfafb2eb79d9c4b55UL, 0x056a4156b6d92cb2UL, 0x5a3ae6a5debea296UL, 0x22a3b026a8292580UL, 0x53c85b3b36ad1581UL, 0xb11e900117b87583UL, 0xc51f3a4a3fe56930UL, 0xe019e1edcf3621bdUL, 0xec811d2591fcba18UL, 0x445b7d4c4d524a1dUL, 0xa8da6069dcaef005UL, 0x58f5cc72309de329UL, 0xd4c062596b7ff570UL, 0xce22ad0339d59f98UL, 0x591cd99747024df8UL, 0x8b90c5aa03187b54UL, 0xf663d27fc356d0f0UL, 0xd8589e9135b56ed5UL, 0x35309651d3d67a1cUL, 0x12f96721cd26732eUL, 0xd28c1c3d441a36acUL, 0x492a946164077f69UL, 0x2d1d73dc6f5f514bUL, 0x6f0a70f40d68d88aUL, 0x60b4b30eca1eac41UL, 0xd36509d83385987dUL, 0x0b3d97490630f6a8UL, 0x9eccc90a96c46577UL, 0xa20ee2c5ad01a87cUL, 0xe49ab55e0e70a3deUL, 0xa4429ca182646ba0UL, 0xda97b446db962f6aUL, 0xcced87d4d7f6de27UL, 0x2ab8185d37a53c46UL, 0x9f25dcefe15bcba6UL, 0xc19c6ef9fea3eb53UL, 0xa764a3931bd884ceUL, 0x2fd2590b817c10f4UL, 0x56a21a6d80743933UL, 0xe573a0bb79ef0d0fUL, 0x155c0ca095dc1e23UL, 0x6c2c4fc694d437e4UL, 0x10364df623053291UL, 0xdd32dfc7836c4267UL, 0x03263f3299bcef6eUL, 0x66f8cd6ae57b6f9dUL, 0x8c35ae2b5be21659UL, 0x31b3c2e21290f87fUL, 0x93bd2027bf915003UL, 0x69460e90220d1b56UL, 0x299e276fae19d328UL, 0x63928c3c53a2432fUL, 0x7082fef8e91b9ed0UL, 0xbc6f792c3eed40f7UL, 0x4c40d537d2de53dbUL, 0x75e8bfae5fc2b262UL, 0x4da9c0d2a541fd0aUL, 0x4e8fffe03cfd1264UL, 0x2620e495696fa7e3UL, 0xe1f0f408b8a98f6cUL, 0xd1aa230fdda6d9c2UL, 0xc7d0109dd1c6288fUL, 0x8a79d04f7487d585UL, 0x4694579ba3710ba2UL, 0x38417f7cfa834f68UL, 0x1d47a4db0a5007e5UL, 0x206c9af1460a643fUL, 0xa128ddf734bd4712UL, 0x8144470672b7232dUL, 0xf2e086cc02105293UL, 0x182de58dbc892b57UL, 0xcaa1f9b0f8931dfbUL, 0x6b892447cc2e5ae9UL, 0xf9dd11850420a43bUL, 0x4be5beb68a243ed6UL, 0x5584255f19c8d65dUL, 0x3b67404e633fa006UL, 0xa68db6766c472a1fUL, 0xf78ac79ab4c97e21UL, 0xc353442e1080aaecUL, 0x9a4f9db95782e714UL, }, { 0xc811a8058c3f55deUL, 0x65f5b43196b50619UL, 0xf74f96b1d6706e43UL, 0x859d1e8bcb43d336UL, 0x5aab8a85ccfa3d84UL, 0xf9c7bf99c295fcfdUL, 0xa21fd5a1de4b630fUL, 0xcdb3ef763b8b456dUL, 0x803f59f87cf7c385UL, 0xb27c73be5f31913cUL, 0x98e3ac6633b04821UL, 0xbf61674c26b8f818UL, 0x0ffbc995c4c130c8UL, 0xaaa0862010761a98UL, 0x6057f342210116aaUL, 0xf63c760c0654cc35UL, 0x2ddb45cc667d9042UL, 0xbcf45a964bd40382UL, 0x68e8a0c3ef3c6f3dUL, 0xa7bd92d269ff73bcUL, 0x290ae20201ed2287UL, 0xb7de34cde885818fUL, 0xd901eea7dd61059bUL, 0xd6fa273219a03553UL, 0xd56f1ae874cccec9UL, 0xea31245c2e83f554UL, 0x7034555da07be499UL, 0xce26d2ac56e7bef7UL, 0xfd161857a5054e38UL, 0x6a0e7da4527436d1UL, 0x5bd86a381cde9ff2UL, 0xcaf7756231770c32UL, 0xb09aaed9e279c8d0UL, 0x5def1091c60674dbUL, 0x111046a2515e5045UL, 0x23536ce4729802fcUL, 0xc50cbcf7f5b63cfaUL, 0x73a16887cd171f03UL, 0x7d2941afd9f28dbdUL, 0x3f5e3eb45a4f3b9dUL, 0x84eefe361b677140UL, 0x3db8e3d3e7076271UL, 0x1a3a28f9f20fd248UL, 0x7ebc7c75b49e7627UL, 0x74e5f293c7eb565cUL, 0x18dcf59e4f478ba4UL, 0x0c6ef44fa9adcb52UL, 0xc699812d98dac760UL, 0x788b06dc6e469d0eUL, 0xfc65f8ea7521ec4eUL, 0x30a5f7219e8e0b55UL, 0x2bec3f65bca57b6bUL, 0xddd04969baf1b75eUL, 0x99904cdbe394ea57UL, 0x14b201d1e6ea40f6UL, 0xbbb0c08241284addUL, 0x50f20463bf8f1dffUL, 0xe8d7f93b93cbacb8UL, 0x4d8cb68e477c86e8UL, 0xc1dd1b3992268e3fUL, 0x7c5aa11209d62fcbUL, 0x2f3d98abdb35c9aeUL, 0x671369562bfd5ff5UL, 0x15c1e16c36cee280UL, 0x1d7eb2edf8f39b17UL, 0xda94d37db00dfe01UL, 0x877bc3ec760b8adaUL, 0xcb8495dfe153ae44UL, 0x05a24773b7b410b3UL, 0x12857b783c32abdfUL, 0x8eb770d06812513bUL, 0x536739b9d2e3e665UL, 0x584d57e271b26468UL, 0xd789c78fc9849725UL, 0xa935bbfa7d1ae102UL, 0x8b1537a3dfa64188UL, 0xd0cd5d9bc378de7aUL, 0x4ac82c9a4d80cfb7UL, 0x42777f1b83bdb620UL, 0x72d2883a1d33bd75UL, 0x5e7a2d4bab6a8f41UL, 0xf4daab6bbb1c95d9UL, 0x905cffe7fd8d31b6UL, 0x83aa6422119b381fUL, 0xc0aefb8442022c49UL, 0xa0f908c663033ae3UL, 0xa428af0804938826UL, 0xade41c341a8a53c7UL, 0xae7121ee77e6a85dUL, 0xc47f5c4a25929e8cUL, 0xb538e9aa55cdd863UL, 0x06377aa9dad8eb29UL, 0xa18ae87bb3279895UL, 0x6edfda6a35e48414UL, 0x6b7d9d19825094a7UL, 0xd41cfa55a4e86cbfUL, 0xe5caedc9ea42c59cUL, 0xa36c351c0e6fc179UL, 0x5181e4de6fabbf89UL, 0xfff0c530184d17d4UL, 0x9d41eb1584045892UL, 0x1c0d525028d73961UL, 0xf178ec180ca8856aUL, 0x9a0571018ef811cdUL, 0x4091a27c3ef5efccUL, 0x19af15239f6329d2UL, 0x347450eff91eb990UL, 0xe11b4a078dd27759UL, 0xb9561de5fc601331UL, 0x912f1f5a2da993c0UL, 0x1654dcb65ba2191aUL, 0x3e2dde098a6b99ebUL, 0x8a66d71e0f82e3feUL, 0x8c51adb7d55a08d7UL, 0x4533e50f8941ff7fUL, 0x02e6dd67bd4859ecUL, 0xe068aaba5df6d52fUL, 0xc24826e3ff4a75a5UL, 0x6c39070d88acddf8UL, 0x6486548c4691a46fUL, 0xd1bebd26135c7c0cUL, 0xb30f93038f15334aUL, 0x82d9849fc1bf9a69UL, 0x9c320ba85420fae4UL, 0xfa528243aff90767UL, 0x9ed4d6cfe968a308UL, 0xb825fd582c44b147UL, 0x9b7691bc5edcb3bbUL, 0xc7ea619048fe6516UL, 0x1063a61f817af233UL, 0x47d538683409a693UL, 0x63c2ce984c6ded30UL, 0x2a9fdfd86c81d91dUL, 0x7b1e3b06032a6694UL, 0x666089ebfbd9fd83UL, 0x0a598ee67375207bUL, 0x07449a140afc495fUL, 0x2ca8a571b6593234UL, 0x1f986f8a45bbc2fbUL, 0x381aa4a050b372c2UL, 0x5423a3add81faf3aUL, 0x17273c0b8b86bb6cUL, 0xfe83258dc869b5a2UL, 0x287902bfd1c980f1UL, 0xf5a94bd66b3837afUL, 0x88800a79b2caba12UL, 0x55504310083b0d4cUL, 0xdf36940e07b9eeb2UL, 0x04d1a7ce6790b2c5UL, 0x612413fff125b4dcUL, 0x26f12b97c52c124fUL, 0x86082351a62f28acUL, 0xef93632f9937e5e7UL, 0x3507b052293a1be6UL, 0xe72c30ae570a9c70UL, 0xd3586041ae1425e0UL, 0xde4574b3d79d4cc4UL, 0x92ba228040c5685aUL, 0xf00b0ca5dc8c271cUL, 0xbe1287f1f69c5a6eUL, 0xf39e317fb1e0dc86UL, 0x495d114020ec342dUL, 0x699b407e3f18cd4bUL, 0xdca3a9d46ad51528UL, 0x0d1d14f279896924UL, 0x0000000000000000UL, 0x593eb75fa196c61eUL, 0x2e4e78160b116bd8UL, 0x6d4ae7b058887f8eUL, 0xe65fd013872e3e06UL, 0x7a6ddbbbd30ec4e2UL, 0xac97fc89caaef1b1UL, 0x09ccb33c1e19dbe1UL, 0x89f3eac462ee1864UL, 0x7770cf49aa87adc6UL, 0x56c57eca6557f6d6UL, 0x03953dda6d6cfb9aUL, 0x36928d884456e07cUL, 0x1eeb8f37959f608dUL, 0x31d6179c4eaaa923UL, 0x6fac3ad7e5c02662UL, 0x43049fa653991456UL, 0xabd3669dc052b8eeUL, 0xaf02c153a7c20a2bUL, 0x3ccb036e3723c007UL, 0x93c9c23d90e1ca2cUL, 0xc33bc65e2f6ed7d3UL, 0x4cff56339758249eUL, 0xb1e94e64325d6aa6UL, 0x37e16d359472420aUL, 0x79f8e661be623f78UL, 0x5214d90402c74413UL, 0x482ef1fdf0c8965bUL, 0x13f69bc5ec1609a9UL, 0x0e88292814e592beUL, 0x4e198b542a107d72UL, 0xccc00fcbebafe71bUL, 0x1b49c844222b703eUL, 0x2564164da840e9d5UL, 0x20c6513e1ff4f966UL, 0xbac3203f910ce8abUL, 0xf2edd1c261c47ef0UL, 0x814cb945acd361f3UL, 0x95feb8944a392105UL, 0x5c9cf02c1622d6adUL, 0x971865f3f77178e9UL, 0xbd87ba2b9bf0a1f4UL, 0x444005b259655d09UL, 0xed75be48247fbc0bUL, 0x7596122e17cff42aUL, 0xb44b091785e97a15UL, 0x966b854e2755da9fUL, 0xeee0839249134791UL, 0x32432a4623c652b9UL, 0xa8465b47ad3e4374UL, 0xf8b45f2412b15e8bUL, 0x2417f6f078644ba3UL, 0xfb2162fe7fdda511UL, 0x4bbbcc279da46dc1UL, 0x0173e0bdd024a276UL, 0x22208c59a2bca08aUL, 0x8fc4906db836f34dUL, 0xe4b90d743a6667eaUL, 0x7147b5e0705f46efUL, 0x2782cb2a1508b039UL, 0xec065ef5f45b1e7dUL, 0x21b5b183cfd05b10UL, 0xdbe733c060295c77UL, 0x9fa73672394c017eUL, 0xcf55321186c31c81UL, 0xd8720e1a0d45a7edUL, 0x3b8f997a3ddf8958UL, 0x3afc79c7edfb2b2eUL, 0xe9a4198643ef0eceUL, 0x5f09cdf67b4e2d37UL, 0x4f6a6be9fa34df04UL, 0xb6add47038a123f9UL, 0x8d224d0a057eaaa1UL, 0xc96248b85c1bf7a8UL, 0xe3fd9760309a2eb5UL, 0x0b2a6e5ba351820dUL, 0xeb42c4e1fea75722UL, 0x948d58299a1d8373UL, 0x7fcf9cc864bad451UL, 0xa55b4fb5d4b72a50UL, 0x08bf5381ce3d7997UL, 0x46a6d8d5e42d04e5UL, 0xd22b80fc7e308796UL, 0x57b69e77b57354a0UL, 0x3969441d8097d0b4UL, 0x3330cafbf3e2f0cfUL, 0xe28e77dde0be8cc3UL, 0x62b12e259c494f46UL, 0xa6ce726fb9dbd1caUL, 0x41e242c1eed14dbaUL, 0x76032ff47aa30fb0UL, }, { 0xe6f87e5c5b711fd0UL, 0x258377800924fa16UL, 0xc849e07e852ea4a8UL, 0x5b4686a18f06c16aUL, 0x0b32e9a2d77b416eUL, 0xabda37a467815c66UL, 0xf61796a81a686676UL, 0xf5dc0b706391954bUL, 0x4862f38db7e64bf1UL, 0xff5c629a68bd85c5UL, 0xcb827da6fcd75795UL, 0x66d36daf69b9f089UL, 0x356c9f74483d83b0UL, 0x7cbcecb1238c99a1UL, 0x36a702ac31c4708dUL, 0x9eb6a8d02fbcdfd6UL, 0x8b19fa51e5b3ae37UL, 0x9ccfb5408a127d0bUL, 0xbc0c78b508208f5aUL, 0xe533e3842288ecedUL, 0xcec2c7d377c15fd2UL, 0xec7817b6505d0f5eUL, 0xb94cc2c08336871dUL, 0x8c205db4cb0b04adUL, 0x763c855b28a0892fUL, 0x588d1b79f6ff3257UL, 0x3fecf69e4311933eUL, 0x0fc0d39f803a18c9UL, 0xee010a26f5f3ad83UL, 0x10efe8f4411979a6UL, 0x5dcda10c7de93a10UL, 0x4a1bee1d1248e92cUL, 0x53bff2db21847339UL, 0xb4f50ccfa6a23d09UL, 0x5fb4bc9cd84798cdUL, 0xe88a2d8b071c56f9UL, 0x7f7771695a756a9cUL, 0xc5f02e71a0ba1ebcUL, 0xa663f9ab4215e672UL, 0x2eb19e22de5fbb78UL, 0x0db9ce0f2594ba14UL, 0x82520e6397664d84UL, 0x2f031e6a0208ea98UL, 0x5c7f2144a1be6bf0UL, 0x7a37cb1cd16362dbUL, 0x83e08e2b4b311c64UL, 0xcf70479bab960e32UL, 0x856ba986b9dee71eUL, 0xb5478c877af56ce9UL, 0xb8fe42885f61d6fdUL, 0x1bdd0156966238c8UL, 0x622157923ef8a92eUL, 0xfc97ff42114476f8UL, 0x9d7d350856452cebUL, 0x4c90c9b0e0a71256UL, 0x2308502dfbcb016cUL, 0x2d7a03faa7a64845UL, 0xf46e8b38bfc6c4abUL, 0xbdbef8fdd477debaUL, 0x3aac4cebc8079b79UL, 0xf09cb105e8879d0cUL, 0x27fa6a10ac8a58cbUL, 0x8960e7c1401d0ceaUL, 0x1a6f811e4a356928UL, 0x90c4fb0773d196ffUL, 0x43501a2f609d0a9fUL, 0xf7a516e0c63f3796UL, 0x1ce4a6b3b8da9252UL, 0x1324752c38e08a9bUL, 0xa5a864733bec154fUL, 0x2bf124575549b33fUL, 0xd766db15440dc5c7UL, 0xa7d179e39e42b792UL, 0xdadf151a61997fd3UL, 0x86a0345ec0271423UL, 0x38d5517b6da939a4UL, 0x6518f077104003b4UL, 0x02791d90a5aea2ddUL, 0x88d267899c4a5d0aUL, 0x930f66df0a2865c2UL, 0x4ee9d4204509b08bUL, 0x325538916685292aUL, 0x412907bfc533a842UL, 0xb27e2b62544dc673UL, 0x6c5304456295e007UL, 0x5af406e95351908aUL, 0x1f2f3b6bc123616fUL, 0xc37b09dc5255e5c6UL, 0x3967d133b1fe6844UL, 0x298839c7f0e711e2UL, 0x409b87f71964f9a2UL, 0xe938adc3db4b0719UL, 0x0c0b4e47f9c3ebf4UL, 0x5534d576d36b8843UL, 0x4610a05aeb8b02d8UL, 0x20c3cdf58232f251UL, 0x6de1840dbec2b1e7UL, 0xa0e8de06b0fa1d08UL, 0x7b854b540d34333bUL, 0x42e29a67bcca5b7fUL, 0xd8a6088ac437dd0eUL, 0xc63bb3a9d943ed81UL, 0x21714dbd5e65a3b1UL, 0x6761ede7b5eea169UL, 0x2431f7c8d573abf6UL, 0xd51fc685e1a3671aUL, 0x5e063cd40410c92dUL, 0x283ab98f2cb04002UL, 0x8febc06cb2f2f790UL, 0x17d64f116fa1d33cUL, 0xe07359f1a99ee4aaUL, 0x784ed68c74cdc006UL, 0x6e2a19d5c73b42daUL, 0x8712b4161c7045c3UL, 0x371582e4ed93216dUL, 0xace390414939f6fcUL, 0x7ec5f12186223b7cUL, 0xc0b094042bac16fbUL, 0xf9d745379a527ebfUL, 0x737c3f2ea3b68168UL, 0x33e7b8d9bad278caUL, 0xa9a32a34c22ffebbUL, 0xe48163ccfedfbd0dUL, 0x8e5940246ea5a670UL, 0x51c6ef4b842ad1e4UL, 0x22bad065279c508cUL, 0xd91488c218608ceeUL, 0x319ea5491f7cda17UL, 0xd394e128134c9c60UL, 0x094bf43272d5e3b3UL, 0x9bf612a5a4aad791UL, 0xccbbda43d26ffd0fUL, 0x34de1f3c946ad250UL, 0x4f5b5468995ee16bUL, 0xdf9faf6fea8f7794UL, 0x2648ea5870dd092bUL, 0xbfc7e56d71d97c67UL, 0xdde6b2ff4f21d549UL, 0x3c276b463ae86003UL, 0x91767b4faf86c71fUL, 0x68a13e7835d4b9a0UL, 0xb68c115f030c9fd4UL, 0x141dd2c916582001UL, 0x983d8f7ddd5324acUL, 0x64aa703fcc175254UL, 0xc2c989948e02b426UL, 0x3e5e76d69f46c2deUL, 0x50746f03587d8004UL, 0x45db3d829272f1e5UL, 0x60584a029b560bf3UL, 0xfbae58a73ffcdc62UL, 0xa15a5e4e6cad4ce8UL, 0x4ba96e55ce1fb8ccUL, 0x08f9747aae82b253UL, 0xc102144cf7fb471bUL, 0x9f042898f3eb8e36UL, 0x068b27adf2effb7aUL, 0xedca97fe8c0a5ebeUL, 0x778e0513f4f7d8cfUL, 0x302c2501c32b8bf7UL, 0x8d92ddfc175c554dUL, 0xf865c57f46052f5fUL, 0xeaf3301ba2b2f424UL, 0xaa68b7ecbbd60d86UL, 0x998f0f350104754cUL, 0x0000000000000000UL, 0xf12e314d34d0ccecUL, 0x710522be061823b5UL, 0xaf280d9930c005c1UL, 0x97fd5ce25d693c65UL, 0x19a41cc633cc9a15UL, 0x95844172f8c79eb8UL, 0xdc5432b7937684a9UL, 0x9436c13a2490cf58UL, 0x802b13f332c8ef59UL, 0xc442ae397ced4f5cUL, 0xfa1cd8efe3ab8d82UL, 0xf2e5ac954d293fd1UL, 0x6ad823e8907a1b7dUL, 0x4d2249f83cf043b6UL, 0x03cb9dd879f9f33dUL, 0xde2d2f2736d82674UL, 0x2a43a41f891ee2dfUL, 0x6f98999d1b6c133aUL, 0xd4ad46cd3df436faUL, 0xbb35df50269825c0UL, 0x964fdcaa813e6d85UL, 0xeb41b0537ee5a5c4UL, 0x0540ba758b160847UL, 0xa41ae43be7bb44afUL, 0xe3b8c429d0671797UL, 0x819993bbee9fbeb9UL, 0xae9a8dd1ec975421UL, 0xf3572cdd917e6e31UL, 0x6393d7dae2aff8ceUL, 0x47a2201237dc5338UL, 0xa32343dec903ee35UL, 0x79fc56c4a89a91e6UL, 0x01b28048dc5751e0UL, 0x1296f564e4b7db7bUL, 0x75f7188351597a12UL, 0xdb6d9552bdce2e33UL, 0x1e9dbb231d74308fUL, 0x520d7293fdd322d9UL, 0xe20a44610c304677UL, 0xfeeee2d2b4ead425UL, 0xca30fdee20800675UL, 0x61eaca4a47015a13UL, 0xe74afe1487264e30UL, 0x2cc883b27bf119a5UL, 0x1664cf59b3f682dcUL, 0xa811aa7c1e78af5bUL, 0x1d5626fb648dc3b2UL, 0xb73e9117df5bce34UL, 0xd05f7cf06ab56f5dUL, 0xfd257f0acd132718UL, 0x574dc8e676c52a9eUL, 0x0739a7e52eb8aa9aUL, 0x5486553e0f3cd9a3UL, 0x56ff48aeaa927b7eUL, 0xbe756525ad8e2d87UL, 0x7d0e6cf9ffdbc841UL, 0x3b1ecca31450ca99UL, 0x6913be30e983e840UL, 0xad511009956ea71cUL, 0xb1b5b6ba2db4354eUL, 0x4469bdca4e25a005UL, 0x15af5281ca0f71e1UL, 0x744598cb8d0e2bf2UL, 0x593f9b312aa863b7UL, 0xefb38a6e29a4fc63UL, 0x6b6aa3a04c2d4a9dUL, 0x3d95eb0ee6bf31e3UL, 0xa291c3961554bfd5UL, 0x18169c8eef9bcbf5UL, 0x115d68bc9d4e2846UL, 0xba875f18facf7420UL, 0xd1edfcb8b6e23ebdUL, 0xb00736f2f1e364aeUL, 0x84d929ce6589b6feUL, 0x70b7a2f6da4f7255UL, 0x0e7253d75c6d4929UL, 0x04f23a3d574159a7UL, 0x0a8069ea0b2c108eUL, 0x49d073c56bb11a11UL, 0x8aab7a1939e4ffd7UL, 0xcd095a0b0e38acefUL, 0xc9fb60365979f548UL, 0x92bde697d67f3422UL, 0xc78933e10514bc61UL, 0xe1c1d9b975c9b54aUL, 0xd2266160cf1bcd80UL, 0x9a4492ed78fd8671UL, 0xb3ccab2a881a9793UL, 0x72cebf667fe1d088UL, 0xd6d45b5d985a9427UL, }, }; CONSTANT_VK u64a sbob512_rc64[12][8] = { { 0xe9daca1eda5b08b1UL, 0x1f7c65c0812fcbebUL, 0x16d0452e43766a2fUL, 0xfcc485758db84e71UL, 0x0169679291e07c4bUL, 0x15d360a4082a42a2UL, 0x234d74cc36747605UL, 0x0745a6f2596580ddUL, }, { 0x1a2f9da98ab5a36fUL, 0xd7b5700f469de34fUL, 0x982b230a72eafef3UL, 0x3101b5160f5ed561UL, 0x5899d6126b17b59aUL, 0xcaa70adbc261b55cUL, 0x56cdcbd71ba2dd55UL, 0xb79bb121700479e6UL, }, { 0xc72fce2bacdc74f5UL, 0x35843d6a28fc390aUL, 0x8b1f9c525f5ef106UL, 0x7b7b29b11475eaf2UL, 0xb19e3590e40fe2d3UL, 0x09db6260373ac9c1UL, 0x31db7a8643f4b6c2UL, 0xb20aba0af5961e99UL, }, { 0xd26615e8b3df1fefUL, 0xdde4715da0e148f9UL, 0x7d3c5c337e858e48UL, 0x3f355e68ad1c729dUL, 0x75d603ed822cd7a9UL, 0xbe0352933313b7d8UL, 0xf137e893a1ea5334UL, 0x2ed1e384bcbe0c22UL, }, { 0x994747adac6bea4bUL, 0x6323a96c0c413f9aUL, 0x4a1086161f1c157fUL, 0xbdff0f80d7359e35UL, 0xa3f53a254717cdbfUL, 0x161a2723b700ffdfUL, 0xf563eaa97ea2567aUL, 0x57fe6c7cfd581760UL, }, { 0xd9d33a1daeae4faeUL, 0xc039307a3bc3a46fUL, 0x6ca44251f9c4662dUL, 0xc68ef09ab49a7f18UL, 0xb4b79a1cb7a6facfUL, 0xb6c6bec2661ff20aUL, 0x354f903672c571bfUL, 0x6e7d64467a4068faUL, }, { 0xecc5aaee160ec7f4UL, 0x540924bffe86ac51UL, 0xc987bfe6c7c69e39UL, 0xc9937a19333e47d3UL, 0x372c822dc5ab9209UL, 0x04054a2883694706UL, 0xf34a3ca24c451735UL, 0x93d4143a4d568688UL, }, { 0xa7c9934d425b1f9bUL, 0x41416e0c02aae703UL, 0x1ede369c71f8b74eUL, 0x9ac4db4d3b44b489UL, 0x90069b92cb2b89f4UL, 0x2fc4a5d12b8dd169UL, 0xd9a8515935c2ac36UL, 0x1ee702bfd40d7fa4UL, }, { 0x9b223116545a8f37UL, 0xde5f16ecd89a4c94UL, 0x244289251b3a7d3aUL, 0x84090de0b755d93cUL, 0xb1ceb2db0b440a80UL, 0x549c07a69a8a2b7bUL, 0x602a1fcb92dc380eUL, 0xdb5a238351446172UL, }, { 0x526f0580a6debeabUL, 0xf3f3e4b248e52a38UL, 0xdb788aff1ce74189UL, 0x0361331b8ae1ff1fUL, 0x4b3369af0267e79fUL, 0xf452763b306c1e7aUL, 0xc3b63b15d1fa9836UL, 0xed9c4598fbc7b474UL, }, { 0xfb89c8efd09ecd7bUL, 0x94fe5a63cdc60230UL, 0x6107abebbb6bfad8UL, 0x7966841421800120UL, 0xcab948eaef711d8aUL, 0x986e477d1dcdbaefUL, 0x5dd86fc04a59a2deUL, 0x1b2df381cda4ca6bUL, }, { 0xba3116f167e78e37UL, 0x7ab14904b08013d2UL, 0x771ddfbc323ca4cdUL, 0x9b9f2130d41220f8UL, 0x86cc91189def805dUL, 0x5228e188aaa41de7UL, 0x991bb2d9d517f4faUL, 0x20d71bf14a92bc48UL, }, }; DECLSPEC void streebog512_init (streebog512_ctx_t *ctx, SHM_TYPE u64a (*s_sbob_sl64)[256]) { ctx->h[0] = 0; ctx->h[1] = 0; ctx->h[2] = 0; ctx->h[3] = 0; ctx->h[4] = 0; ctx->h[5] = 0; ctx->h[6] = 0; ctx->h[7] = 0; ctx->s[0] = 0; ctx->s[1] = 0; ctx->s[2] = 0; ctx->s[3] = 0; ctx->s[4] = 0; ctx->s[5] = 0; ctx->s[6] = 0; ctx->s[7] = 0; ctx->n[0] = 0; ctx->n[1] = 0; ctx->n[2] = 0; ctx->n[3] = 0; ctx->n[4] = 0; ctx->n[5] = 0; ctx->n[6] = 0; ctx->n[7] = 0; ctx->w0[0] = 0; ctx->w0[1] = 0; ctx->w0[2] = 0; ctx->w0[3] = 0; ctx->w1[0] = 0; ctx->w1[1] = 0; ctx->w1[2] = 0; ctx->w1[3] = 0; ctx->w2[0] = 0; ctx->w2[1] = 0; ctx->w2[2] = 0; ctx->w2[3] = 0; ctx->w3[0] = 0; ctx->w3[1] = 0; ctx->w3[2] = 0; ctx->w3[3] = 0; ctx->len = 0; ctx->s_sbob_sl64 = s_sbob_sl64; } DECLSPEC void streebog512_add (u64 *x, const u64 *y) { u64 carry = 0; #ifdef _unroll #pragma unroll #endif for (int i = 7; i >=0; i--) { const u64 left = hc_swap64_S (x[i]); const u64 right = hc_swap64_S (y[i]); const u64 sum = left + right + carry; carry = (sum < left) ? (u64) 1 : (u64) 0; x[i] = hc_swap64_S (sum); } } DECLSPEC void streebog512_g (u64 *h, const u64 *n, const u64 *m, SHM_TYPE u64a (*s_sbob_sl64)[256]) { u64 k[8]; u64 s[8]; u64 t[8]; #ifdef _unroll #pragma unroll #endif for (int i = 0; i < 8; i++) { t[i] = h[i] ^ n[i]; } for (int i = 0; i < 8; i++) { k[i] = SBOG_LPSti64_S; } #ifdef _unroll #pragma unroll #endif for (int i = 0; i < 8; i++) { s[i] = m[i]; } for (int r = 0; r < 12; r++) { #ifdef _unroll #pragma unroll #endif for (int i = 0; i < 8; i++) { t[i] = s[i] ^ k[i]; } #ifdef _unroll #pragma unroll #endif for (int i = 0; i < 8; i++) { s[i] = SBOG_LPSti64_S; } for (int i = 0; i < 8; i++) { t[i] = k[i] ^ sbob512_rc64[r][i]; } #ifdef _unroll #pragma unroll #endif for (int i = 0; i < 8; i++) { k[i] = SBOG_LPSti64_S; } } #ifdef _unroll #pragma unroll #endif for (int i = 0; i < 8; i++) { h[i] ^= s[i] ^ k[i] ^ m[i]; } } DECLSPEC void streebog512_transform (streebog512_ctx_t *ctx, const u32 *w0, const u32 *w1, const u32 *w2, const u32 *w3) { u64 m[8]; m[0] = hl32_to_64_S (w3[2], w3[3]); m[1] = hl32_to_64_S (w3[0], w3[1]); m[2] = hl32_to_64_S (w2[2], w2[3]); m[3] = hl32_to_64_S (w2[0], w2[1]); m[4] = hl32_to_64_S (w1[2], w1[3]); m[5] = hl32_to_64_S (w1[0], w1[1]); m[6] = hl32_to_64_S (w0[2], w0[3]); m[7] = hl32_to_64_S (w0[0], w0[1]); streebog512_g (ctx->h, ctx->n, m, ctx->s_sbob_sl64); u64 counterbuf[8] = { 0 }; counterbuf[7] = 0x0002000000000000UL; streebog512_add (ctx->n, counterbuf); streebog512_add (ctx->s, m); } DECLSPEC void streebog512_update_64 (streebog512_ctx_t *ctx, u32 *w0, u32 *w1, u32 *w2, u32 *w3, const int len) { if (len == 0) return; const int pos = ctx->len & 63; ctx->len += len; if (pos == 0) { ctx->w0[0] = w0[0]; ctx->w0[1] = w0[1]; ctx->w0[2] = w0[2]; ctx->w0[3] = w0[3]; ctx->w1[0] = w1[0]; ctx->w1[1] = w1[1]; ctx->w1[2] = w1[2]; ctx->w1[3] = w1[3]; ctx->w2[0] = w2[0]; ctx->w2[1] = w2[1]; ctx->w2[2] = w2[2]; ctx->w2[3] = w2[3]; ctx->w3[0] = w3[0]; ctx->w3[1] = w3[1]; ctx->w3[2] = w3[2]; ctx->w3[3] = w3[3]; if (len == 64) { streebog512_transform (ctx, ctx->w0, ctx->w1, ctx->w2, ctx->w3); ctx->w0[0] = 0; ctx->w0[1] = 0; ctx->w0[2] = 0; ctx->w0[3] = 0; ctx->w1[0] = 0; ctx->w1[1] = 0; ctx->w1[2] = 0; ctx->w1[3] = 0; ctx->w2[0] = 0; ctx->w2[1] = 0; ctx->w2[2] = 0; ctx->w2[3] = 0; ctx->w3[0] = 0; ctx->w3[1] = 0; ctx->w3[2] = 0; ctx->w3[3] = 0; } } else { if ((pos + len) < 64) { switch_buffer_by_offset_be_S (w0, w1, w2, w3, pos); ctx->w0[0] |= w0[0]; ctx->w0[1] |= w0[1]; ctx->w0[2] |= w0[2]; ctx->w0[3] |= w0[3]; ctx->w1[0] |= w1[0]; ctx->w1[1] |= w1[1]; ctx->w1[2] |= w1[2]; ctx->w1[3] |= w1[3]; ctx->w2[0] |= w2[0]; ctx->w2[1] |= w2[1]; ctx->w2[2] |= w2[2]; ctx->w2[3] |= w2[3]; ctx->w3[0] |= w3[0]; ctx->w3[1] |= w3[1]; ctx->w3[2] |= w3[2]; ctx->w3[3] |= w3[3]; } else { u32 c0[4] = { 0 }; u32 c1[4] = { 0 }; u32 c2[4] = { 0 }; u32 c3[4] = { 0 }; switch_buffer_by_offset_carry_be_S (w0, w1, w2, w3, c0, c1, c2, c3, pos); ctx->w0[0] |= w0[0]; ctx->w0[1] |= w0[1]; ctx->w0[2] |= w0[2]; ctx->w0[3] |= w0[3]; ctx->w1[0] |= w1[0]; ctx->w1[1] |= w1[1]; ctx->w1[2] |= w1[2]; ctx->w1[3] |= w1[3]; ctx->w2[0] |= w2[0]; ctx->w2[1] |= w2[1]; ctx->w2[2] |= w2[2]; ctx->w2[3] |= w2[3]; ctx->w3[0] |= w3[0]; ctx->w3[1] |= w3[1]; ctx->w3[2] |= w3[2]; ctx->w3[3] |= w3[3]; streebog512_transform (ctx, ctx->w0, ctx->w1, ctx->w2, ctx->w3); ctx->w0[0] = c0[0]; ctx->w0[1] = c0[1]; ctx->w0[2] = c0[2]; ctx->w0[3] = c0[3]; ctx->w1[0] = c1[0]; ctx->w1[1] = c1[1]; ctx->w1[2] = c1[2]; ctx->w1[3] = c1[3]; ctx->w2[0] = c2[0]; ctx->w2[1] = c2[1]; ctx->w2[2] = c2[2]; ctx->w2[3] = c2[3]; ctx->w3[0] = c3[0]; ctx->w3[1] = c3[1]; ctx->w3[2] = c3[2]; ctx->w3[3] = c3[3]; } } } DECLSPEC void streebog512_update (streebog512_ctx_t *ctx, const u32 *w, int len) { u32 w0[4]; u32 w1[4]; u32 w2[4]; u32 w3[4]; int off = 0; while (len > 63) { w0[0] = w[off + 0]; w0[1] = w[off + 1]; w0[2] = w[off + 2]; w0[3] = w[off + 3]; w1[0] = w[off + 4]; w1[1] = w[off + 5]; w1[2] = w[off + 6]; w1[3] = w[off + 7]; w2[0] = w[off + 8]; w2[1] = w[off + 9]; w2[2] = w[off + 10]; w2[3] = w[off + 11]; w3[0] = w[off + 12]; w3[1] = w[off + 13]; w3[2] = w[off + 14]; w3[3] = w[off + 15]; off += 16; len -= 64; streebog512_update_64 (ctx, w0, w1, w2, w3, 64); } if (len > 0) { w0[0] = w[off + 0]; w0[1] = w[off + 1]; w0[2] = w[off + 2]; w0[3] = w[off + 3]; w1[0] = w[off + 4]; w1[1] = w[off + 5]; w1[2] = w[off + 6]; w1[3] = w[off + 7]; w2[0] = w[off + 8]; w2[1] = w[off + 9]; w2[2] = w[off + 10]; w2[3] = w[off + 11]; w3[0] = w[off + 12]; w3[1] = w[off + 13]; w3[2] = w[off + 14]; w3[3] = w[off + 15]; streebog512_update_64 (ctx, w0, w1, w2, w3, len); } } DECLSPEC void streebog512_update_swap (streebog512_ctx_t *ctx, const u32 *w, int len) { u32 w0[4]; u32 w1[4]; u32 w2[4]; u32 w3[4]; int off = 0; while (len > 63) { w0[0] = hc_swap32_S (w[off + 0]); w0[1] = hc_swap32_S (w[off + 1]); w0[2] = hc_swap32_S (w[off + 2]); w0[3] = hc_swap32_S (w[off + 3]); w1[0] = hc_swap32_S (w[off + 4]); w1[1] = hc_swap32_S (w[off + 5]); w1[2] = hc_swap32_S (w[off + 6]); w1[3] = hc_swap32_S (w[off + 7]); w2[0] = hc_swap32_S (w[off + 8]); w2[1] = hc_swap32_S (w[off + 9]); w2[2] = hc_swap32_S (w[off + 10]); w2[3] = hc_swap32_S (w[off + 11]); w3[0] = hc_swap32_S (w[off + 12]); w3[1] = hc_swap32_S (w[off + 13]); w3[2] = hc_swap32_S (w[off + 14]); w3[3] = hc_swap32_S (w[off + 15]); off += 16; len -= 64; streebog512_update_64 (ctx, w0, w1, w2, w3, 64); } if (len > 0) { w0[0] = hc_swap32_S (w[off + 0]); w0[1] = hc_swap32_S (w[off + 1]); w0[2] = hc_swap32_S (w[off + 2]); w0[3] = hc_swap32_S (w[off + 3]); w1[0] = hc_swap32_S (w[off + 4]); w1[1] = hc_swap32_S (w[off + 5]); w1[2] = hc_swap32_S (w[off + 6]); w1[3] = hc_swap32_S (w[off + 7]); w2[0] = hc_swap32_S (w[off + 8]); w2[1] = hc_swap32_S (w[off + 9]); w2[2] = hc_swap32_S (w[off + 10]); w2[3] = hc_swap32_S (w[off + 11]); w3[0] = hc_swap32_S (w[off + 12]); w3[1] = hc_swap32_S (w[off + 13]); w3[2] = hc_swap32_S (w[off + 14]); w3[3] = hc_swap32_S (w[off + 15]); streebog512_update_64 (ctx, w0, w1, w2, w3, len); } } DECLSPEC void streebog512_update_global_swap (streebog512_ctx_t *ctx, GLOBAL_AS const u32 *w, int len) { u32 w0[4]; u32 w1[4]; u32 w2[4]; u32 w3[4]; int off = 0; while (len > 63) { w0[0] = hc_swap32_S (w[off + 0]); w0[1] = hc_swap32_S (w[off + 1]); w0[2] = hc_swap32_S (w[off + 2]); w0[3] = hc_swap32_S (w[off + 3]); w1[0] = hc_swap32_S (w[off + 4]); w1[1] = hc_swap32_S (w[off + 5]); w1[2] = hc_swap32_S (w[off + 6]); w1[3] = hc_swap32_S (w[off + 7]); w2[0] = hc_swap32_S (w[off + 8]); w2[1] = hc_swap32_S (w[off + 9]); w2[2] = hc_swap32_S (w[off + 10]); w2[3] = hc_swap32_S (w[off + 11]); w3[0] = hc_swap32_S (w[off + 12]); w3[1] = hc_swap32_S (w[off + 13]); w3[2] = hc_swap32_S (w[off + 14]); w3[3] = hc_swap32_S (w[off + 15]); off += 16; len -= 64; streebog512_update_64 (ctx, w0, w1, w2, w3, 64); } if (len > 0) { w0[0] = hc_swap32_S (w[off + 0]); w0[1] = hc_swap32_S (w[off + 1]); w0[2] = hc_swap32_S (w[off + 2]); w0[3] = hc_swap32_S (w[off + 3]); w1[0] = hc_swap32_S (w[off + 4]); w1[1] = hc_swap32_S (w[off + 5]); w1[2] = hc_swap32_S (w[off + 6]); w1[3] = hc_swap32_S (w[off + 7]); w2[0] = hc_swap32_S (w[off + 8]); w2[1] = hc_swap32_S (w[off + 9]); w2[2] = hc_swap32_S (w[off + 10]); w2[3] = hc_swap32_S (w[off + 11]); w3[0] = hc_swap32_S (w[off + 12]); w3[1] = hc_swap32_S (w[off + 13]); w3[2] = hc_swap32_S (w[off + 14]); w3[3] = hc_swap32_S (w[off + 15]); streebog512_update_64 (ctx, w0, w1, w2, w3, len); } } DECLSPEC void streebog512_final (streebog512_ctx_t *ctx) { const int pos = ctx->len & 63; append_0x01_4x4_S (ctx->w0, ctx->w1, ctx->w2, ctx->w3, pos ^ 3); u64 m[8]; m[0] = hl32_to_64_S (ctx->w3[2], ctx->w3[3]); m[1] = hl32_to_64_S (ctx->w3[0], ctx->w3[1]); m[2] = hl32_to_64_S (ctx->w2[2], ctx->w2[3]); m[3] = hl32_to_64_S (ctx->w2[0], ctx->w2[1]); m[4] = hl32_to_64_S (ctx->w1[2], ctx->w1[3]); m[5] = hl32_to_64_S (ctx->w1[0], ctx->w1[1]); m[6] = hl32_to_64_S (ctx->w0[2], ctx->w0[3]); m[7] = hl32_to_64_S (ctx->w0[0], ctx->w0[1]); streebog512_g (ctx->h, ctx->n, m, ctx->s_sbob_sl64); u64 sizebuf[8] = { 0 }; sizebuf[7] = hc_swap64_S ((u64) (pos << 3)); streebog512_add (ctx->n, sizebuf); streebog512_add (ctx->s, m); const u64 nullbuf[8] = { 0 }; streebog512_g (ctx->h, nullbuf, ctx->n, ctx->s_sbob_sl64); streebog512_g (ctx->h, nullbuf, ctx->s, ctx->s_sbob_sl64); } DECLSPEC void streebog512_hmac_init_64 (streebog512_hmac_ctx_t *ctx, const u32 *w0, const u32 *w1, const u32 *w2, const u32 *w3, SHM_TYPE u64a (*s_sbob_sl64)[256]) { u32 a0[4]; u32 a1[4]; u32 a2[4]; u32 a3[4]; // ipad a0[0] = w0[0] ^ 0x36363636; a0[1] = w0[1] ^ 0x36363636; a0[2] = w0[2] ^ 0x36363636; a0[3] = w0[3] ^ 0x36363636; a1[0] = w1[0] ^ 0x36363636; a1[1] = w1[1] ^ 0x36363636; a1[2] = w1[2] ^ 0x36363636; a1[3] = w1[3] ^ 0x36363636; a2[0] = w2[0] ^ 0x36363636; a2[1] = w2[1] ^ 0x36363636; a2[2] = w2[2] ^ 0x36363636; a2[3] = w2[3] ^ 0x36363636; a3[0] = w3[0] ^ 0x36363636; a3[1] = w3[1] ^ 0x36363636; a3[2] = w3[2] ^ 0x36363636; a3[3] = w3[3] ^ 0x36363636; streebog512_init (&ctx->ipad, s_sbob_sl64); streebog512_update_64 (&ctx->ipad, a0, a1, a2, a3, 64); // opad u32 b0[4]; u32 b1[4]; u32 b2[4]; u32 b3[4]; b0[0] = w0[0] ^ 0x5c5c5c5c; b0[1] = w0[1] ^ 0x5c5c5c5c; b0[2] = w0[2] ^ 0x5c5c5c5c; b0[3] = w0[3] ^ 0x5c5c5c5c; b1[0] = w1[0] ^ 0x5c5c5c5c; b1[1] = w1[1] ^ 0x5c5c5c5c; b1[2] = w1[2] ^ 0x5c5c5c5c; b1[3] = w1[3] ^ 0x5c5c5c5c; b2[0] = w2[0] ^ 0x5c5c5c5c; b2[1] = w2[1] ^ 0x5c5c5c5c; b2[2] = w2[2] ^ 0x5c5c5c5c; b2[3] = w2[3] ^ 0x5c5c5c5c; b3[0] = w3[0] ^ 0x5c5c5c5c; b3[1] = w3[1] ^ 0x5c5c5c5c; b3[2] = w3[2] ^ 0x5c5c5c5c; b3[3] = w3[3] ^ 0x5c5c5c5c; streebog512_init (&ctx->opad, s_sbob_sl64); streebog512_update_64 (&ctx->opad, b0, b1, b2, b3, 64); } DECLSPEC void streebog512_hmac_init (streebog512_hmac_ctx_t *ctx, const u32 *w, const int len, SHM_TYPE u64a (*s_sbob_sl64)[256]) { u32 w0[4]; u32 w1[4]; u32 w2[4]; u32 w3[4]; if (len > 64) { streebog512_ctx_t tmp; streebog512_init (&tmp, s_sbob_sl64); streebog512_update (&tmp, w, len); streebog512_final (&tmp); w0[0] = h32_from_64_S (tmp.h[7]); w0[1] = l32_from_64_S (tmp.h[7]); w0[2] = h32_from_64_S (tmp.h[6]); w0[3] = l32_from_64_S (tmp.h[6]); w1[0] = h32_from_64_S (tmp.h[5]); w1[1] = l32_from_64_S (tmp.h[5]); w1[2] = h32_from_64_S (tmp.h[4]); w1[3] = l32_from_64_S (tmp.h[4]); w2[0] = h32_from_64_S (tmp.h[3]); w2[1] = l32_from_64_S (tmp.h[3]); w2[2] = h32_from_64_S (tmp.h[2]); w2[3] = l32_from_64_S (tmp.h[2]); w3[0] = h32_from_64_S (tmp.h[1]); w3[1] = l32_from_64_S (tmp.h[1]); w3[2] = h32_from_64_S (tmp.h[0]); w3[3] = l32_from_64_S (tmp.h[0]); } else { w0[0] = w[ 0]; w0[1] = w[ 1]; w0[2] = w[ 2]; w0[3] = w[ 3]; w1[0] = w[ 4]; w1[1] = w[ 5]; w1[2] = w[ 6]; w1[3] = w[ 7]; w2[0] = w[ 8]; w2[1] = w[ 9]; w2[2] = w[10]; w2[3] = w[11]; w3[0] = w[12]; w3[1] = w[13]; w3[2] = w[14]; w3[3] = w[15]; } streebog512_hmac_init_64 (ctx, w0, w1, w2, w3, s_sbob_sl64); } DECLSPEC void streebog512_hmac_init_swap (streebog512_hmac_ctx_t *ctx, const u32 *w, const int len, SHM_TYPE u64a (*s_sbob_sl64)[256]) { u32 w0[4]; u32 w1[4]; u32 w2[4]; u32 w3[4]; if (len > 64) { streebog512_ctx_t tmp; streebog512_init (&tmp, s_sbob_sl64); streebog512_update_swap (&tmp, w, len); streebog512_final (&tmp); w0[0] = h32_from_64_S (tmp.h[7]); w0[1] = l32_from_64_S (tmp.h[7]); w0[2] = h32_from_64_S (tmp.h[6]); w0[3] = l32_from_64_S (tmp.h[6]); w1[0] = h32_from_64_S (tmp.h[5]); w1[1] = l32_from_64_S (tmp.h[5]); w1[2] = h32_from_64_S (tmp.h[4]); w1[3] = l32_from_64_S (tmp.h[4]); w2[0] = h32_from_64_S (tmp.h[3]); w2[1] = l32_from_64_S (tmp.h[3]); w2[2] = h32_from_64_S (tmp.h[2]); w2[3] = l32_from_64_S (tmp.h[2]); w3[0] = h32_from_64_S (tmp.h[1]); w3[1] = l32_from_64_S (tmp.h[1]); w3[2] = h32_from_64_S (tmp.h[0]); w3[3] = l32_from_64_S (tmp.h[0]); } else { w0[0] = hc_swap32_S (w[ 0]); w0[1] = hc_swap32_S (w[ 1]); w0[2] = hc_swap32_S (w[ 2]); w0[3] = hc_swap32_S (w[ 3]); w1[0] = hc_swap32_S (w[ 4]); w1[1] = hc_swap32_S (w[ 5]); w1[2] = hc_swap32_S (w[ 6]); w1[3] = hc_swap32_S (w[ 7]); w2[0] = hc_swap32_S (w[ 8]); w2[1] = hc_swap32_S (w[ 9]); w2[2] = hc_swap32_S (w[10]); w2[3] = hc_swap32_S (w[11]); w3[0] = hc_swap32_S (w[12]); w3[1] = hc_swap32_S (w[13]); w3[2] = hc_swap32_S (w[14]); w3[3] = hc_swap32_S (w[15]); } streebog512_hmac_init_64 (ctx, w0, w1, w2, w3, s_sbob_sl64); } DECLSPEC void streebog512_hmac_update_64 (streebog512_hmac_ctx_t *ctx, u32 *w0, u32 *w1, u32 *w2, u32 *w3, const int len) { streebog512_update_64 (&ctx->ipad, w0, w1, w2, w3, len); } DECLSPEC void streebog512_hmac_update (streebog512_hmac_ctx_t *ctx, const u32 *w, const int len) { streebog512_update (&ctx->ipad, w, len); } DECLSPEC void streebog512_hmac_update_swap (streebog512_hmac_ctx_t *ctx, const u32 *w, const int len) { streebog512_update_swap (&ctx->ipad, w, len); } DECLSPEC void streebog512_hmac_update_global_swap (streebog512_hmac_ctx_t *ctx, GLOBAL_AS const u32 *w, const int len) { streebog512_update_global_swap (&ctx->ipad, w, len); } DECLSPEC void streebog512_hmac_final (streebog512_hmac_ctx_t *ctx) { streebog512_final (&ctx->ipad); ctx->opad.w0[0] = h32_from_64_S (ctx->ipad.h[7]); ctx->opad.w0[1] = l32_from_64_S (ctx->ipad.h[7]); ctx->opad.w0[2] = h32_from_64_S (ctx->ipad.h[6]); ctx->opad.w0[3] = l32_from_64_S (ctx->ipad.h[6]); ctx->opad.w1[0] = h32_from_64_S (ctx->ipad.h[5]); ctx->opad.w1[1] = l32_from_64_S (ctx->ipad.h[5]); ctx->opad.w1[2] = h32_from_64_S (ctx->ipad.h[4]); ctx->opad.w1[3] = l32_from_64_S (ctx->ipad.h[4]); ctx->opad.w2[0] = h32_from_64_S (ctx->ipad.h[3]); ctx->opad.w2[1] = l32_from_64_S (ctx->ipad.h[3]); ctx->opad.w2[2] = h32_from_64_S (ctx->ipad.h[2]); ctx->opad.w2[3] = l32_from_64_S (ctx->ipad.h[2]); ctx->opad.w3[0] = h32_from_64_S (ctx->ipad.h[1]); ctx->opad.w3[1] = l32_from_64_S (ctx->ipad.h[1]); ctx->opad.w3[2] = h32_from_64_S (ctx->ipad.h[0]); ctx->opad.w3[3] = l32_from_64_S (ctx->ipad.h[0]); ctx->opad.len = 0; streebog512_transform (&ctx->opad, ctx->opad.w0, ctx->opad.w1, ctx->opad.w2, ctx->opad.w3); ctx->opad.w0[0] = 0; ctx->opad.w0[1] = 0; ctx->opad.w0[2] = 0; ctx->opad.w0[3] = 0; ctx->opad.w1[0] = 0; ctx->opad.w1[1] = 0; ctx->opad.w1[2] = 0; ctx->opad.w1[3] = 0; ctx->opad.w2[0] = 0; ctx->opad.w2[1] = 0; ctx->opad.w2[2] = 0; ctx->opad.w2[3] = 0; ctx->opad.w3[0] = 0; ctx->opad.w3[1] = 0; ctx->opad.w3[2] = 0; ctx->opad.w3[3] = 0; streebog512_final (&ctx->opad); } DECLSPEC void streebog512_init_vector (streebog512_ctx_vector_t *ctx, SHM_TYPE u64a (*s_sbob_sl64)[256]) { ctx->h[0] = 0; ctx->h[1] = 0; ctx->h[2] = 0; ctx->h[3] = 0; ctx->h[4] = 0; ctx->h[5] = 0; ctx->h[6] = 0; ctx->h[7] = 0; ctx->s[0] = 0; ctx->s[1] = 0; ctx->s[2] = 0; ctx->s[3] = 0; ctx->s[4] = 0; ctx->s[5] = 0; ctx->s[6] = 0; ctx->s[7] = 0; ctx->n[0] = 0; ctx->n[1] = 0; ctx->n[2] = 0; ctx->n[3] = 0; ctx->n[4] = 0; ctx->n[5] = 0; ctx->n[6] = 0; ctx->n[7] = 0; ctx->w0[0] = 0; ctx->w0[1] = 0; ctx->w0[2] = 0; ctx->w0[3] = 0; ctx->w1[0] = 0; ctx->w1[1] = 0; ctx->w1[2] = 0; ctx->w1[3] = 0; ctx->w2[0] = 0; ctx->w2[1] = 0; ctx->w2[2] = 0; ctx->w2[3] = 0; ctx->w3[0] = 0; ctx->w3[1] = 0; ctx->w3[2] = 0; ctx->w3[3] = 0; ctx->len = 0; ctx->s_sbob_sl64 = s_sbob_sl64; } DECLSPEC void streebog512_add_vector (u64x *x, const u64x *y) { u64x carry = 0; #ifdef _unroll #pragma unroll #endif for (int i = 7; i >=0; i--) { const u64x left = hc_swap64 (x[i]); const u64x right = hc_swap64 (y[i]); const u64x sum = left + right + carry; carry = (sum < left) ? make_u64x (1) : make_u64x (0); x[i] = hc_swap64 (sum); } } DECLSPEC void streebog512_g_vector (u64x *h, const u64x *n, const u64x *m, SHM_TYPE u64a (*s_sbob_sl64)[256]) { u64x k[8]; u64x s[8]; u64x t[8]; #ifdef _unroll #pragma unroll #endif for (int i = 0; i < 8; i++) { t[i] = h[i] ^ n[i]; } for (int i = 0; i < 8; i++) { k[i] = SBOG_LPSti64; } #ifdef _unroll #pragma unroll #endif for (int i = 0; i < 8; i++) { s[i] = m[i]; } for (int r = 0; r < 12; r++) { #ifdef _unroll #pragma unroll #endif for (int i = 0; i < 8; i++) { t[i] = s[i] ^ k[i]; } #ifdef _unroll #pragma unroll #endif for (int i = 0; i < 8; i++) { s[i] = SBOG_LPSti64; } for (int i = 0; i < 8; i++) { t[i] = k[i] ^ sbob512_rc64[r][i]; } #ifdef _unroll #pragma unroll #endif for (int i = 0; i < 8; i++) { k[i] = SBOG_LPSti64; } } #ifdef _unroll #pragma unroll #endif for (int i = 0; i < 8; i++) { h[i] ^= s[i] ^ k[i] ^ m[i]; } } DECLSPEC void streebog512_transform_vector (streebog512_ctx_vector_t *ctx, const u32x *w0, const u32x *w1, const u32x *w2, const u32x *w3) { u64x m[8]; m[0] = hl32_to_64 (w3[2], w3[3]); m[1] = hl32_to_64 (w3[0], w3[1]); m[2] = hl32_to_64 (w2[2], w2[3]); m[3] = hl32_to_64 (w2[0], w2[1]); m[4] = hl32_to_64 (w1[2], w1[3]); m[5] = hl32_to_64 (w1[0], w1[1]); m[6] = hl32_to_64 (w0[2], w0[3]); m[7] = hl32_to_64 (w0[0], w0[1]); streebog512_g_vector (ctx->h, ctx->n, m, ctx->s_sbob_sl64); u64x counterbuf[8] = { 0 }; counterbuf[7] = 0x0002000000000000UL; streebog512_add_vector (ctx->n, counterbuf); streebog512_add_vector (ctx->s, m); } DECLSPEC void streebog512_update_vector_64 (streebog512_ctx_vector_t *ctx, u32x *w0, u32x *w1, u32x *w2, u32x *w3, const int len) { if (len == 0) return; const int pos = ctx->len & 63; ctx->len += len; if (pos == 0) { ctx->w0[0] = w0[0]; ctx->w0[1] = w0[1]; ctx->w0[2] = w0[2]; ctx->w0[3] = w0[3]; ctx->w1[0] = w1[0]; ctx->w1[1] = w1[1]; ctx->w1[2] = w1[2]; ctx->w1[3] = w1[3]; ctx->w2[0] = w2[0]; ctx->w2[1] = w2[1]; ctx->w2[2] = w2[2]; ctx->w2[3] = w2[3]; ctx->w3[0] = w3[0]; ctx->w3[1] = w3[1]; ctx->w3[2] = w3[2]; ctx->w3[3] = w3[3]; if (len == 64) { streebog512_transform_vector (ctx, ctx->w0, ctx->w1, ctx->w2, ctx->w3); ctx->w0[0] = 0; ctx->w0[1] = 0; ctx->w0[2] = 0; ctx->w0[3] = 0; ctx->w1[0] = 0; ctx->w1[1] = 0; ctx->w1[2] = 0; ctx->w1[3] = 0; ctx->w2[0] = 0; ctx->w2[1] = 0; ctx->w2[2] = 0; ctx->w2[3] = 0; ctx->w3[0] = 0; ctx->w3[1] = 0; ctx->w3[2] = 0; ctx->w3[3] = 0; } } else { if ((pos + len) < 64) { switch_buffer_by_offset_be (w0, w1, w2, w3, pos); ctx->w0[0] |= w0[0]; ctx->w0[1] |= w0[1]; ctx->w0[2] |= w0[2]; ctx->w0[3] |= w0[3]; ctx->w1[0] |= w1[0]; ctx->w1[1] |= w1[1]; ctx->w1[2] |= w1[2]; ctx->w1[3] |= w1[3]; ctx->w2[0] |= w2[0]; ctx->w2[1] |= w2[1]; ctx->w2[2] |= w2[2]; ctx->w2[3] |= w2[3]; ctx->w3[0] |= w3[0]; ctx->w3[1] |= w3[1]; ctx->w3[2] |= w3[2]; ctx->w3[3] |= w3[3]; } else { u32x c0[4] = { 0 }; u32x c1[4] = { 0 }; u32x c2[4] = { 0 }; u32x c3[4] = { 0 }; switch_buffer_by_offset_carry_be (w0, w1, w2, w3, c0, c1, c2, c3, pos); ctx->w0[0] |= w0[0]; ctx->w0[1] |= w0[1]; ctx->w0[2] |= w0[2]; ctx->w0[3] |= w0[3]; ctx->w1[0] |= w1[0]; ctx->w1[1] |= w1[1]; ctx->w1[2] |= w1[2]; ctx->w1[3] |= w1[3]; ctx->w2[0] |= w2[0]; ctx->w2[1] |= w2[1]; ctx->w2[2] |= w2[2]; ctx->w2[3] |= w2[3]; ctx->w3[0] |= w3[0]; ctx->w3[1] |= w3[1]; ctx->w3[2] |= w3[2]; ctx->w3[3] |= w3[3]; streebog512_transform_vector (ctx, ctx->w0, ctx->w1, ctx->w2, ctx->w3); ctx->w0[0] = c0[0]; ctx->w0[1] = c0[1]; ctx->w0[2] = c0[2]; ctx->w0[3] = c0[3]; ctx->w1[0] = c1[0]; ctx->w1[1] = c1[1]; ctx->w1[2] = c1[2]; ctx->w1[3] = c1[3]; ctx->w2[0] = c2[0]; ctx->w2[1] = c2[1]; ctx->w2[2] = c2[2]; ctx->w2[3] = c2[3]; ctx->w3[0] = c3[0]; ctx->w3[1] = c3[1]; ctx->w3[2] = c3[2]; ctx->w3[3] = c3[3]; } } } DECLSPEC void streebog512_update_vector (streebog512_ctx_vector_t *ctx, const u32x *w, int len) { u32x w0[4]; u32x w1[4]; u32x w2[4]; u32x w3[4]; int off = 0; while (len > 63) { w0[0] = w[off + 0]; w0[1] = w[off + 1]; w0[2] = w[off + 2]; w0[3] = w[off + 3]; w1[0] = w[off + 4]; w1[1] = w[off + 5]; w1[2] = w[off + 6]; w1[3] = w[off + 7]; w2[0] = w[off + 8]; w2[1] = w[off + 9]; w2[2] = w[off + 10]; w2[3] = w[off + 11]; w3[0] = w[off + 12]; w3[1] = w[off + 13]; w3[2] = w[off + 14]; w3[3] = w[off + 15]; off += 16; len -= 64; streebog512_update_vector_64 (ctx, w0, w1, w2, w3, 64); } if (len > 0) { w0[0] = w[off + 0]; w0[1] = w[off + 1]; w0[2] = w[off + 2]; w0[3] = w[off + 3]; w1[0] = w[off + 4]; w1[1] = w[off + 5]; w1[2] = w[off + 6]; w1[3] = w[off + 7]; w2[0] = w[off + 8]; w2[1] = w[off + 9]; w2[2] = w[off + 10]; w2[3] = w[off + 11]; w3[0] = w[off + 12]; w3[1] = w[off + 13]; w3[2] = w[off + 14]; w3[3] = w[off + 15]; streebog512_update_vector_64 (ctx, w0, w1, w2, w3, len); } } DECLSPEC void streebog512_update_vector_swap (streebog512_ctx_vector_t *ctx, const u32x *w, int len) { u32x w0[4]; u32x w1[4]; u32x w2[4]; u32x w3[4]; int off = 0; while (len > 63) { w0[0] = hc_swap32 (w[off + 0]); w0[1] = hc_swap32 (w[off + 1]); w0[2] = hc_swap32 (w[off + 2]); w0[3] = hc_swap32 (w[off + 3]); w1[0] = hc_swap32 (w[off + 4]); w1[1] = hc_swap32 (w[off + 5]); w1[2] = hc_swap32 (w[off + 6]); w1[3] = hc_swap32 (w[off + 7]); w2[0] = hc_swap32 (w[off + 8]); w2[1] = hc_swap32 (w[off + 9]); w2[2] = hc_swap32 (w[off + 10]); w2[3] = hc_swap32 (w[off + 11]); w3[0] = hc_swap32 (w[off + 12]); w3[1] = hc_swap32 (w[off + 13]); w3[2] = hc_swap32 (w[off + 14]); w3[3] = hc_swap32 (w[off + 15]); off += 16; len -= 64; streebog512_update_vector_64 (ctx, w0, w1, w2, w3, 64); } if (len > 0) { w0[0] = hc_swap32 (w[off + 0]); w0[1] = hc_swap32 (w[off + 1]); w0[2] = hc_swap32 (w[off + 2]); w0[3] = hc_swap32 (w[off + 3]); w1[0] = hc_swap32 (w[off + 4]); w1[1] = hc_swap32 (w[off + 5]); w1[2] = hc_swap32 (w[off + 6]); w1[3] = hc_swap32 (w[off + 7]); w2[0] = hc_swap32 (w[off + 8]); w2[1] = hc_swap32 (w[off + 9]); w2[2] = hc_swap32 (w[off + 10]); w2[3] = hc_swap32 (w[off + 11]); w3[0] = hc_swap32 (w[off + 12]); w3[1] = hc_swap32 (w[off + 13]); w3[2] = hc_swap32 (w[off + 14]); w3[3] = hc_swap32 (w[off + 15]); streebog512_update_vector_64 (ctx, w0, w1, w2, w3, len); } } DECLSPEC void streebog512_final_vector (streebog512_ctx_vector_t *ctx) { const int pos = ctx->len & 63; append_0x01_4x4_VV (ctx->w0, ctx->w1, ctx->w2, ctx->w3, pos ^ 3); u64x m[8]; m[0] = hl32_to_64 (ctx->w3[2], ctx->w3[3]); m[1] = hl32_to_64 (ctx->w3[0], ctx->w3[1]); m[2] = hl32_to_64 (ctx->w2[2], ctx->w2[3]); m[3] = hl32_to_64 (ctx->w2[0], ctx->w2[1]); m[4] = hl32_to_64 (ctx->w1[2], ctx->w1[3]); m[5] = hl32_to_64 (ctx->w1[0], ctx->w1[1]); m[6] = hl32_to_64 (ctx->w0[2], ctx->w0[3]); m[7] = hl32_to_64 (ctx->w0[0], ctx->w0[1]); streebog512_g_vector (ctx->h, ctx->n, m, ctx->s_sbob_sl64); u64x sizebuf[8] = { 0 }; sizebuf[7] = hc_swap64 (make_u64x (pos << 3)); streebog512_add_vector (ctx->n, sizebuf); streebog512_add_vector (ctx->s, m); const u64x nullbuf[8] = { 0 }; streebog512_g_vector (ctx->h, nullbuf, ctx->n, ctx->s_sbob_sl64); streebog512_g_vector (ctx->h, nullbuf, ctx->s, ctx->s_sbob_sl64); } DECLSPEC void streebog512_hmac_init_vector_64 (streebog512_hmac_ctx_vector_t *ctx, const u32x *w0, const u32x *w1, const u32x *w2, const u32x *w3, SHM_TYPE u64a (*s_sbob_sl64)[256]) { u32x a0[4]; u32x a1[4]; u32x a2[4]; u32x a3[4]; // ipad a0[0] = w0[0] ^ 0x36363636; a0[1] = w0[1] ^ 0x36363636; a0[2] = w0[2] ^ 0x36363636; a0[3] = w0[3] ^ 0x36363636; a1[0] = w1[0] ^ 0x36363636; a1[1] = w1[1] ^ 0x36363636; a1[2] = w1[2] ^ 0x36363636; a1[3] = w1[3] ^ 0x36363636; a2[0] = w2[0] ^ 0x36363636; a2[1] = w2[1] ^ 0x36363636; a2[2] = w2[2] ^ 0x36363636; a2[3] = w2[3] ^ 0x36363636; a3[0] = w3[0] ^ 0x36363636; a3[1] = w3[1] ^ 0x36363636; a3[2] = w3[2] ^ 0x36363636; a3[3] = w3[3] ^ 0x36363636; streebog512_init_vector (&ctx->ipad, s_sbob_sl64); streebog512_update_vector_64 (&ctx->ipad, a0, a1, a2, a3, 64); // opad u32x b0[4]; u32x b1[4]; u32x b2[4]; u32x b3[4]; b0[0] = w0[0] ^ 0x5c5c5c5c; b0[1] = w0[1] ^ 0x5c5c5c5c; b0[2] = w0[2] ^ 0x5c5c5c5c; b0[3] = w0[3] ^ 0x5c5c5c5c; b1[0] = w1[0] ^ 0x5c5c5c5c; b1[1] = w1[1] ^ 0x5c5c5c5c; b1[2] = w1[2] ^ 0x5c5c5c5c; b1[3] = w1[3] ^ 0x5c5c5c5c; b2[0] = w2[0] ^ 0x5c5c5c5c; b2[1] = w2[1] ^ 0x5c5c5c5c; b2[2] = w2[2] ^ 0x5c5c5c5c; b2[3] = w2[3] ^ 0x5c5c5c5c; b3[0] = w3[0] ^ 0x5c5c5c5c; b3[1] = w3[1] ^ 0x5c5c5c5c; b3[2] = w3[2] ^ 0x5c5c5c5c; b3[3] = w3[3] ^ 0x5c5c5c5c; streebog512_init_vector (&ctx->opad, s_sbob_sl64); streebog512_update_vector_64 (&ctx->opad, b0, b1, b2, b3, 64); } DECLSPEC void streebog512_hmac_init_vector (streebog512_hmac_ctx_vector_t *ctx, const u32x *w, const int len, SHM_TYPE u64a (*s_sbob_sl64)[256]) { u32x w0[4]; u32x w1[4]; u32x w2[4]; u32x w3[4]; if (len > 64) { streebog512_ctx_vector_t tmp; streebog512_init_vector (&tmp, s_sbob_sl64); streebog512_update_vector (&tmp, w, len); streebog512_final_vector (&tmp); w0[0] = h32_from_64 (tmp.h[7]); w0[1] = l32_from_64 (tmp.h[7]); w0[2] = h32_from_64 (tmp.h[6]); w0[3] = l32_from_64 (tmp.h[6]); w1[0] = h32_from_64 (tmp.h[5]); w1[1] = l32_from_64 (tmp.h[5]); w1[2] = h32_from_64 (tmp.h[4]); w1[3] = l32_from_64 (tmp.h[4]); w2[0] = h32_from_64 (tmp.h[3]); w2[1] = l32_from_64 (tmp.h[3]); w2[2] = h32_from_64 (tmp.h[2]); w2[3] = l32_from_64 (tmp.h[2]); w3[0] = h32_from_64 (tmp.h[1]); w3[1] = l32_from_64 (tmp.h[1]); w3[2] = h32_from_64 (tmp.h[0]); w3[3] = l32_from_64 (tmp.h[0]); } else { w0[0] = w[ 0]; w0[1] = w[ 1]; w0[2] = w[ 2]; w0[3] = w[ 3]; w1[0] = w[ 4]; w1[1] = w[ 5]; w1[2] = w[ 6]; w1[3] = w[ 7]; w2[0] = w[ 8]; w2[1] = w[ 9]; w2[2] = w[10]; w2[3] = w[11]; w3[0] = w[12]; w3[1] = w[13]; w3[2] = w[14]; w3[3] = w[15]; } streebog512_hmac_init_vector_64 (ctx, w0, w1, w2, w3, s_sbob_sl64); } DECLSPEC void streebog512_hmac_init_vector_swap (streebog512_hmac_ctx_vector_t *ctx, const u32x *w, const int len, SHM_TYPE u64a (*s_sbob_sl64)[256]) { u32x w0[4]; u32x w1[4]; u32x w2[4]; u32x w3[4]; if (len > 64) { streebog512_ctx_vector_t tmp; streebog512_init_vector (&tmp, s_sbob_sl64); streebog512_update_vector_swap (&tmp, w, len); streebog512_final_vector (&tmp); w0[0] = h32_from_64 (tmp.h[7]); w0[1] = l32_from_64 (tmp.h[7]); w0[2] = h32_from_64 (tmp.h[6]); w0[3] = l32_from_64 (tmp.h[6]); w1[0] = h32_from_64 (tmp.h[5]); w1[1] = l32_from_64 (tmp.h[5]); w1[2] = h32_from_64 (tmp.h[4]); w1[3] = l32_from_64 (tmp.h[4]); w2[0] = h32_from_64 (tmp.h[3]); w2[1] = l32_from_64 (tmp.h[3]); w2[2] = h32_from_64 (tmp.h[2]); w2[3] = l32_from_64 (tmp.h[2]); w3[0] = h32_from_64 (tmp.h[1]); w3[1] = l32_from_64 (tmp.h[1]); w3[2] = h32_from_64 (tmp.h[0]); w3[3] = l32_from_64 (tmp.h[0]); } else { w0[0] = hc_swap32 (w[ 0]); w0[1] = hc_swap32 (w[ 1]); w0[2] = hc_swap32 (w[ 2]); w0[3] = hc_swap32 (w[ 3]); w1[0] = hc_swap32 (w[ 4]); w1[1] = hc_swap32 (w[ 5]); w1[2] = hc_swap32 (w[ 6]); w1[3] = hc_swap32 (w[ 7]); w2[0] = hc_swap32 (w[ 8]); w2[1] = hc_swap32 (w[ 9]); w2[2] = hc_swap32 (w[10]); w2[3] = hc_swap32 (w[11]); w3[0] = hc_swap32 (w[12]); w3[1] = hc_swap32 (w[13]); w3[2] = hc_swap32 (w[14]); w3[3] = hc_swap32 (w[15]); } streebog512_hmac_init_vector_64 (ctx, w0, w1, w2, w3, s_sbob_sl64); } DECLSPEC void streebog512_hmac_update_vector (streebog512_hmac_ctx_vector_t *ctx, const u32x *w, const int len) { streebog512_update_vector (&ctx->ipad, w, len); } DECLSPEC void streebog512_hmac_update_vector_swap (streebog512_hmac_ctx_vector_t *ctx, const u32x *w, const int len) { streebog512_update_vector_swap (&ctx->ipad, w, len); } DECLSPEC void streebog512_hmac_final_vector (streebog512_hmac_ctx_vector_t *ctx) { streebog512_final_vector (&ctx->ipad); ctx->opad.w0[0] = h32_from_64 (ctx->ipad.h[7]); ctx->opad.w0[1] = l32_from_64 (ctx->ipad.h[7]); ctx->opad.w0[2] = h32_from_64 (ctx->ipad.h[6]); ctx->opad.w0[3] = l32_from_64 (ctx->ipad.h[6]); ctx->opad.w1[0] = h32_from_64 (ctx->ipad.h[5]); ctx->opad.w1[1] = l32_from_64 (ctx->ipad.h[5]); ctx->opad.w1[2] = h32_from_64 (ctx->ipad.h[4]); ctx->opad.w1[3] = l32_from_64 (ctx->ipad.h[4]); ctx->opad.w2[0] = h32_from_64 (ctx->ipad.h[3]); ctx->opad.w2[1] = l32_from_64 (ctx->ipad.h[3]); ctx->opad.w2[2] = h32_from_64 (ctx->ipad.h[2]); ctx->opad.w2[3] = l32_from_64 (ctx->ipad.h[2]); ctx->opad.w3[0] = h32_from_64 (ctx->ipad.h[1]); ctx->opad.w3[1] = l32_from_64 (ctx->ipad.h[1]); ctx->opad.w3[2] = h32_from_64 (ctx->ipad.h[0]); ctx->opad.w3[3] = l32_from_64 (ctx->ipad.h[0]); ctx->opad.len = 0; streebog512_transform_vector (&ctx->opad, ctx->opad.w0, ctx->opad.w1, ctx->opad.w2, ctx->opad.w3); ctx->opad.w0[0] = 0; ctx->opad.w0[1] = 0; ctx->opad.w0[2] = 0; ctx->opad.w0[3] = 0; ctx->opad.w1[0] = 0; ctx->opad.w1[1] = 0; ctx->opad.w1[2] = 0; ctx->opad.w1[3] = 0; ctx->opad.w2[0] = 0; ctx->opad.w2[1] = 0; ctx->opad.w2[2] = 0; ctx->opad.w2[3] = 0; ctx->opad.w3[0] = 0; ctx->opad.w3[1] = 0; ctx->opad.w3[2] = 0; ctx->opad.w3[3] = 0; streebog512_final_vector (&ctx->opad); }
OpenCL
4
Masha/hashcat
OpenCL/inc_hash_streebog512.cl
[ "MIT" ]
--TEST-- Reflection and Traits --FILE-- <?php abstract class foo { } trait bar { } final class baz { } $x = new ReflectionClass('foo'); var_dump($x->isTrait()); $x = new ReflectionClass('bar'); var_dump($x->isTrait()); $x = new ReflectionClass('baz'); var_dump($x->isTrait()); ?> --EXPECT-- bool(false) bool(true) bool(false)
PHP
4
thiagooak/php-src
ext/reflection/tests/traits003.phpt
[ "PHP-3.01" ]
package com.baeldung.elementcollection.model; import javax.persistence.Embeddable; import java.util.Objects; @Embeddable public class Phone { private String type; private String areaCode; private String number; public Phone() { } public Phone(String type, String areaCode, String number) { this.type = type; this.areaCode = areaCode; this.number = number; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getAreaCode() { return areaCode; } public void setAreaCode(String areaCode) { this.areaCode = areaCode; } public String getNumber() { return number; } public void setNumber(String number) { this.number = number; } @Override public boolean equals(Object o) { if (this == o) { return true; } if (!(o instanceof Phone)) { return false; } Phone phone = (Phone) o; return getType().equals(phone.getType()) && getAreaCode().equals(phone.getAreaCode()) && getNumber().equals(phone.getNumber()); } @Override public int hashCode() { return Objects.hash(getType(), getAreaCode(), getNumber()); } }
Java
4
DBatOWL/tutorials
persistence-modules/spring-data-jpa-enterprise/src/main/java/com/baeldung/elementcollection/model/Phone.java
[ "MIT" ]
[TxList] Message0Id=451 Message0DLC=8 Message0Data=00 00 00 00 00 00 00 00 Message0Period=1500 Message0Comment= Message0Mode=1500 Message0TriggerId= Message1Id=450 Message1DLC=8 Message1Data=01 4B D5 62 9E 00 00 00 Message1Period=500 Message1Comment= Message1Mode=off Message1TriggerId= Message2Id=450 Message2DLC=8 Message2Data=02 00 00 00 00 00 00 00 Message2Period=500 Message2Comment= Message2Mode=500 Message2TriggerId= Message3Id=-1
TXL
1
qnx425/mpcanflash
test/mpcanflash.txl
[ "MIT" ]
import type { Context } from 'vm' import { dirname } from 'path' import { readFileSync } from 'fs' import { runInContext } from 'vm' /** * Allows to require a series of dependencies provided by their path * into a provided module context. It fills and accepts a require * cache to ensure each module is loaded once. */ export function requireDependencies(params: { context: Context requireCache: Map<string, any> dependencies: { mapExports: { [key: string]: string } path: string }[] }) { const { context, requireCache, dependencies } = params const requireFn = createRequire(context, requireCache) for (const { path, mapExports } of dependencies) { const mod = requireFn(path, path) for (const mapKey of Object.keys(mapExports)) { context[mapExports[mapKey]] = mod[mapKey] } } } function createRequire(context: Context, cache: Map<string, any>) { return function requireFn(referrer: string, specifier: string) { const resolved = require.resolve(specifier, { paths: [dirname(referrer)], }) const cached = cache.get(resolved) if (cached !== undefined) { return cached.exports } const module = { exports: {}, loaded: false, id: resolved, } cache.set(resolved, module) const fn = runInContext( `(function(module,exports,require,__dirname,__filename) {${readFileSync( resolved, 'utf-8' )}\n})`, context ) try { fn( module, module.exports, requireFn.bind(null, resolved), dirname(resolved), resolved ) } finally { cache.delete(resolved) } module.loaded = true return module.exports } }
TypeScript
4
blomqma/next.js
packages/next/server/web/sandbox/require.ts
[ "MIT" ]
// Test to make sure the names of the lifetimes are correctly resolved // in extern blocks. extern "C" { pub fn life<'a>(x: &'a i32); pub fn life2<'b>(x: &'a i32, y: &'b i32); //~ ERROR use of undeclared lifetime name `'a` pub fn life3<'a>(x: &'a i32, y: &i32) -> &'a i32; pub fn life4<'b>(x: for<'c> fn(&'a i32)); //~ ERROR use of undeclared lifetime name `'a` pub fn life5<'b>(x: for<'c> fn(&'b i32)); pub fn life6<'b>(x: for<'c> fn(&'c i32)); pub fn life7<'b>() -> for<'c> fn(&'a i32); //~ ERROR use of undeclared lifetime name `'a` pub fn life8<'b>() -> for<'c> fn(&'b i32); pub fn life9<'b>() -> for<'c> fn(&'c i32); } fn main() {}
Rust
4
mbc-git/rust
src/test/ui/generics/generic-extern-lifetime.rs
[ "ECL-2.0", "Apache-2.0", "MIT-0", "MIT" ]
#tag IOSView Begin iosView ActivityView BackButtonTitle = "Back" Compatibility = "" LargeTitleMode = 2 Left = 0 NavigationBarVisible= True TabIcon = "" TabTitle = "" Title = "Share with UIActivity" Top = 0 End #tag EndIOSView #tag WindowCode #tag Event Sub Open() #if XojoVersion < 2015.03 Toolbar.Add(iOSToolButton.NewSystemItem(iOSToolButton.Type.SystemAction)) #Else Toolbar.Add(iOSToolButton.NewSystemItem(iOSToolButton.Types.SystemAction)) #Endif End Sub #tag EndEvent #tag Event Sub ToolbarPressed(button As iOSToolButton) #if XojoVersion < 2015.03 if button.Type = iOSToolButton.Type.SystemAction then #Else if button.Type = iOSToolButton.Types.SystemAction then #Endif //create an image to share dim b as new iOSBitmap(100,100,1.0) b.Graphics.FillColor = Color.Blue b.Graphics.FillRect 0,0,b.Graphics.Width, b.Graphics.Height b.Graphics.FillColor = Color.Red b.Graphics.DrawTextLine("Test",10,10) //create the view controller using Extensions using Foundation using UIKit dim controller as UIActivityViewController //create the controller -> create a single item array with an nsobject representing the image //the second parameter is an NSArray of custom UIActivity objects, just pass nil since custom object //UIActivity creation is _difficult_ in xojo 'controller = new UIActivityViewController(NSArray.CreateWithObject(new NSObject(b.Image.Handle)),nil) dim url as Foundation.NSURL = Foundation.NSURL.URLWithString("http://www.pps4me.de") controller = new UIActivityViewController(NSArray.CreateWithObject(url),nil) controller.excludedActivityTypes = NSArray.CreateWithObject( new NSString(UIActivity.UIActivityTypePrint)) //present with nil completion handler self.PresentViewController(controller, True, nil) end if End Sub #tag EndEvent #tag EndWindowCode #tag ViewBehavior #tag ViewProperty Name="LargeTitleMode" Visible=true Group="Behavior" InitialValue="2" Type="LargeTitleDisplayModes" EditorType="Enum" #tag EnumValues "0 - Automatic" "1 - Always" "2 - Never" #tag EndEnumValues #tag EndViewProperty #tag ViewProperty Name="BackButtonTitle" Visible=false Group="Behavior" InitialValue="" Type="Text" EditorType="MultiLineEditor" #tag EndViewProperty #tag ViewProperty Name="Index" Visible=true Group="ID" InitialValue="-2147483648" Type="Integer" EditorType="" #tag EndViewProperty #tag ViewProperty Name="Left" Visible=true Group="Position" InitialValue="0" Type="Integer" EditorType="" #tag EndViewProperty #tag ViewProperty Name="Name" Visible=true Group="ID" InitialValue="" Type="String" EditorType="" #tag EndViewProperty #tag ViewProperty Name="NavigationBarVisible" Visible=false Group="Behavior" InitialValue="" Type="Boolean" EditorType="" #tag EndViewProperty #tag ViewProperty Name="Super" Visible=true Group="ID" InitialValue="" Type="String" EditorType="" #tag EndViewProperty #tag ViewProperty Name="TabIcon" Visible=false Group="Behavior" InitialValue="" Type="iOSImage" EditorType="" #tag EndViewProperty #tag ViewProperty Name="TabTitle" Visible=false Group="Behavior" InitialValue="" Type="Text" EditorType="" #tag EndViewProperty #tag ViewProperty Name="Title" Visible=false Group="Behavior" InitialValue="" Type="Text" EditorType="MultiLineEditor" #tag EndViewProperty #tag ViewProperty Name="Top" Visible=true Group="Position" InitialValue="0" Type="Integer" EditorType="" #tag EndViewProperty #tag EndViewBehavior
Xojo
4
kingj5/iOSKit
ExampleViews/ActivityView.xojo_code
[ "MIT" ]
= Appendix [[xsd-schemas]] == XML Schemas This part of the appendix lists XML schemas related to integration technologies. [[xsd-schemas-jee]] === The `jee` Schema The `jee` elements deal with issues related to Java EE (Java Enterprise Edition) configuration, such as looking up a JNDI object and defining EJB references. To use the elements in the `jee` schema, you need to have the following preamble at the top of your Spring XML configuration file. The text in the following snippet references the correct schema so that the elements in the `jee` namespace are available to you: [source,xml,indent=0,subs="verbatim,quotes"] ---- <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jee="http://www.springframework.org/schema/jee" xsi:schemaLocation=" http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/jee https://www.springframework.org/schema/jee/spring-jee.xsd"> <!-- bean definitions here --> </beans> ---- [[xsd-schemas-jee-jndi-lookup]] ==== <jee:jndi-lookup/> (simple) The following example shows how to use JNDI to look up a data source without the `jee` schema: [source,xml,indent=0,subs="verbatim,quotes"] ---- <bean id="dataSource" class="org.springframework.jndi.JndiObjectFactoryBean"> <property name="jndiName" value="jdbc/MyDataSource"/> </bean> <bean id="userDao" class="com.foo.JdbcUserDao"> <!-- Spring will do the cast automatically (as usual) --> <property name="dataSource" ref="dataSource"/> </bean> ---- The following example shows how to use JNDI to look up a data source with the `jee` schema: [source,xml,indent=0,subs="verbatim,quotes"] ---- <jee:jndi-lookup id="dataSource" jndi-name="jdbc/MyDataSource"/> <bean id="userDao" class="com.foo.JdbcUserDao"> <!-- Spring will do the cast automatically (as usual) --> <property name="dataSource" ref="dataSource"/> </bean> ---- [[xsd-schemas-jee-jndi-lookup-environment-single]] ==== `<jee:jndi-lookup/>` (with Single JNDI Environment Setting) The following example shows how to use JNDI to look up an environment variable without `jee`: [source,xml,indent=0,subs="verbatim,quotes"] ---- <bean id="simple" class="org.springframework.jndi.JndiObjectFactoryBean"> <property name="jndiName" value="jdbc/MyDataSource"/> <property name="jndiEnvironment"> <props> <prop key="ping">pong</prop> </props> </property> </bean> ---- The following example shows how to use JNDI to look up an environment variable with `jee`: [source,xml,indent=0,subs="verbatim,quotes"] ---- <jee:jndi-lookup id="simple" jndi-name="jdbc/MyDataSource"> <jee:environment>ping=pong</jee:environment> </jee:jndi-lookup> ---- [[xsd-schemas-jee-jndi-lookup-evironment-multiple]] ==== `<jee:jndi-lookup/>` (with Multiple JNDI Environment Settings) The following example shows how to use JNDI to look up multiple environment variables without `jee`: [source,xml,indent=0,subs="verbatim,quotes"] ---- <bean id="simple" class="org.springframework.jndi.JndiObjectFactoryBean"> <property name="jndiName" value="jdbc/MyDataSource"/> <property name="jndiEnvironment"> <props> <prop key="sing">song</prop> <prop key="ping">pong</prop> </props> </property> </bean> ---- The following example shows how to use JNDI to look up multiple environment variables with `jee`: [source,xml,indent=0,subs="verbatim,quotes"] ---- <jee:jndi-lookup id="simple" jndi-name="jdbc/MyDataSource"> <!-- newline-separated, key-value pairs for the environment (standard Properties format) --> <jee:environment> sing=song ping=pong </jee:environment> </jee:jndi-lookup> ---- [[xsd-schemas-jee-jndi-lookup-complex]] ==== `<jee:jndi-lookup/>` (Complex) The following example shows how to use JNDI to look up a data source and a number of different properties without `jee`: [source,xml,indent=0,subs="verbatim,quotes"] ---- <bean id="simple" class="org.springframework.jndi.JndiObjectFactoryBean"> <property name="jndiName" value="jdbc/MyDataSource"/> <property name="cache" value="true"/> <property name="resourceRef" value="true"/> <property name="lookupOnStartup" value="false"/> <property name="expectedType" value="com.myapp.DefaultThing"/> <property name="proxyInterface" value="com.myapp.Thing"/> </bean> ---- The following example shows how to use JNDI to look up a data source and a number of different properties with `jee`: [source,xml,indent=0,subs="verbatim,quotes"] ---- <jee:jndi-lookup id="simple" jndi-name="jdbc/MyDataSource" cache="true" resource-ref="true" lookup-on-startup="false" expected-type="com.myapp.DefaultThing" proxy-interface="com.myapp.Thing"/> ---- [[xsd-schemas-jee-local-slsb]] ==== `<jee:local-slsb/>` (Simple) The `<jee:local-slsb/>` element configures a reference to a local EJB Stateless Session Bean. The following example shows how to configures a reference to a local EJB Stateless Session Bean without `jee`: [source,xml,indent=0,subs="verbatim,quotes"] ---- <bean id="simple" class="org.springframework.ejb.access.LocalStatelessSessionProxyFactoryBean"> <property name="jndiName" value="ejb/RentalServiceBean"/> <property name="businessInterface" value="com.foo.service.RentalService"/> </bean> ---- The following example shows how to configures a reference to a local EJB Stateless Session Bean with `jee`: [source,xml,indent=0,subs="verbatim,quotes"] ---- <jee:local-slsb id="simpleSlsb" jndi-name="ejb/RentalServiceBean" business-interface="com.foo.service.RentalService"/> ---- [[xsd-schemas-jee-local-slsb-complex]] ==== `<jee:local-slsb/>` (Complex) The `<jee:local-slsb/>` element configures a reference to a local EJB Stateless Session Bean. The following example shows how to configures a reference to a local EJB Stateless Session Bean and a number of properties without `jee`: [source,xml,indent=0,subs="verbatim,quotes"] ---- <bean id="complexLocalEjb" class="org.springframework.ejb.access.LocalStatelessSessionProxyFactoryBean"> <property name="jndiName" value="ejb/RentalServiceBean"/> <property name="businessInterface" value="com.example.service.RentalService"/> <property name="cacheHome" value="true"/> <property name="lookupHomeOnStartup" value="true"/> <property name="resourceRef" value="true"/> </bean> ---- The following example shows how to configures a reference to a local EJB Stateless Session Bean and a number of properties with `jee`: [source,xml,indent=0,subs="verbatim,quotes"] ---- <jee:local-slsb id="complexLocalEjb" jndi-name="ejb/RentalServiceBean" business-interface="com.foo.service.RentalService" cache-home="true" lookup-home-on-startup="true" resource-ref="true"> ---- [[xsd-schemas-jee-remote-slsb]] ==== <jee:remote-slsb/> The `<jee:remote-slsb/>` element configures a reference to a `remote` EJB Stateless Session Bean. The following example shows how to configures a reference to a remote EJB Stateless Session Bean without `jee`: [source,xml,indent=0,subs="verbatim,quotes"] ---- <bean id="complexRemoteEjb" class="org.springframework.ejb.access.SimpleRemoteStatelessSessionProxyFactoryBean"> <property name="jndiName" value="ejb/MyRemoteBean"/> <property name="businessInterface" value="com.foo.service.RentalService"/> <property name="cacheHome" value="true"/> <property name="lookupHomeOnStartup" value="true"/> <property name="resourceRef" value="true"/> <property name="homeInterface" value="com.foo.service.RentalService"/> <property name="refreshHomeOnConnectFailure" value="true"/> </bean> ---- The following example shows how to configures a reference to a remote EJB Stateless Session Bean with `jee`: [source,xml,indent=0,subs="verbatim,quotes"] ---- <jee:remote-slsb id="complexRemoteEjb" jndi-name="ejb/MyRemoteBean" business-interface="com.foo.service.RentalService" cache-home="true" lookup-home-on-startup="true" resource-ref="true" home-interface="com.foo.service.RentalService" refresh-home-on-connect-failure="true"> ---- [[xsd-schemas-jms]] === The `jms` Schema The `jms` elements deal with configuring JMS-related beans, such as Spring's <<integration.adoc#jms-mdp, Message Listener Containers>>. These elements are detailed in the section of the <<integration.adoc#jms, JMS chapter>> entitled <<integration.adoc#jms-namespace, JMS Namespace Support>>. See that chapter for full details on this support and the `jms` elements themselves. In the interest of completeness, to use the elements in the `jms` schema, you need to have the following preamble at the top of your Spring XML configuration file. The text in the following snippet references the correct schema so that the elements in the `jms` namespace are available to you: [source,xml,indent=0,subs="verbatim,quotes"] ---- <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jms="http://www.springframework.org/schema/jms" xsi:schemaLocation=" http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/jms https://www.springframework.org/schema/jms/spring-jms.xsd"> <!-- bean definitions here --> </beans> ---- [[xsd-schemas-context-mbe]] === Using `<context:mbean-export/>` This element is detailed in <<integration.adoc#jmx-context-mbeanexport, Configuring Annotation-based MBean Export>>. [[xsd-schemas-cache]] === The `cache` Schema You can use the `cache` elements to enable support for Spring's `@CacheEvict`, `@CachePut`, and `@Caching` annotations. It it also supports declarative XML-based caching. See <<integration.adoc#cache-annotation-enable, Enabling Caching Annotations>> and <<integration.adoc#cache-declarative-xml, Declarative XML-based Caching>> for details. To use the elements in the `cache` schema, you need to have the following preamble at the top of your Spring XML configuration file. The text in the following snippet references the correct schema so that the elements in the `cache` namespace are available to you: [source,xml,indent=0,subs="verbatim,quotes"] ---- <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:cache="http://www.springframework.org/schema/cache" xsi:schemaLocation=" http://www.springframework.org/schema/beans https://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/cache https://www.springframework.org/schema/cache/spring-cache.xsd"> <!-- bean definitions here --> </beans> ----
AsciiDoc
5
spreoW/spring-framework
src/docs/asciidoc/integration/integration-appendix.adoc
[ "Apache-2.0" ]
// Superellipse // Daniel Shiffman // https://thecodingtrain.com/CodingChallenges/019-superellipse.html // https://youtu.be/z86cx2A4_3E // https://editor.p5js.org/codingtrain/sketches/Hk-1AMTgN // Processing transcription: Chuck England Slider slider; void setup() { size(400, 400); slider = new Slider(-width/2+20, -height/2+20, 0, 10, 2, 0.01); } void draw() { background(51); translate(width / 2, height / 2); float a = 100; float b = 100; float n = slider.value(); //float n = 2; stroke(255); noFill(); beginShape(); for (float angle = 0; angle < TWO_PI; angle += 0.1) { // Simple ellipse // float x = r * cos(angle); // float y = r * sin(angle); // Superellipse float na = 2 / n; float x = pow(abs(cos(angle)), na) * a * sgn(cos(angle)); float y = pow(abs(sin(angle)), na) * b * sgn(sin(angle)); vertex(x, y); } endShape(CLOSE); slider.show(); } float sgn(float val) { if (val == 0) { return 0; } return val / abs(val); }
Processing
4
aerinkayne/website
CodingChallenges/CC_019_Superellipse/Processing/CC_019_Superellipse/CC_019_Superellipse.pde
[ "MIT" ]
(* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. *) (* Provides utilities for converting AST locations between ALoc.t and Loc.t *) let loc_to_aloc_mapper : (Loc.t, Loc.t, ALoc.t, ALoc.t) Flow_polymorphic_ast_mapper.mapper = object inherit [Loc.t, Loc.t, ALoc.t, ALoc.t] Flow_polymorphic_ast_mapper.mapper method on_loc_annot = ALoc.of_loc method on_type_annot = ALoc.of_loc end
OCaml
4
zhangmaijun/flow
src/parser_utils/ast_loc_utils.ml
[ "MIT" ]
<%@ page contentType="text/html;charset=UTF-8" language="java" %> <!DOCTYPE html> <head> <title>Java in Static Page Example</title> </head> <body> <h1>Java in Static Page Example</h1> <% String[] arr = {"What's up?", "Hello", "It's a nice day today!"}; String greetings = arr[(int)(Math.random() * arr.length)]; %> <p><%= greetings %></p> </body> </html>
Java Server Pages
3
zeesh49/tutorials
spring-mvc-xml/src/main/webapp/jsp/ExampleTwo.jsp
[ "MIT" ]
CLASS zcl_abapgit_data_serializer DEFINITION PUBLIC CREATE PRIVATE GLOBAL FRIENDS zcl_abapgit_data_factory . PUBLIC SECTION. INTERFACES zif_abapgit_data_serializer . PROTECTED SECTION. PRIVATE SECTION. CONSTANTS c_max_records TYPE i VALUE 10000 ##NO_TEXT. METHODS convert_itab_to_json IMPORTING !ir_data TYPE REF TO data RETURNING VALUE(rv_data) TYPE xstring RAISING zcx_abapgit_exception . METHODS read_database_table IMPORTING !iv_name TYPE tadir-obj_name !it_where TYPE string_table RETURNING VALUE(rr_data) TYPE REF TO data RAISING zcx_abapgit_exception . METHODS exists_database_table IMPORTING !iv_name TYPE tadir-obj_name RETURNING VALUE(rv_exists) TYPE abap_bool. ENDCLASS. CLASS zcl_abapgit_data_serializer IMPLEMENTATION. METHOD convert_itab_to_json. DATA lo_ajson TYPE REF TO zcl_abapgit_ajson. DATA lv_string TYPE string. DATA lx_ajson TYPE REF TO zcx_abapgit_ajson_error. FIELD-SYMBOLS <lg_tab> TYPE ANY TABLE. ASSIGN ir_data->* TO <lg_tab>. TRY. lo_ajson = zcl_abapgit_ajson=>create_empty( ). lo_ajson->keep_item_order( ). lo_ajson->set( iv_path = '/' iv_val = <lg_tab> ). lv_string = lo_ajson->stringify( 2 ). CATCH zcx_abapgit_ajson_error INTO lx_ajson. zcx_abapgit_exception=>raise( lx_ajson->get_text( ) ). ENDTRY. rv_data = zcl_abapgit_convert=>string_to_xstring_utf8( lv_string ). ENDMETHOD. METHOD exists_database_table. DATA lv_table TYPE tabname. DATA lv_subrc TYPE sy-subrc. lv_table = iv_name. CALL FUNCTION 'DD_EXIST_TABLE' EXPORTING tabname = lv_table status = 'A' IMPORTING subrc = lv_subrc EXCEPTIONS wrong_status = 1 OTHERS = 2. rv_exists = boolc( sy-subrc = 0 AND lv_subrc = 0 ). ENDMETHOD. METHOD read_database_table. DATA lv_records TYPE i. DATA lv_where LIKE LINE OF it_where. FIELD-SYMBOLS <lg_tab> TYPE ANY TABLE. rr_data = zcl_abapgit_data_utils=>build_table_itab( iv_name ). ASSIGN rr_data->* TO <lg_tab>. LOOP AT it_where INTO lv_where. SELECT * FROM (iv_name) APPENDING TABLE <lg_tab> WHERE (lv_where). ENDLOOP. IF lines( it_where ) = 0. SELECT * FROM (iv_name) INTO TABLE <lg_tab>. ENDIF. lv_records = lines( <lg_tab> ). IF lv_records > c_max_records. zcx_abapgit_exception=>raise( |Too many records selected from table { iv_name } (selected { lv_records }, max { c_max_records })| ). ENDIF. ENDMETHOD. METHOD zif_abapgit_data_serializer~serialize. DATA lt_configs TYPE zif_abapgit_data_config=>ty_config_tt. DATA ls_config LIKE LINE OF lt_configs. DATA ls_file LIKE LINE OF rt_files. DATA lr_data TYPE REF TO data. ls_file-path = zif_abapgit_data_config=>c_default_path. lt_configs = ii_config->get_configs( ). LOOP AT lt_configs INTO ls_config. ASSERT ls_config-type = zif_abapgit_data_config=>c_data_type-tabu. " todo ASSERT ls_config-name IS NOT INITIAL. IF exists_database_table( ls_config-name ) = abap_true. lr_data = read_database_table( iv_name = ls_config-name it_where = ls_config-where ). ls_file-filename = zcl_abapgit_data_utils=>build_filename( ls_config ). ls_file-data = convert_itab_to_json( lr_data ). ls_file-sha1 = zcl_abapgit_hash=>sha1_blob( ls_file-data ). APPEND ls_file TO rt_files. ENDIF. ENDLOOP. ENDMETHOD. ENDCLASS.
ABAP
4
ed-holland/abapGit
src/data/zcl_abapgit_data_serializer.clas.abap
[ "MIT" ]
$! $! Deassign OpenSSL logical names. $! $ call deass "OPENSSL" "''p1'" $ call deass "SSLCERTS" "''p1'" $ call deass "SSLEXE" "''p1'" $ call deass "SSLINCLUDE" "''p1'" $ call deass "SSLLIB" "''p1'" $ call deass "SSLPRIVATE" "''p1'" $ call deass "SSLROOT" "''p1'" $! $ exit $! $deass: subroutine $ if (f$trnlnm( p1) .nes. "") $ then $ deassign 'p2' 'p1' $ endif $ endsubroutine $!
DIGITAL Command Language
3
madanagopaltcomcast/pxCore
examples/pxScene2d/external/openssl-1.0.2o/VMS/openssl_undo.com
[ "Apache-2.0" ]
#!/usr/bin/pike // -*- mode: pike -*- // $Id: strcat.pike-2.pike,v 1.1 2004-11-10 06:44:59 bfulgham Exp $ // http://shootout.alioth.debian.org/ void main(int argc, array(string) argv) { int n = (int)argv[-1]; if (n < 1) n = 1; string str = ""; for (int i=0; i<n; i++) { str += "hello\n"; } write("%d\n", strlen(str)); }
Pike
3
kragen/shootout
bench/strcat/strcat.pike-2.pike
[ "BSD-3-Clause" ]
Launch Leisure's OT server ========================== Copyright (C) 2015, Bill Burdick, Roy Riggs, TEAM CTHULHU Licensed with ZLIB license. ============================= This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required. 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. 3. This notice may not be removed or altered from any source distribution. Launch the server console.log "argv: #{process.argv.join ' '}" port = Number process.argv[2] ? 8080 console.log "PORT: #{port}" require('./lib/ot/launch-server').startServer port
Literate CoffeeScript
4
zot/Leisure
server/otserver.litcoffee
[ "Zlib" ]
import { Reporter } from "gatsby/reporter" import { formatLogMessage } from "~/utils/format-log-message" import { IPluginOptions } from "./gatsby-api" type ITimerReporter = ReturnType<Reporter["activityTimer"]> export interface ILoggerState { entityCount: number typeCount: { [name: string]: number } activityTimers: { [name: string]: { count: number; activity: ITimerReporter } } } const logger = { state: { entityCount: 0, typeCount: {}, activityTimers: {}, } as ILoggerState, reducers: { incrementActivityTimer( state: ILoggerState, { typeName, by, action = `fetched` } ): ILoggerState { const logger = state.activityTimers[typeName] if (!logger) { return state } if (typeof by === `number`) { logger.count += by state.entityCount += by } logger.activity.setStatus(`${action} ${logger.count}`) return state }, stopActivityTimer( state: ILoggerState, { typeName, action = `fetched` }: { typeName: string; action: string } ): ILoggerState { const logger = state.activityTimers[typeName] if (logger.count === 0) { logger.activity.setStatus(`${action} 0`) } logger.activity.end() return state }, createActivityTimer( state: ILoggerState, { typeName, reporter, pluginOptions, }: { typeName: string; reporter: Reporter; pluginOptions: IPluginOptions } ): ILoggerState { if (state.activityTimers[typeName]) { return state } const typeActivityTimer = { count: 0, activity: reporter.activityTimer( formatLogMessage(typeName, { useVerboseStyle: pluginOptions.verbose, }) ), } if (pluginOptions.verbose) { typeActivityTimer.activity.start() } state.activityTimers[typeName] = typeActivityTimer return state }, }, } export default logger
TypeScript
4
waltercruz/gatsby
packages/gatsby-source-wordpress/src/models/logger.ts
[ "MIT" ]
๏ปฟmodule System.Text.Json.Tests.FSharp.UnionTests open System open System.Text.Json open System.Text.Json.Serialization open Xunit type MySingleCaseUnion = MySingleCaseUnion of string type MyTypeSafeEnum = Label1 | Label2 | Label3 type MyMultiCaseUnion = Point | Circle of radius:float | Rectangle of height:float * length:float [<Struct>] type MyStructSingleCaseUnion = MyStructSingleCaseUnion of string [<Struct>] type MyStructTypeSafeEnum = StructLabel1 | StructLabel2 | StructLabel3 [<Struct>] type MyStructMultiCaseUnion = StructPoint | StructCircle of radius:float | StructRectangle of height:float * length:float let getUnionValues() = seq { let wrap value = [| value :> obj |] MySingleCaseUnion "value" |> wrap Label1 |> wrap Circle 1. |> wrap MyStructSingleCaseUnion "value" |> wrap StructLabel2 |> wrap StructCircle 1. |> wrap } [<Theory>] [<MemberData(nameof(getUnionValues))>] let ``Union serialization should throw NotSupportedException`` (value : 'T) = Assert.Throws<NotSupportedException>(fun () -> JsonSerializer.Serialize(value) |> ignore) [<Theory>] [<MemberData(nameof(getUnionValues))>] let ``Union deserialization should throw NotSupportedException`` (value : 'T) = Assert.Throws<NotSupportedException>(fun () -> JsonSerializer.Deserialize<'T>("{}") |> ignore)
F#
4
pyracanda/runtime
src/libraries/System.Text.Json/tests/System.Text.Json.FSharp.Tests/UnionTests.fs
[ "MIT" ]
import * as path from "path" import { testPluginOptionsSchema } from "gatsby-plugin-utils" import { onCreateBabelConfig, pluginOptionsSchema } from "../gatsby-node" describe(`onCreateBabelConfig`, () => { it(`sets the correct babel preset`, () => { const actions = { setBabelPreset: jest.fn() } onCreateBabelConfig({ actions }) expect(actions.setBabelPreset).toHaveBeenCalledTimes(1) expect(actions.setBabelPreset).toHaveBeenCalledWith({ name: expect.stringContaining(path.join(`@babel`, `preset-flow`)), }) }) }) describe(`pluginOptionsSchema`, () => { it(`should provide meaningful errors when fields are invalid`, async () => { const expectedErrors = [`"optionA" is not allowed`] const { isValid, errors } = await testPluginOptionsSchema( pluginOptionsSchema, { optionA: `This option shouldn't exist`, } ) expect(isValid).toBe(false) expect(errors).toEqual(expectedErrors) }) it.each` options ${undefined} ${{}} `(`should validate the schema: $options`, async ({ options }) => { const { isValid, errors } = await testPluginOptionsSchema( pluginOptionsSchema, options ) expect(isValid).toBe(true) expect(errors).toEqual([]) }) })
JavaScript
5
waltercruz/gatsby
packages/gatsby-plugin-flow/src/__tests__/gatsby-node.js
[ "MIT" ]
package gw.spec.core.expressions.beanmethodcall.generated uses gw.spec.core.expressions.beanmethodcall.generated.BeanMethodCall_JavaClass enhancement BeanMethodCall_GosuSubclassEnhancement : BeanMethodCall_GosuClassSubclass { static function doPublicStaticStringGosuClassEnhancementOfSubclassAccess() : String { return BeanMethodCall_GosuClass.publicStaticStringGosuClass() } static function doPublicStaticStringGosuClassEnhancementOfSubclassAccessViaEval() : String { return eval("BeanMethodCall_GosuClass.publicStaticStringGosuClass()") as String } static function doPublicStaticStringGosuClassEnhancementOfSubclassAccessViaBlock() : String { var myBlock = \ -> BeanMethodCall_GosuClass.publicStaticStringGosuClass() return myBlock() } static function doPublicStaticIntGosuClassEnhancementOfSubclassAccess() : int { return BeanMethodCall_GosuClass.publicStaticIntGosuClass() } static function doPublicStaticIntGosuClassEnhancementOfSubclassAccessViaEval() : int { return eval("BeanMethodCall_GosuClass.publicStaticIntGosuClass()") as java.lang.Integer } static function doPublicStaticIntGosuClassEnhancementOfSubclassAccessViaBlock() : int { var myBlock = \ -> BeanMethodCall_GosuClass.publicStaticIntGosuClass() return myBlock() } static function doInternalStaticStringGosuClassEnhancementOfSubclassAccess() : String { return BeanMethodCall_GosuClass.internalStaticStringGosuClass() } static function doInternalStaticStringGosuClassEnhancementOfSubclassAccessViaEval() : String { return eval("BeanMethodCall_GosuClass.internalStaticStringGosuClass()") as String } static function doInternalStaticStringGosuClassEnhancementOfSubclassAccessViaBlock() : String { var myBlock = \ -> BeanMethodCall_GosuClass.internalStaticStringGosuClass() return myBlock() } static function doInternalStaticIntGosuClassEnhancementOfSubclassAccess() : int { return BeanMethodCall_GosuClass.internalStaticIntGosuClass() } static function doInternalStaticIntGosuClassEnhancementOfSubclassAccessViaEval() : int { return eval("BeanMethodCall_GosuClass.internalStaticIntGosuClass()") as java.lang.Integer } static function doInternalStaticIntGosuClassEnhancementOfSubclassAccessViaBlock() : int { var myBlock = \ -> BeanMethodCall_GosuClass.internalStaticIntGosuClass() return myBlock() } static function doProtectedStaticStringGosuClassEnhancementOfSubclassAccess() : String { return BeanMethodCall_GosuClass.protectedStaticStringGosuClass() } static function doProtectedStaticStringGosuClassEnhancementOfSubclassAccessViaEval() : String { return eval("BeanMethodCall_GosuClass.protectedStaticStringGosuClass()") as String } static function doProtectedStaticStringGosuClassEnhancementOfSubclassAccessViaBlock() : String { var myBlock = \ -> BeanMethodCall_GosuClass.protectedStaticStringGosuClass() return myBlock() } static function doProtectedStaticIntGosuClassEnhancementOfSubclassAccess() : int { return BeanMethodCall_GosuClass.protectedStaticIntGosuClass() } static function doProtectedStaticIntGosuClassEnhancementOfSubclassAccessViaEval() : int { return eval("BeanMethodCall_GosuClass.protectedStaticIntGosuClass()") as java.lang.Integer } static function doProtectedStaticIntGosuClassEnhancementOfSubclassAccessViaBlock() : int { var myBlock = \ -> BeanMethodCall_GosuClass.protectedStaticIntGosuClass() return myBlock() } static function doPublicInstanceStringGosuClassEnhancementOfSubclassAccess() : String { return new BeanMethodCall_GosuClass().publicInstanceStringGosuClass() } static function doPublicInstanceStringGosuClassEnhancementOfSubclassAccessViaEval() : String { return eval("new BeanMethodCall_GosuClass().publicInstanceStringGosuClass()") as String } static function doPublicInstanceStringGosuClassEnhancementOfSubclassAccessViaBlock() : String { var myBlock = \ -> new BeanMethodCall_GosuClass().publicInstanceStringGosuClass() return myBlock() } static function doPublicInstanceIntGosuClassEnhancementOfSubclassAccess() : int { return new BeanMethodCall_GosuClass().publicInstanceIntGosuClass() } static function doPublicInstanceIntGosuClassEnhancementOfSubclassAccessViaEval() : int { return eval("new BeanMethodCall_GosuClass().publicInstanceIntGosuClass()") as java.lang.Integer } static function doPublicInstanceIntGosuClassEnhancementOfSubclassAccessViaBlock() : int { var myBlock = \ -> new BeanMethodCall_GosuClass().publicInstanceIntGosuClass() return myBlock() } static function doInternalInstanceStringGosuClassEnhancementOfSubclassAccess() : String { return new BeanMethodCall_GosuClass().internalInstanceStringGosuClass() } static function doInternalInstanceStringGosuClassEnhancementOfSubclassAccessViaEval() : String { return eval("new BeanMethodCall_GosuClass().internalInstanceStringGosuClass()") as String } static function doInternalInstanceStringGosuClassEnhancementOfSubclassAccessViaBlock() : String { var myBlock = \ -> new BeanMethodCall_GosuClass().internalInstanceStringGosuClass() return myBlock() } static function doInternalInstanceIntGosuClassEnhancementOfSubclassAccess() : int { return new BeanMethodCall_GosuClass().internalInstanceIntGosuClass() } static function doInternalInstanceIntGosuClassEnhancementOfSubclassAccessViaEval() : int { return eval("new BeanMethodCall_GosuClass().internalInstanceIntGosuClass()") as java.lang.Integer } static function doInternalInstanceIntGosuClassEnhancementOfSubclassAccessViaBlock() : int { var myBlock = \ -> new BeanMethodCall_GosuClass().internalInstanceIntGosuClass() return myBlock() } static function doProtectedInstanceStringGosuClassEnhancementOfSubclassAccess() : String { return new BeanMethodCall_GosuClass().protectedInstanceStringGosuClass() } static function doProtectedInstanceStringGosuClassEnhancementOfSubclassAccessViaEval() : String { return eval("new BeanMethodCall_GosuClass().protectedInstanceStringGosuClass()") as String } static function doProtectedInstanceStringGosuClassEnhancementOfSubclassAccessViaBlock() : String { var myBlock = \ -> new BeanMethodCall_GosuClass().protectedInstanceStringGosuClass() return myBlock() } static function doProtectedInstanceIntGosuClassEnhancementOfSubclassAccess() : int { return new BeanMethodCall_GosuClass().protectedInstanceIntGosuClass() } static function doProtectedInstanceIntGosuClassEnhancementOfSubclassAccessViaEval() : int { return eval("new BeanMethodCall_GosuClass().protectedInstanceIntGosuClass()") as java.lang.Integer } static function doProtectedInstanceIntGosuClassEnhancementOfSubclassAccessViaBlock() : int { var myBlock = \ -> new BeanMethodCall_GosuClass().protectedInstanceIntGosuClass() return myBlock() } static function doPublicStaticStringOnEnhancementEnhancementOfSubclassAccess() : String { return BeanMethodCall_GosuClass.publicStaticStringOnEnhancement() } static function doPublicStaticStringOnEnhancementEnhancementOfSubclassAccessViaEval() : String { return eval("BeanMethodCall_GosuClass.publicStaticStringOnEnhancement()") as String } static function doPublicStaticStringOnEnhancementEnhancementOfSubclassAccessViaBlock() : String { var myBlock = \ -> BeanMethodCall_GosuClass.publicStaticStringOnEnhancement() return myBlock() } static function doPublicStaticIntOnEnhancementEnhancementOfSubclassAccess() : int { return BeanMethodCall_GosuClass.publicStaticIntOnEnhancement() } static function doPublicStaticIntOnEnhancementEnhancementOfSubclassAccessViaEval() : int { return eval("BeanMethodCall_GosuClass.publicStaticIntOnEnhancement()") as java.lang.Integer } static function doPublicStaticIntOnEnhancementEnhancementOfSubclassAccessViaBlock() : int { var myBlock = \ -> BeanMethodCall_GosuClass.publicStaticIntOnEnhancement() return myBlock() } static function doInternalStaticStringOnEnhancementEnhancementOfSubclassAccess() : String { return BeanMethodCall_GosuClass.internalStaticStringOnEnhancement() } static function doInternalStaticStringOnEnhancementEnhancementOfSubclassAccessViaEval() : String { return eval("BeanMethodCall_GosuClass.internalStaticStringOnEnhancement()") as String } static function doInternalStaticStringOnEnhancementEnhancementOfSubclassAccessViaBlock() : String { var myBlock = \ -> BeanMethodCall_GosuClass.internalStaticStringOnEnhancement() return myBlock() } static function doInternalStaticIntOnEnhancementEnhancementOfSubclassAccess() : int { return BeanMethodCall_GosuClass.internalStaticIntOnEnhancement() } static function doInternalStaticIntOnEnhancementEnhancementOfSubclassAccessViaEval() : int { return eval("BeanMethodCall_GosuClass.internalStaticIntOnEnhancement()") as java.lang.Integer } static function doInternalStaticIntOnEnhancementEnhancementOfSubclassAccessViaBlock() : int { var myBlock = \ -> BeanMethodCall_GosuClass.internalStaticIntOnEnhancement() return myBlock() } static function doPublicInstanceStringOnEnhancementEnhancementOfSubclassAccess() : String { return new BeanMethodCall_GosuClass().publicInstanceStringOnEnhancement() } static function doPublicInstanceStringOnEnhancementEnhancementOfSubclassAccessViaEval() : String { return eval("new BeanMethodCall_GosuClass().publicInstanceStringOnEnhancement()") as String } static function doPublicInstanceStringOnEnhancementEnhancementOfSubclassAccessViaBlock() : String { var myBlock = \ -> new BeanMethodCall_GosuClass().publicInstanceStringOnEnhancement() return myBlock() } static function doPublicInstanceIntOnEnhancementEnhancementOfSubclassAccess() : int { return new BeanMethodCall_GosuClass().publicInstanceIntOnEnhancement() } static function doPublicInstanceIntOnEnhancementEnhancementOfSubclassAccessViaEval() : int { return eval("new BeanMethodCall_GosuClass().publicInstanceIntOnEnhancement()") as java.lang.Integer } static function doPublicInstanceIntOnEnhancementEnhancementOfSubclassAccessViaBlock() : int { var myBlock = \ -> new BeanMethodCall_GosuClass().publicInstanceIntOnEnhancement() return myBlock() } static function doInternalInstanceStringOnEnhancementEnhancementOfSubclassAccess() : String { return new BeanMethodCall_GosuClass().internalInstanceStringOnEnhancement() } static function doInternalInstanceStringOnEnhancementEnhancementOfSubclassAccessViaEval() : String { return eval("new BeanMethodCall_GosuClass().internalInstanceStringOnEnhancement()") as String } static function doInternalInstanceStringOnEnhancementEnhancementOfSubclassAccessViaBlock() : String { var myBlock = \ -> new BeanMethodCall_GosuClass().internalInstanceStringOnEnhancement() return myBlock() } static function doInternalInstanceIntOnEnhancementEnhancementOfSubclassAccess() : int { return new BeanMethodCall_GosuClass().internalInstanceIntOnEnhancement() } static function doInternalInstanceIntOnEnhancementEnhancementOfSubclassAccessViaEval() : int { return eval("new BeanMethodCall_GosuClass().internalInstanceIntOnEnhancement()") as java.lang.Integer } static function doInternalInstanceIntOnEnhancementEnhancementOfSubclassAccessViaBlock() : int { var myBlock = \ -> new BeanMethodCall_GosuClass().internalInstanceIntOnEnhancement() return myBlock() } }
Gosu
3
tcmoore32/sheer-madness
gosu-test/src/test/gosu/gw/spec/core/expressions/beanmethodcall/generated/BeanMethodCall_GosuSubclassEnhancement.gsx
[ "Apache-2.0" ]
#include <metal_stdlib> #include <simd/simd.h> using namespace metal; /* structs */ struct SomeData { float4 anArray [[position]]; float4 aValue; }; struct SomeVertex { vector_float2 position; vector_float2 textureCoordinate; }; /* functions */ kernel void grayscaleKernel(texture2d<half, access::read> inTexture [[texture(0)]], texture2d<half, access::write> outTexture [[texture(1)]], uint2 gid [[thread_position_in_grid]]) { } vertex SomeData vertexShader (uint vertexID [[ vertex_id ]], constant SomeVertex *vertexArray [[buffer(0)]], constant vector_uint2 *viewportSizePointer [[buffer(1)]]) { SomeData out; return out; }
Metal
3
G0hub1/xamarin-macios
tests/monotouch-test/Resources/metal-sample.metal
[ "BSD-3-Clause" ]
-@ import val it: Statistics %h1 Statistics %h2 Invoice Updates %table %tr %th Invoice %th Update Count - for (invoiceUpdate <- invoiceUpdatesSorted) %tr %td %a{ :href => { "invoice/%s" format invoiceUpdate.invoiceId } } Invoice #{invoiceUpdate.invoiceId} %td = invoiceUpdate.updateCount
Scaml
4
pkeshab/eventsourced-example
src/main/webapp/WEB-INF/org/eligosource/eventsourced/example/web/Statistics.scaml
[ "Apache-2.0" ]
implement main0 () = println! "Hello World"
ATS
2
conorpreid/hello-world
a/ATS2.dats
[ "MIT" ]
rows = 4; cols = 5; border = 3; dx = .76*25.4; dy = .76*25.4; sx = .551*25.4; sy = .551*25.4; hdia = 5.5; // note: m2.5 nylon screw heads are 4.5mm dia linear_extrude(.06*25.4) difference() { translate([-border-sx/2,-border-sx/2]) square([dx*(rows-1) + sx + 2*border, dy*(cols-1) + sy +2*border]); for(r=[0:1:rows-1]) { for(c=[0:1:cols-1]) { translate([dx*r, dy*c]) square([sx,sy], center=true); } translate([dx/2, dy/2]) circle(d=hdia, $fn=36); translate([dx*(2 +1/2), dy/2]) circle(d=hdia, $fn=36); } }
OpenSCAD
3
gamblor21/Adafruit_Learning_System_Guides
CircuitPython_KeyPad_Calculator/design-files/3dprints/plate.scad
[ "MIT" ]
require jpath '~Projects/jlearn/optimize/linesearch.ijs' require jpath '~Projects/jlearn/optimize/conjugategradient.ijs' require jpath '~Projects/jlearn/optimize/neldermead.ijs' require jpath '~Projects/jlearn/optimize/lbfgs.ijs' coclass 'TestOptimize' coinsert 'TestBase' create=: 3 : 0 '' ) NB. ====================TEST BFGS==================== test1=: 3 : 0 NB. f = x^2 f=: *: fp=: +: minima=: minBFGS_jLearnOpt_ (f f.`'');(fp f.`'');(4);1e4;1e_4;_0.1 ( 1e_3&>@:|) assertTrue minima ) test2=: 3 : 0 NB. f = (x+1)^2 f=: *:@:>: fp=: (f f.) d. 1 minima=: minBFGS_jLearnOpt_ (f f.`'');(fp f.`'');(4);1e4;1e_5;0.1 (1e_3&>@:>:) assertTrue minima ) test3=: 3 : 0 NB. f = x^2 + y^3 f=: *:@:{. + (3&(^~)@:{:) fp=: (+:@:{. , (2&(^~)@:(3&*)@:{:)) minima=: +/*: minBFGS_jLearnOpt_ (f f.`'');(fp f.`'');(0 0);1e4;1e_5;0.1 (1e_3&>) assertTrue minima ) NB. should throw an exception. This has no gradient minimum. test4=: 3 : 0 NB. f = e^(x-y) + x - (y-1)^4 f=:^@:-/ + {. - 4&(^~)@:<:@:{: fp=: >:@:^@:-/ , 4&*@:(3&(^~))@:{: + -@:^@:-/ (minBFGS_BFGS_ assertThrow (f f.`'');(fp f.`'');(4 3);1e5;1e_4;0.0001) ) NB. ====================TEST L-BFGS==================== NB. ======= Essentially the same tests as BFGS ======== test5=: 3 : 0 NB. f = x^2 f=: *: fp=: +: minima=: minLBFGS_jLearnOpt_ (f f.`'');(fp f.`'');(3.5);1e4;1e_4 ( 1e_3&>@:|) assertTrue minima ) test6=: 3 : 0 NB. f = (x+1)^2 f=: *:@:>: fp=: (f f.) d. 1 minima=: minLBFGS_jLearnOpt_ (f f.`'');(fp f.`'');(4);1e4;1e_4 (1e_3&>@:>:) assertTrue minima ) test7=: 3 : 0 NB. f = x^2 + y^3 f=: *:@:{. + ((^&3)@:{:) fp=: (+:@:{. , ((3&*)@:*:@:{:)) minima=: +/*: minLBFGS_jLearnOpt_ (f f.`'');(fp f.`'');(4 3);1e5;1e_4 (1e_3&>) assertTrue minima ) NB. should throw an exception. This has no gradient minimum. test8=: 3 : 0 NB. f = e^(x-y) + x - (y-1)^4 f=:^@:-/ + {. - 4&(^~)@:<:@:{: fp=: >:@:^@:-/ , 4&*@:(3&(^~))@:{: + -@:^@:-/ (minLBFGS_BFGS_ assertThrow (f f.`'');(fp f.`'');(4 3);1e5;1e_4) ) NB. ====================TEST CONJ_GRAD==================== NB. ======= Essentially the same tests as BFGS ======== test9=: 3 : 0 NB. f = x^2 f=: *: fp=: +: minima=: minCG_jLearnOpt_ (f f.`'');(fp f.`'');(4);1e4;1e_5;'fr' ( 1e_3&>@:|) assertTrue minima ) test10=: 3 : 0 NB. f = (x+1)^2 f=: *:@:>: fp=: (f f.) d. 1 minima=: minCG_jLearnOpt_ (f f.`'');(fp f.`'');(4);1e4;1e_5;'fr' (1e_3&>@:>:) assertTrue minima ) funcCG1=: 3 : 0 M=: 4 4 $ 10 _1 2 0.5, _1 6 _2 2, 2 _2 7 0, 0.5 2 0 3 b=: 1 4 $ 1 5 0.25 0 dot=. +/ . * y=. 4 1 $, y 6 + , (b dot y) + (|:y) dot M dot y ) funcpCG1=: 3 : 0 M=: 4 4 $ 10 _1 2 0.5, _1 6 _2 2, 2 _2 7 0, 0.5 2 0 3 dot=. +/ . * y=. 4 1 $, y b=: 4 1 $ 1 5 0.25 0 ,b-~ M dot y ) test11=: 3 : 0 minima=: minCG_jLearnOpt_ (funcCG1 f.`'');(funcpCG1 f.`'');(0.1 0.5 0.1 1.5);200;1e_3;'fr' (*/@:(1e_3&>)) assertTrue (| minima - 0.203 1.276 0.342 _0.884) ) NB. should throw an exception. This has no gradient minimum. test12=: 3 : 0 NB. f = e^(x-y) + x - (y-1)^4 f=:^@:-/ + {. - 4&(^~)@:<:@:{: fp=: >:@:^@:-/ , 4&*@:(3&(^~))@:{: + -@:^@:-/ (minCG_jLearnOpt_ assertThrow (f f.`'');(fp f.`'');(4 3);1e3;1e_3;'fr') ) func1=: 3 : 0 'a b c'=. y (2 o. a) + (- 1 o. (a+b)) + *: c ) funcp1=: 3 : 0 'a b c'=. y ( - (1 o. a) + (2 o. (a+b))) , ( -(2 o.(a+b))) ,(+:c) ) test13=: 3 : 0 minima=: (minLBFGS_jLearnOpt_ (func1 f.`'');(funcp1 f.`'');(0 0 0);1e4;1e_3) (*/@:(1e_3&>)@:funcp1) assertTrue minima ) func2=: 3 : 0 y=. 3 1 $ ,y A=. 3 3 $ 2 _1 0 _1 2 _1 0 _1 2 2 + ,(|: y) (+/ . *) A (+/ . *) y ) funcp2=: 3 : 0 y=. 3 1 $ ,y A=. 3 3 $ 2 _1 0 _1 2 _1 0 _1 2 ,A (+/ . *) y ) test14=: 3 : 0 minima=: minCG_jLearnOpt_ (func2 f.`'');(funcp2 f.`'');(0.1 2 0.5);1e4;1e_4;'fr' (1e_3&>) assertTrue (+/*: minima) ) run=: 3 : 0 test1 testWrapper 1 test2 testWrapper 2 test3 testWrapper 3 test4 testWrapper 4 test5 testWrapper 5 test6 testWrapper 6 test7 testWrapper 7 test8 testWrapper 8 test9 testWrapper 9 test10 testWrapper 10 test11 testWrapper 11 test12 testWrapper 12 test13 testWrapper 13 'end' ) destroy=: 3 : 0 codestroy '' ) to=: '' conew 'TestOptimize' run__to ''
J
5
jonghough/jlearn
test/testoptimize.ijs
[ "MIT" ]
* 4 input mux *.subckt nfet drain gate source size=1 .subckt mux5 in0 in1 in2 in3 in4 out sel0 sel1 sel2 sel3 sel4 size=1 X0 in0 sel0 out 0 nfet size='size' X1 in1 sel1 out 0 nfet size='size' X2 in2 sel2 out 0 nfet size='size' X3 in3 sel3 out 0 nfet size='size' X4 in4 sel4 out 0 nfet size='size' .ends
SourcePawn
3
HackerFoo/vtr-verilog-to-routing
vtr_flow/scripts/spice/subckt/mux5.sp
[ "MIT" ]
nav > a { padding: 10px 5px; } .newPlaylistSection { padding-top: 10px; } .newPlaylist { padding: 10px 0px; } .playlistBtn { padding: 5px 10px; border-radius: 2px; border-color: lightgreen; }
CSS
3
gh-oss-contributor/graphql-engine-1
community/sample-apps/gatsby-contentful-auth0/app/src/components/style.css
[ "Apache-2.0", "MIT" ]
import * as React from 'react'; import { chakra } from '@chakra-ui/system'; const customTheme = { breakpoints: ['40em', '52em', '64em'], colors: { text: '#000', background: '#fff', primary: '#33e', }, }; customTheme.breakpoints.base = customTheme.breakpoints[0]; customTheme.breakpoints.sm = customTheme.breakpoints[1]; customTheme.breakpoints.lg = customTheme.breakpoints[2]; export default function BoxChakraUi() { return ( <div> {new Array(1000).fill().map(() => ( <chakra.div theme={customTheme} width={200} height={200} borderWidth="3px" borderColor="white" backgroundColor={['primary', 'text', 'background']} borderStyle={['dashed', 'solid', 'dotted']} _hover={{ backgroundColor: 'text', }} > test case </chakra.div> ))} </div> ); }
JavaScript
4
good-gym/material-ui
benchmark/browser/scenarios/box-chakra-ui/index.js
[ "MIT" ]
Complete your profile Gain access to our Slack Submit news links for coverage Comment on news & podcast episodes Request podcast topics & guests Manage your email subscriptions
HTML+EEX
0
gustavoarmoa/changelog.com
lib/changelog_web/templates/email/_account_actions.text.eex
[ "MIT" ]
extends Node # Base interface for a generic state machine. # It handles initializing, setting the machine active or not # delegating _physics_process, _input calls to the State nodes, # and changing the current/active state. # See the PlayerV2 scene for an example on how to use it. signal state_changed(current_state) # You should set a starting node from the inspector or on the node that inherits # from this state machine interface. If you don't, the game will default to # the first state in the state machine's children. export(NodePath) var start_state var states_map = {} var states_stack = [] var current_state = null var _active = false setget set_active func _ready(): if not start_state: start_state = get_child(0).get_path() for child in get_children(): var err = child.connect("finished", self, "_change_state") if err: printerr(err) initialize(start_state) func initialize(initial_state): set_active(true) states_stack.push_front(get_node(initial_state)) current_state = states_stack[0] current_state.enter() func set_active(value): _active = value set_physics_process(value) set_process_input(value) if not _active: states_stack = [] current_state = null func _unhandled_input(event): current_state.handle_input(event) func _physics_process(delta): current_state.update(delta) func _on_animation_finished(anim_name): if not _active: return current_state._on_animation_finished(anim_name) func _change_state(state_name): if not _active: return current_state.exit() if state_name == "previous": states_stack.pop_front() else: states_stack[0] = states_map[state_name] current_state = states_stack[0] emit_signal("state_changed", current_state) if state_name != "previous": current_state.enter()
GDScript
5
jonbonazza/godot-demo-projects
2d/finite_state_machine/state_machine/state_machine.gd
[ "MIT" ]
%YAML 1.1 %TAG !u! tag:unity3d.com,2011: --- !u!319 &31900000 AvatarMask: m_ObjectHideFlags: 0 m_CorrespondingSourceObject: {fileID: 0} m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_Name: FootmanAttackMask m_Mask: 01000000010000000100000001000000010000000100000001000000010000000100000001000000010000000100000001000000 m_Elements: - m_Path: m_Weight: 1 - m_Path: Bip001 m_Weight: 0 - m_Path: Bip001/Bip001 Pelvis m_Weight: 0 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 L Thigh m_Weight: 0 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 L Thigh/Bip001 L Calf m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 L Thigh/Bip001 L Calf/Bip001 L Foot m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 L Thigh/Bip001 L Calf/Bip001 L Foot/Bip001 L Toe0 m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 L Thigh/Bip001 L Calf/Bip001 L Foot/Bip001 L Toe0/Bip001 L Toe0Nub m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck/Bip001 Head m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck/Bip001 Head/Bip001 HeadNub m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck/Bip001 L Clavicle m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck/Bip001 L Clavicle/Bip001 L UpperArm m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck/Bip001 L Clavicle/Bip001 L UpperArm/Bip001 L Forearm m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck/Bip001 L Clavicle/Bip001 L UpperArm/Bip001 L Forearm/Bip001 L Hand m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck/Bip001 L Clavicle/Bip001 L UpperArm/Bip001 L Forearm/Bip001 L Hand/Shield m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck/Bip001 R Clavicle m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck/Bip001 R Clavicle/Bip001 R UpperArm m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck/Bip001 R Clavicle/Bip001 R UpperArm/Bip001 R Forearm m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck/Bip001 R Clavicle/Bip001 R UpperArm/Bip001 R Forearm/Bip001 R Hand m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 Neck/Bip001 R Clavicle/Bip001 R UpperArm/Bip001 R Forearm/Bip001 R Hand/Sword m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 R Thigh m_Weight: 0 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 R Thigh/Bip001 R Calf m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 R Thigh/Bip001 R Calf/Bip001 R Foot m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 R Thigh/Bip001 R Calf/Bip001 R Foot/Bip001 R Toe0 m_Weight: 1 - m_Path: Bip001/Bip001 Pelvis/Bip001 Spine/Bip001 R Thigh/Bip001 R Calf/Bip001 R Foot/Bip001 R Toe0/Bip001 R Toe0Nub m_Weight: 1 - m_Path: Body m_Weight: 0
Mask
2
jackalstar/Blockchain-game
Assets/MoralisWeb3ApiSdk/Example/3rdParty/Other Models/Medival Strategy Low-Poly Pack/AC/FootmanAttackMask.mask
[ "MIT" ]
string s1 := 'one' : stored('s1'); string s2 := 'five' : stored('s2'); d1 := dictionary([{'one'},{'two'},{'three'}], { string name }) : independent(few); d2 := dictionary([{'one'},{'two'},{'three'},{'four'}], { string name }) : independent(few); d3 := dictionary([{'one' => 1},{'one' => 2},{'two'=>2},{'four'=>4}], { string name => unsigned number }) : independent(few); s1 in d1; s2 not in d1; s1 in d2; s2 not in d2; s1 in d3; s2 not in d3;
ECL
4
miguelvazq/HPCC-Platform
testing/regress/ecl/dict5b.ecl
[ "Apache-2.0" ]
/** * Copyright (c) 2017-present, Facebook, Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ /** * CSS files with the .module.css suffix will be treated as CSS modules * and scoped locally. */ /* .heroBanner { padding: 4rem 0; text-align: center; position: relative; overflow: hidden; } */ .heroBanner { /* height: calc(100vh - 60px); */ min-height: 80vh; } .hero .code-with-header { box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.3); /* box-shadow: var(--ifm-global-shadow-md); */ } .heroBanner h2 { font-size: 2rem !important; } .heroBanner p { font-size: 1rem !important; } .heroImage { max-height: 50vh; } .features { display: flex; margin-top: 5rem; margin-bottom: 5rem; align-items: center; padding: 2rem 0; width: 100%; } .forDevelopers { display: flex; margin-top: 5rem; align-items: center; padding: 2rem 0; width: 100%; } .forDevelopers .button { margin-top: 10px; } .featureCard { height: 100%; margin-bottom: 10px; } .featureImage { height: 50px; width: 50px; } .button { margin: 25px 10px; } .howCard h3 { font-size: 2.5rem; font-weight: 800; } .pricingCard h3 { font-size: 1.8rem; margin-bottom: 20px; } .pricingCard p { margin: 0; } .responsiveCentered { text-align: center; } .centered { text-align: center; } @media screen and (max-width: 999px) { .responsiveCentered { text-align: left; } }
CSS
4
ProPiloty/supabase
web/src/pages/styles.module.css
[ "Apache-2.0" ]
describe("casting to ooc array should allocate & memcpy", || carr: Int* = gc_malloc(Int size * 3) carr[0] = 1 carr[1] = 2 carr[2] = 3 arr := carr as Int[3] expect(1, arr[0]) expect(2, arr[1]) expect(3, arr[2]) )
ooc
3
shamanas/rock
test/compiler/arrays/cast-to-array.ooc
[ "MIT" ]
/* * This software is Copyright (c) 2016 Denis Burykin * [denis_burykin yahoo com], [denis-burykin2014 yandex ru] * and it is hereby released to the general public under the following terms: * Redistribution and use in source and binary forms, with or without * modification, are permitted. * */ `ifndef _LOG2_VH_ `define _LOG2_VH_ `define MSB(x) ( \ //x >= *65536 ?: \ x >= 256 *65536 ? 24 : \ x >= 128 *65536 ? 23 : \ x >= 64 *65536 ? 22 : \ x >= 32 *65536 ? 21 : \ x >= 16 *65536 ? 20 : \ x >= 8 *65536 ? 19 : \ x >= 4 *65536 ? 18 : \ x >= 2 *65536 ? 17 : \ x >= 65536 ? 16 : \ x >= 32768 ? 15 : \ x >= 16384 ? 14 : \ x >= 8192 ? 13 : \ x >= 4096 ? 12 : \ x >= 2048 ? 11 : \ x >= 1024 ? 10 : \ x >= 512 ? 9 : \ x >= 256 ? 8 : \ x >= 128 ? 7 : \ x >= 64 ? 6 : \ x >= 32 ? 5 : \ x >= 16 ? 4 : \ x >= 8 ? 3 : \ x >= 4 ? 2 : \ x >= 2 ? 1 : \ x >= 1 ? 0 : \ x == 0 ? 0 : \ -1 ) `endif
SystemVerilog
3
zaza568/yo
src/ztex/fpga/util/log2.vh
[ "OLDAP-2.4" ]
9 chr1 0 3000000 1 N 3000000 centromere no 9 chr2 0 3000000 1 N 3000000 centromere no 9 chr3 0 3000000 1 N 3000000 centromere no 9 chr4 0 3000000 1 N 3000000 centromere no 9 chr5 0 3000000 1 N 3000000 centromere no 9 chr6 0 3000000 1 N 3000000 centromere no 9 chr7 0 3000000 1 N 3000000 centromere no 9 chr8 0 3000000 1 N 3000000 centromere no 9 chr9 0 3000000 1 N 3000000 centromere no 9 chr10 0 3000000 1 N 3000000 centromere no 9 chr11 0 3000000 1 N 3000000 centromere no 9 chr12 0 3000000 1 N 3000000 centromere no 9 chr13 0 3000000 1 N 3000000 centromere no 9 chr14 0 3000000 1 N 3000000 centromere no 9 chr15 0 3000000 1 N 3000000 centromere no 9 chr16 0 3000000 1 N 3000000 centromere no 9 chr17 0 3000000 1 N 3000000 centromere no 9 chr18 0 3000000 1 N 3000000 centromere no 9 chr19 0 3000000 1 N 3000000 centromere no 9 chrX 0 3000000 1 N 3000000 centromere no 9 chrY 2902555 5902555 29 N 3000000 centromere no
GAP
0
taoziyu97/sigminer
data-raw/mm9.gap
[ "MIT" ]
version https://git-lfs.github.com/spec/v1 oid sha256:99b808cefaec741fc0ce681c3e3793814152d53c903618a3b9fddf1f725ef1a4 size 576
Nit
0
Theropod/MLinSiteSelection
GridWebPage/data/city_impervious_extraction/raw/DT17/info/arc0001.nit
[ "MIT" ]
--TEST-- Bug #67247 (spl_fixedarray_resize integer overflow) --FILE-- <?php $ar = new SplFixedArray(1); echo "size: ".$ar->getSize()."\n"; $ar->setSize((PHP_INT_SIZE==8)?0x2000000000000001:0x40000001); echo "size: ".$ar->getSize()."\n"; ?> --EXPECTF-- size: 1 Fatal error: Possible integer overflow in memory allocation (%d * %d + 0) in %s on line %d
PHP
4
thiagooak/php-src
ext/spl/tests/bug67247.phpt
[ "PHP-3.01" ]
--TEST-- Bug #70047 (gd_info() doesn't report WebP support) --EXTENSIONS-- gd --FILE-- <?php $info = gd_info(); var_dump(array_key_exists('WebP Support', $info)); var_dump($info['WebP Support'] === function_exists('imagewebp')); ?> --EXPECT-- bool(true) bool(true)
PHP
4
NathanFreeman/php-src
ext/gd/tests/bug70047.phpt
[ "PHP-3.01" ]
redo-ifchange ../redo/version/vars $2.md . ../redo/version/vars cat - $2.md <<-EOF % $2(1) Redo $TAG % Avery Pennarun <[email protected]> % $DATE EOF
Stata
3
BlameJohnny/redo
docs/default.md.tmp.do
[ "Apache-2.0" ]
/* Copyright ยฉ 2011-2014 MLstate This file is part of Opa. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /** * A configurable widget displaying a login prompt or information about the logged user. * * @author Guillem Rieu, 2010 * @author Hugo Heuzard, 2011 * @author Frederic Ye, 2011 * @category WIDGET * @destination PUBLIC * @stability EXPERIMENTAL * @version 0.3 */ import stdlib.widgets.core import stdlib.widgets.button type WLoginbox.stylers = { login_box : WStyler.styler logged_box : WStyler.styler unlogged_box : WStyler.styler submit : WStyler.styler } type WLoginbox.config = { https_host : option(string) login_text : string login_label : option(string) password_label : option(string) login_placeholder : option(string) password_placeholder : option(string) password_help : option(xhtml) fading_time : int // in ms stylers : WLoginbox.stylers } /** Display a login or the logged user if there is one. */ WLoginbox = get_username_id(id: string) = id ^ "_username" get_password_id(id: string) = id ^ "_password" get_logged_id(id: string) = id ^ "_logged" get_unlogged_id(id: string) = id ^ "_unlogged" get_not_logged_id(id: string) = id ^ "_not_logged" get_logged_user_id(id: string) = id ^ "_logged_user" {{ default_config = { https_host = none login_text = "Login" login_label = none password_label = none login_placeholder = some("username") password_placeholder = some("password") password_help = none fading_time = 0 stylers = { login_box = WStyler.empty logged_box = WStyler.empty unlogged_box = WStyler.empty submit = WStyler.empty } } : WLoginbox.config @private @client place_holder(_id,_init,_is_password)(_)= void // if false //not(Dom.Support.placeholder()) // then // if is_password // then // fid = "{id}_placeholder" // real() : void = do Dom.hide(#{fid}) Dom.show(#{id}) // fake() : void = do Dom.show(#{fid}) Dom.hide(#{id}) // blur() : void = if Dom.get_value(#{id}) == "" then fake() else real() // finput = Dom.of_xhtml(<input id="{fid}" type="text" value="{init}" style="display:none" onfocus={_ -> _ = real() Dom.give_focus(#{id})} />) // _ = Dom.put_after(#{id},finput) // _ = Dom.bind(#{id},{blur},( _ -> blur())) // _ = Dom.bind(#{id},{ready},( _ -> blur())) // Scheduler.sleep(300,blur) // else // f() = if Dom.get_value(#{id}) == "" // then Dom.set_value(#{id}, init) // else void // g() = if Dom.get_value(#{id}) == init // then Dom.set_value(#{id}, "") // else void // _ = Dom.bind(#{id},{blur},(_ ->f() )) // _ = Dom.bind(#{id},{focus},(_ -> g())) // Scheduler.sleep(300,f) // else void /** * Set the username and password fields to [username_init] and * [password_init] values as an hint to the user. The fields are cleared when * focused, and the password field, initially set to 'text' type (to make the * hint visible), is turned to a real 'password' type field. */ @client @private init_login(id: string, username_init: string, password_init: string): void = username_id = get_username_id(id) password_id = get_password_id(id) do Dom.set_value(#{username_id}, username_init) do Dom.set_value(#{password_id}, password_init) void html_default(id: string, login_action: (string, string -> void), //logout_action: (string -> void), usr_opt: option(xhtml)): xhtml = html(default_config, id, login_action, usr_opt) @private @client on_login(id, login_action)(_) = username_id = get_username_id(id) password_id = get_password_id(id) usr = Dom.get_value(#{username_id}) pwd = Dom.get_value(#{password_id}) login_action(usr, pwd) null_url = Resource.get_uri_of_null html(config: WLoginbox.config, id: string, login_action: (string, string -> void), usr_opt: option(xhtml)) : xhtml = prepend = match config.https_host with | {none} -> "" | {some=h} -> h form_id = "{id}__form" iframe_id = "{id}__iframe" _button_id = "{id}__button" //TODO use widgets button when fixed username_id = get_username_id(id) password_id = get_password_id(id) logged_id = get_logged_id(id) unlogged_id = get_unlogged_id(id) (login_css, _ /* logout_css */ ) = // Display login or logout box? Option.switch(_ -> ("display:none", ""), ("", "display:none"), usr_opt) login_form(init_username: string, init_password: string) = /* ugly hack : needs iframe to be the fake target of the submit form */ <iframe src="{prepend}{null_url}" id="{iframe_id}" name="{iframe_id}" width="0" height="0" style="visibility:hidden;display:none;width:0px;height:0px;opacity:0;"></iframe> <form target="{iframe_id}" method="post" action="{prepend}{null_url}" name="{form_id}" id="{form_id}" autocomplete="on" onsubmit={on_login(id, login_action)} role="form"> <span id={get_not_logged_id(id)} style="{login_css}"> {match config.login_label {some=s} -> <label for={username_id}>{s}</label> {none} -> <></>} <div class="form-group"> <input id={username_id} class="form-control" type="text" autocomplete="on" name="{username_id}" placeholder="{init_username}" onready={place_holder(username_id,init_username,false)} /> </div> {match config.password_label {some=s} -> <label for={password_id}>{s}</label> {none} -> <></>} <div class="form-group"> <input id={password_id} class="form-control" type="password" autocomplete="on" name="{password_id}" placeholder="{init_password}" onready={place_holder(password_id,init_password,true)} /> </div> {match config.password_help {some=ph} -> ph {none} -> <></>} {<button type="submit">{config.login_text}</button> |> WStyler.add(config.stylers.submit, _)} </span> </form>; // Login XHTML chunk itself <div id={id}> {login_form(config.login_placeholder?"", config.password_placeholder?"")} {<span id={logged_id}>{usr_opt ? <></>}</span> |> WStyler.add(config.stylers.logged_box, _)} {<span id={unlogged_id}/> |> WStyler.add(config.stylers.unlogged_box, _)} </div> |> WStyler.add(config.stylers.login_box, _) // FIXME: we should use config (pass it in parameter), but we need for that to modify CLogin also... @client set_logged_in(id: string, message: xhtml): void = logged_id = get_logged_id(id) d = Dom.unsplit([Dom.select_id(get_unlogged_id(id)), Dom.select_id(get_not_logged_id(id))]) //_ = Dom.transition(d, Dom.Effect.with_duration({millisec = config.fading_time}, Dom.Effect.hide())) _ = Dom.hide(d) do Dom.transform([#{logged_id} <- message]) //_ = Dom.transition(#{logged_id}, Dom.Effect.with_duration({millisec = config.fading_time}, Dom.Effect.show())) _ = Dom.show(#{logged_id}) do init_login(id, default_config.login_placeholder?"", default_config.password_placeholder?"") void // FIXME: we should use config (pass it in parameter), but we need for that to modify CLogin also... @client set_logged_out(id: string, message:xhtml): void = logged_id = get_logged_id(id) unlogged_id = get_unlogged_id(id) //_ = Dom.transition(#{logged_id}, Dom.Effect.with_duration({millisec = config.fading_time}, Dom.Effect.hide())) _ = Dom.hide(#{logged_id}) do Dom.transform([#{unlogged_id} <- message]) d = Dom.unsplit([Dom.select_id(unlogged_id), Dom.select_id(get_not_logged_id(id))]) //_ = Dom.transition(d, Dom.Effect.with_duration({millisec = config.fading_time}, Dom.Effect.show())) _ = Dom.show(d) _ = Dom.remove(#{get_logged_user_id(id)}) void }}
Opa
5
Machiaweliczny/oppailang
lib/stdlib/widgets/loginbox/loginbox.opa
[ "MIT" ]
static const uint32_t in_com1[512] = { 0x3f0084e4, 0xbe9995e3, 0xbf0170b0, 0xbec86a88, 0x3dec3214, 0xbd8eec8f, 0xbdd35476, 0x3e7f37ac, 0xbf192f01, 0x3eba0432, 0xbeb508e5, 0xbf800000, 0xbe012612, 0xbe6ff3e2, 0xbe618246, 0x3cb5cf30, 0xbd2f26d7, 0x3e3c1b4d, 0x3eb9a1c1, 0xbe05ea3b, 0xbd0135fb, 0x3dd144d4, 0xbd525df7, 0xbe87ce15, 0x3d8d64c4, 0xbe75b299, 0xbee8617b, 0x3f116a51, 0x3e207a78, 0xbe1ac2a1, 0xbe3ca86a, 0x3e2a5dc1, 0xbe5bd91f, 0xbf23b59b, 0x3d1f02a1, 0x3e62f5b9, 0xbe0dab93, 0xbdad40bd, 0xbe210a11, 0x3e2498dd, 0xbefb7d10, 0xbf453d90, 0x3de65c60, 0x3e58b385, 0xbe804335, 0x3ead7f62, 0xbe38c32b, 0xbe906b71, 0xbe805acd, 0xbe9cdd57, 0x3e798c7e, 0x3e8066f3, 0x3e4741ed, 0xbe8e103f, 0xbe436b7e, 0xbc219363, 0xbede5dbf, 0xbe00b338, 0x3e5c9f1a, 0x3e47fd62, 0xbea64f65, 0xbde8237c, 0x3dbab144, 0x3dfb9ab8, 0x3dd2b694, 0x3beb2279, 0x3eaf3b7b, 0x3e70bea7, 0xbea34614, 0xbf022556, 0x3da9b165, 0xbef79918, 0xbdf5a582, 0xbe889a61, 0xbe65d795, 0x3d808006, 0x3efe6870, 0xbe6b90c0, 0xbe00f1b3, 0xbdd6434c, 0x3d9bd9ab, 0x3d432fec, 0x3f09c4f5, 0x3dea590e, 0xbf053ba3, 0x3f10c823, 0xbf06e797, 0x3f3c1977, 0xbeb79027, 0xbd79a321, 0x3cea4743, 0xbebc2f10, 0x3edcc01d, 0xbc3c9e0c, 0xbbf272a3, 0x3ea05605, 0x3b329f0b, 0x3e51c569, 0x3e110b95, 0xbe8bf5a5, 0xbe364836, 0xbef16501, 0xbde029c5, 0xbdb849ec, 0xba17a81d, 0x3db912a1, 0xbd7fde8e, 0x3ee63968, 0xbe25db83, 0xbe30b0cf, 0xbe2a6736, 0x3e57cd8b, 0xbe4d8066, 0x3e5a83ce, 0x3e8e52d0, 0xbd99674c, 0x3e8c8260, 0x3ed0baac, 0x3eeb4a92, 0x3d17a9e7, 0xbe7f7c11, 0x3d52b379, 0x3d3dd8c7, 0x3e4a8f3f, 0x3eabd769, 0xbdd78558, 0x3f07ea3a, 0x3d011075, 0x3e12192f, 0x3d8d2f3c, 0x3e814a5e, 0x3db9e93b, 0x3ead5d94, 0x3d928b21, 0x3e4353a8, 0xbd0f5662, 0x3da08f6a, 0x3d322a17, 0x3d836e97, 0x3d49ead5, 0x3e3f890f, 0x3e2a704b, 0xbcf20e17, 0xbe8d80da, 0xbe93ac47, 0x3e6fc470, 0x3dd656f5, 0x3f3c9b4e, 0x3ee45d2f, 0xbdb9e4e3, 0xbd2330a8, 0x3e33e8b5, 0x3ec9467a, 0xbd534d3c, 0x3e53fd7f, 0xbeab7fb2, 0x3c3aebee, 0x3d8fea35, 0xbe592a72, 0xbe3d3053, 0xbe1e94b0, 0xbe52fde4, 0xbcd33d2a, 0x3e906d93, 0x3e864005, 0xbe3d8f1a, 0x3eb9a66f, 0xbe3558d4, 0x3ef08d8f, 0xbe97b919, 0xbe5b6e7f, 0x3d997813, 0x3e6f31f8, 0x3ebb5882, 0x3e81484b, 0x3e9d7e60, 0xbdfb6ac2, 0x3ed4bb64, 0xbf204164, 0x3e1d18e9, 0xbe7277ed, 0xbdbc0d5b, 0xbe194df6, 0x3e337c23, 0xbf0480d3, 0x3e8f0a8c, 0xbf033627, 0xbf069f49, 0x3e90b4d7, 0x3cd67239, 0xbe1f1b95, 0x3da94b48, 0x3cd8c19d, 0xbf09b38e, 0x3ee3e6f1, 0xbd93b24b, 0xbd7223b7, 0xbdbf7635, 0x3bc0a48b, 0x3dee2421, 0x3f13a1a2, 0x3dc445c9, 0xbef196cc, 0x3eaecc75, 0x3b2f51b6, 0x3e43154f, 0xbe474e85, 0x3e5f1885, 0xbe247b90, 0xbee7c404, 0x3e8d8a08, 0x3f0cc0b8, 0xbe5e28da, 0x3ec20ea5, 0x3db91c9c, 0xbd78e11c, 0xbd833aa6, 0x3ddd7f45, 0xbeca6186, 0x3e959a63, 0x3e99d15a, 0x3e7d1ac8, 0x3f05415f, 0xbea79f57, 0xbd6fc62c, 0xbe23c97a, 0xbd1885ee, 0xbe0e813e, 0x3dab0752, 0xbe6026e7, 0x3e6e3c5b, 0xbe5efa50, 0xbf032707, 0xbf03d653, 0xbf126305, 0x3e4d603e, 0x3e5bb268, 0xbf03fb5f, 0x3d8c9de8, 0x3e9b08b4, 0x3dcd890a, 0x3dc5cd85, 0x3e0dfb17, 0x3e4d714f, 0xbea3977e, 0x3eef8f5d, 0x3e954442, 0xbda16259, 0xbe64284f, 0xbba68454, 0x3ec1f226, 0x3e612c82, 0x3e9bfbaa, 0xbcd0d356, 0xbf3c56af, 0x3e5bde84, 0x3c37b128, 0xbe0457e1, 0x3e4e71de, 0xbe30b507, 0xbe3b5e77, 0x3ee7c54b, 0xbeb0788a, 0xbd82b1a5, 0x3ec10b77, 0xbe75f88e, 0xbcc0d96a, 0x3f01f431, 0x3d619de9, 0x3dd1d4d6, 0xbe6cc086, 0x3d62a209, 0x3e69615d, 0x3e83fb0e, 0xbe03cd95, 0x3c3e6f95, 0xbe5b2cd7, 0x3d99ee78, 0xbe9f4ce5, 0xbe58dc84, 0xbf35bf34, 0x3aca4388, 0xbeb31f40, 0xbe8b2a83, 0x3d814c1a, 0xbd0c9731, 0x3daf8002, 0x3e8ad963, 0xbea0d38f, 0x3dea59a4, 0x3ddff794, 0xbee608b9, 0x3f24b219, 0x3e91b85a, 0x3cfa28b4, 0xbdeeaf7a, 0xbd2ff925, 0x3f2801de, 0x3e9ea6d2, 0xbe1c10b2, 0x3e32ac2b, 0xbe97a379, 0xbf12824d, 0x3f19b99d, 0x3ef151dd, 0xbde870a4, 0x3f4f4b0f, 0x3ea95ab9, 0xbf1cb630, 0x3df20730, 0x3d77a811, 0x3dcb568f, 0xbb77be48, 0xbed03bca, 0xbecb2f31, 0xbf446e23, 0xbed77cd3, 0xbecb648f, 0x3f28e9f6, 0x3e87aad8, 0xbdba4dd4, 0x3ea519d8, 0xbeac6589, 0xbee4690e, 0x3dedaaf1, 0x3d898771, 0x3e3deee4, 0xbbaf2e62, 0x3de43b30, 0x3c1f2a67, 0xbe917c84, 0xbe1a200d, 0x3f13b223, 0xbe5b1d1e, 0xbf0e4d3b, 0xbdc4064d, 0x3e4f7e12, 0xbeb643a2, 0xbef60d0e, 0xbf182828, 0x3d7e4a65, 0x3dd4ca17, 0x3d9c24e1, 0xbb694f77, 0xbed7bbe7, 0xbd0af39a, 0xbd499f39, 0x3ecf0f65, 0x3f20aa2b, 0xbcfaa14f, 0x3ee7f59b, 0x3e30e185, 0x3e12800e, 0x3e876f25, 0x3bf409ca, 0x3e86555e, 0xbd510d02, 0xbdf1bea6, 0xbf106379, 0x3ba7de0d, 0x3eccb87b, 0x3e9f3970, 0x3e25e58a, 0x3e0061fd, 0x3eca507b, 0xbdb684a8, 0x3ea3707b, 0xbe75e8d6, 0x3f16d481, 0x3e1f515e, 0xbe12d84a, 0x3e41bef7, 0xbdaf7eae, 0xbeb0ca4e, 0xbded2b8e, 0xbd589643, 0xbd62255e, 0xbf0e7a04, 0xbf1de906, 0xbe6e842c, 0x3e3f32bb, 0xbd7c3e39, 0xbec3ffa7, 0x3e46ab63, 0x3e95a600, 0xbcf42638, 0xbe5222d3, 0x3e0c0f46, 0x3e48255c, 0x3e00b6c1, 0xbc18ccc6, 0xbe74e1d4, 0xbeeaa1fb, 0xbd944a0d, 0xbe7f2ed5, 0xbe4b95bc, 0xbe315ab8, 0x3dd25497, 0xbf265207, 0x3f00db75, 0x3e38fbfe, 0xbf5adeb2, 0xbdef1655, 0xbe19a85e, 0xbeaa1219, 0x3dd39454, 0xbd9ec21a, 0x3ddf9139, 0xbe9f2506, 0xbe287528, 0x3dd57c9e, 0x3bd34c0f, 0x3e9c3531, 0x3c058c9a, 0x3f27607f, 0xbea90d65, 0x3becf53c, 0xbf03dead, 0x3f0c39ce, 0xbef4017c, 0x3e54a235, 0xbf4c7ea8, 0x3dfc773a, 0xbea08b87, 0xbeddf85b, 0xbe8b1552, 0x3d8d7693, 0xbe30723c, 0xbdaf0a55, 0xbe9ac467, 0xbe52d73b, 0xbea1e4d3, 0xbddae9e1, 0xbe93431e, 0x3d174f8a, 0x3e81ba72, 0x3eb0b74f, 0xbeacf23a, 0x3d114646, 0x3ed371aa, 0xbe588ee9, 0xbd81fc1c, 0x3e3ae3cf, 0x3dd15023, 0x3d96922f, 0x3ef3bbc7, 0xbe7556ce, 0xbea7398e, 0xbd893c6e, 0xbe4516c0, 0xbebd212e, 0x3d0488c9, 0xbe65b702, 0xbdf49516, 0x3ddad8bd, 0xbe06c415, 0x3e18a376, 0xbeab3fde, 0x3e9af923, 0x3e12fda1, 0xbec066e5, 0xbec9cfd4, 0xbe89c552, 0x3e95b2ea, 0x3e3bfa4f, 0x3ea3d210, 0x3c73b123, 0xbd2dccec, 0x3f02315e, 0xbec58fd6, 0x3e2fdfef, 0x3e94db5f, 0xbe860bc2, 0x3ecec451, 0x3d1701f0, 0x3cf8e19f, 0x3f118e88, 0xbe79f69e, 0xbebeeb83, 0x3c69c7ef, 0x3e576240, 0x3f2c20ac, 0x3d3bc289, 0xbc2cd316, 0xbcb9f90b, 0x3e1b3ac8, 0x3e81fcae, 0xbe38f38e, 0x3eafea2f, 0xbed174ec, 0xbdc8c0fb, 0x3ef8ec15, 0x3d0f8044, 0xbecaebcc, 0xbe10fae7, 0xbe2254e5, 0xbedafb89, 0xbe1a8f3d, 0xbbb48407, 0x38a51912, 0xbbeb4d97, 0x3df6eb0c, 0xbe9235c4, 0xbeefe606, 0x3f04b735, 0x3d1ed892, 0xbc5ca85e, 0x3ecfb4ff, 0xbee5eaf7, 0xbe0a66c7, 0x3e92fdc0, 0xbf0e5137 }; static const uint32_t in_com2[512] = { 0x3d0374a2, 0xbe7c4005, 0xbe27c5cb, 0xbf137977, 0x3e4c3c5f, 0xbd786d9f, 0xbede7347, 0xbc4c85b1, 0x3d8fab5a, 0xbe9d8230, 0x3edd67fa, 0xbf5a2244, 0xbe9a4e44, 0x3eb696f2, 0x3e843982, 0x3d3435ca, 0xbd85f601, 0xbe226ffe, 0xbe99c07f, 0xbddb987b, 0x3e18d9f0, 0x3f4457fb, 0x3e350b79, 0x3dfafa13, 0xbdeb3d68, 0xbe002d1e, 0x3e950548, 0x3d3c97f1, 0xbe1e3d27, 0xbf6f6109, 0xbf3c6df2, 0xbec4988f, 0xbf1f6cd9, 0xbebc3c18, 0x3e3d54d5, 0xbd8d321a, 0x3eafe0ab, 0x3f0795ba, 0xbdc8e18b, 0x3effa2c4, 0xbe9225c3, 0xbec738f6, 0x3f3d8f18, 0x3e60a7b6, 0xbda1a9ce, 0xbba343ae, 0xbe5d2efe, 0xbdfcac82, 0xbe398455, 0x3ecb992b, 0xbdfc7ddd, 0xbe8af453, 0xbe3b128c, 0x3ca31782, 0x3eeab580, 0x3e785a19, 0xbe190df3, 0x3e378b94, 0x3d105bfe, 0x3e8c5156, 0x3f06e5ca, 0xbddb605a, 0x3ecf94c7, 0xbcda1dc2, 0x3e85e3af, 0xbe2473c4, 0xbd2b15f7, 0x3e21dc33, 0x3ef14a2d, 0x3e57ba60, 0x3e91bbf4, 0xbedbb225, 0x3d5b9324, 0x3e539212, 0x3dad42c9, 0x3df39fb0, 0xbe8ad4a4, 0xbdfe2705, 0xbe8ce477, 0xbd98d6bb, 0x3f0f74df, 0xbe568222, 0xbddf3ff6, 0x3e0aa14f, 0x3e3090e6, 0xbef3fbe0, 0xbe7524f8, 0x3f0e90e8, 0xbe26b50f, 0xbf1ddf70, 0xbe080259, 0xbf057a59, 0x3effcd8f, 0xbedaec4c, 0xbdfca709, 0x3e394304, 0xbe20b46b, 0x3f113976, 0xbe88e6a3, 0x3ef67d76, 0xbe480c4f, 0x3d228932, 0x3ef4ac9d, 0x3e864d68, 0xbd283c15, 0x3ec07cb5, 0xbea5f6a9, 0x3df441d1, 0x3e97be7d, 0xbef2e686, 0xbd8dea27, 0xbdaf1af3, 0xbeafa31f, 0x3e1933c8, 0x3e0eff33, 0x3dd44ce9, 0xbe8767f4, 0xbeafeb07, 0xbf0374c6, 0x3e731266, 0xbca67317, 0xbdfe9479, 0x3ca09c5c, 0xbec55962, 0xbe94383a, 0x3eb432d8, 0xbd4bf3dd, 0x3eeab363, 0x3ec8f710, 0x3e67a8ca, 0xbeb3795d, 0xbf0ecfb4, 0xbecb9af4, 0x3e2010ce, 0xbea09cf3, 0x3e9c7810, 0x3e639e45, 0x3e802493, 0x3e9e8fd3, 0xbecd220a, 0xbe15ce9f, 0x3e939da3, 0xbe606627, 0x3e9946ba, 0x3ea84c91, 0x3e2edf30, 0xbdbea9c7, 0xbe58fff2, 0x3db316ff, 0xbe7ceb8b, 0xbef9859a, 0x3d5f76f7, 0xbea1b64c, 0x3e88f86d, 0x3eb6d6be, 0x3f17cd56, 0x3f1a7d91, 0xbf277ddb, 0xbf06dc6f, 0x3e8c4cf3, 0x3e74ac0a, 0xbe1f73da, 0x3e6cad28, 0xbd68fe94, 0xbea1e47d, 0x3dabc69b, 0x3cdcd49f, 0xbe56c28a, 0x3e7ab866, 0xbdfafb4a, 0x3ece11e1, 0x3df80259, 0xbd171f00, 0xbe61f18f, 0xbe8d1d75, 0xbd4e5998, 0x3ea5697a, 0x3ebd1f0d, 0xbdcbafb4, 0xbe8acd12, 0xbb86e966, 0xbeeef063, 0x3e5eb73c, 0x3ef9e268, 0x3e9960b9, 0xbf115029, 0x3e73e41e, 0xbf366831, 0xbd07ea80, 0xbe0d53a9, 0x3ee007bd, 0x3ea936a6, 0x3de2e856, 0xbe487c2a, 0xbdd4fa4c, 0xbd818a17, 0x3ec938a0, 0x3e44b9c9, 0xbe124098, 0xbf061048, 0xbe794070, 0xbde8f629, 0xbe853868, 0xbef3ecee, 0xbe7d4c1e, 0x3e86f810, 0x3d6fe47b, 0xbdb180dd, 0xbe276077, 0xbd40e440, 0xbe212bb1, 0xbe916d94, 0xbea30712, 0x3efd1bf2, 0xbe7ced34, 0xbe61ec92, 0x3e8e2451, 0xbe4df2a5, 0xbf42e9ef, 0xbe2c4806, 0xbd282f8e, 0x3f0202f4, 0xbf50b95e, 0x3e9c52bb, 0xbe676421, 0x3ed88ab5, 0xbed2ffaf, 0x3d771353, 0x3d5cc2e9, 0x3ee09baf, 0xbe40187d, 0x3ab3cc8d, 0xbe4fd88b, 0x3ef9b4fe, 0x3f06c044, 0x3f143225, 0x3c53f47d, 0xbe412645, 0xbaaf9ab8, 0xbed72380, 0x3d13d63e, 0xbde6e2ee, 0x3e36070c, 0xbd720960, 0xbe83579a, 0xbcd5ded3, 0xbd29e843, 0x3df76fbd, 0xbe12a304, 0xbea6816e, 0x3d92171f, 0xbe56d6f6, 0x3dd85c3a, 0xbe75b6e7, 0x3d3b86a5, 0x3db22ecc, 0x3ed25563, 0x3ea32cc2, 0xbf0cd38e, 0xbecb5893, 0xbdf0380c, 0xbeb239f5, 0x3e53eedd, 0xbf04acde, 0xbf3501db, 0x3d8dd505, 0x3edb6039, 0x3e891060, 0xbd84a867, 0xbe7f39a4, 0x3e36640a, 0xbf76e899, 0x3cab87ee, 0x3ea3c20d, 0x3e1a18ce, 0xbe7d302e, 0x3ed56d73, 0x3ebf15b8, 0x3dddecee, 0xbdd5935a, 0x3e78b866, 0xbef1cf31, 0xbe0a6b49, 0xbf2a2c71, 0xbe04cecb, 0xbeff655d, 0x3dde29b3, 0xbe1c23b0, 0xbe3a7c3d, 0xbe85e9d2, 0xbb7e2d8f, 0xbe2b0f0f, 0xbf031303, 0x3eeff082, 0xbea01756, 0xbede0aa7, 0x3e04d7dd, 0xbd407f7b, 0xbca8627e, 0x3f1f8119, 0x3ecff677, 0x3e34748e, 0xbca340e4, 0xbdf4d802, 0xbd185c40, 0x3df131e3, 0xbdcde019, 0xbeedbbcc, 0xbe0d79e4, 0xbf08e159, 0x3d418aa5, 0xbc70f893, 0xbf274e14, 0x3d5887d5, 0x3d0bfd8d, 0xbe5ec0d4, 0xbf7a441e, 0xbccf6d99, 0xbea5ff47, 0xbeb2d551, 0x3eb6af6d, 0x3cf753f1, 0x3eadaf91, 0x3efd34fd, 0xbe0a356f, 0xbe984591, 0x3cf6c8f8, 0xbcbf5f0a, 0x3e783484, 0xbe0940b6, 0xbeb42314, 0xbd1f3d30, 0x3edd2950, 0xbe0acd3d, 0xbd91b826, 0x3e1df0cb, 0x3d324cd2, 0xbea273f6, 0x3e8c45fe, 0x3ee56c7e, 0x3df0fc82, 0x3eabcf2c, 0xbef25b35, 0x3d6fc801, 0xbcd142a4, 0x3eb694a9, 0x3d38c3f7, 0x3ef210af, 0xbe4c442b, 0x3ea3e012, 0x3e58f4e3, 0xbebcbd4c, 0xbe935695, 0xbc7e8561, 0x3e92be7a, 0xbe9e73b4, 0x3e87ceec, 0x3d3cbeae, 0xbd6f1afb, 0xbd9c76c4, 0xbe30a62c, 0xbe2f6f1b, 0xbdb2825c, 0x3c4fb4b4, 0x3ebb616f, 0xbe97a261, 0xbed982b9, 0x3db53594, 0x3e8870d7, 0x3df36f3e, 0x3de5f129, 0xbea7ae81, 0xbe457b0c, 0x3e11320e, 0xbdcdcfe9, 0x3cb6d7c0, 0xbda67f58, 0xbc3ea52f, 0x3edf5dfc, 0xbf365a98, 0x3cfa2fe5, 0x3e762168, 0xbe4c96d5, 0x3ecf8f3e, 0x3eb04a52, 0x3e892efa, 0xbe2c8c63, 0xbd40de7b, 0xbe8b9751, 0xbe885a19, 0xbedf3405, 0xbe9e247e, 0x3f08942c, 0x3e04f70d, 0x3ea44b0d, 0x3e3be5e5, 0xbddba100, 0x3e4ca7dc, 0x3f172a4a, 0x3dc07f78, 0x3f1209e5, 0x3dd5416e, 0xbeb04eeb, 0x3ea6969f, 0x3f800000, 0xbeb9e7c1, 0xbe82e9d7, 0xbe3ed311, 0x3e9d40b0, 0x3e6ecfec, 0xbe802f88, 0xbf340dd5, 0xbee11ac7, 0x3d1267e4, 0x3f0a81c8, 0xbeec64dc, 0x3e84afe9, 0xbeb03b52, 0x3e1662df, 0x3e9fe162, 0xbc1787f8, 0x3f1845ad, 0xbe1be6a8, 0x3b8431be, 0xbf4311cd, 0x3d80a29d, 0xbe38c0a4, 0x3c1d1438, 0x3d89ca14, 0x3de9fdef, 0x3d99d2ea, 0xbb129695, 0x3e6edf77, 0xbef79a85, 0xbec6940d, 0xbf2f8652, 0x3effa523, 0x3f0c3396, 0x3dc2c55b, 0x3c506460, 0xbeac7c7d, 0xbe34c59d, 0xbd4baf80, 0xbebc2b21, 0x3f01aa9c, 0x3e4629e8, 0xbe33701e, 0xbe1a2c51, 0xbeb39096, 0x3e482386, 0x3e6e524d, 0xbe2df940, 0xbe655503, 0x3ecd2897, 0xbe1ac5af, 0xbea2df0a, 0x3cf5dfe2, 0xbec78583, 0xbd13adaf, 0xbeb73769, 0x3ee1cb88, 0xbe931d61, 0xbddf6adb, 0x3df89fef, 0x3da5f390, 0x3f21bbdf, 0x3f2e8a40, 0x3e907dc1, 0x3ec6deeb, 0xbd8e99e8, 0x3f090920, 0x3f17c2d5, 0x3f472c54, 0x3ca16f34, 0x3e37622f, 0x3d6127e4, 0x3e750d9d, 0xbf12800b, 0x3eb1e72b, 0xbe954668, 0xbd44521d, 0xbecaeea6, 0xbe3b9109, 0x3dd53206, 0xbe065c2f, 0x3e4ec3c4, 0xbf1f740f, 0xbe35e07d, 0x3d284a82, 0xbe02bd05, 0xbec7c7bc, 0x3ec535f7, 0xbefcb194, 0xbf38dc67, 0x3e3def7a, 0xbea1c018, 0xbeaf9f6e, 0x3f00358b, 0x3de0ff3c, 0x3e3206b1, 0xbe830c52, 0xbdb513c8, 0xbebdd9ad, 0xbd5c7c40, 0xbd03db95, 0xbf173a51, 0xbeae7b04, 0x3dae812c, 0xbe8eec06, 0x3e3dbfb3, 0x3dd5bf9d, 0x3f10e788 }; static const uint32_t in_com3[256] = { 0xbdbc9f60, 0xbe21fcaa, 0xbd28b2fc, 0xbdf3f8a9, 0xbe4de49e, 0xbd9f8558, 0x3eb1619f, 0x3d61f3d8, 0x3dc1b32d, 0xbe84ce4c, 0xbdb74dda, 0xbea650c8, 0x3e62a7be, 0x3e87ff2b, 0xbe4d9e81, 0x3e98df9d, 0x3e1d8219, 0x3ead97c0, 0x3c3858c1, 0xbe71b2d9, 0x3eabab78, 0xbeb52b31, 0x3f17a075, 0xbe905fe2, 0xbe491086, 0x3ca01013, 0x3ee98d85, 0x3bbd6f33, 0xbe946bbb, 0x3eac082c, 0x3ebc0115, 0xbea7e42b, 0x3e9604b8, 0x3d6ceff7, 0x3e2b699b, 0xbdc30cb5, 0x3ee2e62c, 0xbf1e5787, 0xbe3422f0, 0x3e18ef6f, 0x3e391bfb, 0xbf423f46, 0xbc83d2b1, 0x3e437afb, 0x3d9f34b3, 0x3e8348ce, 0xbea1eeca, 0xbdfeb70a, 0x3f2d09ea, 0xbeabb3a0, 0xbe24d5d9, 0x3e4e085d, 0x3e07667c, 0x3da3ee8f, 0x3e5eb530, 0x3dc41b79, 0x3ea03476, 0x3cc43d2a, 0xbdafd628, 0x3e4f19f4, 0xbe9cdd75, 0xbd706a89, 0x3e86c82e, 0x3e77e6b8, 0xbec14dc7, 0xbda08569, 0x3f1d6be5, 0x3e2b4b32, 0x3db605a2, 0xbc665582, 0xbd577fe5, 0xbe2d6b03, 0xbf03a2b5, 0xbf50d468, 0xbea8e3c2, 0x3ec1e20d, 0x3e906b70, 0x3e05ed36, 0xbed40b2d, 0x3d0c0e59, 0x3ee9c12e, 0xbe1b1c74, 0x3eb56937, 0x3da06290, 0x3e2a71a9, 0xbd84aeee, 0xbdbfd6b3, 0xbddf3817, 0xbef84c61, 0x3e0ad4a5, 0x3db21808, 0x3e504425, 0x3ebf675f, 0x3eca584b, 0x3e9d34a8, 0xbec681b0, 0xbdc44a89, 0x3e82ba3e, 0x3cf1667c, 0xbccd6d55, 0x3df41d7f, 0xbd2ff275, 0xbd4799a4, 0x3ecddea3, 0xbc9d0985, 0xbddc74d8, 0x3c8475ea, 0x3e8662c0, 0xbdcf550f, 0x3e8b7fb5, 0xbe2d5db6, 0xbe85afb9, 0xbe33ace2, 0xbea1e30c, 0x3deed705, 0x3dd59f0f, 0x3df506a9, 0x3b9c05c1, 0xbe9bda1e, 0x3e731b68, 0x3ddfaad7, 0xbe11e842, 0xbe1becc9, 0x3ec66191, 0x3e624293, 0x3da31cd6, 0x3e577476, 0x3e09b5da, 0xbf5b770b, 0x3de8098b, 0xbe86f686, 0xbd3d4f87, 0xbc1cedbe, 0x3d50ce58, 0xbf02003a, 0x3f292023, 0xbe2c4a7d, 0xbd3ca14f, 0xbea3a0bf, 0xbd6867dd, 0x3d2a82ce, 0x3e680bb3, 0xbe8e1ec2, 0x3ecb17f2, 0x3e19eee9, 0xbd1b6fe3, 0xbea446ee, 0xbe0db770, 0xbe0d3473, 0xbe2dafb2, 0x3c191167, 0x3ce2963a, 0xbdc57f4c, 0x3d05d801, 0xbe8ce2c5, 0x3f800000, 0xbec05ad6, 0x3e80b9ea, 0xbe121b47, 0x3df50772, 0xbe280dcd, 0xbeb80d87, 0xbd12eaf2, 0xbef590e5, 0x3e92695f, 0xbedc1d62, 0xbe1f04f2, 0xbebded34, 0xbef0f5f4, 0x3da326ac, 0x3e64ce32, 0xbe3ed3d6, 0xbf3a3b42, 0xbd7c7d33, 0x3db60e45, 0x3da19cca, 0xbdbfff0f, 0x3cb41567, 0xbd87561f, 0xbc1fa852, 0xbdab2204, 0xbd9da0b8, 0x3e6774e0, 0x3d408bc8, 0x3e846181, 0xbe97486e, 0xbd2c16d2, 0xbe933eec, 0xbdfadf72, 0xbda03276, 0x3e9595c6, 0x3ea2e316, 0xbe1cf43d, 0x3e93d698, 0xbe48852d, 0xbea6e0c9, 0x3ea48fff, 0xbd47a9fc, 0xbd1b6439, 0x3f584aaf, 0x3e8878d5, 0xbd3076a8, 0xbde50a31, 0xbe5d7ab8, 0x3e10e0a1, 0xbcaa6be6, 0xbdac1270, 0xbe76c07c, 0xbe2fbcaa, 0xbed87381, 0xbe03c9cc, 0x3e970c49, 0x3c8ba245, 0xbe0cb54c, 0xbd7b74ba, 0x3db0e3aa, 0xbe00875c, 0x3e9a2294, 0xbeadf4b3, 0x3f5b8e28, 0xbe3a011b, 0xbdf75f87, 0x3bb69434, 0x3c019571, 0x3d8e236b, 0xbe1307a2, 0xbe2f89e0, 0x3ec992fc, 0xbd9e16bd, 0xbe850eb7, 0xbecb44a6, 0xbe1c4ba9, 0x3d8aa628, 0xbe62d079, 0xbd52b2a2, 0xbc8ccf3e, 0xbe4f7d21, 0x3dd7dd25, 0xbe13aeef, 0xbe918de1, 0x3df7fa67, 0xbe177863, 0xbed58b0e, 0x3e273e15, 0xbdeefaa8, 0xbdb9c765, 0x3ea87f7e, 0xbf493b03, 0xbe8e4af2, 0xbe50b6b2, 0x3df1ee7d, 0xbe4aa5d7, 0xbdcc37d2, 0x3bd87746, 0xbda912c5, 0x3e69ca72 }; static const uint32_t ref_conj[512] = { 0x3f0084e4, 0x3e9995e3, 0xbf0170b0, 0x3ec86a88, 0x3dec3214, 0x3d8eec8f, 0xbdd35476, 0xbe7f37ac, 0xbf192f01, 0xbeba0432, 0xbeb508e5, 0x3f800000, 0xbe012612, 0x3e6ff3e2, 0xbe618246, 0xbcb5cf30, 0xbd2f26d7, 0xbe3c1b4d, 0x3eb9a1c1, 0x3e05ea3b, 0xbd0135fb, 0xbdd144d4, 0xbd525df7, 0x3e87ce15, 0x3d8d64c4, 0x3e75b299, 0xbee8617b, 0xbf116a51, 0x3e207a78, 0x3e1ac2a1, 0xbe3ca86a, 0xbe2a5dc1, 0xbe5bd91f, 0x3f23b59b, 0x3d1f02a1, 0xbe62f5b9, 0xbe0dab93, 0x3dad40bd, 0xbe210a11, 0xbe2498dd, 0xbefb7d10, 0x3f453d90, 0x3de65c60, 0xbe58b385, 0xbe804335, 0xbead7f62, 0xbe38c32b, 0x3e906b71, 0xbe805acd, 0x3e9cdd57, 0x3e798c7e, 0xbe8066f3, 0x3e4741ed, 0x3e8e103f, 0xbe436b7e, 0x3c219363, 0xbede5dbf, 0x3e00b338, 0x3e5c9f1a, 0xbe47fd62, 0xbea64f65, 0x3de8237c, 0x3dbab144, 0xbdfb9ab8, 0x3dd2b694, 0xbbeb2279, 0x3eaf3b7b, 0xbe70bea7, 0xbea34614, 0x3f022556, 0x3da9b165, 0x3ef79918, 0xbdf5a582, 0x3e889a61, 0xbe65d795, 0xbd808006, 0x3efe6870, 0x3e6b90c0, 0xbe00f1b3, 0x3dd6434c, 0x3d9bd9ab, 0xbd432fec, 0x3f09c4f5, 0xbdea590e, 0xbf053ba3, 0xbf10c823, 0xbf06e797, 0xbf3c1977, 0xbeb79027, 0x3d79a321, 0x3cea4743, 0x3ebc2f10, 0x3edcc01d, 0x3c3c9e0c, 0xbbf272a3, 0xbea05605, 0x3b329f0b, 0xbe51c569, 0x3e110b95, 0x3e8bf5a5, 0xbe364836, 0x3ef16501, 0xbde029c5, 0x3db849ec, 0xba17a81d, 0xbdb912a1, 0xbd7fde8e, 0xbee63968, 0xbe25db83, 0x3e30b0cf, 0xbe2a6736, 0xbe57cd8b, 0xbe4d8066, 0xbe5a83ce, 0x3e8e52d0, 0x3d99674c, 0x3e8c8260, 0xbed0baac, 0x3eeb4a92, 0xbd17a9e7, 0xbe7f7c11, 0xbd52b379, 0x3d3dd8c7, 0xbe4a8f3f, 0x3eabd769, 0x3dd78558, 0x3f07ea3a, 0xbd011075, 0x3e12192f, 0xbd8d2f3c, 0x3e814a5e, 0xbdb9e93b, 0x3ead5d94, 0xbd928b21, 0x3e4353a8, 0x3d0f5662, 0x3da08f6a, 0xbd322a17, 0x3d836e97, 0xbd49ead5, 0x3e3f890f, 0xbe2a704b, 0xbcf20e17, 0x3e8d80da, 0xbe93ac47, 0xbe6fc470, 0x3dd656f5, 0xbf3c9b4e, 0x3ee45d2f, 0x3db9e4e3, 0xbd2330a8, 0xbe33e8b5, 0x3ec9467a, 0x3d534d3c, 0x3e53fd7f, 0x3eab7fb2, 0x3c3aebee, 0xbd8fea35, 0xbe592a72, 0x3e3d3053, 0xbe1e94b0, 0x3e52fde4, 0xbcd33d2a, 0xbe906d93, 0x3e864005, 0x3e3d8f1a, 0x3eb9a66f, 0x3e3558d4, 0x3ef08d8f, 0x3e97b919, 0xbe5b6e7f, 0xbd997813, 0x3e6f31f8, 0xbebb5882, 0x3e81484b, 0xbe9d7e60, 0xbdfb6ac2, 0xbed4bb64, 0xbf204164, 0xbe1d18e9, 0xbe7277ed, 0x3dbc0d5b, 0xbe194df6, 0xbe337c23, 0xbf0480d3, 0xbe8f0a8c, 0xbf033627, 0x3f069f49, 0x3e90b4d7, 0xbcd67239, 0xbe1f1b95, 0xbda94b48, 0x3cd8c19d, 0x3f09b38e, 0x3ee3e6f1, 0x3d93b24b, 0xbd7223b7, 0x3dbf7635, 0x3bc0a48b, 0xbdee2421, 0x3f13a1a2, 0xbdc445c9, 0xbef196cc, 0xbeaecc75, 0x3b2f51b6, 0xbe43154f, 0xbe474e85, 0xbe5f1885, 0xbe247b90, 0x3ee7c404, 0x3e8d8a08, 0xbf0cc0b8, 0xbe5e28da, 0xbec20ea5, 0x3db91c9c, 0x3d78e11c, 0xbd833aa6, 0xbddd7f45, 0xbeca6186, 0xbe959a63, 0x3e99d15a, 0xbe7d1ac8, 0x3f05415f, 0x3ea79f57, 0xbd6fc62c, 0x3e23c97a, 0xbd1885ee, 0x3e0e813e, 0x3dab0752, 0x3e6026e7, 0x3e6e3c5b, 0x3e5efa50, 0xbf032707, 0x3f03d653, 0xbf126305, 0xbe4d603e, 0x3e5bb268, 0x3f03fb5f, 0x3d8c9de8, 0xbe9b08b4, 0x3dcd890a, 0xbdc5cd85, 0x3e0dfb17, 0xbe4d714f, 0xbea3977e, 0xbeef8f5d, 0x3e954442, 0x3da16259, 0xbe64284f, 0x3ba68454, 0x3ec1f226, 0xbe612c82, 0x3e9bfbaa, 0x3cd0d356, 0xbf3c56af, 0xbe5bde84, 0x3c37b128, 0x3e0457e1, 0x3e4e71de, 0x3e30b507, 0xbe3b5e77, 0xbee7c54b, 0xbeb0788a, 0x3d82b1a5, 0x3ec10b77, 0x3e75f88e, 0xbcc0d96a, 0xbf01f431, 0x3d619de9, 0xbdd1d4d6, 0xbe6cc086, 0xbd62a209, 0x3e69615d, 0xbe83fb0e, 0xbe03cd95, 0xbc3e6f95, 0xbe5b2cd7, 0xbd99ee78, 0xbe9f4ce5, 0x3e58dc84, 0xbf35bf34, 0xbaca4388, 0xbeb31f40, 0x3e8b2a83, 0x3d814c1a, 0x3d0c9731, 0x3daf8002, 0xbe8ad963, 0xbea0d38f, 0xbdea59a4, 0x3ddff794, 0x3ee608b9, 0x3f24b219, 0xbe91b85a, 0x3cfa28b4, 0x3deeaf7a, 0xbd2ff925, 0xbf2801de, 0x3e9ea6d2, 0x3e1c10b2, 0x3e32ac2b, 0x3e97a379, 0xbf12824d, 0xbf19b99d, 0x3ef151dd, 0x3de870a4, 0x3f4f4b0f, 0xbea95ab9, 0xbf1cb630, 0xbdf20730, 0x3d77a811, 0xbdcb568f, 0xbb77be48, 0x3ed03bca, 0xbecb2f31, 0x3f446e23, 0xbed77cd3, 0x3ecb648f, 0x3f28e9f6, 0xbe87aad8, 0xbdba4dd4, 0xbea519d8, 0xbeac6589, 0x3ee4690e, 0x3dedaaf1, 0xbd898771, 0x3e3deee4, 0x3baf2e62, 0x3de43b30, 0xbc1f2a67, 0xbe917c84, 0x3e1a200d, 0x3f13b223, 0x3e5b1d1e, 0xbf0e4d3b, 0x3dc4064d, 0x3e4f7e12, 0x3eb643a2, 0xbef60d0e, 0x3f182828, 0x3d7e4a65, 0xbdd4ca17, 0x3d9c24e1, 0x3b694f77, 0xbed7bbe7, 0x3d0af39a, 0xbd499f39, 0xbecf0f65, 0x3f20aa2b, 0x3cfaa14f, 0x3ee7f59b, 0xbe30e185, 0x3e12800e, 0xbe876f25, 0x3bf409ca, 0xbe86555e, 0xbd510d02, 0x3df1bea6, 0xbf106379, 0xbba7de0d, 0x3eccb87b, 0xbe9f3970, 0x3e25e58a, 0xbe0061fd, 0x3eca507b, 0x3db684a8, 0x3ea3707b, 0x3e75e8d6, 0x3f16d481, 0xbe1f515e, 0xbe12d84a, 0xbe41bef7, 0xbdaf7eae, 0x3eb0ca4e, 0xbded2b8e, 0x3d589643, 0xbd62255e, 0x3f0e7a04, 0xbf1de906, 0x3e6e842c, 0x3e3f32bb, 0x3d7c3e39, 0xbec3ffa7, 0xbe46ab63, 0x3e95a600, 0x3cf42638, 0xbe5222d3, 0xbe0c0f46, 0x3e48255c, 0xbe00b6c1, 0xbc18ccc6, 0x3e74e1d4, 0xbeeaa1fb, 0x3d944a0d, 0xbe7f2ed5, 0x3e4b95bc, 0xbe315ab8, 0xbdd25497, 0xbf265207, 0xbf00db75, 0x3e38fbfe, 0x3f5adeb2, 0xbdef1655, 0x3e19a85e, 0xbeaa1219, 0xbdd39454, 0xbd9ec21a, 0xbddf9139, 0xbe9f2506, 0x3e287528, 0x3dd57c9e, 0xbbd34c0f, 0x3e9c3531, 0xbc058c9a, 0x3f27607f, 0x3ea90d65, 0x3becf53c, 0x3f03dead, 0x3f0c39ce, 0x3ef4017c, 0x3e54a235, 0x3f4c7ea8, 0x3dfc773a, 0x3ea08b87, 0xbeddf85b, 0x3e8b1552, 0x3d8d7693, 0x3e30723c, 0xbdaf0a55, 0x3e9ac467, 0xbe52d73b, 0x3ea1e4d3, 0xbddae9e1, 0x3e93431e, 0x3d174f8a, 0xbe81ba72, 0x3eb0b74f, 0x3eacf23a, 0x3d114646, 0xbed371aa, 0xbe588ee9, 0x3d81fc1c, 0x3e3ae3cf, 0xbdd15023, 0x3d96922f, 0xbef3bbc7, 0xbe7556ce, 0x3ea7398e, 0xbd893c6e, 0x3e4516c0, 0xbebd212e, 0xbd0488c9, 0xbe65b702, 0x3df49516, 0x3ddad8bd, 0x3e06c415, 0x3e18a376, 0x3eab3fde, 0x3e9af923, 0xbe12fda1, 0xbec066e5, 0x3ec9cfd4, 0xbe89c552, 0xbe95b2ea, 0x3e3bfa4f, 0xbea3d210, 0x3c73b123, 0x3d2dccec, 0x3f02315e, 0x3ec58fd6, 0x3e2fdfef, 0xbe94db5f, 0xbe860bc2, 0xbecec451, 0x3d1701f0, 0xbcf8e19f, 0x3f118e88, 0x3e79f69e, 0xbebeeb83, 0xbc69c7ef, 0x3e576240, 0xbf2c20ac, 0x3d3bc289, 0x3c2cd316, 0xbcb9f90b, 0xbe1b3ac8, 0x3e81fcae, 0x3e38f38e, 0x3eafea2f, 0x3ed174ec, 0xbdc8c0fb, 0xbef8ec15, 0x3d0f8044, 0x3ecaebcc, 0xbe10fae7, 0x3e2254e5, 0xbedafb89, 0x3e1a8f3d, 0xbbb48407, 0xb8a51912, 0xbbeb4d97, 0xbdf6eb0c, 0xbe9235c4, 0x3eefe606, 0x3f04b735, 0xbd1ed892, 0xbc5ca85e, 0xbecfb4ff, 0xbee5eaf7, 0x3e0a66c7, 0x3e92fdc0, 0x3f0e5137 }; static const uint32_t ref_dot_prod_3[2] = { 0xbe3a06f7, 0x3e4e078d }; static const uint32_t ref_dot_prod_4n[2] = { 0xbf80aa21, 0x3e46f7ea }; static const uint32_t ref_dot_prod_4n1[2] = { 0xbf96f117, 0x3e38dc0c }; static const uint32_t ref_mag[256] = { 0x3f15b6ca, 0x3f23b235, 0x3e0a0932, 0x3e8a1cfb, 0x3f33356b, 0x3f87c40b, 0x3e88401a, 0x3e62a6b1, 0x3e4122cd, 0x3ec556a9, 0x3ddb03b2, 0x3e8a53d2, 0x3e7faaa1, 0x3f3a2245, 0x3e5ef1ae, 0x3e7e3299, 0x3f2cb076, 0x3e666a39, 0x3e260e55, 0x3e664603, 0x3f69e9cd, 0x3e7568e7, 0x3ed7c2be, 0x3eab7062, 0x3ecaaf80, 0x3eb30a8e, 0x3ead842e, 0x3e43ae3f, 0x3ee77d75, 0x3e94e328, 0x3eb02523, 0x3e1ca6cc, 0x3dd3399d, 0x3ed497de, 0x3f19a191, 0x3efb34c4, 0x3e95c5bd, 0x3e6ea749, 0x3f0c2cd0, 0x3e27a446, 0x3db7e2a5, 0x3f0cd967, 0x3f44c172, 0x3f67799a, 0x3eba324f, 0x3ebcc0ad, 0x3edcd441, 0x3ea0617a, 0x3e51ca2a, 0x3e9da215, 0x3f01037a, 0x3e111898, 0x3db9139a, 0x3ee86f6e, 0x3e7256d5, 0x3e897c13, 0x3e95fba8, 0x3e936667, 0x3efb9dc2, 0x3eec0dc6, 0x3e826ddf, 0x3e500baf, 0x3eb41726, 0x3f082774, 0x3e224252, 0x3e896407, 0x3eb131b9, 0x3e46962e, 0x3db79df7, 0x3da5bb55, 0x3e8031bf, 0x3e8e4f4b, 0x3ebe3575, 0x3f3e800a, 0x3ee90b7c, 0x3e387a0f, 0x3ecb003d, 0x3ec99c4b, 0x3d91cc9c, 0x3e900215, 0x3e83f895, 0x3e9107bb, 0x3ea455f3, 0x3ece9c23, 0x3f0e33b5, 0x3e687630, 0x3ede4400, 0x3ecbc297, 0x3eddd2c1, 0x3f24ff71, 0x3e8207d7, 0x3e6c0b73, 0x3f1692c0, 0x3f3bfd02, 0x3e915366, 0x3e343923, 0x3f09de2e, 0x3ee6dfb9, 0x3de2877b, 0x3dee7200, 0x3f15a7f6, 0x3f1518df, 0x3e431a3c, 0x3e959418, 0x3ef5ecbb, 0x3f1d8aeb, 0x3edf9993, 0x3ddf0cf8, 0x3e00b9fd, 0x3efbac34, 0x3ec72fd4, 0x3f1d6bb9, 0x3e2e6960, 0x3e1384a3, 0x3e6fe8f4, 0x3ea3271f, 0x3f39f660, 0x3f1b2144, 0x3f0ef445, 0x3e9ef83c, 0x3e0ea0b5, 0x3e79baf5, 0x3f110b50, 0x3e9a9f89, 0x3e643780, 0x3ee04194, 0x3e9c8735, 0x3f443227, 0x3e04d71f, 0x3e87df3f, 0x3ef9fd26, 0x3eb37859, 0x3ee4e472, 0x3f0217f2, 0x3dee3ba4, 0x3e736fee, 0x3eb02b3f, 0x3e0456e1, 0x3e684bcd, 0x3ec0b38e, 0x3f35bf51, 0x3ee2d483, 0x3d932bb2, 0x3e919dc6, 0x3eab2a5f, 0x3eecc01b, 0x3f3417a5, 0x3df6be22, 0x3f285ded, 0x3eb0cdaa, 0x3eafff70, 0x3f545bdd, 0x3ef837b9, 0x3f5febd3, 0x3f1f9aef, 0x3dee1344, 0x3ed03e18, 0x3f5d2585, 0x3f142887, 0x3f36068d, 0x3eab8b7d, 0x3f0f1574, 0x3e094ba5, 0x3e3e0316, 0x3de518c4, 0x3ea4a2c2, 0x3f1d86e6, 0x3f106558, 0x3ed1b8f4, 0x3f43abac, 0x3df7e1ad, 0x3d9c506f, 0x3ed86e9c, 0x3ed0969a, 0x3f20db03, 0x3ef83f64, 0x3e99f957, 0x3e866338, 0x3e03afec, 0x3f106500, 0x3f01aced, 0x3e51c559, 0x3ecf656a, 0x3ecc864a, 0x3f1c0016, 0x3e731b58, 0x3eb62727, 0x3e025cb5, 0x3f0f2d0d, 0x3f28cb28, 0x3e49543e, 0x3edbbbce, 0x3e966ca6, 0x3e7c88ed, 0x3e6df623, 0x3e75117b, 0x3eed8b1e, 0x3ea338ba, 0x3e4e30a0, 0x3f52657f, 0x3f5fb3cd, 0x3e42aec7, 0x3eb21b40, 0x3e0919cd, 0x3eb40f4a, 0x3dd5e515, 0x3e9c4376, 0x3f3b825d, 0x3f03e200, 0x3f39def2, 0x3f534a84, 0x3eac8196, 0x3f02f8e4, 0x3e3e1867, 0x3ea0d5b5, 0x3ec1311a, 0x3e9d1a5d, 0x3e83198e, 0x3ef7434e, 0x3ed438ec, 0x3e6219c2, 0x3e5632b4, 0x3ef69f89, 0x3ecf64ab, 0x3e50b137, 0x3ebdda93, 0x3e821e86, 0x3e2d9864, 0x3ebb7c6d, 0x3eab847d, 0x3f0b6a52, 0x3ecb7259, 0x3ebcde2f, 0x3d382b43, 0x3f236ce4, 0x3eace425, 0x3ef66a7f, 0x3d43acd7, 0x3f1e6777, 0x3ebf0f48, 0x3f345a71, 0x3d40aabd, 0x3e1cf5eb, 0x3e9f8687, 0x3f08c3b7, 0x3efdee6e, 0x3ecbb65c, 0x3e59a5f7, 0x3ee837fc, 0x3bb488bf, 0x3df75b11, 0x3f0c78a3, 0x3f051623, 0x3ecfd24a, 0x3ef01b2b, 0x3f202c9e }; static const uint32_t ref_mag_squared[256] = { 0x3eaf1c92, 0x3ed158d7, 0x3c94dbd4, 0x3d950685, 0x3efae77d, 0x3f9000b2, 0x3d910856, 0x3d48aabd, 0x3d11b57e, 0x3e181e7d, 0x3c3b5f52, 0x3d957cf3, 0x3d7f555f, 0x3f0755d1, 0x3d42280e, 0x3d7c6871, 0x3ee8fb2f, 0x3d4f630b, 0x3cd76d2e, 0x3d4f21e0, 0x3f55bb6c, 0x3d6b41f5, 0x3e35d8b0, 0x3de59ea9, 0x3e20796e, 0x3dfa6f85, 0x3deb37d6, 0x3d1592ea, 0x3e5153a6, 0x3dad2ee0, 0x3df2662b, 0x3cbfb76b, 0x3c2e4806, 0x3e308be2, 0x3eb86509, 0x3e768083, 0x3daf3f8f, 0x3d5e7b78, 0x3e998216, 0x3cdb8f79, 0x3c0415d1, 0x3e9afd03, 0x3f1738c9, 0x3f514cae, 0x3e076d24, 0x3e0b2b8f, 0x3e3e7d80, 0x3dc8f3fa, 0x3d2bebb8, 0x3dc2206a, 0x3e820902, 0x3ca479bc, 0x3c05cd55, 0x3e530a28, 0x3d656849, 0x3d93ac11, 0x3dafbdd1, 0x3da9bd87, 0x3e774ebb, 0x3e59a966, 0x3d84e78a, 0x3d2912fd, 0x3dfd611f, 0x3e90d3e2, 0x3ccdb001, 0x3d93786e, 0x3df54b98, 0x3d1a0ca7, 0x3c03b338, 0x3bd6960a, 0x3d806392, 0x3d9e3820, 0x3e0d5365, 0x3f0dc24f, 0x3e5425e8, 0x3d04efb0, 0x3e20f961, 0x3e1ec6ce, 0x3ba612da, 0x3da204b0, 0x3d8810b3, 0x3da45385, 0x3dd2fc78, 0x3e26bfa8, 0x3e9dface, 0x3d53166d, 0x3e40fa03, 0x3e222e30, 0x3e40358f, 0x3ed4b08e, 0x3d8417ed, 0x3d59a51d, 0x3eb1209a, 0x3f0a0b9b, 0x3da4ff29, 0x3cfdc0cb, 0x3e947f1c, 0x3e5036c3, 0x3c48737d, 0x3c5e182a, 0x3eaef9e4, 0x3eadabec, 0x3d14b0fa, 0x3daecb73, 0x3e6c3ef9, 0x3ec1e760, 0x3e434cea, 0x3c425798, 0x3c817508, 0x3e776b21, 0x3e1afb65, 0x3ec19a9d, 0x3ceda6d5, 0x3caa032f, 0x3d60d4cc, 0x3dcff5af, 0x3f071603, 0x3ebc0298, 0x3e9fa7cb, 0x3dc56eb7, 0x3c9eed5c, 0x3d739d38, 0x3ea45ba1, 0x3dbac8a9, 0x3d4b72e7, 0x3e4472d4, 0x3dbf6a20, 0x3f165cd5, 0x3c89dd1a, 0x3d903a6f, 0x3e741e6e, 0x3dfba309, 0x3e4ca7b7, 0x3e8438a8, 0x3c5db2f4, 0x3d677daf, 0x3df276fd, 0x3c88d36b, 0x3d52c97a, 0x3e110dd3, 0x3f010817, 0x3e48fbe8, 0x3ba9366c, 0x3da5a838, 0x3de4e343, 0x3e5af2c2, 0x3efd6284, 0x3c6dd1f7, 0x3edd76d3, 0x3df436dd, 0x3df1fe73, 0x3f302847, 0x3e70ac02, 0x3f43dcb3, 0x3ec703a5, 0x3c5d67d4, 0x3e2964f6, 0x3f3f09cd, 0x3eab7dc5, 0x3f016d51, 0x3de5e74b, 0x3e9ff1f2, 0x3c93441a, 0x3d0d0894, 0x3c4d0552, 0x3dd3c1df, 0x3ec1dd7a, 0x3ea2e457, 0x3e2bcf84, 0x3f158efb, 0x3c700544, 0x3bbee441, 0x3e36fad6, 0x3e29f513, 0x3eca24fe, 0x3e70bae1, 0x3db937fb, 0x3d8d180b, 0x3c877b09, 0x3ea2e38f, 0x3e835f77, 0x3d2be3d3, 0x3e280529, 0x3e23664d, 0x3ebe2036, 0x3d66dceb, 0x3e019bb2, 0x3c84c493, 0x3ea026ba, 0x3ede968c, 0x3d1e5566, 0x3e3c9adc, 0x3db0c700, 0x3d791ddc, 0x3d5d31a9, 0x3d6a9a77, 0x3e5c6ae1, 0x3dd02292, 0x3d26124b, 0x3f2ceaad, 0x3f437abd, 0x3d140d5c, 0x3df7d3d0, 0x3c92d93f, 0x3dfd4b02, 0x3c32b701, 0x3dbec494, 0x3f0957b6, 0x3e87e227, 0x3f06f3fc, 0x3f2e63eb, 0x3de87cc7, 0x3e860373, 0x3d0d283b, 0x3dca17a9, 0x3e11cb13, 0x3dc0d2b1, 0x3d864654, 0x3e6ed2f3, 0x3e2fee53, 0x3d47b17d, 0x3d3338d0, 0x3e6d96ff, 0x3e2803f4, 0x3d2a2075, 0x3e0ccc77, 0x3d844607, 0x3ceb6ea5, 0x3e094f04, 0x3de5d486, 0x3e97d942, 0x3e21ae8c, 0x3e0b5715, 0x3b047e38, 0x3ed0a7b2, 0x3de986ba, 0x3e6d30d9, 0x3b1590c4, 0x3ec407c1, 0x3e0e97cf, 0x3efe1e9d, 0x3b11008e, 0x3cc07946, 0x3dc6d0c4, 0x3e922110, 0x3e7be124, 0x3e221ab9, 0x3d390ac8, 0x3e52a585, 0x37fea12c, 0x3c6f00db, 0x3e9a2856, 0x3e8a6004, 0x3e28b5c0, 0x3e6132f4, 0x3ec86f9b }; static const uint32_t ref_mult_cmplx[512] = { 0xbd6cad5a, 0xbe087ea9, 0xbe121401, 0x3eb5f855, 0x3c99c304, 0xbcab53a0, 0x3d4460c3, 0xbddb21dd, 0x3d8eee8d, 0x3e5698ac, 0xbf80a368, 0xbe064c58, 0x3df8fd42, 0x3cd2136b, 0xbd6cf389, 0xbb81ae9f, 0x3d02d081, 0xbbab7561, 0xbdfbb24d, 0x39cfb6ac, 0xbdaa2560, 0xbc1280e5, 0x3cbfe4e5, 0xbd59dd3f, 0xbd1b7ff4, 0x3c9afa95, 0xbe220da0, 0x3e13e592, 0xbe2982d9, 0xbdfc49c8, 0x3e4c475b, 0xbd53d558, 0xbdcfac86, 0x3ef45091, 0x3cb7fa93, 0x3d1ce42d, 0xbb3244bf, 0xbdd19454, 0xbd84c57b, 0xbdc11987, 0xbe236b0f, 0x3ed2754a, 0x3d16fae0, 0x3e39baa1, 0x3cafd36f, 0xbcd0e6cc, 0x3b88ba8d, 0x3daa5e6b, 0x3e2b435a, 0xbd34f91f, 0x3d1bb7ab, 0xbdc6c623, 0xbcf5f67e, 0x3d5f7e7a, 0xbdae44d1, 0xbd501952, 0x3db31549, 0xbd71ea63, 0xbd3c2206, 0x3d8705e7, 0xbe3bb48a, 0xbccc42bf, 0x3d24c7c6, 0x3d421349, 0x3ce5d94c, 0xbc6ff9fd, 0xbd52c4dd, 0x3d355d44, 0xbd30e0b5, 0xbe9d108a, 0xbe3c55c0, 0xbe315bb5, 0x3d477426, 0xbd201714, 0xbcd8b37c, 0xbcaf3efd, 0xbe27334e, 0x3a3b3f82, 0x3cdbe72f, 0x3d1c69db, 0x3d578ecc, 0x3c305526, 0xbd97dee8, 0x3d775466, 0x3e38146f, 0x3eb0e877, 0xbe90e9a2, 0xbef05169, 0x3caa3f58, 0x3e6c9044, 0xbe482086, 0x3d0ae1f7, 0x3e578a39, 0xbe42ab22, 0xbd64532a, 0xbd23b8ed, 0xbdeee00f, 0xbcfab3ea, 0x3dbff475, 0x3e10acb3, 0x3d5b12d2, 0x3dae2b18, 0xbceb2117, 0xbd92de2e, 0xbd0b0f36, 0xbb80c029, 0xbd08b96a, 0xbe1ce1e2, 0xbe04fb11, 0x3cd28c61, 0x3cf212ef, 0xb9c4c67d, 0x3d173675, 0xbdd368fd, 0x3d3ecd88, 0x3c965e74, 0x3d8a3adb, 0xbe4ef552, 0xbe7aa50c, 0x3db87822, 0x3c3bd2ca, 0x3cf58154, 0x3d9e0362, 0xbc652993, 0xbd76448a, 0x3e1827b2, 0xbd2771f2, 0x3e779b61, 0x3d257ffe, 0x3d730a36, 0xbd1b24c2, 0xbe30d5da, 0xbe155636, 0x3cc87d6a, 0xbd494a25, 0x3d8dde0d, 0x3bd64fba, 0x3ceff207, 0x3d224e0b, 0xbc2b2364, 0xbd9a521d, 0x3cf24cbc, 0x3db6b503, 0x3d53d719, 0xbe0a075d, 0x3ce30323, 0x3e15e570, 0xbdb9e444, 0x3c87dafe, 0xbdf1df50, 0x3c2113ac, 0xbdb3ced5, 0xbde205c9, 0x3df8c008, 0x3e8b8be4, 0x3b4dfab7, 0x3d58847a, 0x3d0f2003, 0x3e263edc, 0x3d209fd0, 0xbd8d7dbb, 0xbccdc357, 0x3c254039, 0x3d8887ba, 0xbd89ffc1, 0x3da4eaa4, 0xbce03184, 0xbda58525, 0x3da137ac, 0xbe05419e, 0xbdc337f5, 0x3b89f67b, 0x3d93b323, 0xbd853448, 0xbd5d955e, 0xbdc7aecf, 0xbe45c500, 0x3db60ab4, 0x3dd4af1e, 0x3e1e276d, 0xbd2b86c1, 0x3de31561, 0xbdf1e226, 0xbd0f22b6, 0x3b675aa0, 0x3ec14697, 0xbefe58ba, 0x3e75b672, 0xbbbcecad, 0xbd23549e, 0xbdc3305d, 0xbc78bd6d, 0xbdd1ad25, 0xbd84a983, 0xbd504934, 0xbca93495, 0xbbacc89b, 0xbd4502ee, 0x3d75fbaa, 0xbca14549, 0xbe0493a0, 0xbdb61ec2, 0x3e922337, 0x3e0b3afe, 0xbd506a40, 0xbd3e229c, 0x3bf538a1, 0x3cf2b91e, 0x3ba1ce12, 0x3da7061e, 0x3de6b9a7, 0xbe2904fd, 0xbdf2412b, 0xbe6967ff, 0xbd125acd, 0xbba1ac6f, 0x3b81da42, 0x3d2fc531, 0x3eb3424b, 0xbe1fb62d, 0xbe0d2c43, 0x3e11d7a2, 0xbea61d92, 0x3eda09bc, 0x3da5a1f1, 0x3c3a8937, 0x3cc27aed, 0x3d61b566, 0x3dcde223, 0x3ccb76c7, 0xbd318ad8, 0x3d289fb6, 0x3eb5d66c, 0xbe14d18c, 0xbed58d7b, 0xbe66dd0d, 0xbdc1794c, 0xbd4113e7, 0x3e0231b2, 0xbcefab02, 0x3c6dbed6, 0xbc00420b, 0x3d158394, 0x3ce10a24, 0x3dc0e15a, 0xbde4bb3e, 0xbb289a8f, 0x3d1da98e, 0x3cf7d6cd, 0x3d95e304, 0x3d95d2f3, 0xbd82a359, 0x3cd58d36, 0xbd9b3b38, 0xbd567ad5, 0xbd5de99b, 0x3d3b93c2, 0xbd4ad5b8, 0xbe37bf38, 0x3c7372a9, 0x3e3755d9, 0x3c2da202, 0xbdd5d3dc, 0x3e296456, 0xbe7ff431, 0x3e48a781, 0xbe157c24, 0x3e584573, 0x3cb3f7cb, 0xbca6d56f, 0x3c47a0ec, 0x3e6e6f98, 0xbd9f13ca, 0x3da057bf, 0xbc8721de, 0x3d098514, 0xbdf02d01, 0xbd46dce0, 0xbd648ef7, 0x3c1b9c8a, 0xbe2fd517, 0x3eabdd39, 0xbe0897d2, 0x3e89e1a8, 0xbccf55f3, 0xbcdd843c, 0x3d4f730d, 0x3c85f3cb, 0x3db27312, 0x3d7b27c9, 0xbd9a93bb, 0xbc876133, 0xbeecf0bd, 0x3e1f81af, 0xbd76222a, 0x3cbe0a02, 0x3ccf01b4, 0x3db27fd6, 0x3db56ed4, 0x3e48e874, 0x3dfc0937, 0xbdb76526, 0x3daa6227, 0x3d673b8e, 0xbb887f99, 0x3d74a7ed, 0x3d93d5e2, 0xbed186cb, 0x3e174f65, 0x3e9f3965, 0x3b8d7790, 0x3b792d41, 0x3cc45e05, 0x3e87fc52, 0xbe38cef4, 0x3d762d95, 0x3ecd82d1, 0x3ecc4b23, 0xbdf89143, 0xbea1fba0, 0xbd2cd384, 0x3de60314, 0x3dd9e881, 0xbea2bdd6, 0x3b8d2f4f, 0xbd327df1, 0x3bb30105, 0xbb9342c0, 0x3ce7f2e5, 0xbc4e264d, 0x3dc0c321, 0x3d83136e, 0x3e617de4, 0xbe2eba2f, 0x3d5e7855, 0xbda1a3db, 0xbdd5423b, 0xbda36833, 0x3e09e666, 0xbec1a089, 0xbce1c63e, 0x3d076894, 0xbd12f7f7, 0x3bc9787b, 0x3cbb4628, 0xbe18f9b3, 0xbe46101f, 0xbba4d05c, 0xbdec56c3, 0x3e53f1cd, 0x3e237ec4, 0xbe058a04, 0xbd17cd4e, 0xbda0727c, 0x3daaa9e7, 0x3d9548e3, 0xbc04afa2, 0xbd09e104, 0x3d08767b, 0x3d2f45a1, 0xbc809961, 0xbdfa29cd, 0xbc80b34f, 0xbc116496, 0x3df21d92, 0xbe193be4, 0xbdea3756, 0x3e056427, 0x3e0dd6d2, 0x3de456b5, 0x3d3bdc61, 0x3d8bb0c7, 0x3d861d5d, 0x3d5efcc6, 0x3c5202aa, 0x3b32db9c, 0xbb024086, 0x3d3bf5a4, 0xbedebb25, 0x3eacefeb, 0x3ca7f92e, 0x3d301f93, 0xbb0e1153, 0xbe469acc, 0x3dde75cc, 0x3d8b5e73, 0x3d2803ed, 0xbc5b4b89, 0xbca250ca, 0xbdb0c999, 0xbd8ef2b3, 0x3ddb68bd, 0xbe70bb0d, 0xbdc8fb1f, 0xbd321c6d, 0xbde04dcb, 0xbaffd2d4, 0xbd3ae53e, 0xbedca4e8, 0x3e71d2c2, 0x3e44b07b, 0xbef0155f, 0x3db6521c, 0x3c604460, 0xbe96dd61, 0x3e654b35, 0x3d2482a3, 0xbc5ca1ee, 0xbd69e1f0, 0xbdfbf017, 0xbcb0a4ab, 0xbd997592, 0xbe09a777, 0x3befe861, 0x3e4e2086, 0xbef605d3, 0xbe33a405, 0xbe0b3f5b, 0x3e6ac3c6, 0x3dcef653, 0x3ef249fe, 0x3e060ae4, 0xbc8f62c4, 0x3d4593bc, 0x3eb1dffd, 0x3e381387, 0xbc311e5b, 0x3d020d49, 0x3cebd133, 0xbcf69991, 0xbc847b93, 0xbcbec872, 0xbe27f736, 0xbc7c5866, 0x3e233929, 0xbdfd21d6, 0x3eb6f39c, 0x3ca6d6fb, 0xbaf66009, 0x3d22b82c, 0x3d75eddb, 0x3d70803f, 0x3ce95ad9, 0xbd93c769, 0xbd60ce40, 0x3e82bce9, 0xbbeb9ffc, 0x3dbf16d2, 0x3d7a57e2, 0x3d5ed750, 0xbda4cf77, 0x3d8ff3c9, 0x3dc8e593, 0xbd815153, 0xbd6da2af, 0xbc670738, 0xbe00e326, 0xbd8b85e9, 0x3d25b325, 0xbde86cb3, 0xbe8ed674, 0xbd86dde6, 0xbbc933a1, 0xbd843948, 0xbe3fc344, 0x3e114ef0, 0x3cb52ba5, 0xbcca9b73, 0x3e2ec3f7, 0xbe3dbc1b, 0xbda4b084, 0x3e83d02c, 0xbe58bae8, 0x3e9e3a2c, 0x3ba19f54, 0x3bf4b0da, 0xbb6da1de, 0xbec480f9, 0xbe006aaf, 0x3de8ce90, 0x3e8348dc, 0xbdecbc6d, 0xbbef279b, 0x3bdbad9a, 0xbce2592d, 0xbcc87e7c, 0xbe42c755, 0x3d8a0c98, 0xbd1c1d9e, 0xbd788677, 0xbe18977c, 0xbe68eb6f, 0xbe9b628c, 0x3e2e64ef, 0xbd9c59a1, 0x3c7b1283, 0x3e63a245, 0xbe26530e, 0xba223dfe, 0xba78cca0, 0x3c4cc446, 0xbcf798d3, 0x3da53480, 0x3e41a674, 0x3bcbd2b9, 0xbe9d703a, 0xbcf59288, 0xbe0ebda8, 0x3e1a01b1, 0xbd3a4c0e, 0x3eb07431, 0x3dd5fa9e }; static const uint32_t ref_mult_real[512] = { 0xbd3d6335, 0x3ce25362, 0x3da3cf3f, 0x3d7da19a, 0xbb9ba601, 0x3b3c5e56, 0x3c496671, 0xbcf339be, 0x3df666e1, 0xbd959b7b, 0x3ce19da4, 0x3d9f8558, 0xbd32f924, 0xbda6431f, 0xbc470a4d, 0x3aa07846, 0xbb8486df, 0x3c8e543d, 0xbdc099fe, 0x3d0af161, 0x3b3909c4, 0xbc15d7d8, 0x3c88ab50, 0x3db074f9, 0x3c7a5f35, 0xbd5988a9, 0xbdf6e610, 0x3e1a8005, 0xbd00e56e, 0x3cf89b5b, 0xbd615192, 0x3d4b78f5, 0xbd0743e2, 0xbdc97325, 0x3c57a611, 0x3d99e697, 0xbacc08df, 0xba798532, 0x3d180afc, 0xbd1b66e6, 0xbe28a4fc, 0xbe84443c, 0xbd23062d, 0xbd995b7d, 0xbe17f011, 0x3e4d85c3, 0x3d5065f7, 0x3da2e50d, 0x3d499f27, 0x3d7667d1, 0x3b9c077a, 0x3ba090d0, 0x3db5c928, 0xbe019b52, 0xba909b3f, 0xb86f1fff, 0x3e00ebc5, 0x3d153b8a, 0x3d9441f0, 0x3d8664a0, 0xbdf44605, 0xbd2a7b0a, 0xbcf4e011, 0xbd25022e, 0x3cf6f5ba, 0x3b09ca89, 0x3ca22f17, 0x3c5ed16c, 0xbd5aa654, 0xbdae4941, 0xbc014a8c, 0x3d3ca5e8, 0xbd59b8fa, 0xbdf22637, 0x3e0e29a4, 0xbd1ef5e7, 0xbdb30427, 0x3d25c1ed, 0xbc9a1038, 0xbc80005b, 0x3c6162ab, 0x3c0d22f7, 0xbed1129e, 0xbdb1d168, 0x3c093657, 0xbc151b25, 0xbdce066e, 0x3e0fa1c2, 0xbce450a5, 0xbb9b3fb5, 0x3bf04a2f, 0xbdc10334, 0xbe0ba2bb, 0x3b6e9eab, 0x3a713b17, 0xbd1f87fd, 0x3af178cb, 0x3e0dca88, 0xbd429104, 0x3dbbbe93, 0x3ceabd0f, 0x3d9b6e5b, 0xbcb468ef, 0xbc945181, 0xb8a06cbc, 0x3c43c5d4, 0xbba3d925, 0x3d136d17, 0xbd1049bf, 0xbd19b661, 0xbc82894f, 0x3ca55087, 0xbd809a5d, 0x3d88bf28, 0x3bda32d0, 0xbaeb2f79, 0xbcc10555, 0xbd0f5e38, 0x3dbe5926, 0x3bf56384, 0x3d9c8c9e, 0xbc811ba3, 0xbb324a3c, 0xbc3e3a97, 0x3db4f240, 0xbce2f0a6, 0x3e039d7c, 0x3bf9f664, 0xbd5ca2c0, 0xbcd53702, 0xbca223b7, 0xbbe9254f, 0x3e5536ea, 0x3d343a2d, 0x3d02b241, 0xbbbfd19b, 0x3be452fb, 0x3b7d5bb0, 0xba6c8284, 0xba35ac6d, 0xbc213bcc, 0xbc0f7976, 0x3ba3f8b4, 0x3d3fb674, 0x3e17de07, 0xbdf693d1, 0xbdaed87e, 0xbf19daad, 0xbe16a853, 0x3cf54731, 0xbc772f90, 0x3d88414d, 0x3de3183a, 0xbc6e683e, 0x3cddce43, 0xbd337082, 0xbb9ad38a, 0xbcee6879, 0xbbed9ec6, 0xbbcf0210, 0xbd90ccff, 0xbdc0a84c, 0x3b7ffb06, 0xbd2f04cb, 0x3dbe44e0, 0xbd865416, 0x3ce89f00, 0xbc633aad, 0x3da028cf, 0xbd4a088f, 0x3c6375d5, 0xbb9f1590, 0xbcb33ee3, 0xbd0c6428, 0xbce1749a, 0xbd095398, 0x3d73da6e, 0xbe4e5501, 0xbdadd0bb, 0x3caa63d7, 0xbca8ae26, 0xbc02d2f0, 0xbcf9704e, 0x3d1204a3, 0xbe46233d, 0x3dd5e541, 0xbe4f6bf7, 0xbe54d03b, 0x3db1b956, 0x3c03b029, 0x3d76bfe0, 0xbd0345fe, 0xbb263358, 0x3d532b21, 0x3de8c227, 0xbc96d7fc, 0xbae4548f, 0xbb348aee, 0xb91a9609, 0xbb3f18a3, 0x3d8cc711, 0x3c3b2921, 0x3ca60ae4, 0xbc7046a2, 0xb908b1bd, 0xbc181aa6, 0xbda04736, 0x3db368a8, 0x3b49cbcb, 0x3c0e2bd5, 0xbcf3c672, 0xbd726bb8, 0xbb65e6c8, 0x3bc8d1de, 0x3cc258c4, 0xbc82a5d6, 0x3bd4900d, 0xbc336381, 0xbddc8fd3, 0x3da30aea, 0xbd505590, 0xbd2b67c0, 0xbe0b2cdc, 0x3daf11ae, 0x3c28497d, 0x3ce5e8f9, 0x3c40e701, 0x3d343b57, 0x3c1f9074, 0xbcd12070, 0x3cc6cc3d, 0xbcba10cf, 0xbd7b0f85, 0xbd7c5f18, 0xbb326f43, 0x3a7a5688, 0xbd85c035, 0x3e20b34c, 0x3c8588f2, 0x3d9339dc, 0x3c33938a, 0x3c2cd208, 0xbca1d811, 0xbcea2f23, 0x3d474812, 0xbd91e961, 0x3de7575c, 0xbcfa1f25, 0xbd49a6eb, 0xba932c20, 0x3cf7260f, 0x3c8f78b4, 0x3d834752, 0xbbafc07d, 0xbdcaa05a, 0x3cec8c89, 0xbc1d79f8, 0x3de2e970, 0x3cbb1ee4, 0xbca02aa5, 0x3d458fc3, 0xbdf460ed, 0x3c827fd0, 0x3b414b82, 0xbb6cac87, 0x3b16c7e4, 0xba9d4c17, 0x3cd3fe4e, 0xbce524c7, 0xbd551c89, 0xbe1c68d1, 0x3d15b96b, 0xbd1d1153, 0xbd31a629, 0x3bc23c0d, 0xba0c51f0, 0x3d8c172c, 0xbcc4c6fc, 0x3c909e52, 0x3c44dfd4, 0xbcf21bac, 0x3886b832, 0xbda25c82, 0xbd7c49c5, 0xbc8f8f7f, 0x3c1c1983, 0x3d0b3aec, 0x3ddc4ebc, 0xbd41690e, 0x3c8cea47, 0xbb87fcca, 0x3c8babd2, 0xbe535f73, 0xbdbb04f3, 0xbb8a7bab, 0x3c8421ae, 0x3bc2208f, 0xbdb956e6, 0xbd57473c, 0x3cd3c4c8, 0x3ad5aa17, 0xbb355605, 0xbc81ad02, 0x3c881013, 0xbd3a2bfe, 0x3c335243, 0x3cd8c1cd, 0x3c31160e, 0x3e2c7ce7, 0xbd053252, 0x3d77a811, 0x3dcb568f, 0x3aba269e, 0x3e1c76bb, 0xbdcc564d, 0xbe458b71, 0x3d75f84d, 0x3d682a0b, 0x3da1acd2, 0x3d01da72, 0x3c749a3c, 0xbd58c3b8, 0x3df7e42d, 0x3e243793, 0xbb88659c, 0xbb1ddaec, 0xbdb63121, 0x3b280a8a, 0x3d0287b3, 0x3b360f65, 0x3dfa2f6a, 0x3d84853c, 0xbdb77cfc, 0x3d081b51, 0x3e5325be, 0x3d116e48, 0xbdc34d8a, 0x3e2b8e84, 0xbd1ccf7b, 0xbd41f11b, 0x3c634713, 0x3cbe2f61, 0xbc68c929, 0x3a2dea0a, 0x3e9cf076, 0x3cca2a4f, 0x3b46db57, 0xbccc386b, 0x3d6483de, 0xbb323ca6, 0x3d126f87, 0x3c5f5454, 0xbc5bbf02, 0xbccb25b9, 0x392bab49, 0x3bbcfe83, 0x3b5d085f, 0x3bff99b9, 0x3bb41970, 0xb8516294, 0xbd08da6e, 0xbcd4e10c, 0xbc4c4bd9, 0xbc1e1963, 0x3db6eafc, 0xbca50507, 0x3c75db34, 0xbc38f4e6, 0x3e1bfe0b, 0x3d24c545, 0x3d2d8e40, 0xbd64fcea, 0x3b6bf184, 0x3c6daf5e, 0x3d086a4d, 0x3c792709, 0x3bdd9de0, 0x3d8b9f84, 0x3d45a188, 0x3c95419f, 0x3d5f70c6, 0xbc9363ca, 0xbdf96b49, 0x3d7cd160, 0xbd377fdb, 0x3b95b038, 0xbd72b44a, 0x3d21c45a, 0xbd1cc54f, 0xbcc9a379, 0x3b4735e7, 0x3d9fa176, 0xbe16d3bf, 0xbcbea5b3, 0x3c4706d9, 0x3c1ec894, 0x3bd74eb9, 0xbb7f571f, 0xbf0c85bc, 0x3ed9bd85, 0x3d453a5e, 0xbe695b3b, 0x3ba4ce2c, 0x3bd3d5f2, 0x3d1828f5, 0xbc3d4c1c, 0x3c8959ab, 0xbcc16b8a, 0xbd3420f0, 0xbcbeab6d, 0xbb0e1ebc, 0xb90ca991, 0xbcd1fdfa, 0xba33882b, 0xbe215493, 0x3da2f1fb, 0xbaa2aa46, 0x3db50ccf, 0xbe6d2016, 0x3e4e4f58, 0xbcdaed3c, 0x3dd28c04, 0x3d14f671, 0xbdbd7402, 0xbbf22519, 0xbb97b979, 0xbc1b820f, 0x3cc1f6dc, 0x3babeef2, 0x3c980523, 0xbc91af79, 0xbcdfba95, 0x3c5bd161, 0x3d13ded9, 0x3c363493, 0x3d9c375d, 0xbdf02996, 0x3deb0a02, 0x3cf92f93, 0x3eb557a6, 0x3d1d58c5, 0x3c3ce378, 0xbcb4978a, 0xbc4a426d, 0x39d6c631, 0x3b2dd49a, 0xbaf85feb, 0xbb294b3d, 0xbb986503, 0xbc5adbc6, 0x3d593f62, 0xbb983cfe, 0x3d1d83d2, 0x3ca7b5a4, 0x3d2c51d4, 0xbd543aaa, 0xbc3c84e3, 0x3cd38142, 0xbda118b0, 0xbd18cc6f, 0x3e18c530, 0x3e203dec, 0x3d2839eb, 0xbd36ca8a, 0x3c4b9de0, 0x3cb17320, 0xbb57e8d4, 0x3c19fc71, 0xbcd64eb0, 0x3ca299d8, 0xbb4179af, 0xbba3c0f3, 0x3d594a0d, 0xbda795ce, 0x3b7eaa26, 0x3b51dc7c, 0xbda7f09d, 0x3d10336c, 0x3dd91a69, 0xbb84ebcf, 0x3cd0a278, 0x3da6bbe3, 0xbbde3016, 0x3acc8390, 0x3c1b213a, 0xbd817c39, 0x3d29d6b8, 0xbcf1a778, 0xbd2437f6, 0x3d4387c9, 0x3c11afd3, 0xbd34a47d, 0x3c3ce748, 0xbe058fcd, 0x3de3ecd5, 0x3dff3427, 0x3df36f44, 0x3d2bd167, 0x3a932c19, 0xb7869a31, 0xba5e5f40, 0x3c69594e, 0x3d677a47, 0x3dbde6e9, 0xbd53bdde, 0xbb7d6e6f, 0xb8ba94de, 0x3b2fa17d, 0x3d17d8f9, 0x3c36cfff, 0x3d863d32, 0xbe01f876 };
Max
1
maxvankessel/zephyr
tests/lib/cmsis_dsp/complexmath/src/f32.pat
[ "Apache-2.0" ]
"""Tests for the Open-Meteo integration."""
Python
0
MrDelik/core
tests/components/open_meteo/__init__.py
[ "Apache-2.0" ]
--TEST-- Getting parent class name when there is no parent generates an error --FILE-- <?php trait T { public function f() { var_dump(parent::class); } } class C { use T; } (new C)->f(); ?> --EXPECTF-- Fatal error: Uncaught Error: Cannot use "parent" when current class scope has no parent in %s:5 Stack trace: #0 %s(%d): C->f() #1 {main} thrown in %s on line 5
PHP
4
thiagooak/php-src
Zend/tests/parent_class_name_without_parent.phpt
[ "PHP-3.01" ]
package com.baeldung.zoneddatetime.converter; import org.springframework.core.convert.converter.Converter; import java.time.ZonedDateTime; import java.util.Date; public class ZonedDateTimeWriteConverter implements Converter<ZonedDateTime, Date> { @Override public Date convert(ZonedDateTime zonedDateTime) { return Date.from(zonedDateTime.toInstant()); } }
Java
4
DBatOWL/tutorials
persistence-modules/spring-boot-persistence-mongodb/src/main/java/com/baeldung/zoneddatetime/converter/ZonedDateTimeWriteConverter.java
[ "MIT" ]
--TEST-- jddayofweek() --EXTENSIONS-- calendar --FILE-- <?php foreach (array(2440588, 2452162, 2453926, -1000) as $jd) { echo "### JD $jd ###\n"; foreach (array(CAL_DOW_DAYNO, CAL_DOW_LONG, CAL_DOW_SHORT) as $mode) { echo "--- mode $mode ---\n"; for ($offset = 0; $offset <= 7; $offset++) { echo jddayofweek($jd + $offset, $mode). "\n"; } } } ?> --EXPECT-- ### JD 2440588 ### --- mode 0 --- 4 5 6 0 1 2 3 4 --- mode 1 --- Thursday Friday Saturday Sunday Monday Tuesday Wednesday Thursday --- mode 2 --- Thu Fri Sat Sun Mon Tue Wed Thu ### JD 2452162 ### --- mode 0 --- 0 1 2 3 4 5 6 0 --- mode 1 --- Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sunday --- mode 2 --- Sun Mon Tue Wed Thu Fri Sat Sun ### JD 2453926 ### --- mode 0 --- 0 1 2 3 4 5 6 0 --- mode 1 --- Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sunday --- mode 2 --- Sun Mon Tue Wed Thu Fri Sat Sun ### JD -1000 ### --- mode 0 --- 2 3 4 5 6 0 1 2 --- mode 1 --- Tuesday Wednesday Thursday Friday Saturday Sunday Monday Tuesday --- mode 2 --- Tue Wed Thu Fri Sat Sun Mon Tue
PHP
3
NathanFreeman/php-src
ext/calendar/tests/jddayofweek.phpt
[ "PHP-3.01" ]
<!-- #docplaster--> <!-- #docregion --> <h2>{{title}}</h2> <p>Create a new hero and press enter to add it to the list. </p> <!-- #docregion template-1 --> <label for="hero-name">New hero name: </label> <input type="text" #box id="hero-name" (keyup.enter)="addHero(box.value); box.value=''" placeholder="hero name"> <!-- #enddocregion template-1 --> <div> <input id="can-fly" type="checkbox" [(ngModel)]="canFly"> <label for="can-fly">Hero can fly</label> </div> <div> <input id="mutate" type="checkbox" [(ngModel)]="mutate"> <label for="mutate">Mutate array</label> <!-- #docregion template-1 --> <button (click)="reset()">Reset list of heroes</button> <!-- #enddocregion template-1 --> </div> <h3>Heroes who fly (piped)</h3> <div id="flyers"> <!-- #docregion template-flying-heroes --> <div *ngFor="let hero of (heroes | flyingHeroes)"> {{hero.name}} </div> <!-- #enddocregion template-flying-heroes --> </div> <h3>All Heroes (no pipe)</h3> <div id="all"> <!-- #docregion template-1 --> <div *ngFor="let hero of heroes"> {{hero.name}} </div> <!-- #enddocregion template-1 --> </div>
HTML
4
yuchenghu/angular-cn
aio/content/examples/pipes/src/app/flying-heroes.component.html
[ "MIT" ]
<?php echo 'We are here';
HTML+PHP
0
tidytrax/cphalcon
tests/_data/fixtures/views/simple/index.phtml
[ "BSD-3-Clause" ]
FROM ubuntu:trusty-20190515 MAINTAINER caffe-dev <[email protected]> # A docker container with CUDA and caffe2 installed. # Note: this should install everything but cudnn, which requires you to have a # manual registration and download from the NVidia website. After creating this # docker image, the Caffe2 repository is located at /opt/caffe2. You can install # cudnn manually and re-compile caffe2. ################################################################################ # Step 1: set up cuda on the ubuntu box. ################################################################################ RUN apt-get update && apt-get install -q -y \ build-essential \ wget RUN cd /tmp && \ wget http://developer.download.nvidia.com/compute/cuda/7_0/Prod/local_installers/cuda_7.0.28_linux.run && \ chmod +x cuda_*_linux.run && ./cuda_*_linux.run -extract=`pwd` && \ ./NVIDIA-Linux-x86_64-*.run -s --no-kernel-module && \ ./cuda-linux64-rel-*.run -noprompt && \ rm -rf * # Ensure the CUDA libs and binaries are in the correct environment variables ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/cuda/lib64 ENV PATH=$PATH:/usr/local/cuda/bin # Run nvcc to make sure things are set correctly. RUN nvcc --version ################################################################################ # Step 2: set up caffe2 pre-requisites ################################################################################ RUN apt-get update && apt-get install -q -y \ git \ libeigen3-dev \ libgoogle-glog-dev \ libleveldb-dev \ liblmdb-dev \ libopencv-dev \ libprotobuf-dev \ libsnappy-dev \ zlib1g-dev \ libbz2-dev \ protobuf-compiler \ python-dev \ python-pip RUN cd /tmp && \ git clone https://github.com/facebook/rocksdb.git && \ cd /tmp/rocksdb && \ make && make install && \ cd / && \ rm -rf /tmp/rocksdb # Caffe2 works best with openmpi 1.8.5 or above (which has cuda support). # If you do not need openmpi, skip this step. RUN cd /tmp && \ wget http://www.open-mpi.org/software/ompi/v1.10/downloads/openmpi-1.10.0.tar.gz && \ tar xzvf openmpi-1.10.0.tar.gz && \ cd /tmp/openmpi-1.10.0 && \ ./configure --with-cuda --with-threads && \ make && make install && \ cd / && \ rm -rf /tmp/openmpi-1.10.0 && \ rm /tmp/openmpi-1.10.0.tar.gz # Caffe2 requires zeromq 4.0 or above, manually install. # If you do not need zeromq, skip this step. RUN apt-get install -q -y autoconf libtool RUN mkdir /tmp/zeromq-build && \ cd /tmp/zeromq-build && \ wget https://github.com/zeromq/zeromq4-1/archive/v4.1.3.tar.gz && \ tar xzvf v4.1.3.tar.gz --strip 1 && \ ./autogen.sh && \ ./configure --without-libsodium && \ make && make install && \ cd / && \ rm -rf /tmp/zeromq-build # pip self upgrade RUN pip install --upgrade pip # Python dependencies RUN pip install \ matplotlib \ numpy \ protobuf ################################################################################ # Step 3: install optional dependencies ("good to have" features) ################################################################################ RUN apt-get install -q -y \ gfortran \ graphviz \ libatlas-base-dev \ vim RUN pip install \ flask \ ipython \ notebook \ pydot \ python-nvd3 \ scipy \ tornado # This is intentional. scikit-image has to be after scipy. RUN pip install \ scikit-image ################################################################################ # Step 4: set up caffe2 ################################################################################ # Get the repository, and build. RUN cd /opt && \ git clone https://github.com/Yangqing/caffe2.git && \ cd /opt/caffe2 && \ make # Now, we know that some of the caffe tests will fail. How do we deal with # those?
Dockerfile
5
xiaohanhuang/pytorch
caffe2/contrib/docker-ubuntu-14.04/Dockerfile
[ "Intel" ]
--TEST-- Test fseek(), ftell() & rewind() functions : error conditions - fseek() --FILE-- <?php echo "*** Testing fseek() : error conditions ***\n"; // fseek() on a file handle which is already closed echo "-- Testing fseek() with closed/unset file handle --\n"; $fp = fopen(__FILE__, "r"); fclose($fp); try { var_dump(fseek($fp,10)); } catch (TypeError $e) { echo $e->getMessage(), "\n"; } echo "Done\n"; ?> --EXPECT-- *** Testing fseek() : error conditions *** -- Testing fseek() with closed/unset file handle -- fseek(): supplied resource is not a valid stream resource Done
PHP
4
NathanFreeman/php-src
ext/standard/tests/file/fseek_ftell_rewind_error1.phpt
[ "PHP-3.01" ]
def e:="println(`def e:=${e.quote()};$e`)";println(`def e:=${e.quote()};$e`)
Eiffel
2
MakeNowJust/quine
quine.e
[ "Beerware" ]
define ($MTU 1500) define ($ip 10.0.0.1) define ($eth b8:83:03:6f:43:40) elementclass FNT { tol :: Discard(); //ToHost normally input[0] -> c0 :: Classifier( 12/0806 20/0001, 12/0806 20/0002, 12/0800, -); // Respond to ARP Query c0[0] -> arpress :: ARPResponder($ip $eth); arpress[0] -> Print("ARP QUERY") -> [0]output; // Deliver ARP responses to ARP queriers as well as Linux. t :: Tee(2); c0[1] -> t; t[0] -> Print("Input to linux") -> tol; //To linux t[1] -> Print("Arp response") -> [0]output; //Directly output // Unknown ethernet type numbers. c0[3] -> Print() -> Discard(); // An "ARP querier" for each interface. arpq0 :: EtherEncap(0x0800, b8:83:03:6f:43:40, 50:6b:4b:43:8a:da); // Connect ARP outputs to the interface queues. arpq0 -> [0]output; // IP routing table. rt :: LookupIPRouteMP( 0.0.0.0/0 0); // Hand incoming IP packets to the routing table. // CheckIPHeader checks all the lengths and length fields // for sanity. ip :: Strip(14) -> CheckIPHeader(CHECKSUM false, VERBOSE false) -> [0]rt; oerror :: IPPrint("ICMP Error : DF") -> [0]rt; ttlerror :: IPPrint("ICMP Error : TTL") -> [0]rt; //rederror :: IPPrint("ICMP Error : Redirect") -> [0]rt; c0[2] -> Paint(1) -> ip; rt[0] -> output0 :: IPOutputCombo(2, 10.1.0.1, $MTU); // DecIPTTL[1] emits packets with expired TTLs. // Reply with ICMPs. Rate-limit them? output0[3] -> ICMPError(10.1.0.1, timeexceeded, SET_FIX_ANNO 0) -> ttlerror; // Send back ICMP UNREACH/NEEDFRAG messages on big packets with DF set. // This makes path mtu discovery work. output0[4] -> ICMPError(10.1.0.1, unreachable, needfrag, SET_FIX_ANNO 0) -> oerror; // Send back ICMP Parameter Problem messages for badly formed // IP options. Should set the code to point to the // bad byte, but that's too hard. output0[2] -> ICMPError(10.1.0.1, parameterproblem, SET_FIX_ANNO 0) -> oerror; // Send back an ICMP redirect if required. output0[1] -> ICMPError(10.1.0.1, redirect, host, SET_FIX_ANNO 0) -> IPPrint("ICMP Error : Redirect") -> arpq0; output0[0] -> arpq0; } fd0 :: FromDPDKDevice(0, MAXTHREADS 1 , BURST 32 , TIMESTAMP false) // -> SetCycleCount() -> FNT() // -> accum :: CycleCountAccum() -> ToDPDKDevice(0) DriverManager( wait, // print "RESULT-CYCLEPP $(accum.cycles_pp)", //read fd0.xstats, )
Click
5
timmytimj/fastclick
conf/llvm/router.click
[ "BSD-3-Clause-Clear" ]
capture 1.5208868892588778 0.0 1.1294080231254533 0.0 0.0 0.0 1.5002676020561421 0.0 2.3963556266127779 0.92617978151218505 0.0 0.0 0.97324729237017094 2.5017161422706038 0.0 0.0 0.0 0.0 0.0 0.61296440705523936 0.0 0.0 1.5208868892588778 0.09377053361873218 2.3963556266127779 0.0 0.0 0.0 0.0 1.9263519973670422 1.4031038536024945 0.0 0.0 0.0 1.1016284590183776 0.0 0.0 0.11397324093625155 0.0 1.248953173775236 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6194991779269876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.083820202765563956 2.0962510341624396 0.19359086890094293 0.0 0.98536865290251563 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3316448896203494 1.3667362094316196 0.0 0.0 0.0 3.0895028071727233 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.312646358486933 0.0 0.0 1.4031038536024945 1.0880228069625992 0.0 0.0 0.0 0.0 0.0 0.0 2.9071812503787684 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 face 0.0 0.92511933602574581 0.0 0.74062149980919578 0.0 0.0 0.27197749007949973 0.0 0.0 0.39103685009548811 0.0 1.478220442939975 0.0 0.0 0.0 0.0 0.0 1.2734260302939617 0.0 0.77096865619848765 1.5685430812332606 0.0 0.0 0.0 0.0 0.47993087589973443 1.4669208876860416 0.0 0.0 0.0 0.0 0.05292392401681513 0.0 0.90570125016864433 0.0 0.0 0.0 0.0 0.19350587463800448 1.1192753504667035 0.0 1.5012099611646739 0.07782147563854229 0.0 0.0 0.0 0.7298105837049802 0.0 0.0 0.0 0.0 0.0 1.478220442939975 0.0 0.0 0.90570125016864433 0.0 0.0 0.0 0.0 0.0 1.5861094049511599 0.0 0.0 0.0 1.4557475870879164 0.0 0.90570125016864433 0.0 0.94492196332192557 0.0 1.4557475870879164 0.0 1.4557475870879164 0.0 1.3912090659503451 0.0 0.0 0.0 0.90570125016864433 0.0 0.89296222439121475 0.0 0.0 1.5012099611646739 0.88038344218435471 0.0 0.0 0.0 0.0 1.6788911384021259 0.0 1.0283035722609766 1.5735306227443 0.0 0.90570125016864433 1.3604374072835916 0.0 0.0 0.90570125016864433 0.0 0.0 0.0 0.90570125016864433 0.0 0.0 0.0 0.86796092218579723 0.0 0.0 1.5247404585748678 1.4557475870879162 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0727553348318106 0.0 0.0 1.1680655146361356 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 in_wheelchair 1.8666327626654198 0.0 1.4751538965319952 0.0 0.0 0.0 1.8460134754626842 0.081841962753458106 0.0 1.2719256549187272 0.0 0.0 1.3189931657767129 0.0 0.0 0.0 0.0 0.0 0.0 0.95871028046178131 0.0 0.0 1.4611676545572554 0.43951640702527417 0.0 0.0 0.0 0.0 0.0 2.2720978707735844 1.7488497270090364 0.0 0.0 0.0 1.4473743324249198 0.24477233023276254 0.0 0.45971911434279356 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.42956607617210602 2.4419969075689818 0.53933674230748496 0.0 1.3311145263090578 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6773907630268916 2.4056292633981067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7488497270090364 1.4337686803691412 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 indecency 0.0 0.0 0.0 0.42956607617210602 0.0 1.1671650193028853 0.0 0.5481258108966619 0.0 0.0 0.0 0.0 0.0 0.0 0.569328018547265 0.87381720931542695 0.0 0.0 0.82422026817605487 0.0 0.0 0.74666203383018037 0.0 0.0 0.0 0.0 0.0 0.73184694804503969 1.3404367405769222 0.0 0.0 0.0 0.0 0.0 0.0 0.469894121559078 1.6932581151996644 0.36638717455057446 0.0 0.0 0.86537834066956232 0.0 0.17223116010961698 0.0 0.0 1.3678357147650364 0.0 1.424994128604985 0.0 0.0 0.0 1.2624751991072103 0.0 0.0 0.95315395155194804 0.0 0.76169991119472102 0.38700646175331016 1.1083245192799516 0.0 0.30696375407977378 0.0 0.33623413637988692 0.0 0.0 0.0 0.5446354059568933 0.0 1.2624751991072101 0.0 0.62062131293481526 0.0 0.20642252485789639 0.0 0.0 0.0 1.1227132567320512 0.0 0.0 0.0 1.0801536423132554 0.0 0.0 1.2624751991072103 0.0 0.569328018547265 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.40805987095114238 0.0 0.0 0.0 0.0 0.0 0.0 1.5501572715589911 0.0 0.0 1.6932581151996644 1.3678357147650364 0.0 0.0 0.0 0.96237060665687191 1.6932581151996644 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6932581151996644 0.0 0.0 0.0 0.0 0.0 0.0 0.0 convict 0.49126747207771954 0.43064285026128479 0.50525371405245945 0.0 0.57827884906734939 0.0 0.0 0.092771033285648632 0.67358902887167438 0.58970754489097221 0.0 0.0 0.0 0.0 0.38590695641989342 0.0 0.0 0.085802363969555304 0.0 0.27649217043402646 0.0 0.0 0.49126747207771954 0.0 0.67358902887167438 0.0 0.0 0.14296077780950389 0.0 0.20358539962593875 0.0 0.65705972692046377 0.0 0.41122476440418332 0.072009041837219318 0.0 0.0 0.33711679225046126 0.79764167754165294 0.21933375659407794 0.0 0.0 0.27649217043402646 0.0 0.0 0.0 0.23533409794051893 0.0 0.0 0.8659609215191304 0.0 0.0 0.0 0.0 0.0 0.41122476440418332 0.17281374095918514 0.0 0.0 0.30202547243919126 0.0 0.0 0.0 0.0 0.55026581283967535 0.0 0.0 0.41122476440418332 0.0 0.4504454775574645 0.031735142699279392 0.0 0.53382708649651567 0.0 0.30202547243919126 0.0 0.0 0.70749058054735559 0.33711679225046126 0.41122476440418332 0.0 0.39848573862675341 0.0 0.67358902887167438 0.0 0.0 1.0666316169812815 0.0 0.89673258018588409 0.0 0.0 1.3667362094316198 0.53382708649651545 0.0 0.92848127850046425 0.41122476440418332 0.17281374095918514 0.0 0.0 0.41122476440418332 0.0 0.0 0.0 0.41122476440418332 0.0 0.0 0.67358902887167438 0.37348443642133616 0.0 0.0 0.0 0.26812392076350983 0.0 0.0 1.4720967250894459 0.89673258018588409 0.96127110132345517 0.0 0.0 0.53382708649651545 1.3667362094316198 0.57827884906734939 0.0 2.9761741218657201 0.67358902887167438 0.89673258018588409 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 walk 0.0 0.83062849260482341 0.0 0.24066554828010889 0.0 0.97826449141088823 0.0 0.0 0.0 0.0 0.80164095573157135 0.0 0.0 0.0 0.38042749065526793 0.68491668142342998 0.0 0.0 1.328466920844003 0.0 0.0 0.5577615059381833 0.0 0.0 0.0 0.0 0.0 1.2360936007129879 0.0 0.0 0.0 0.0 0.0 1.5043575873076673 0.0 0.18568341386275608 0.0 0.17748664665857727 0.79216221177702728 0.0 1.0819429208857294 0.0 1.0819429208857294 0.0 0.0 0.0 0.0 1.2360936007129879 0.66810956310704861 0.0 0.0 1.7667218517751586 0.0 0.0 0.76425342365995108 1.5043575873076673 0.0 0.89125311442125832 0.51395888327979022 0.0 0.81121040674772205 0.0 0.14733360848788996 0.0 0.0 0.0 0.35573487806489629 1.5043575873076673 0.66810956310704861 0.0 1.1248679656027634 0.0 0.017521996965899216 0.0 0.0 0.0 0.93381272884005417 0.0 0.0 1.5043575873076673 0.89125311442125832 0.0 0.0 0.0 0.0 0.38042749065526793 0.0 0.0 0.0 0.0 0.0 0.0 1.6269599093999996 0.0 0.0 1.5043575873076673 0.0 0.0 0.0 1.5043575873076673 0.0 0.0 0.9123065236190907 1.5043575873076673 0.0 0.0 0.0 0.0 0.0 1.361256743666994 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.77347007876487495 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 change 0.0 0.0 0.0 0.59033929675985763 0.0 0.0 1.2203075756982713 0.0 0.0 0.6462197551543144 0.0 1.327938239890637 0.0 0.0 0.0 0.0 0.0 1.5286089353527881 0.0 1.026151561257314 0.90743525441793194 0.0 0.0 0.0 0.0 0.5119702296443509 1.3166386846367037 0.0 0.0 0.0 0.0 1.0012540096355871 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.96899314741736542 0.0 1.3509277581153356 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.327938239890637 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4358272019018219 0.0 0.0 0.0 1.3054653840385784 0.0 0.0 0.0 1.8932520489406974 0.0 1.3054653840385784 0.0 1.3054653840385784 0.0 0.0 0.0 1.0516848632624787 0.0 0.0 0.0 1.8412923100099863 0.0 0.0 1.3509277581153356 1.423248419694962 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.423248419694962 0.0 0.0 1.615620312342418 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1163956002549074 1.8162910078045689 0.0 0.0 0.0 1.7109304921467428 0.0 0.0 2.9149032964726787 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1163956002549074 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 attack 0.0 0.79836763038660186 0.0 0.20840468606188742 2.3322979903125574 0.0 0.0 0.17281374095918478 0.0 0.0 0.07623291295340455 0.0 1.4099649439824398 0.0 1.0413138089969916 0.65265581920520832 0.0 0.0 1.2962060586257815 0.0 0.0 0.0 1.1466743246548177 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.48989478826574751 0.0 0.14522578444035575 1.453048530118751 0.0 0.0 0.0 0.64421695055934369 0.0 0.0 0.0 1.2962060586257815 1.2038327384947665 0.0 1.926832882204393 0.0 0.0 0.0 0.0 0.038845380881784179 0.0 0.0 0.0 0.48169802106156878 0.0 0.77894954452950038 0.0 0.52053785437783262 0.0 0.22484341240504732 0.0 0.32347401584667473 0.0 0.0 0.0 1.0926071033845419 0.0 0.67840831530762302 0.0 0.0 0.0 0.90155186662183273 0.0 0.0 0.0 0.0 0.0 0.0 1.7344609895569369 0.0 0.0 1.4343563971065987 0.0 1.9576045408711467 0.0 0.0 0.0 0.0 0.0 1.9893532391857269 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5329686857747085 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9576045408711467 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 injure 0.0 0.0 0.0 0.0 2.8378465569777043 0.0 0.0 0.27289719951616731 0.0 0.0 0.0 0.0 1.5100484025394223 0.0 1.5468623756621385 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6522228913199646 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4358275669954717 0.0 0.65077435110550264 1.9585970967838979 0.0 0.0 0.0 1.1497655172244905 0.0 0.0 0.0 0.0 0.0 0.0 2.4323814488695397 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.62062131293481526 0.0 0.73039197907019426 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8771040625327153 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4631531075362934 0.0 0.0 0.0 0.0 0.0 2.4949018058508736 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4631531075362934 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 hungry 0.97677528785942025 0.0 0.58529642172599583 0.32618772171827087 0.0 0.0 0.9561560006566846 0.0 1.8522440252133203 0.38206818011272758 0.0 1.0637866648490502 0.42913569097071336 1.9576045408711464 0.0 0.0 0.0 1.2644573603112013 0.0 0.76199998621572718 0.64328367937634523 0.0 0.57131017975125586 0.0 1.8522440252133203 0.065497097808809468 1.0524871095951167 0.0 0.0 1.3822403959675846 0.85899225220303677 0.0 0.0 0.0 0.55751685761892 0.0 0.0 0.0 0.0 0.0 0.0 1.0867761830737488 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0637866648490502 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1716756268602351 0.0 1.5521394327629821 0.0 1.0413138089969916 0.44125705150305811 0.0 0.0 1.6291004738991106 0.0 1.0413138089969916 0.0 1.0413138089969916 0.0 0.0 0.0 0.78753328822089186 1.5157717885921074 0.0 0.0 1.1716756268602351 0.0 0.0 1.0867761830737488 0.46594966409342981 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1590968446533751 0.0 0.0 1.3514687373008312 0.0 0.0 0.0 0.85899225220303677 0.54391120556314154 0.0 0.0 0.0 0.0 0.0 1.5521394327629821 0.0 0.0 0.0 1.4467789171051559 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 manhunt 1.5056194171280894 0.0 1.1141405509946649 0.0 0.0 0.0 1.4850001299253537 0.0 2.3810881544819895 0.91091230938139667 0.0 0.0 0.95797982023938255 2.4864486701398154 0.0 0.0 0.0 0.0 0.0 0.59769693492445086 0.0 0.0 1.7933014895798702 0.078503061487943726 2.3810881544819895 0.0 0.0 0.0 0.0 1.9110845252362538 1.3878363814717058 0.0 0.0 0.0 1.0863609868875892 0.0 0.0 0.098705768805463029 0.0 1.2336857016444476 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2973788863561446 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.068552730634775461 2.0809835620316512 0.17832339677015452 0.0 0.97010118077172713 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3163774174895611 2.0446159178607761 0.0 0.0 0.0 3.0742353350419349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3878363814717058 1.0727553348318108 0.0 0.0 0.0 0.0 0.0 0.0 2.89191377824798 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 armed 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.137894637002772 0.0 0.0 1.4467789171051562 0.0 1.6818986594660814 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8960466478717133 0.0 0.0 0.0 0.0 0.0 0.0 3.1829685351784001 0.0 0.0 0.0 0.0 0.0 0.0 0.60767782392213099 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2103675093665145 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2295382563547883 0.0 0.0 0.0 0.0 0.79247156986147449 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2940767774923594 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.3281505450228979 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2103675093665145 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 on_the_run 1.3008250044820759 0.0 0.90934613834865163 0.0 0.0 0.0 1.2802057172793404 0.0 1.4831465612760308 1.1115830048435478 0.0 0.69468920091176045 0.060038227033423854 1.588507076933857 0.0 0.0 0.0 0.89535989637391167 0.0 1.0860497028383829 0.27418621543905564 0.0 1.3008250044820759 0.0 1.4831465612760308 0.032871870492732908 0.68338964565782712 0.0 0.0 1.0131429320302952 0.48989478826574723 0.36800497065671062 0.0 0.0 0.18841939368163055 0.0 0.0 0.0 0.0 1.0288912889984343 0.0 0.7176787191364592 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3994372931501857 0.0 0.69468920091176045 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.80257816292294559 0.0 1.1830419688256926 0.0 0.67221634505970196 0.072159587565768554 0.0 0.0 1.2600030099618209 0.0 0.67221634505970196 0.0 0.67221634505970196 0.0 0.0 0.0 0.0 1.1466743246548177 0.0 0.0 1.20804327103111 2.176293741835976 0.0 0.7176787191364592 0.096852200156140253 0.0 0.0 0.0 0.0 0.0 2.176293741835976 0.0 0.78999938071608555 0.0 0.0 0.98237127336354158 2.3994372931501857 0.0 0.0 0.48989478826574723 0.17481374162585209 0.0 0.0 0.0 0.0 1.4831465612760308 1.1830419688256926 1.9939721850420213 0.0 0.0 1.0776814531678662 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.176293741835976 0.0 0.0 0.0 1.4831465612760308 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 pull_off 1.5363910757948429 0.0 1.1449122096614186 0.0 0.0 0.0 1.5157717885921074 0.0 2.4118598131487432 0.94168396804815035 0.0 0.0 0.98875147890613613 2.5172203288065691 0.0 0.0 0.0 0.0 0.0 0.62846859359120455 0.0 0.0 1.8240731482466239 0.10927472015469733 2.4118598131487432 0.0 0.0 0.0 0.0 1.9418561839030075 1.4186080401384595 0.0 0.0 0.0 1.1171326455543429 0.0 0.0 0.12947742747221666 0.0 1.2644573603112013 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.3281505450228979 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.099324389301529231 2.1117552206984049 0.20909505543690815 0.0 1.0008728394384809 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3471490761563147 0.0 0.0 0.0 0.0 3.1050069937086886 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4186080401384595 1.1035269934985643 0.0 0.0 0.0 0.0 0.0 0.0 2.9226854369147337 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 Pulls_on 0.0 0.0 0.0 0.0 2.2857779746776643 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.95797982023938255 0.0 0.99479379336209883 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1001543090199248 0.77165024204788901 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.28922409280359646 0.0 0.098705768805463029 1.4065285144838584 0.0 0.0 0.0 0.59769693492445086 3.5850609588079254 3.5850609588079254 0.0 0.0 0.0 1.2824758658138797 1.8803128665695001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.068552730634775461 0.0 0.8714705773300998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3250354802326756 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0809835620316512 0.0 1.9110845252362538 0.0 0.0 0.0 0.0 0.0 1.9428332235508341 0.0 0.0 0.0 0.0 0.0 1.3878363814717058 1.0727553348318108 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9110845252362538 0.0 0.0 0.0 0.0 0.0 0.0 3.2973788863561446 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.89191377824798 0.0 0.0 0.0 4.2782081393678704 0.0 0.0 pull_on 0.0 0.0 0.0 0.0 2.3810881544819891 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0532900000437073 0.0 1.0901039731664237 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1954644888242498 0.86696042185221378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.38453427260792133 0.0 0.1940159486097878 1.5018386942881832 0.0 0.0 0.0 0.69300711472877563 0.0 0.0 0.0 0.0 0.0 1.3777860456182045 1.9756230463738249 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.16386291043910048 0.0 0.96678075713442457 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4203456600370004 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.176293741835976 0.0 2.0063947050405786 0.0 0.0 0.0 0.0 0.0 2.0381434033551589 0.0 0.0 0.0 0.0 0.0 1.4831465612760306 1.1680655146361356 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0063947050405786 0.0 0.0 0.0 0.0 0.0 0.0 3.3926890661604694 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9872239580523048 0.0 0.0 0.0 0.0 0.0 0.0 steal 0.0 1.2908441154843961 0.0 0.0077339905997364771 0.0 0.74533293373051557 0.0 0.0 0.0 0.063614448994193107 0.56870939805119891 0.0 0.0 0.0 0.14749593297489536 0.45198512374305738 0.0 0.0 1.0955353631636304 0.0 1.0179771288177559 0.3248299482578107 0.0 0.0 0.0 0.0 0.0 1.0031620430326154 0.0 0.0 0.0 0.0 0.0 1.9645732101872402 0.0 0.0 0.0 0.0 0.55923065409665484 0.0 0.84901136320535697 0.0 0.84901136320535697 0.0 0.0 0.0 1.7886825437235758 1.0031620430326154 0.84064311353484034 0.0 0.0 1.5337902940947861 0.0 0.0 0.53132186597957853 1.9645732101872402 0.0 0.65832155674088577 0.28102732559941779 0.0 0.5782788490673495 0.0 0.0 0.0 0.0 0.0 0.1228033203845237 1.9645732101872402 0.43517800542667606 0.0 0.89193640792239093 0.0 0.0 0.0 0.0 0.0 0.70088117115968174 0.0 0.0 1.9645732101872402 0.65832155674088577 0.0 0.0 0.0 0.0 0.14749593297489536 0.0 0.0 0.0 0.0 0.0 0.0 1.394028351719627 0.0 0.0 1.9645732101872402 0.0 0.0 0.0 1.9645732101872402 0.0 0.0 0.67937496593871805 1.9645732101872402 0.0 0.0 0.0 0.0 0.0 1.1283251859866215 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.54053852108450229 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 smuggle 0.0 2.1082890127219187 0.0 0.0 0.0 0.0 0.0 0.3841228346263918 0.0 0.88105934623171545 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8354220260552785 0.0 0.0 0.74179727889820779 0.0 0.34134471261358756 0.0 0.0 0.0 0.0 0.0 1.2360936007129879 0.0 2.0888709268648173 1.0565080237379079 0.0 0.0 0.068852805655781862 1.3766755513341773 0.0 0.0 0.0 1.260991152334715 0.0 0.0 0.0 1.9129802604011528 0.0 0.55947572210425311 0.0 0.0 0.0 0.0 0.0 0.0 2.0888709268648173 1.1573127228598736 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.14847043362047327 0.0 0.0 2.0888709268648173 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0888709268648173 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8620608150982987 0.0 2.2114732489571494 0.0 0.0 2.0888709268648173 0.0 0.0 0.0 2.0888709268648173 0.0 0.0 0.0 2.0888709268648173 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5743787426465179 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 surprising 0.0 0.0 1.5661256747377219 0.0 0.0 0.0 0.0 0.86596092151913007 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9955922077228214 0.0 0.0 0.0 0.0 0.0 0.0 0.53048818523100072 0.0 0.82318279950632611 0.0 0.0 0.0 0.0 1.8398215052147631 1.7179316876057262 2.7377630984207215 0.0 1.5383461106306464 0.0 0.0 0.55069089254852011 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0413138089969916 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9576045408711464 0.0 2.4615097217925634 0.0 0.0 0.0 0.0 0.63030852051321173 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4615097217925634 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8330732782250467 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ask 0.0 0.0 0.0 0.9842435824669461 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7218425255977254 0.0 0.0 0.0 0.0 0.0 1.9225132210598763 0.0 0.72690866640445717 1.3013395401250205 0.0 0.0 0.0 0.0 0.50040940724327498 1.710542970343792 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3628974331244539 0.0 1.7448320438224241 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7218425255977254 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8297314876089104 0.0 0.0 0.0 1.6993696697456666 0.0 0.0 0.0 0.0 0.0 1.6993696697456666 0.0 1.6993696697456666 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8297314876089104 0.0 0.0 1.7448320438224241 1.124005524842105 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8171527054020502 0.0 0.0 2.0095245980495062 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2101952935116573 0.0 0.0 0.0 2.104834777853831 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 fallout 0.0 0.0 0.0 0.7680204739973101 0.0 0.0 1.3979887529357238 0.0 0.0 0.82390093239176687 0.0 1.5056194171280892 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2038327384947665 1.0851164316553845 0.0 0.0 0.0 0.0 0.28418629877363905 1.494319861874156 0.0 0.0 0.0 0.0 1.1789351868730393 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1466743246548177 0.0 1.5286089353527881 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5056194171280892 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6135083791392744 0.0 0.0 0.0 1.4831465612760306 0.0 0.0 0.0 2.0709332261781497 0.0 1.4831465612760306 0.0 1.4831465612760306 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0189734872474387 0.0 0.0 1.5286089353527881 0.90778241637246893 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6009295969324142 0.0 0.0 1.7933014895798705 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2940767774923594 1.9939721850420213 0.0 0.0 0.0 1.8886116693841952 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2940767774923594 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 on_the_Lam 0.0 1.0294793513499887 0.0 0.43951640702527417 0.0 1.1771153501560534 0.0 0.0 0.0 0.0 1.0004918144767365 0.0 0.54246437627771671 0.0 0.57927834940043299 0.88376754016859504 0.0 0.0 1.5273177795891681 0.0 0.0 0.75661236468334847 0.0 0.0 0.0 0.0 0.0 1.4349444594581531 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.38453427260792133 0.0 0.37633750540374244 0.0 0.0 1.2807937796308946 0.0 0.18218149096278513 0.0 0.0 0.0 1.5273177795891681 1.4349444594581531 0.17381324129226844 0.0 0.0 1.9655727105203236 0.0 0.0 0.96310428240511625 0.0 0.0 1.0901039731664235 0.7128097420249554 0.0 1.0100612654928871 0.0 0.34618446723305496 0.0 0.0 0.0 0.5545857368100614 0.0 0.86696042185221378 0.0 1.3237188243479288 0.0 0.21637285571106438 0.0 0.0 0.0 1.1326635875852196 0.0 0.0 0.0 1.0901039731664235 0.0 0.0 0.0 0.0 0.57927834940043299 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.111157382364256 0.0 2.7640804067380951 0.0 0.0 0.0 0.0 1.5601076024121592 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.97232093751004001 0.0 0.0 0.0 0.0 0.0 4.2681578035143692 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 confine 0.0 1.049682058667508 0.0 0.45971911434279356 0.0 1.1973180574735727 0.0 0.0 0.0 0.0 1.020694521794256 0.0 0.56266708359523598 0.0 0.59948105671795238 0.90397024748611443 0.0 0.0 1.5475204869066876 0.0 0.0 0.77681507200086775 0.0 0.0 0.0 0.0 0.0 1.4551471667756726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.40473697992544055 0.0 0.39654021272126183 0.0 0.0 1.3009964869484141 0.0 0.20238419828030443 0.0 0.0 0.0 1.5475204869066876 1.4551471667756726 0.1940159486097878 0.0 0.0 1.9857754178378431 0.0 0.0 0.98330698972263564 0.0 0.0 1.1103066804839428 0.73301244934247467 0.0 1.0302639728104066 0.0 0.36638717455057446 0.0 0.0 0.0 0.57478844412758068 0.0 0.88716312916973306 0.0 1.343921531665448 0.0 0.23657556302858374 0.0 0.0 0.0 1.1528662949027388 0.0 0.0 0.0 1.1103066804839428 0.0 0.0 0.0 0.0 0.59948105671795238 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1313600896817753 0.0 2.7842831140556141 0.0 0.0 0.0 0.0 1.5803103097296785 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.99252364482755939 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 assault 0.0 0.0 0.55596880663147585 0.0 0.0 0.0 0.0 0.0 0.72430412145069067 0.0 0.0 0.0 0.39980807587619333 0.0 0.031156940890745402 0.33564613165890739 0.0 0.0 0.28604919051953526 0.0 0.0 0.0 0.13651745654857159 0.031156940890745183 0.72430412145069067 0.0 0.0 0.0 1.4954128434803478 0.25430049220495499 0.0 0.99545689195126097 0.0 0.0 1.0390148662903906 0.367041115160404 1.8482342181030902 0.52136327745400013 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5228118176684622 0.0 0.19367587038852008 0.0 0.22352883353820141 0.0 1.4174513020106361 0.0 0.0 0.0 0.0 1.4762918020335696 0.0 0.0 1.0458877455781528 0.0 0.0 0.20352816683153166 0.0 0.60098090541869165 0.0 0.0064643283003737607 0.0 0.0 0.0 0.0 0.0 0.073716555309541146 0.0 1.0458877455781528 0.0 0.0 0.35274056501820755 0.0 0.0 0.0 0.0 0.0 0.72430412145069067 0.0 0.0 0.42419952900035235 0.0 0.25430049220495499 0.0 0.0 0.0 0.0 0.0 0.28604919051953526 0.0 0.0 1.6405948533248456 2.6214241063365717 0.0 0.0 0.10911848236045711 0.0 0.0 0.0 1.7741262459493681 0.0 0.0 0.0 0.31883901334252618 0.0 0.0 1.8482342181030902 1.5228118176684622 0.0 0.25430049220495499 1.7051333744624169 0.0 1.8482342181030902 1.277689359635477 0.0 1.3221411222063111 0.0 0.0 0.0 1.6405948533248456 1.6405948533248456 0.0 0.0 1.8482342181030902 0.0 3.0268892144447364 2.333742033884791 0.0 0.0 0.0 0.0 renews 0.0 2.4157737124698793 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1885440459796761 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1429067258032393 0.0 0.0 0.35613479808622311 0.0 0.36114733990976727 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3963556266127779 0.0 0.0 0.0 0.0 1.6841602510821378 0.0 0.0 0.0 1.5684758520826758 0.0 0.0 0.0 2.2204649601491133 0.0 0.86696042185221378 0.0 0.0 0.0 0.0 0.0 0.0 2.3963556266127779 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3963556266127779 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3963556266127779 0.0 1.2850043121672383 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.1695455148462597 0.0 2.5189579487051099 0.0 0.0 0.0 0.0 0.0 0.0 2.3963556266127779 0.0 0.0 0.0 2.3963556266127779 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.563409711275944 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.9613049840743146 offer 2.5172203288065691 0.0 2.1257414626731448 0.0 0.0 0.0 0.0 0.73242952889460755 0.0 1.9225132210598765 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6092978466029306 0.0 0.0 2.1117552206984049 1.0901039731664235 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0801536423132554 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3279783291680411 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.0858362467204143 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.3089797980346241 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 handcuff 0.38700646175331016 0.3263818399368752 0.0 0.0 0.0 0.47401783874293996 0.36638717455057446 0.0 0.0 0.0 0.29739430306362324 0.0 0.0 0.0 0.569328018547265 0.18067002875548158 0.0 0.0 0.82422026817605487 0.0 0.0 0.053514853270235065 0.0 0.34618446723305496 0.0 0.0 0.0 0.73184694804503969 1.3404367405769222 0.79247156986147449 0.26922342609692657 0.0 0.0 0.0 0.0 0.55690549854870774 1.6932581151996644 0.36638717455057446 0.28791555910907907 0.0 0.57769626821778119 0.0 0.17223116010961698 0.0 0.0 1.3678357147650364 0.82422026817605487 0.73184694804503969 0.16386291043910048 0.76169991119472102 0.0 1.2624751991072103 0.0 0.0 0.26000677099200281 0.0 0.0 0.38700646175331016 0.0097122306118419821 0.0 0.30696375407977378 0.0 0.33623413637988692 0.96237060665687191 0.44600480251526592 0.0 0.5446354059568933 0.0 0.16386291043910048 0.0 0.62062131293481526 0.0 0.61188763296606064 0.0 0.0 0.0 0.42956607617210602 0.19776446211478174 0.92600296248599712 0.0 0.38700646175331016 0.0 0.0 0.0 0.0 0.0 0.96237060665687191 0.0 0.79247156986147449 0.0 0.0 0.0 0.0 0.0 0.82422026817605487 0.0 0.0 0.0 0.0 0.0 0.0 0.64728956001697679 0.40805987095114238 0.0 0.0 0.0 0.0 0.0 0.0 0.85701009099904579 0.0 0.0 0.0 1.3678357147650364 0.0 0.79247156986147449 0.0 0.26922342609692657 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6932581151996644 0.0 0.0 0.0 0.0 0.0 0.0 0.0 barefoot 1.7440304405730875 0.0 1.3525515744396632 0.0 0.0 0.0 1.7234111533703518 0.0 2.6194991779269876 1.1493233328263948 0.0 0.0 1.1963908436843806 2.7248596935848139 0.0 0.0 0.0 0.0 0.0 0.83610795836944907 0.0 0.0 1.3385653324649232 0.31691408493294188 0.0 0.0 0.0 0.0 0.0 2.1494955486812519 1.6262474049167042 0.0 0.0 0.0 1.3247720103325873 0.12217000814043016 0.0 0.33711679225046126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.30696375407977378 2.3193945854766493 0.41673442021515267 0.0 1.2085122042167253 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5547884409345594 2.2830269413057747 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6262474049167042 1.3111663582768089 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 recommend 0.0 0.0 0.0 1.0193349022782161 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7569338454089953 0.0 0.0 0.0 0.0 0.0 1.9576045408711464 0.0 0.76199998621572718 1.3364308599362904 0.0 0.0 0.0 0.0 0.5355007270545451 1.7456342901550621 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.397988752935724 0.0 1.779923363633694 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7569338454089953 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8648228074201805 0.0 0.0 0.0 1.7344609895569367 0.0 0.0 0.0 0.0 0.0 1.7344609895569367 0.0 1.7344609895569367 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8648228074201805 0.0 0.0 1.779923363633694 1.1590968446533751 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8522440252133203 0.0 0.0 2.0446159178607766 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1399260976651013 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 pull 1.7062901125902405 0.95251831021386024 1.0271291740050352 0.0 0.0 0.0 0.99252364482755939 0.1446428639924886 0.0 0.0 0.0 0.40700712845997961 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0215111817008118 0.0 0.0 1.0131429320302952 0.0 0.0 0.19717492178400919 0.39570757320604621 0.0 0.0 0.72546085957851425 0.20221271581396635 0.0 0.0 0.93310022435675888 0.0 0.0 0.0 0.0 0.22090484882611885 0.048062035986708052 0.0 0.4299966466846783 0.10522044982665674 0.0 0.0 0.0 0.75720955789309452 0.0 0.0 0.0 0.0 1.19546448882425 0.40700712845997961 0.0 0.0 0.93310022435675888 0.0015420203518151968 0.0 0.0 0.0 0.0 0.51489609047116458 0.26922342609692657 0.89535989637391167 0.0 0.384534272607921 0.0 0.93310022435675888 0.0 0.97232093751004001 0.0 0.384534272607921 0.0 0.384534272607921 0.0 0.0 0.0 0.82390093239176687 0.85899225220303677 0.93310022435675888 0.0 0.51489609047116458 0.0 0.0 0.4299966466846783 0.0 0.0 0.0 0.0 0.0 0.0 2.5817588499441406 1.055702546449091 0.50231730826430465 0.0 0.93310022435675888 0.69468920091176045 0.0 0.0 0.93310022435675888 0.20221271581396635 0.0 0.0 0.93310022435675888 0.0 0.0 0.0 0.89535989637391167 1.7062901125902405 0.0 0.0 0.78999938071608533 1.6262474049167042 0.0 0.0 0.0 0.0 0.0 1.6262474049167042 0.0 2.5817588499441406 0.0 0.0 0.0 1.19546448882425 0.0 2.1117552206984049 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 flee 0.0 0.14571181118139359 0.0 0.0 0.98649499054740375 0.29334780998745835 0.0 0.030983545519967227 0.0 0.0 0.0 0.0 0.35184401666906695 0.0 0.79412309789994773 0.0 0.0 0.0 0.64355023942057321 0.0 0.56599200507469871 0.0 0.4940185054496094 0.72513022641299607 0.0 0.0 0.0 0.55117691928955814 0.0 0.0 0.088553397341445031 0.0 0.98649499054740375 0.81944090588423757 0.0 0.28922409280359646 0.0 0.40886069710930256 0.80039271091354292 0.0 0.0 0.0 0.39702623946229981 0.0 0.0 0.0 0.0 0.0 0.0 1.2741770629991847 0.0 0.0 0.0 0.0 0.079336742236521207 0.81944090588423757 0.0 0.89948361355777373 0.0 0.71024161391924556 0.12629372532429226 0.0 0.0 0.0 0.6707998818679487 0.0 0.0 0.81944090588423757 0.0 0.0 0.43995128417933366 0.0 0.94204322797656992 0.0 0.71024161391924556 0.0 0.24889604741662438 0.0 0.0 0.81944090588423757 0.20633643299782839 0.0 0.0 0.0 0.0 0.0 1.4748477584613358 0.0 1.3049487216659381 1.0818051703517286 0.0 0.0 0.0 0.0 1.3366974199805186 0.81944090588423757 0.0 0.0 0.0 0.81944090588423757 0.088553397341445031 0.46661953126149508 0.2273898421956608 0.81944090588423757 0.0 0.0 0.0 0.0 0.0 0.67634006224356413 0.0 0.0 0.0 0.0 0.0 1.3049487216659381 0.0 0.088553397341445031 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5926307941177191 0.0 0.0 0.0 0.0 0.0 0.0 on_the_loose 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9660443800761126 0.0 0.0 1.2749286601784968 0.0 1.5100484025394223 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7241963909450539 0.0 0.0 0.0 0.23011907750336327 0.0 0.0 3.0111182782517409 0.0 0.0 0.0 0.0 0.0 0.0 0.4358275669954717 3.3639396528744832 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0385172524398554 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0576879994281292 0.0 0.0 0.0 0.0 0.62062131293481526 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1222265205657003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.1563002880962387 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0385172524398554 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.3194510979019194 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 trigger 0.0 0.0 0.0 0.0 2.9490721920879288 0.0 0.0 0.3841228346263918 0.0 0.0 0.0 0.0 1.6212740376496466 0.0 1.658088010772363 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7634485264301891 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.54705320210569608 0.0 0.76199998621572718 2.0698227318941225 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5436070839797642 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.73184694804503969 0.0 0.84161761418041858 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9883296976429397 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6061274409610982 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5743787426465179 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 suffer 0.0 1.6834058187566527 0.0 1.0934428744319382 0.0 0.0 0.0 0.0 0.0 0.0 0.96127110132345528 0.0 1.1963908436843806 0.0 0.0 1.5376940075752592 0.0 0.0 2.1812442469958322 0.0 0.0 0.0 0.0 0.31691408493294188 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5276351162485946 0.0 0.0 0.0 0.0 0.83610795836944907 0.0 0.0 0.0 0.0 0.0 2.1812442469958322 2.0888709268648173 0.82773970869893254 0.0 0.0 2.6194991779269876 0.0 0.0 0.92388356925183512 0.0 0.0 0.0 1.3667362094316196 0.0 1.6639877328995512 0.0 0.30696375407977378 0.0 0.0 0.0 1.2085122042167253 0.0 0.0 0.0 1.9776452917545928 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6194991779269876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.4180068741447589 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 escape 0.0 0.13257533327602383 0.13819332558024716 0.012616018197044684 0.0 0.0 0.17258066788972293 0.094808108750725581 0.0 0.29164002790571136 0.0 0.46253288887604299 0.0 0.25773847623002971 0.0 0.0 0.72036199817814284 0.48088202754423953 0.0 0.31489689006997829 0.042029903403338252 0.042029903403338252 0.0 0.0 0.0 0.0 0.45123333362210977 0.31489689006997845 0.23033950204191556 0.0 0.25773847623002971 0.42353073107277389 0.46253288887604299 0.29547880421287698 0.24394515409769396 0.0 0.0 0.0 0.0 0.25773847623002971 0.0 0.48552240710074174 0.0 0.0 0.0 0.25773847623002971 0.11958813774921263 0.0 0.0 0.0 0.37552151188641331 0.15237796057220371 0.46253288887604299 0.50905290451093577 0.0 0.29547880421287698 0.21121846059513702 0.37552151188641331 0.0 0.47396158469966576 0.0 0.38810029409327346 0.0 0.0 0.0 0.44006003302398455 0.0 0.29547880421287698 0.0 0.33469951736615816 0.0 0.44006003302398455 0.0 0.44006003302398455 0.47396158469966576 0.78098661999457764 0.0 0.18627951224788492 0.0 0.29547880421287698 0.0 0.28273977843544701 0.15237796057220371 0.0 0.48552240710074174 0.37552151188641347 0.0 0.78098661999457764 0.0 0.55784306868036804 0.0 0.15237796057220371 0.41808112630520916 0.37552151188641347 0.0 0.29547880421287698 0.34474985321965956 0.37552151188641331 0.0 0.29547880421287698 0.0 0.0 0.0 0.29547880421287698 0.0 0.50905290451093577 0.84552514113214905 0.25773847623002971 0.0 0.0 0.50905290451093577 0.15237796057220351 0.58316087666465788 0.25773847623002971 0.95088565678997505 0.0 0.44006003302398439 0.0 0.58316087666465788 0.70576319875699001 0.15237796057220371 0.057067780767878551 0.0 0.0 0.55784306868036804 0.37552151188641331 0.37552151188641331 0.84552514113214905 0.66320358433819415 0.0 0.0 0.0 0.0 1.3563507648981394 0.0 0.0 0.0 commit 0.0 0.0 0.0 0.27400196854770065 0.0 1.0116009116784799 0.0 0.52609309589677911 0.0 0.0 1.2404424841073276 0.0 0.37694993780014324 0.0 0.41376391092285958 0.71825310169102152 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8780198135124622 0.0 0.0 0.0 0.0 0.0 0.0 0.68902346337608333 2.2308411881352046 0.21082306692616912 0.0 0.0 1.1152793411533213 0.0 0.016667052485211643 0.0 0.0 0.0 0.0 1.2694300209805796 0.0082988028146950658 0.0 0.0 0.0 0.0 0.0 0.79758984392754295 0.0 0.6061358035703156 0.0 1.2404424841073274 0.0 1.5376940075752592 0.0 0.58613513686364604 0.0 0.0 0.0 0.38907129833248794 0.0 1.3945931639345857 0.0 1.1582043858703552 0.0 0.05085841723349116 0.0 0.0 0.0 0.96714914910764593 0.0 0.0 0.0 0.92458953468885008 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.49172545239257143 1.6387901244466276 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9054187877005764 0.0 0.0 0.0 0.8068064990324666 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2308411881352046 0.0 0.0 0.0 0.0 0.0 0.0 0.0 restrain 0.0 0.0 1.5196056591028293 0.0 0.0 0.0 0.0 0.81944090588423735 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9490721920879288 0.0 0.0 0.0 0.0 0.0 0.0 0.48396816959610806 0.0 0.77666278387143328 0.0 0.0 0.0 0.0 1.7933014895798702 1.6714116719708336 2.6912430827858289 0.0 1.4918260949957536 0.0 0.0 0.50417087691362739 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.99479379336209872 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9110845252362536 0.0 0.0 0.0 0.0 0.0 0.0 0.58378850487831879 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4149897061576708 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7865532625901537 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7933014895798702 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6467913202149949 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 crime 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3455340017810165 0.0 0.0 1.6544182818834006 0.0 1.889538024244326 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1036860126499577 0.0 0.0 0.0 0.0 0.0 0.0 3.3906078999566449 0.0 0.0 0.0 0.0 0.0 0.0 0.81531718870037551 3.7434292745793871 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.4180068741447589 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.7434292745793871 0.0 0.0 0.0 0.0 0.0 0.0 0.0 &quot;claimed 0.0 0.0 0.0 0.71395325272703425 0.0 1.4515521958578135 0.0 0.0 0.0 0.0 0.58178147961855142 0.0 0.0 0.0 0.85371519510219318 1.1582043858703552 0.0 0.0 1.8017546252909284 0.0 0.0 1.0310492103851088 0.0 0.0 0.0 0.0 0.0 1.7093813051599134 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4358275669954717 0.0 0.65077435110550264 0.0 0.0 1.1497655172244905 0.0 0.45661833666454521 0.0 0.0 0.0 0.0 1.7093813051599134 0.44825008699402874 0.0 0.0 0.0 0.0 0.0 1.2375411281068764 0.0 0.0 1.3645408188681836 0.98724658772671559 0.0 1.2844981111946474 0.0 0.0 0.0 0.037244798510248936 0.0 0.82902258251182159 0.0 1.1413972675539741 0.0 0.0 0.0 0.49080970141282476 0.0 0.0 0.0 1.4071004332869796 0.0 0.0 0.0 1.3645408188681836 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3855942280660161 0.0 0.0 0.0 0.0 0.0 0.0 1.8345444481139193 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2467577832118002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 force 1.7249822456023931 0.0 0.0 0.0 0.0 0.0 1.0112157778397119 0.63333862625037662 0.0 1.1302751378557003 0.0 0.0 0.48419546815374087 0.0 0.0 0.0 2.0698227318941225 0.0 0.0 1.222524871506919 0.0 0.0 0.62636995693428321 0.29786588996224728 0.0 0.0 0.0 0.0 0.0 1.4373001731506121 1.6071992099460095 0.7921622117770275 1.8119936225920228 0.0 1.3057238153618929 0.0 0.0 0.31806859727976666 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.11554433316829271 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0318350650424477 0.0 1.5357402459638647 0.0 0.0 0.28791555910907923 1.6071992099460095 0.39768622524445807 0.0 0.49631682868608562 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5357402459638647 0.0 0.0 1.5357402459638647 1.5708315657751346 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9073038023963478 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6071992099460095 0.598970982746169 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7675418600211887 0.0 0.0 0.0 0.0 0.0 0.0 2.8235945342705024 0.0 0.0 0.0 0.0 0.0 3.5167417148304478 0.0 0.0 0.0 0.0 tip 1.6348311486080955 0.0 1.243352282474671 0.0 0.0 0.0 1.6142118614053598 0.0 2.5102998859619956 1.0401240408614028 0.0 0.0 1.0871915517193886 2.6156604016198219 0.0 0.0 0.0 0.0 0.0 0.72690866640445717 0.0 0.0 1.2293660404999311 0.20771479296794979 2.5102998859619956 0.0 0.0 0.0 0.0 2.0402962567162599 1.5170481129517119 0.0 0.0 0.0 1.2155727183675953 0.012970716175438147 0.0 0.22791750028546914 0.0 1.3628974331244539 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19776446211478174 2.2101952935116573 0.30753512825016072 0.0 1.0993129122517336 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4455891489695671 2.1738276493407827 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5170481129517119 1.2019670663118169 0.0 0.0 0.0 0.0 0.0 0.0 3.0211255097279861 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 one 1.6699224684193656 0.0 1.2784436022859411 0.0 0.0 0.0 1.6493031812166299 0.0 2.5453912057732655 1.0752153606726729 0.0 0.0 1.1222828715306588 2.6507517214310918 0.0 0.0 0.0 0.0 0.0 0.76199998621572718 0.0 0.0 1.2644573603112013 0.2428061127792199 2.5453912057732655 0.0 0.0 0.0 0.0 2.0753875765275298 1.5521394327629821 0.0 0.0 0.0 1.2506640381788654 0.048062035986708267 0.0 0.26300882009673926 0.0 1.397988752935724 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.23285578192605183 2.2452866133229272 0.34262644806143072 0.0 1.1344042320630034 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4806804687808373 2.2089189691520525 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5521394327629821 1.2370583861230868 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 disciplinary 0.0 0.0 0.0 0.95034203079126489 0.0 0.0 0.88716312916973306 0.0 0.0 0.31307530862577621 0.0 1.6879409739220439 0.0 0.0 0.0 0.0 0.0 1.1954644888242498 0.0 1.0984722228369401 1.2674379884493392 0.0 0.0 0.0 0.0 0.58429089122397715 1.6766414186681107 0.0 0.0 0.0 0.0 0.66810956310704872 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3289958814487726 0.0 1.7109304921467428 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6879409739220439 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1026827553732836 0.0 0.0 0.0 1.6654681180699855 0.0 0.0 0.0 1.5601076024121592 0.0 1.6654681180699855 0.0 1.6654681180699855 0.0 2.0063947050405786 0.0 0.0 0.0 0.0 0.0 1.1026827553732836 0.0 0.0 1.7109304921467428 1.0901039731664237 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7832511537263691 0.0 0.0 1.2824758658138797 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7832511537263691 1.4831465612760306 0.0 0.0 2.1399260976651013 1.3777860456182045 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7832511537263691 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 mobility&quot; 0.0 0.0 0.0 0.71395325272703425 0.0 1.4515521958578135 0.0 0.0 0.0 0.0 0.58178147961855142 0.0 0.0 0.0 0.85371519510219318 1.1582043858703552 0.0 0.0 1.8017546252909284 0.0 0.0 1.0310492103851088 0.0 0.0 0.0 0.0 0.0 1.7093813051599134 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.4358275669954717 0.0 0.65077435110550264 0.0 0.0 1.1497655172244905 0.0 0.45661833666454521 0.0 0.0 0.0 0.0 0.0 0.44825008699402874 0.0 0.0 0.0 0.0 0.0 1.2375411281068764 0.0 0.0 1.3645408188681836 0.98724658772671559 0.0 1.2844981111946474 0.0 0.0 0.0 0.037244798510248936 0.0 0.82902258251182159 0.0 1.1413972675539741 0.0 1.5981556700496888 0.0 0.49080970141282476 0.0 0.0 0.0 1.4071004332869796 0.0 0.0 0.0 1.3645408188681836 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3855942280660161 0.0 0.0 0.0 0.0 0.0 0.0 1.8345444481139193 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2467577832118002 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 question 0.0 0.0 0.0 0.0 0.0 0.97826449141088823 0.0 0.0 0.0 0.0 0.10849377517162608 0.97826449141088823 0.0 0.0 0.38042749065526793 0.68491668142342998 0.0 1.1789351868730391 1.328466920844003 0.0 0.5577615059381833 0.5577615059381833 0.0 0.0 0.0 0.16229648116460219 0.96696493615695489 1.2360936007129879 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.17748664665857727 0.0 0.61931939893761667 0.67647781277756525 1.0012540096355869 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.97826449141088823 0.0 0.76425342365995108 0.0 0.0 0.0 0.51395888327979022 0.0 0.81121040674772205 0.3930062728621278 0.0 0.0 0.0 0.95579163555882962 0.35573487806489629 0.0 0.66810956310704861 0.0 1.1248679656027634 0.95579163555882962 0.017521996965899216 0.95579163555882962 0.0 1.9898654030893681 0.93381272884005417 0.0 0.0 0.0 0.89125311442125832 0.0 0.0 0.0 1.0012540096355869 1.0735746712152132 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.38042749065526793 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9123065236190907 0.0 0.0 0.0 1.7667218517751586 0.0 0.0 1.361256743666994 2.1233967957138904 0.0 0.0 0.0 0.0 0.0 0.0 0.77347007876487495 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 Handcuffs 0.0 0.0 0.0 0.0 2.316549633344418 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.98875147890613613 0.0 1.0255654520288524 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1309259676866785 0.80242190071464259 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.31999575147035003 0.0 0.12947742747221666 1.4373001731506121 0.0 0.0 0.0 0.62846859359120455 3.6158326174746791 3.6158326174746791 0.0 0.0 0.0 1.3132475244806334 1.9110845252362538 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.099324389301529231 0.0 0.90224223599685349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3558071388994293 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1117552206984049 0.0 1.9418561839030075 0.0 0.0 0.0 0.0 0.0 1.9736048822175878 0.0 0.0 0.0 0.0 0.0 1.4186080401384595 1.1035269934985643 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.3281505450228979 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9226854369147337 0.0 0.0 0.0 4.3089797980346241 0.0 0.0 fire 1.1734855821054746 0.0 1.4751538965319952 0.0 0.0 0.0 1.1528662949027388 0.4873070708616225 0.0 0.57877847435878182 0.0 0.0 0.62584598521676771 0.0 0.0 0.0 2.2114732489571494 0.0 0.0 0.95871028046178131 0.0 0.0 0.7680204739973101 0.43951640702527417 0.0 0.039063840740653902 0.0 0.0 0.0 1.578950690213639 0.0 0.9338127288400544 1.9536441396550497 0.0 1.4473743324249198 0.0 0.0 0.45971911434279356 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.25719485023131955 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1734855821054746 0.0 1.6773907630268916 0.0 0.0 0.0 1.7488497270090364 0.53933674230748496 0.0 0.6379673457491124 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6773907630268916 0.0 0.0 0.98424358246694632 1.7124820828381615 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2720978707735844 0.0 2.0489543194593747 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7488497270090364 0.74062149980919578 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9091923770842159 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 Runs 0.0 0.0 0.0 0.0 2.316549633344418 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.98875147890613613 0.0 1.0255654520288524 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1309259676866785 0.80242190071464259 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.31999575147035003 0.0 0.12947742747221666 1.4373001731506121 0.0 0.0 0.0 0.62846859359120455 3.6158326174746791 3.6158326174746791 0.0 0.0 0.0 1.3132475244806334 1.9110845252362538 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.099324389301529231 0.0 0.90224223599685349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3558071388994293 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1117552206984049 0.0 1.9418561839030075 0.0 0.0 0.0 0.0 0.0 1.9736048822175878 0.0 0.0 0.0 0.0 0.0 1.4186080401384595 1.1035269934985643 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9418561839030075 0.0 0.0 0.0 0.0 0.0 0.0 3.3281505450228979 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9226854369147337 0.0 0.0 0.0 0.0 0.0 0.0 termination 0.0 0.0 0.0 0.95034203079126489 0.0 0.0 0.88716312916973306 0.0 0.0 0.31307530862577621 0.0 1.6879409739220439 0.0 0.0 0.0 0.0 0.0 1.1954644888242498 0.0 1.0984722228369401 1.2674379884493392 0.0 0.0 0.0 0.0 0.46650785556759367 1.6766414186681107 0.0 0.0 0.0 0.0 0.66810956310704872 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3289958814487726 0.0 1.7109304921467428 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6879409739220439 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.795829935933229 0.0 0.0 0.0 1.6654681180699855 0.0 0.0 0.0 1.5601076024121592 0.0 1.6654681180699855 0.0 1.6654681180699855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.795829935933229 0.0 0.0 1.0177833115867974 1.0901039731664237 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7832511537263691 0.0 0.0 1.9756230463738249 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4831465612760306 0.0 0.0 0.0 2.0709332261781497 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7832511537263691 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 call 0.0 2.4157737124698793 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1885440459796761 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1429067258032393 0.0 0.0 0.35613479808622311 0.0 0.36114733990976727 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3963556266127779 0.0 0.0 0.0 0.0 1.6841602510821378 0.0 0.0 0.0 1.5684758520826758 0.0 0.0 0.0 2.2204649601491133 0.0 0.86696042185221378 0.0 0.0 0.0 0.0 0.0 0.0 2.3963556266127779 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3963556266127779 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3963556266127779 0.0 1.2850043121672383 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.1695455148462597 0.0 2.5189579487051099 0.0 0.0 2.3963556266127779 0.0 0.0 0.0 2.3963556266127779 0.0 0.0 0.0 2.3963556266127779 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.563409711275944 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 on_foot 0.0 0.0 0.37654160786388574 0.1174329078561607 0.0 0.85503185098694001 0.0 0.59266758651944884 0.0 0.0 0.67840831530762324 0.0 0.2203808771086033 0.0 0.25719485023131972 0.56168404099948166 0.0 0.0 1.2052342804200549 0.0 0.0 1.1276760460741804 0.0 0.034051298917109729 0.0 0.32674591319243507 0.0 1.1128609602890398 1.0283035722609768 0.0 0.65023743834092673 0.52834762073189001 1.5481790315468853 0.0 0.34876204375680997 0.39892301006002095 0.0 0.45971911434279356 0.0 0.0 0.55324517235361703 0.0 0.0 0.0 0.0 1.7488497270090364 0.0 0.0 0.54487692268310051 0.0 0.0 0.0 0.0 0.0 0.64102078323600287 0.0 0.0 0.0 0.39072624285584218 1.2719256549187272 0.68797776632377394 0.0 0.024100968063941776 0.0 0.13387163419932074 0.0 0.23250223764094799 0.0 0.54487692268310051 0.0 1.0016353251788153 0.0 0.0 0.0 1.2719256549187272 0.0 0.81058008841610596 0.0 0.0 0.0 0.7680204739973101 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7890738831951426 0.0 0.0 0.0 0.0 0.0 0.0 1.2380241032430457 0.0 0.0 0.0 1.7488497270090364 0.0 0.0 0.0 0.65023743834092673 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0742721274436646 0.0 0.0 0.0 0.0 0.0 0.0 0.0 warn 0.0 0.0 0.0 0.79619135096400651 0.0 1.5337902940947856 0.0 0.0 0.0 0.0 0.66401957785552368 0.0 0.0 0.0 0.93595329333916544 1.2404424841073274 0.0 0.0 0.0 0.0 0.0 1.1132873086220807 0.0 0.019662561465010119 0.0 0.0 0.0 1.7916194033968855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.51806566523244391 0.0 0.73301244934247467 0.0 0.0 1.2320036154614626 0.0 0.53885643490151736 0.0 0.0 0.0 0.0 0.0 0.53048818523100094 0.0 0.0 0.0 0.0 0.0 1.3197792263438486 0.0 0.0 0.0 1.0694846859636877 0.0 1.3667362094316196 0.0 0.0097122306118419821 0.0 0.11948289674722097 0.0 0.91126068074879374 0.0 1.2236353657909462 0.0 1.680393768286661 0.0 0.5730477996497968 0.0 0.0 0.0 1.4893385315239518 0.0 0.0 0.0 1.4467789171051559 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4678323263029882 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3289958814487723 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 sentence 0.0 0.0 0.0 0.0 0.0 0.69716139005714961 0.0 0.30696375407977361 0.569328018547265 0.0 0.70285941117178752 0.0 0.0 0.0 0.569328018547265 0.58613513686364593 0.038699767485094363 0.0 0.1310730876161095 0.0 0.0 0.74666203383018037 0.0 0.28164594609548388 0.0 0.0 0.0 0.44416487559325873 0.64728956001697679 0.099324389301529231 0.0 0.0 0.0 0.0 0.0 0.086901869302972182 1.000110934639719 0.42701179636700926 0.0 0.0 0.73184694804503969 0.0 0.038699767485094363 1.0801536423132554 1.0801536423132554 0.67468853420509101 0.0 0.44416487559325873 0.030331517814577907 0.47401783874293996 0.0 0.0 0.0 0.92600296248599712 0.74551458677370364 0.0 0.47401783874293996 0.099324389301529023 0.7028594111717873 0.0 0.30696375407977378 0.0 0.12859477160164251 0.0 0.38146628137769473 0.0 0.41110401333237073 0.0 0.72347869837452317 0.0 0.0 0.0 0.52487625597643106 0.0 0.0 0.0 0.42956607617210602 0.0 0.23285578192605183 0.0 0.61015001306751993 0.0 0.0 0.569328018547265 0.0 0.0 0.67468853420509101 0.099324389301529231 0.50478949740969359 0.0 0.0 0.0 0.0 0.0 0.1310730876161095 0.0 0.0 0.0 0.0 0.0 0.0 0.35960748756519573 0.6312034222653522 0.0 0.0 0.92600296248599712 0.0 0.0 0.0 0.85701009099904579 0.0 0.0 0.30696375407977378 0.67468853420509101 0.0 0.50478949740969359 0.16386291043910048 0.8288392140323495 0.30696375407977378 0.0 0.0 0.0 0.79247156986147449 0.0 0.0 0.099324389301529231 0.0 0.0 1.0801536423132554 1.000110934639719 1.0801536423132554 0.0 0.0 0.0 0.0 0.0 0.0 use 0.0 0.0 0.0 0.75880381889238624 0.0 0.39779047335505574 0.29015980916269019 0.0 0.0 0.0 0.0 1.0909376539150011 0.0 0.0 0.0 0.1044426633675974 0.0 1.2916083493771522 0.74799290278817054 0.50146890282989709 0.67043466844229616 0.0 0.0 0.0 0.0 0.27496964366871507 1.0796380986610676 0.65561958265715548 0.0 0.0 0.0 0.071106243100005725 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.73199256144172953 0.096003794721732663 1.1139271721396997 0.0 0.0 0.0 0.0 0.0 0.65561958265715548 0.0 0.0 0.0 0.0 1.0909376539150011 0.0 0.18377940560411873 0.0 0.0 0.31077909636542594 0.0 0.0 0.23073638869188959 1.198826615926186 0.0 0.0 0.0 1.0684647980629425 0.0 0.0 0.087635545051216263 0.96310428240511625 0.54439394754693105 1.0684647980629425 0.0 1.0684647980629425 0.0 0.0 0.35333871078422185 0.12153709672689759 0.0 0.0 0.31077909636542594 1.4219701672403957 0.0 0.0 1.1139271721396997 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1862478337193261 0.0 0.0 1.3786197263667821 0.0 0.0 0.0 0.0 0.0 0.33183250556325822 0.0 0.0 0.0 1.1862478337193261 1.579290421828933 0.0 0.78078272561116158 0.0 1.4739299061711069 0.0 0.0 1.9847555299370976 0.0 0.0 0.19299606070904243 0.0 0.0 0.0 0.0 0.0 0.0 1.1862478337193261 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 offender 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12629372532429206 0.0 0.0 1.1283251859866215 0.0 0.0 0.0 0.0 1.7047480922384253 0.0 0.0 0.0 0.0 0.0 1.5775929167531786 0.0 0.0 0.0 0.0 0.0 2.2559250115279834 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.9823712733635418 0.0 0.0 0.0 0.0 1.0031620430326154 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7840848344749465 0.0 1.5926307941177191 0.0 1.5337902940947856 0.0 1.8310418175627174 0.0 1.1671650193028853 0.0 0.0 0.0 0.0 0.0 1.6879409739220439 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4782204429399752 1.9321379344340861 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7933014895798702 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 leave 0.0 2.3765529993165981 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8424705133863402 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7968331932099031 0.0 0.0 1.0100612654928871 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0502820940194417 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5208868892588778 0.0 0.0 0.0 0.0 0.0 0.0 3.0502820940194417 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0502820940194417 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0502820940194417 0.0 0.0 0.0 3.0502820940194417 0.0 0.0 0.0 3.0502820940194417 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 revoke 0.0 0.0 0.0 0.567349778535159 0.0 1.3049487216659381 0.0 0.12629372532429206 0.0 0.0 1.1283251859866215 0.0 0.0 0.0 0.70711172091031782 1.0116009116784799 0.0 0.0 0.0 0.0 0.0 0.8844457361932333 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.69468920091176067 0.0 0.50417087691362739 0.0 0.0 1.4086271511407795 0.0 0.31001486247267002 0.0 0.0 0.0 0.0 1.562777830968038 0.30164661280215338 0.0 0.0 0.0 0.0 0.0 1.0909376539150013 0.0 0.89948361355777384 0.0 0.0 0.0 0.0 0.0 0.87948294685110429 0.0 0.0 0.0 0.68241910831994634 0.0 1.6879409739220439 0.0 1.4515521958578135 0.0 0.34420622722094946 0.0 0.0 0.0 1.2604969590951043 0.0 0.0 0.0 1.2179373446763084 0.0 0.0 2.0934060820302083 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.78507326238002983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1001543090199248 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.3959911750242542 0.0 0.0 0.0 0.0 0.0 produce 0.0 0.0 1.3917722875929444 0.0 0.0 0.0 0.0 0.69160753437435241 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8212388205780439 0.0 0.0 0.87532867152273042 0.0 0.0 0.0 0.35613479808622311 0.0 0.64882941236154834 0.0 0.0 0.0 0.0 1.6654681180699853 1.5435783004609487 2.563409711275944 0.0 1.3639927234858686 0.0 0.0 0.37633750540374244 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.86696042185221378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7832511537263689 0.0 2.2871563346477859 0.0 0.0 0.0 0.0 0.45595513336843402 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2871563346477859 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8818634423944784 0.0 2.6587198910802687 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6654681180699853 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5189579487051099 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 answer 0.0 2.6902105581716396 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4629808916814362 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.63057164378798336 0.0 0.63558418561152763 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6707924723145382 0.0 0.0 0.0 0.0 1.9585970967838979 0.0 0.0 0.0 1.8429126977844359 0.0 0.0 0.0 2.4949018058508736 0.0 1.1413972675539741 0.0 0.0 0.0 0.0 0.0 0.0 2.6707924723145382 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6707924723145382 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6707924723145382 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7933947944068702 0.0 0.0 2.6707924723145382 0.0 0.0 0.0 2.6707924723145382 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 serve 0.0 0.0 0.0 0.0 0.0 0.39779047335505574 0.0 0.5408913169957289 0.0 0.0 0.7807827256111618 0.0 0.0 0.0 0.20541858070759983 0.50990777147576183 0.65561958265715548 0.0 0.74799290278817054 0.0 0.0 0.67043466844229616 0.0 0.13642570922064831 0.0 0.0 0.0 1.06108469076532 0.57106219462909258 0.023097023913645133 0.19299606070904243 0.071106243100005725 0.39779047335505574 0.0 0.29698577423309008 0.48067813316082358 0.9238835692518349 0.29015980916269019 0.0 0.0 0.50146890282989709 0.0 0.0 0.0 0.0 0.5984611688172069 0.0 0.65561958265715548 0.0 0.0 0.0 0.49310065315938073 0.0 1.5429227776580581 0.58924451371228304 0.0 0.90861609712104641 0.31077909636542594 0.62663204578390308 0.12153709672689759 0.23073638869188959 0.0 0.0 0.19299606070904243 0.23624604450285913 0.0 0.18072596811722821 0.0 0.087635545051216263 0.0 0.0 0.0 0.13019515947001212 0.0 0.12153709672689759 0.0 0.35333871078422185 0.12153709672689759 0.15662841653816753 0.0 0.31077909636542594 0.0 0.0 0.49310065315938073 0.0 0.0 0.19299606070904243 0.7162442044735905 0.023097023913645133 0.49310065315938073 0.0 0.0 0.0 0.0 0.054845722228225216 0.0 0.0 0.0 0.0 0.0 0.0 0.28338012217731162 0.33183250556325822 0.0 0.0 1.5429227776580581 0.0 0.0 0.0 0.78078272561116158 0.0 0.0 0.9238835692518349 0.5984611688172069 0.0 0.023097023913645133 0.78078272561116158 0.5984611688172069 0.9238835692518349 0.35333871078422185 0.0 0.39779047335505574 0.0 0.0 0.0 0.7162442044735905 1.4093913850335358 0.0 1.6970734574853166 0.9238835692518349 0.0 0.0 2.102538565593481 0.0 0.0 0.0 0.0 charge 0.0 0.0 0.0 0.74967133532911345 0.0 1.4872702784598928 0.0 0.0 0.0 0.0 0.90518163467241164 0.0 0.0 0.0 0.8894332777042725 0.78845736036427005 0.0 0.0 0.73886041922489798 0.0 0.0 1.0667672929871879 0.0 0.0 0.0 0.0 0.0 1.3396342796538281 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.55158835727108746 0.0 0.68649243370758195 0.0 0.0 0.78001849171840543 0.0 0.086871311158460141 0.0 0.0 0.0 0.0 1.3396342796538281 0.078503061487943532 0.0 0.0 0.0 0.0 0.0 1.0909376539150013 0.0 0.0 0.30164661280215321 1.0229646703287949 0.0 0.22160390512861694 0.0 0.47401783874293996 0.0 0.072962881112328154 0.0 0.86474066511390091 0.0 1.4647974226078342 0.0 1.2284086445436035 0.0 0.52652778401490397 0.0 0.0 0.0 1.0373534077808944 0.0 0.0 0.0 1.4002589014702629 0.0 0.0 1.8702625307159986 0.0 0.48396816959610806 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0742353350419345 0.0 0.0 0.0 0.3227000219999856 0.0 0.0 0.0 0.0 0.0 0.0 1.4647974226078342 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2824758658138795 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 run 0.0 0.0 0.97306195273475937 0.0 0.0 0.0 1.343921531665448 0.9660443800761126 0.0 1.4629808916814362 0.58178147961855142 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1497655172244905 0.0 0.0 0.9590757107600193 0.0 0.0 0.0 0.0 0.0 0.0 1.7700059269763482 1.2467577832118002 0.0 0.0 0.0 0.94528238862768355 0.14814549454369083 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2400095562220836 0.0 0.0 0.0 0.0 1.0460870877496493 0.0 0.0 0.0 0.0 0.0 1.0260864210429796 1.9399049637717456 0.037244798510248936 0.0 0.82902258251182159 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8684459997896008 1.9035373196008707 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.93167673657190497 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6707924723145382 0.0 0.0 0.0 0.0 0.0 2.6707924723145382 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.1563002880962387 0.0 0.0 0.0 0.0 0.0 3.8494474686561841 0.0 0.0 0.0 0.0 Escaped 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0004918144767365 0.0 0.0 0.0 0.0 1.5769147207285403 0.0 0.0 0.0 0.0 0.0 1.4497595452432939 0.0 0.0 0.0 0.0 0.0 2.1280916400180985 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.85453790185365675 0.0 0.0 0.0 0.0 0.87532867152273042 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6562514629650615 0.0 1.4647974226078344 0.0 1.4059569225849007 0.0 1.7032084460528325 0.0 1.0393316477930004 0.0 0.0 0.0 0.0 0.0 1.5601076024121592 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.55583987596615 0.0 0.0 1.3503870714300901 1.8043045629242012 0.0 0.0 3.7085420155789466 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6654681180699853 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 Armed 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.039282348334662195 0.0 0.0 1.0413138089969916 0.0 0.0 0.0 0.0 1.6177367152487954 0.0 0.0 0.0 0.0 0.0 1.4905815397635487 0.0 0.0 0.0 0.0 0.0 2.1689136345383533 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.89535989637391189 0.0 0.0 0.0 0.0 0.91615066604298534 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6970734574853166 0.0 1.5056194171280894 0.0 1.4467789171051559 0.0 1.7440304405730875 0.0 1.0801536423132554 0.0 0.0 0.0 0.0 0.0 1.6009295969324142 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3912090659503451 1.8451265574444562 0.0 0.0 3.7493640100992014 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7062901125902405 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 find 0.0 2.0373372767496343 0.0 0.061079971305029061 0.0 0.0 0.69104825024344263 0.0 0.0 0.81010761025943101 0.0 0.79867891443580818 0.0 0.0 0.0 0.0 0.0 0.99934960989795929 0.0 0.0 0.37817592896310331 0.0 0.0 0.0 0.0 0.49353652795551289 0.78737935918187485 0.0 0.0 0.0 0.0 0.0 0.0 2.0179191908925325 0.0 0.0 0.0 0.0 1.3057238153618926 0.43973382196253669 0.0 0.82166843266050693 1.1900394163624306 0.0 0.0 0.0 1.8420285244288683 0.0 0.48852398613196862 0.0 0.0 0.0 0.79867891443580818 0.0 0.0 2.0179191908925325 0.0 0.0 0.0 0.0 0.0 0.90656787644699321 0.0 0.0 0.0 0.77620605858374969 0.0 2.0179191908925325 0.0 1.3639927234858686 0.0 0.77620605858374969 0.0 0.77620605858374969 0.0 0.0 0.0 0.0 0.0 2.0179191908925325 0.0 0.90656787644699321 0.0 0.0 0.82166843266050693 0.20084191368018792 0.0 0.0 0.0 0.0 2.7911090791260142 0.0 2.1405215129848649 0.89398909424013329 0.0 2.0179191908925325 1.0863609868875892 0.0 0.0 2.0179191908925325 0.0 0.0 0.0 2.0179191908925325 0.0 0.0 0.0 1.2870316823497401 0.0 0.0 0.0 1.181671166691914 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 survive 0.0 0.0 0.0 0.50139181074336159 1.9321379344340861 0.0 0.0 0.06033575753249458 0.0 0.0 0.36922003763487871 0.0 1.2974869605557493 0.0 0.0 0.94564294388668246 0.0 0.0 1.5891931833072557 0.0 0.0 0.0 0.74651426877634663 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.44640967632600864 0.0 0.0 1.05288847424028 0.0 0.24405689468087258 0.0 0.93720407524081784 3.2314209185643468 0.0 0.0 1.5891931833072557 1.4968198631762406 0.23568864501035591 1.5266728263259217 0.0 0.0 0.0 0.0 0.33183250556325838 0.0 0.0 0.0 0.77468514574304281 0.0 1.0719366692109746 0.0 0.40805987095114238 0.0 0.0 0.0 0.61646114052814882 0.0 0.0 0.0 1.3855942280660161 0.0 1.3768605480972615 0.0 0.0 0.0 1.1945389913033069 0.0 0.0 0.0 1.151979376884511 0.0 0.0 2.0274481142384109 0.0 0.0 1.7273435217880728 0.0 1.5574444849926754 0.0 0.0 0.0 0.0 0.0 1.5891931833072557 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8259558104561826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5574444849926754 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 FALLOUT 0.0 0.0 0.0 0.54487692268310051 0.0 0.0 1.1748452016215141 0.0 0.0 0.60075738107755716 0.0 1.2824758658138797 0.0 0.0 0.0 0.0 0.0 1.4831465612760306 0.0 0.98068918718055664 0.86197288034117481 0.0 0.0 0.0 0.0 0.46650785556759367 1.2711763105599463 0.0 0.0 0.0 0.0 0.95579163555882962 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.92353077334060818 0.0 1.3054653840385784 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2824758658138797 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3903648278250647 0.0 0.0 0.0 1.2600030099618211 0.0 0.0 0.0 1.8477896748639402 0.0 1.2600030099618211 0.0 1.2600030099618211 0.0 0.0 0.0 1.0062224891857217 0.0 0.0 0.0 1.795829935933229 0.0 0.0 1.3054653840385784 1.3777860456182045 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3777860456182045 0.0 0.0 1.5701579382656605 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0709332261781501 1.7708286337278119 0.0 0.0 2.4276081701168821 1.6654681180699855 0.0 0.0 2.8694409223959214 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0709332261781501 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.968053211064031 0.0 0.0 0.0 catch 1.7832511537263689 0.0 1.3917722875929444 0.0 0.0 0.0 1.7626318665236331 0.0 0.0 1.1885440459796761 0.0 0.0 1.235611556837662 2.7640804067380951 0.0 0.0 0.0 0.0 0.0 0.87532867152273042 0.0 0.0 1.3777860456182045 0.35613479808622311 0.0 0.0 0.0 0.0 0.0 2.1887162618345331 1.6654681180699853 0.0 0.0 0.0 1.3639927234858686 0.1613907212937114 0.0 0.37633750540374244 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.34618446723305496 2.3586152986299305 0.45595513336843402 0.0 1.2477329173700067 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5940091540878405 2.3222476544590558 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6654681180699853 1.3503870714300901 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 Escapes 2.4371776211330327 0.0 0.0 0.0 0.0 0.0 0.0 1.3455340017810165 0.0 1.8424705133863402 1.6544182818834006 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.6096086992082671 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12217000814043016 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.312646358486933 0.0 0.0 0.0 0.0 2.1187238900144982 0.0 0.0 0.0 0.0 0.0 1.000110934639719 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.7434292745793871 0.0 0.0 0.0 0.0 0.0 3.7434292745793871 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 overpower 0.0 1.0703013458702437 0.0 0.4803384015455292 0.0 1.2179373446763084 0.0 0.0 0.0 0.0 1.0413138089969916 0.0 0.58328637079797163 0.0 0.62010034392068814 0.92458953468885008 0.0 0.0 1.5681397741094232 0.0 0.0 0.79743435920360339 0.0 0.0 0.0 0.0 0.0 1.4757664539784081 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.42535626712817631 0.0 0.41715949992399753 0.0 0.0 1.3216157741511498 0.0 0.22300348548304005 0.0 0.0 0.0 1.5681397741094232 1.4757664539784081 0.21463523581252364 0.0 0.0 2.0063947050405786 0.0 0.0 1.0039262769253714 0.0 0.0 1.1309259676866785 0.75363173654521054 0.0 1.0508832600131421 0.0 0.38700646175331016 0.0 0.0 0.0 0.59540773133031644 0.0 0.90778241637246893 0.0 1.3645408188681836 0.0 0.25719485023131955 0.0 0.0 0.0 1.1734855821054746 0.0 0.0 0.0 1.1309259676866785 0.0 0.0 0.0 0.0 0.62010034392068814 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1519793768845108 0.0 0.0 0.0 0.0 0.0 0.0 1.6009295969324142 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0131429320302952 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 Escape 0.0 2.3765529993165981 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1493233328263948 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1036860126499577 0.0 0.0 0.31691408493294188 0.0 0.32192662675648609 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3571349134594963 0.0 0.0 0.0 0.0 1.6449395379288565 0.0 0.0 0.0 1.5292551389293942 0.0 0.0 0.0 2.1812442469958322 0.0 0.82773970869893254 0.0 0.0 0.0 0.0 0.0 0.0 2.3571349134594963 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3571349134594963 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3571349134594963 0.0 1.245783599013957 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.1303248016929781 0.0 2.4797372355518288 0.0 0.0 2.3571349134594963 0.0 0.0 0.0 2.3571349134594963 0.0 0.0 0.0 2.3571349134594963 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5241889981226628 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.9220842709210331 defensive 0.0 2.5901270996146568 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3628974331244539 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6241129323880714 0.0 0.0 0.53048818523100072 0.0 0.5355007270545451 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8585136382269156 0.0 0.0 0.0 1.7428292392274534 0.0 0.0 0.0 2.3948183472938913 0.0 1.0413138089969916 0.0 0.0 0.0 0.0 0.0 0.0 2.5707090137575555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5707090137575555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5707090137575555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.3438989019910372 0.0 2.6933113358498879 0.0 0.0 2.5707090137575555 0.0 0.0 0.0 2.5707090137575555 0.0 0.0 0.0 2.5707090137575555 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 believe 0.0 0.0 1.6149158389071543 0.0 0.0 0.0 0.0 0.91475108568856223 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.57927834940043288 0.0 0.87197296367575805 0.0 0.0 0.0 0.0 1.8886116693841952 1.7667218517751584 2.7865532625901537 0.0 1.5871362748000784 0.0 0.0 0.59948105671795227 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0901039731664235 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0063947050405786 0.0 2.5102998859619956 0.0 0.0 0.0 0.0 0.67909868468264378 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5102998859619956 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8818634423944789 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 weigh 0.0 0.0 0.0 0.79619135096400651 0.0 1.5337902940947856 0.0 0.0 0.0 0.0 0.66401957785552368 0.0 0.0 0.0 0.93595329333916544 1.2404424841073274 0.0 0.0 0.0 0.0 0.0 1.1132873086220807 0.0 0.019662561465010119 0.0 0.0 0.0 1.7916194033968855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.51806566523244391 0.0 0.73301244934247467 0.0 0.0 1.2320036154614626 0.0 0.53885643490151736 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3197792263438486 0.0 0.0 0.0 1.0694846859636877 0.0 1.3667362094316196 0.0 0.0097122306118419821 0.0 0.11948289674722097 0.0 0.91126068074879374 0.0 1.2236353657909462 0.0 0.0 0.0 0.5730477996497968 0.0 0.0 0.0 1.4893385315239518 0.0 0.0 0.0 1.4467789171051559 0.0 0.0 0.0 0.0 0.93595329333916544 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4678323263029882 0.0 0.0 0.0 0.0 0.0 0.0 1.9167825463508914 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3289958814487723 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 shackle 0.0 2.638917263784089 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4116875972938858 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.57927834940043288 0.0 0.58429089122397726 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6194991779269876 0.0 0.0 0.0 0.0 1.9073038023963476 0.0 0.0 0.0 1.7916194033968855 0.0 0.0 0.0 2.4436085114633235 0.0 1.0901039731664235 0.0 0.0 0.0 0.0 0.0 0.0 2.6194991779269876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6194991779269876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6194991779269876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7421015000193196 0.0 0.0 2.6194991779269876 0.0 0.0 0.0 2.6194991779269876 0.0 0.0 0.0 2.6194991779269876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 receive 0.9947937933620985 0.0 0.60331492722867419 0.34420622722094912 0.0 1.0818051703517284 0.97417450615936296 0.0 1.8702625307159986 0.40008668561540595 0.21203445411246633 0.0 0.44715419647339177 1.9756230463738249 0.48396816959610806 0.0 0.0 0.0 0.0 0.086871311158460141 0.0 0.66130218487902348 0.58932868525393423 0.26082461828189829 1.8702625307159986 0.0 0.0 1.3396342796538281 0.0 1.4002589014702629 0.87701075770571513 0.0 0.0 0.0 0.57553536312159836 0.47154564959755091 0.0 0.68649243370758195 0.0 0.72286007787845685 0.78001849171840543 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.078503061487943532 0.0 0.0 0.0 0.0 0.0 0.17464692204084611 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5701579382656605 0.36064495356410903 0.0 0.0 0.0 0.77165024204788879 0.0 1.2284086445436035 0.0 0.12106267590673961 0.0 0.0 0.0 0.0 0.80555179372357022 1.5337902940947856 0.0 0.9947937933620985 0.0 2.563409711275944 1.8702625307159986 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.87701075770571513 0.5619297110658199 0.0 0.0 0.0 0.0 0.0 0.0 2.3810881544819891 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.87701075770571513 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 pin 0.0 0.0 0.0 1.0934428744319382 0.0 0.0 0.0 0.0 0.0 0.0 0.96127110132345528 0.0 0.0 0.0 1.233204816807097 1.5376940075752592 0.0 0.0 2.1812442469958322 0.0 0.0 0.0 0.0 0.31691408493294188 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.12217000814043016 0.0 0.33711679225046126 0.0 0.0 0.83610795836944907 0.0 0.83610795836944907 0.0 0.0 0.0 0.0 2.0888709268648173 0.82773970869893254 0.0 0.0 0.0 0.0 0.0 0.92388356925183512 0.0 0.0 0.0 1.3667362094316196 0.0 1.6639877328995512 0.0 0.30696375407977378 0.0 0.41673442021515267 0.0 1.2085122042167253 0.0 0.0 0.0 1.9776452917545928 0.0 0.87029932311772862 0.0 0.0 0.0 1.7865900549918836 0.0 0.0 0.0 1.7440304405730875 0.0 0.0 2.6194991779269876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 handcuffing 0.0 2.8014361932818641 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.74680982072175206 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7820181074247623 0.0 0.0 0.0 0.0 2.0698227318941225 0.0 0.0 0.0 1.9541383328946604 0.0 0.0 0.0 2.6061274409610982 0.0 1.2526229026641984 0.0 0.0 0.0 0.0 0.0 0.0 2.7820181074247623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7820181074247623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7820181074247623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7820181074247623 0.0 0.0 0.0 2.7820181074247623 0.0 0.0 0.0 2.7820181074247623 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 supervision 0.0 0.0 0.0 0.567349778535159 0.0 1.3049487216659381 0.0 0.12629372532429206 0.0 0.0 1.1283251859866215 0.0 0.0 0.0 0.70711172091031782 1.0116009116784799 0.0 0.0 0.0 0.0 0.0 0.8844457361932333 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.69468920091176067 0.0 0.50417087691362739 0.0 0.0 1.4086271511407795 0.0 0.31001486247267002 0.0 0.0 0.0 0.0 1.562777830968038 0.30164661280215338 0.0 0.0 0.0 0.0 0.0 1.0909376539150013 0.0 0.89948361355777384 0.0 1.5337902940947856 0.0 0.0 0.0 0.87948294685110429 0.0 0.0 0.0 0.68241910831994634 0.0 1.6879409739220439 0.0 1.4515521958578135 0.0 0.34420622722094946 0.0 0.0 0.0 1.2604969590951043 0.0 0.0 0.0 1.2179373446763084 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.78507326238002983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1001543090199248 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 lockdown 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4349444594581531 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.2483551762181895 4.2483551762181895 0.0 0.0 0.0 1.9457700832241438 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.534764794740364 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9883296976429397 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0511305988819699 1.7360495522420747 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.9606731037664087 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.5552079956582441 0.0 0.0 0.0 4.9415023567781349 6.0401146454462449 0.0 search 0.0 0.0 0.0 0.59033929675985763 0.0 0.0 0.0 0.14928324354899078 0.0 0.0 0.45816752365137486 1.327938239890637 0.69328726601230029 0.0 0.0 0.0 0.0 1.5286089353527881 0.0 0.33300438069736865 0.90743525441793194 0.90743525441793194 0.0 0.0 0.0 0.5119702296443509 1.3166386846367037 0.0 2.1943571417246193 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5471785163473615 0.0 0.0 0.96899314741736542 0.0 1.3509277581153356 0.0 0.0 0.0 2.2217561159127333 0.0 0.0 0.0 0.0 0.0 0.0 1.327938239890637 0.0 0.0 0.0 0.0 1.2409268629010071 0.0 0.0 0.0 0.74268002134187661 0.0 0.0 0.0 1.3054653840385784 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3054653840385784 0.0 2.3395391515691166 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3509277581153356 1.423248419694962 0.0 2.3395391515691166 0.0 0.0 0.0 0.0 0.0 0.73010123913501668 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1163956002549074 0.0 0.0 0.0 2.4730705441936394 0.0 0.0 2.2217561159127333 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.5026899613747977 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 shake_-_up 0.0 2.4565957069901345 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2293660404999311 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1837287203234941 0.0 0.0 0.39695679260647826 0.0 0.40196933443002247 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4371776211330327 0.0 0.0 0.0 0.0 1.7249822456023929 0.0 0.0 0.0 1.6092978466029306 0.0 0.0 0.0 2.2612869546693686 0.0 0.90778241637246893 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4371776211330327 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4371776211330327 0.0 1.3258263066874934 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2103675093665145 0.0 2.5597799432253652 0.0 0.0 2.4371776211330327 0.0 0.0 0.0 2.4371776211330327 0.0 0.0 0.0 2.4371776211330327 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6042317057961988 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 transfer 1.5681397741094232 0.0 1.1766609079759989 0.0 1.2496860429908889 0.0 1.1420553787985233 0.071031046649242549 1.3449962227952137 0.97343266636273051 0.0 0.0 1.0205001772207165 1.4503567384530398 0.0 0.0 0.0 0.0 0.0 0.66021729190578482 0.0 0.0 0.064062377333149248 0.65184904223526852 1.3449962227952137 0.0 0.0 0.0 0.0 1.5681397741094234 1.0448916303448754 0.0 0.0 0.0 0.74341623576075877 0.10043002150402423 0.0 0.16122612578679696 0.37043658279708275 0.19759376995767197 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.24638393412710408 0.84422093488272454 2.2612869546693686 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.41875516006789054 1.7380388109048208 0.52852582620326949 0.0 0.62715642964489693 0.0 0.0 0.0 0.0 0.0 0.28894354854589999 0.0 0.0 0.0 0.0 0.97343266636273074 1.0085239861740007 0.0 0.0 0.0 2.0381434033551589 0.0 0.0 0.0 1.0448916303448754 0.0 0.87499259354947811 0.0 0.0 2.0381434033551589 0.0 0.0 0.90674129186405839 0.0 0.0 2.2612869546693686 0.0 0.0 1.4503567384530398 1.1352756918131446 0.0 0.0 0.0 0.0 0.0 0.0 1.8558218465612044 0.0 0.0 0.0 0.0 0.0 0.0 0.87499259354947811 0.0 0.0 0.0 0.0 2.0381434033551589 0.0 2.2612869546693686 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8558218465612044 0.0 0.0 0.0 0.0 0.0 0.0 wet 0.97677528785942025 0.0 0.58529642172599583 0.32618772171827087 0.0 0.0 0.0 0.0 1.8522440252133203 0.38206818011272758 0.0 1.0637866648490502 0.42913569097071336 1.9576045408711464 0.0 0.0 0.0 1.2644573603112013 0.0 0.76199998621572718 0.64328367937634523 0.0 0.57131017975125586 0.0 1.8522440252133203 0.065497097808809468 1.0524871095951167 0.0 0.0 1.3822403959675846 0.85899225220303677 0.0 0.0 0.0 0.55751685761892 0.0 0.0 0.0 0.0 0.7048415723757786 0.0 1.0867761830737488 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0637866648490502 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1716756268602351 0.0 1.5521394327629821 0.0 1.0413138089969916 0.44125705150305811 0.0 0.0 1.6291004738991106 0.0 1.0413138089969916 0.0 1.0413138089969916 0.0 0.0 0.0 0.78753328822089186 1.5157717885921074 0.0 0.0 1.1716756268602351 0.0 0.0 1.0867761830737488 0.46594966409342981 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1590968446533751 0.0 0.0 1.3514687373008312 0.0 0.0 0.0 0.85899225220303677 0.54391120556314154 0.0 0.0 0.0 0.0 0.0 1.5521394327629821 0.0 0.0 0.0 1.4467789171051559 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 take_hostage 0.0 0.0 0.94708646633149862 0.0 0.0 0.0 0.0 0.94006889367285207 0.0 0.0 0.55580599321529089 0.0 0.79092573557621615 0.0 0.0 0.0 2.3765529993165981 0.0 0.0 0.43064285026128463 0.0 1.0050737239818481 0.0 0.0 0.0 0.0 0.0 0.0 2.2919956112885349 0.0 0.0 1.0988924791995029 2.1187238900144982 0.0 0.91930690222442291 0.12217000814043016 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3193945854766493 0.0 0.0 0.42227460059076805 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0201116013463885 2.0317125130248685 0.0 1.8424705133863402 0.0 0.0 0.59464582653155462 0.0 0.011269312106988167 0.0 0.0 0.0 0.0 0.0 0.0 1.4031038536024945 0.0 0.0 1.8424705133863402 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.214034069818823 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2207822968085396 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3193945854766493 0.0 0.0 2.5017161422706038 0.0 0.0 2.0742721274436642 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 drive 0.9947937933620985 0.0 0.60331492722867419 0.34420622722094912 0.0 0.0 0.97417450615936296 0.0 0.0 0.40008668561540595 0.0 1.0818051703517284 0.0 0.0 0.0 0.0 1.3396342796538281 1.2824758658138795 0.0 0.0 0.66130218487902348 0.0 0.0 0.0 0.0 0.41998783993270072 1.070505615097795 0.0 0.0 0.7071117209103176 0.87701075770571513 0.061973759536733147 1.0818051703517284 0.0 0.57553536312159836 0.0 0.0 0.0 0.0 0.72286007787845685 0.0 1.1047946885764273 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0818051703517284 0.0 0.0 0.0 0.0 0.30164661280215321 0.0 0.80555179372357022 0.0 0.90201205991113242 0.0 0.87701075770571513 0.0 1.0593323144996698 0.0 0.0 0.0 0.95397179884184358 0.0 1.0593323144996698 0.0 1.0593323144996698 0.80555179372357022 1.4002589014702629 0.0 0.11240461316362495 0.84064311353484034 0.0 0.0 0.49654695180296804 0.0 0.0 1.1047946885764273 0.8894332777042725 0.0 0.0 0.0 1.1771153501560534 0.0 1.8702625307159986 0.0 0.8894332777042725 0.0 0.0 0.67634006224356402 0.0 0.0 0.0 0.87701075770571513 0.0 0.0 0.0 0.0 0.0 1.1771153501560534 0.87701075770571513 0.0 0.0 1.5337902940947856 0.77165024204788879 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0373534077808944 1.8702625307159986 0.0 0.0 0.0 1.1771153501560534 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 stab 0.0 0.0 0.0 0.33515639170103129 1.0727553348318106 0.37960815427186528 0.0 0.11724388980437414 0.0 0.0 0.20298461859254852 0.0 0.43810436095347383 1.2734260302939617 0.88038344218435471 0.77940752484435227 0.0 0.0 1.4229577642649256 0.0 0.0 0.0 0.58027884973401633 0.25177478276198034 1.1680655146361356 0.0 0.0 0.0 0.0 0.0 0.0 0.7460711045767604 0.0 0.0 0.56648552760168047 0.17481374162585228 0.0 0.0 0.19350587463800448 0.020663061798593656 0.07782147563854229 0.0 0.48328658374670669 0.0 0.0 0.0 0.0 1.3305844441339103 0.069453225968025625 0.66729022672364624 2.0843562465102905 0.0 0.0 0.0 0.16559708652092822 0.0 0.66729022672364624 0.0 0.60844972670071262 0.79650195820365244 0.21255406960869905 0.0 0.46496800322302201 0.0 0.75706022615235569 0.0 0.45022572148581869 0.0 0.0 0.0 0.52621162846374048 0.0 0.80516002094676686 0.0 0.79650195820365244 0.0 1.0283035722609766 0.10335477764370717 0.83159327801492244 0.0 0.98574395784218061 0.0 1.8612126951960808 1.8612126951960808 0.0 0.0 0.86796092218579723 0.0 0.69806188539039993 0.0 0.0 0.0 0.0 0.0 0.7298105837049802 0.0 0.0 0.0 0.0 0.0 0.17481374162585189 0.0 0.0 0.0 1.9665732108539069 0.0 0.0 0.0 1.6788911384021259 0.7626004065279709 0.0 0.0 0.0 0.0 0.0 0.69806188539039993 1.4557475870879162 0.0 0.0 1.0283035722609766 0.0 1.0727553348318106 0.0 0.0 0.0 1.3912090659503451 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 move 0.0 1.2526229026641984 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.76560792759192642 0.0 0.80242190071464281 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.90778241637246893 0.57927834940043288 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9263519973670424 0.0 0.096852200156140461 0.0 0.0 0.0 0.0 0.0 0.0 1.5039373309451047 0.0 0.0 0.0 1.7504613309033781 0.0 1.0901039731664235 1.6879409739220441 0.0 0.0 0.0 0.0 0.0 1.9263519973670424 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.67909868468264378 0.0 0.0 1.9263519973670424 0.0 0.0 0.0 0.0 1.1326635875852196 0.0 0.0 0.0 0.0 0.0 0.0 1.9263519973670424 0.0 0.0 0.0 0.0 0.0 0.0 1.8886116693841952 0.0 1.7187126325887978 0.0 0.0 0.0 2.0489543194593747 0.0 1.7504613309033781 1.9263519973670424 0.0 0.0 0.0 1.9263519973670424 1.1954644888242498 0.88038344218435471 0.0 1.9263519973670424 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7187126325887978 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 hold_hostage 0.0 0.0 0.0 0.0 2.4149897061576708 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0871915517193886 0.0 1.124005524842105 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2293660404999311 0.9008619735278951 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.41843582428360254 0.0 0.22791750028546914 1.5357402459638645 0.0 0.0 0.0 0.72690866640445717 0.0 0.0 0.0 0.0 0.0 1.4116875972938858 2.0095245980495062 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.19776446211478174 0.0 1.000682308810106 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4542472117126817 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2101952935116573 0.0 2.0402962567162599 0.0 0.0 0.0 0.0 0.0 2.0720449550308402 0.0 0.0 0.0 0.0 0.0 1.5170481129517119 1.2019670663118169 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0402962567162599 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0211255097279861 0.0 0.0 0.0 0.0 0.0 0.0 rape 0.0 0.0 0.0 0.44956674287877568 0.0 1.187165686009555 0.0 0.0085106896679086105 0.0 0.0 1.0105421503302381 0.0 0.0 0.0 0.58932868525393456 1.5869650565820419 0.0 0.0 0.0 0.0 0.0 1.4598098810967952 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5769061652553773 0.0 0.38638784125724401 0.0 0.0 1.2908441154843961 0.0 0.19223182681628664 0.0 0.0 0.0 0.0 0.0 0.18386357714577001 0.0 0.0 0.0 0.0 0.0 0.68547254580683681 0.0 0.78170057790139058 0.0 1.4160072584384022 0.0 1.7132587819063341 0.0 0.7616999111947208 0.0 0.0 0.0 0.56463607266356286 0.0 1.5701579382656605 0.0 1.3337691602014301 0.0 0.22642319156456589 0.0 0.0 0.0 1.1427139234387209 0.0 0.0 0.0 1.1001543090199251 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.66729022672364635 1.8143548987777027 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6755184539234869 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 take 0.79743435920360339 0.0 1.0991026736301244 0.0 0.0 0.0 0.77681507200086775 0.39893792041153248 0.0 0.20272725145691087 0.0 0.0 0.9429419428748419 0.0 0.28660873543761289 0.0 1.8354220260552785 0.0 0.0 0.0 0.0 0.0 0.39196925109543912 0.75661236468334847 0.0 0.0 0.0 0.0 0.0 1.2028994673117679 1.3727985041071653 0.5577615059381833 1.5775929167531786 0.0 1.0713231095230487 0.2741862154390558 0.0 0.48913299954908673 0.69834345655937258 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5742908078893938 1.1721278086450142 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.79743435920360339 0.0 1.3013395401250205 0.0 0.0 0.053514853270235065 1.3727985041071653 0.85643269996555915 0.0 0.26191612284724136 0.0 0.0 0.0 0.0 0.0 0.61685042230818976 0.0 1.3013395401250205 0.0 0.0 0.60819235956507511 1.3364308599362904 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3727985041071653 0.0 1.2028994673117679 1.6729030965575036 0.0 0.0 0.0 0.0 1.2346481656263482 0.0 0.0 0.0 0.0 0.0 0.0 1.0577174574672701 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2028994673117679 0.0 0.0 0.0 1.5331411541823445 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 subject_to 0.0 0.0 0.0 1.2160451965242705 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9536441396550497 0.0 0.0 0.0 0.0 0.0 2.1543148351172006 0.0 0.95871028046178131 1.5331411541823448 0.0 0.0 0.0 0.0 0.73221102130059923 1.9423445844011162 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5946990471817781 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9536441396550497 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3683859211062894 0.0 0.0 0.0 1.9311712838029911 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9652450513335293 0.0 1.6773907630268916 0.0 0.0 0.0 0.0 0.0 0.0 1.2834864773198029 2.0489543194593747 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3558071388994293 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7421015000193201 0.0 0.0 0.0 3.0987764439580521 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 recognize 1.7062901125902405 0.0 1.314811246456816 0.0 0.0 0.0 1.6856708253875048 0.0 2.5817588499441406 1.1115830048435478 0.0 0.0 1.1586505157015337 2.6871193656019665 0.0 0.0 0.0 0.0 0.0 0.79836763038660208 0.0 0.0 1.3008250044820759 0.27917375695009466 2.5817588499441406 0.0 0.0 0.0 0.0 0.0 1.588507076933857 0.0 0.0 0.0 1.2870316823497401 0.084429680157582995 0.0 0.29937646426761411 0.0 1.4343563971065987 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.26922342609692657 2.2816542574938024 0.37899409223230557 0.0 1.1707718762338784 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5170481129517122 2.2452866133229272 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.588507076933857 1.2734260302939617 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 at_large 0.0 0.0 0.0 0.52289801596432517 0.0 0.0 1.1528662949027388 0.081841962753458106 0.0 0.0 0.0 1.2604969590951043 0.0 0.0 0.0 0.0 0.0 1.4611676545572554 0.0 0.26556309990183602 0.83999397362239947 0.0 0.0 0.0 0.0 0.44452894884881844 1.2491974038411711 0.0 0.0 0.0 0.0 0.9338127288400544 0.0 0.0 0.75422715186497435 0.0 0.0 0.0 0.0 0.90155186662183284 0.0 1.2834864773198029 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2604969590951043 3.0987764439580521 0.0 0.0 0.85503185098694001 0.0 0.0 0.0 0.0 1.3683859211062894 0.0 0.0 0.0 1.2380241032430457 0.0 0.0 0.0 1.8258107681451647 0.0 1.2380241032430457 0.0 1.2380241032430457 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3683859211062894 0.0 0.0 1.2834864773198029 0.66265995833948399 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3558071388994293 0.0 0.0 1.5481790315468853 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7488497270090364 0.0 0.0 0.0 1.6434892113512101 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9536441396550497 0.0 0.0 0.0 2.2720978707735844 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 give 1.0318350650424477 0.0 0.64035619890902329 0.0 0.0 0.0 0.0 0.34565655379859572 1.9073038023963478 0.43712795729575499 0.24907572579281551 0.0 0.48419546815374087 0.0 0.52100944127645721 0.0 0.0 0.0 0.0 0.12391258283880932 0.0 0.69834345655937258 0.62636995693428321 0.29786588996224728 1.9073038023963478 0.0 0.0 0.0 0.0 1.4373001731506121 0.91405202938606411 0.0 0.0 0.0 0.0 0.32626536448394533 0.0 0.31806859727976666 0.93274416239821667 0.75990134955880595 0.12391258283880932 0.0 0.12391258283880932 0.0 0.0 0.0 0.0 0.0 0.0 1.4065285144838584 0.0 0.0 0.0 0.0 0.21168819372119504 0.0 0.71338133392391312 0.0 0.65454083390097961 0.0 0.0 0.0 0.69338066721724356 0.0 0.80315133335262268 0.0 0.49631682868608562 0.0 0.808691513728238 0.0 0.0 0.0 0.85125112814703396 0.0 0.0 0.0 0.0 0.84259306540391932 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6071992099460095 0.0 1.4373001731506121 0.0 0.0 0.0 0.0 0.0 1.4690488714651924 0.0 0.0 2.8235945342705024 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4373001731506121 0.0 0.91405202938606411 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 visit 0.0 0.0 0.0 0.0 1.8119936225920228 0.42569926147213227 0.0 0.16333499700464096 0.0 0.0 0.0 0.0 0.8896605762619052 1.3195171374942285 0.9264745493846217 0.13235145148467381 0.0 0.0 0.77590169090524719 0.0 0.0 0.0 1.3195171374942285 0.010183817510466542 1.2141566218364026 0.0 0.0 0.0 0.0 0.0 0.0 0.7921622117770275 1.1188464420320776 0.0 0.61257663480194746 0.10312181316973576 0.0 0.31806859727976666 0.93274416239821667 0.06675416899886065 0.0 0.0 0.52937769094697373 0.0 0.0 0.0 0.0 0.68352837077423201 0.11554433316829271 1.4065285144838584 2.1304473537105575 0.0 0.0 0.0 0.0 0.0 0.71338133392391312 0.33868788448250242 0.0 0.84259306540391932 0.25864517680896615 0.0 0.51105911042328889 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.57230273566400747 0.0 1.0743946794612438 0.0 0.84259306540391932 0.0 0.38124749890129822 0.14944588484397406 0.0 0.0 0.33868788448250242 0.0 1.9073038023963478 1.2141566218364026 0.0 0.0 0.91405202938606411 0.0 1.4373001731506121 0.0 0.0 0.0 0.0 0.0 1.4690488714651924 0.0 0.0 2.1304473537105575 0.0 0.0 0.22090484882611885 0.0 0.0 0.0 2.0126643180541737 0.0 0.0 0.0 1.7249822456023931 0.0 0.0 0.0 0.0 0.0 0.0 1.4373001731506121 1.5018386942881834 0.0 0.0 0.0 0.0 1.1188464420320776 0.0 0.0 0.0 1.4373001731506121 0.0 0.0 2.4181294261623383 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 theft 0.0 0.0 0.0 0.567349778535159 0.0 1.3049487216659381 0.0 0.12629372532429206 0.0 0.0 1.1283251859866215 0.0 0.0 0.0 0.70711172091031782 1.0116009116784799 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.51236764411780611 0.0 0.50417087691362739 0.0 0.0 1.4086271511407795 0.0 0.31001486247267002 0.0 0.0 0.0 0.0 1.562777830968038 0.0 0.0 0.0 0.0 0.0 0.0 1.0909376539150013 0.0 0.89948361355777384 0.0 1.5337902940947856 0.0 0.0 0.0 0.87948294685110429 0.0 0.0 0.0 0.68241910831994634 0.0 1.6879409739220439 0.0 0.0 0.0 0.34420622722094946 0.0 0.0 0.0 1.2604969590951043 0.0 0.0 0.0 1.2179373446763084 0.0 0.0 0.0 0.0 0.70711172091031782 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.78507326238002983 1.9321379344340861 0.0 0.0 0.0 0.0 0.0 0.0 1.6879409739220439 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1001543090199248 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 retire 0.0 0.0 0.0 1.0934428744319382 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8310418175627174 0.0 0.0 0.0 0.0 0.0 2.0317125130248685 0.0 0.83610795836944907 1.4105388320900125 0.0 0.0 0.0 0.0 0.6096086992082671 1.819742262308784 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4720967250894459 0.0 1.8540313357874161 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8310418175627174 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9389307795739024 0.0 0.0 0.0 1.8085689617106588 0.0 0.0 0.0 0.0 0.0 1.8085689617106588 0.0 1.8085689617106588 0.0 2.8426427292411973 0.0 0.0 0.0 0.0 0.0 1.245783599013957 0.0 0.0 1.8540313357874161 1.233204816807097 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9263519973670424 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 dangerous 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2024331581403431 0.0 0.0 1.5113174382427272 0.0 1.7464371806036527 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9605851690092844 0.0 0.0 0.0 0.0 0.0 0.0 3.2475070563159716 0.0 0.0 0.0 0.0 0.0 0.0 0.67221634505970218 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2749060305040856 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2940767774923594 0.0 0.0 0.0 0.0 0.85701009099904579 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3586152986299309 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.3926890661604694 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 jailbreak 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1543148351172006 0.0 0.0 1.5331411541823448 0.0 0.0 0.0 0.0 1.1376761294087638 1.2491974038411711 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5946990471817781 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9536441396550497 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3683859211062894 0.0 0.0 0.0 1.9311712838029911 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9311712838029911 0.0 2.9652450513335293 0.0 1.6773907630268916 0.0 0.0 0.0 1.3683859211062894 0.0 0.0 1.2834864773198029 2.0489543194593747 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3558071388994293 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7421015000193201 0.0 0.0 0.0 3.0987764439580521 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 wear 0.0 0.0 0.0 0.36255536588914572 0.0 1.1001543090199248 0.0 0.32696442078644306 0.0 0.0 1.3289958814487726 0.0 0.0 0.0 0.50231730826430465 0.8068064990324666 0.0 0.0 1.4503567384530398 0.0 0.0 0.67965132354722002 0.0 0.0 0.0 0.0 0.0 1.3579834183220247 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.48989478826574751 0.0 0.29937646426761411 0.0 0.0 1.2038327384947665 0.0 0.10522044982665674 0.0 0.0 0.0 0.0 1.3579834183220247 0.096852200156140059 0.0 0.0 0.0 0.0 0.0 0.88614324126898791 0.0 0.69468920091176045 1.0131429320302952 0.63584870088882706 0.0 0.93310022435675888 0.0 0.67468853420509101 0.0 0.0 0.0 0.47762469567393301 0.0 0.78999938071608533 0.0 1.2467577832118002 0.0 0.13941181457493601 0.0 0.0 0.0 1.055702546449091 0.0 0.0 0.0 1.0131429320302952 0.0 0.0 0.0 0.0 0.50231730826430465 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0341963412281274 0.0 0.0 0.0 0.0 0.0 0.0 1.4831465612760306 0.0 0.0 2.3193945854766493 0.0 0.0 0.0 0.0 0.89535989637391167 2.3193945854766493 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 claim 0.0 0.0 0.0 0.0 2.4864486701398154 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1586505157015337 0.0 1.19546448882425 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3008250044820759 0.97232093751004001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.48989478826574751 0.0 0.29937646426761411 1.6071992099460095 0.0 0.0 0.0 0.79836763038660208 0.0 0.0 0.0 0.0 0.0 0.78999938071608533 2.0809835620316512 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.26922342609692657 0.0 1.0721412727922508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5257061756948267 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2816542574938024 0.0 2.1117552206984049 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.588507076933857 1.2734260302939617 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1117552206984049 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0925844737101311 0.0 0.0 0.0 0.0 0.0 0.0 move_to 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1117552206984049 0.0 0.0 1.4905815397635487 0.0 0.0 0.0 0.0 0.9127949581960132 1.8997849699823204 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5521394327629823 0.0 1.9340740434609525 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9110845252362536 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3258263066874934 0.0 0.0 0.0 1.8886116693841952 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8886116693841952 0.0 2.9226854369147337 0.0 1.6348311486080955 0.0 0.0 0.0 0.0 0.0 0.0 1.9340740434609525 2.0063947050405786 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3132475244806334 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.699541885600524 0.0 0.0 0.0 3.056216829539256 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 incident 0.0 0.0 0.58529642172599583 0.32618772171827087 0.0 0.0 0.9561560006566846 0.0 0.0 0.38206818011272758 0.0 1.0637866648490502 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.76199998621572718 0.64328367937634523 0.0 0.0 0.0 0.0 0.5355007270545451 1.0524871095951167 0.0 0.0 0.0 0.85899225220303677 0.0 0.0 0.0 0.55751685761892 0.0 0.0 0.26300882009673926 0.0 0.7048415723757786 0.0 1.0867761830737488 0.0 0.0 0.0 0.0 0.0 0.0 0.060484555985265261 0.0 0.0 0.0 1.0637866648490502 0.0 0.0 0.0 0.65832155674088577 0.0 0.0 1.4806804687808373 0.0 1.1716756268602351 0.0 0.0 0.34262644806143072 1.0413138089969916 0.0 0.0 0.0 1.6291004738991106 0.0 1.0413138089969916 0.0 1.0413138089969916 1.4806804687808373 0.0 0.0 0.0 0.0 0.0 0.0 1.1716756268602351 0.0 0.0 1.0867761830737488 0.46594966409342981 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1590968446533751 0.0 0.0 1.3514687373008312 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5521394327629821 0.0 0.0 0.0 1.4467789171051559 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7124820828381615 0.0 1.7569338454089953 0.0 0.0 1.8522440252133203 2.0753875765275298 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 stroke 0.0 0.0 1.6662091332947047 0.0 0.0 0.0 0.0 0.9660443800761126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.63057164378798336 0.0 0.92326625806330864 0.0 0.0 0.0 0.0 1.9399049637717456 1.8180151461627088 2.8378465569777043 0.0 1.6384295691876287 0.0 0.0 0.65077435110550264 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1413972675539741 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0576879994281292 0.0 2.5615931803495462 0.0 0.0 0.0 0.0 0.73039197907019426 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5615931803495462 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 prohibit 0.0 2.4991553214089302 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2719256549187272 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2262883347422902 0.0 0.0 0.43951640702527417 0.0 0.44452894884881844 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4797372355518288 0.0 0.0 0.0 0.0 1.7675418600211887 0.0 0.0 0.0 1.6518574610217267 0.0 0.0 0.0 2.3038465690881647 0.0 0.95034203079126489 0.0 0.0 0.0 0.0 0.0 0.0 2.4797372355518288 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4797372355518288 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4797372355518288 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2529271237853106 0.0 2.6023395576441612 0.0 0.0 2.4797372355518288 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4797372355518288 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6467913202149949 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 violation 0.0 0.0 0.0 0.6379673457491124 0.0 1.3755662888798916 0.0 0.19691129253824538 0.0 0.0 1.198942753200575 0.0 0.0 0.0 0.77772928812427122 1.0822184788924332 0.0 0.0 1.7257687183130066 0.0 0.0 0.9550633034071867 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5829852113317594 0.0 0.57478844412758068 0.0 0.0 1.0737796102465686 0.0 0.38063242968662336 0.0 0.0 0.0 0.0 1.6333953981819913 0.37226418001610684 0.0 0.0 0.0 0.0 0.0 1.1615552211289546 0.0 0.97010118077172736 0.0 1.6044078613087391 0.0 0.0 0.0 0.95010051406505791 0.0 0.0 0.0 0.75303667553389964 0.0 0.0 0.0 1.522169763071767 0.0 0.4148237944349028 0.0 0.0 0.0 1.3311145263090578 0.0 0.0 0.0 1.2885549118902617 0.0 0.0 2.1640236492441618 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1707718762338784 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 take_off 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.137894637002772 0.0 0.0 1.0413138089969916 0.0 1.276433551357917 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4905815397635487 0.0 0.0 0.0 0.40196933443002247 0.0 0.0 2.7775034270702359 0.0 0.0 0.0 0.0 0.0 0.0 0.89535989637391189 3.1303248016929781 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.4980495818182953 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8240731482466239 0.0 0.0 0.0 0.0 0.38700646175331016 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8049024012583503 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.0858362467204143 0.0 3.8234719822529235 0.0 0.0 0.0 0.0 0.0 0.0 0.0 action 0.0 0.0 0.0 0.96714914910764593 0.0 0.0 0.90397024748611443 0.0 0.0 0.32988242694215736 0.0 1.7047480922384253 0.0 0.0 0.0 0.0 0.0 1.212271607140631 0.0 1.1152793411533213 1.2842451067657203 0.0 0.0 0.0 0.0 0.60109800954035841 1.6934485369844918 0.0 0.0 0.0 0.0 0.68491668142342998 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3458029997651537 0.0 1.7277376104631239 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7047480922384253 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5249549817978294 0.0 0.0 0.0 1.6822752363863667 0.0 0.0 0.0 1.5769147207285403 0.0 1.6822752363863667 0.0 1.6822752363863667 0.0 2.0232018233569597 0.0 0.0 0.0 0.0 0.0 1.1194898736896648 0.0 0.0 1.7277376104631239 1.1069110914828049 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1069110914828049 0.0 0.0 1.2992829841302609 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.499953679592412 0.0 0.0 2.1567332159814825 1.3945931639345857 0.0 0.0 2.5985659682605218 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8000582720427503 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 put_on 0.0 2.302445027162876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5355007270545451 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9761741218657196 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.148294347335618 0.0 0.0 0.0 2.8002834554020555 0.0 1.4467789171051559 0.0 0.0 0.0 0.0 0.0 0.0 2.9761741218657196 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9761741218657196 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0987764439580521 0.0 0.0 2.9761741218657196 0.0 0.0 0.0 2.9761741218657196 0.0 0.0 0.0 2.9761741218657196 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 shoeless 0.0 0.0 0.0 0.95034203079126489 0.0 0.0 1.5803103097296785 0.0 0.0 0.0 0.0 1.6879409739220439 0.0 0.0 0.0 0.0 0.0 1.8886116693841952 0.0 0.69300711472877563 1.2674379884493392 0.0 0.0 0.0 0.0 0.46650785556759367 1.6766414186681107 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3289958814487726 0.0 1.7109304921467428 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6879409739220439 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.795829935933229 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2532547829721046 0.0 1.6654681180699855 0.0 1.6654681180699855 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.795829935933229 0.0 0.0 1.7109304921467428 1.0901039731664237 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7832511537263691 0.0 0.0 1.9756230463738249 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.176293741835976 0.0 0.0 0.0 2.0709332261781497 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 paralyze 0.0 0.0 1.6662091332947047 0.0 0.0 0.0 0.0 0.9660443800761126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.63057164378798336 0.0 0.92326625806330864 0.0 0.0 0.0 0.0 1.9399049637717456 1.8180151461627088 0.0 0.0 1.6384295691876287 0.0 0.0 0.65077435110550264 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1413972675539741 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0576879994281292 0.0 2.5615931803495462 0.0 0.0 0.0 0.0 0.73039197907019426 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.5615931803495462 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.933156736782029 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ESCAPE 0.0 0.0 0.0 0.567349778535159 0.0 0.0 1.1973180574735727 0.0 0.0 0.62323023692961566 0.0 1.3049487216659381 0.0 0.0 0.0 0.0 0.0 1.5056194171280894 0.0 1.0031620430326154 0.8844457361932333 0.0 0.0 0.0 0.0 0.48898071141965221 1.2936491664120049 0.0 0.0 0.0 0.0 0.97826449141088823 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.94600362919266678 0.0 1.327938239890637 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3049487216659381 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.412837683677123 0.0 0.0 0.0 1.2824758658138797 0.0 0.0 0.0 1.8702625307159986 0.0 1.2824758658138797 0.0 1.2824758658138797 0.0 0.0 0.0 1.02869534503778 0.0 0.0 0.0 1.8183027917852874 0.0 0.0 1.327938239890637 1.4002589014702631 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4002589014702631 0.0 0.0 1.5926307941177191 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0934060820302083 1.7933014895798702 0.0 0.0 2.4500810259689407 1.6879409739220439 0.0 0.0 2.89191377824798 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0934060820302083 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 custody 0.0 0.0 1.3525515744396632 0.0 0.0 0.0 0.0 0.65238682122107117 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7820181074247623 0.0 0.0 0.83610795836944907 0.0 0.0 0.0 0.31691408493294188 0.0 0.6096086992082671 0.0 0.0 0.0 0.0 1.6262474049167042 1.5043575873076673 2.5241889981226628 0.0 1.3247720103325873 0.0 0.0 0.33711679225046126 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.82773970869893254 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4255767094545531 1.7440304405730875 0.0 2.2479356214945048 0.0 0.0 0.0 0.0 0.41673442021515267 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2479356214945048 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8426427292411973 0.0 2.6194991779269876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6262474049167042 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.9071812503787684 0.0 0.0 2.4797372355518288 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 house 0.0 0.0 0.0 0.79619135096400651 0.0 0.0 1.42615962990242 0.0 0.0 0.85207180935846316 0.0 1.5337902940947856 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2320036154614626 1.1132873086220807 0.0 0.0 0.0 0.0 0.31235717574033528 1.5224907388408524 0.0 0.0 0.0 0.0 1.2071060638397357 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1748452016215141 0.0 1.5567798123194843 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5337902940947856 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6416792561059708 0.0 0.0 0.0 1.511317438242727 0.0 0.0 0.0 2.0991041031448461 0.0 1.511317438242727 0.0 1.511317438242727 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0471443642141351 0.0 0.0 1.5567798123194843 0.93595329333916544 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6291004738991106 0.0 0.0 1.8214723665465666 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0221430620087175 0.0 0.0 0.0 1.9167825463508914 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3222476544590562 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 lead 2.5172203288065691 0.0 2.1257414626731448 0.0 0.0 0.0 0.0 0.73242952889460755 0.0 1.9225132210598765 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6092978466029306 0.0 0.0 2.1117552206984049 1.0901039731664235 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0801536423132554 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3279783291680411 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.0858362467204143 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.0858362467204143 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 need 0.0 0.0 0.0 0.0 2.4864486701398154 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1586505157015337 0.0 1.19546448882425 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3008250044820759 0.97232093751004001 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.48989478826574751 0.0 0.29937646426761411 1.6071992099460095 0.0 0.0 0.0 0.79836763038660208 0.0 0.0 0.0 0.0 0.0 0.78999938071608533 2.0809835620316512 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.26922342609692657 0.0 1.0721412727922508 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5257061756948267 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2816542574938024 0.0 2.1117552206984049 0.0 0.0 0.0 0.0 0.0 2.1435039190129852 0.0 0.0 0.0 0.0 0.0 1.588507076933857 1.2734260302939617 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1117552206984049 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 burglary 0.0 0.0 0.0 0.4803384015455292 0.0 1.2179373446763084 0.0 0.039282348334662195 0.0 0.0 1.0413138089969916 0.0 0.0 0.0 0.62010034392068814 0.0 0.0 0.0 0.0 0.0 0.0 1.4905815397635487 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.60767782392213099 0.0 0.41715949992399753 0.0 0.0 1.3216157741511498 0.0 0.22300348548304005 0.0 0.0 0.0 0.0 0.0 0.21463523581252364 0.0 0.0 0.0 0.0 0.0 1.0039262769253714 0.0 0.81247223656814416 0.0 1.4467789171051559 0.0 1.7440304405730875 0.0 0.79247156986147449 0.0 0.0 0.0 0.59540773133031644 0.0 1.6009295969324142 0.0 1.3645408188681836 0.0 0.25719485023131955 0.0 0.0 0.0 1.1734855821054746 0.0 0.0 0.0 1.1309259676866785 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.69806188539039993 1.8451265574444562 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7062901125902405 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 consequence 0.0 0.0 0.0 1.055702546449091 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7933014895798702 0.0 0.0 0.0 0.0 0.0 1.9939721850420213 0.0 0.79836763038660208 1.3727985041071653 0.0 0.0 0.0 0.0 0.57186837122541989 1.7820019343259368 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4343563971065987 0.0 1.8162910078045689 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7933014895798702 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9011904515910552 0.0 0.0 0.0 1.7708286337278116 0.0 0.0 0.0 0.0 0.0 1.7708286337278116 0.0 1.7708286337278116 0.0 2.8049024012583503 0.0 0.0 0.0 0.0 0.0 1.20804327103111 0.0 0.0 1.8162910078045689 1.19546448882425 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8886116693841952 0.0 0.0 2.0809835620316512 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 unharmed 1.9576045408711464 0.0 1.5661256747377219 0.0 0.0 0.0 1.9369852536684107 0.17281374095918478 0.0 1.3628974331244539 0.0 0.0 1.4099649439824398 0.0 0.0 0.0 0.0 0.0 0.0 1.049682058667508 0.0 0.0 0.0 0.53048818523100072 0.0 0.0 0.0 0.0 0.0 2.363069648979311 1.8398215052147631 0.0 0.0 0.0 1.5383461106306464 0.33574410843848912 0.0 0.55069089254852011 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.52053785437783262 0.0 0.63030852051321173 0.0 1.4220863045147845 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7683625412326183 2.4966010416038333 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8398215052147631 1.5247404585748678 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 life_in_prison 0.0 0.0 0.0 0.0 2.3482983316589983 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0205001772207165 0.0 1.0573141503434327 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1626746660012588 0.83417059902922286 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.35174444978493036 0.0 0.16122612578679696 1.4690488714651921 0.0 0.0 0.0 0.66021729190578482 0.0 3.6475813157892589 0.0 0.0 0.0 1.3449962227952135 1.9428332235508341 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.1310730876161095 0.0 0.93399093431143365 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3875558372140095 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1435039190129852 0.0 1.9736048822175878 0.0 0.0 0.0 0.0 0.0 2.0053535805321681 0.0 0.0 0.0 0.0 0.0 1.4503567384530398 1.1352756918131446 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9736048822175878 0.0 0.0 0.0 0.0 0.0 0.0 3.3598992433374781 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.954434135229314 0.0 0.0 0.0 0.0 0.0 0.0 intent 0.0 0.0 0.0 0.50139181074336159 0.0 1.2389907538741407 0.0 0.06033575753249458 0.0 0.0 1.062367218194824 0.0 0.0 0.0 0.64115375311852041 0.94564294388668246 0.0 0.0 0.0 0.0 0.0 1.5116349489613812 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.62873123311996326 0.0 0.43821290912182992 0.0 0.0 1.3426691833489821 0.0 0.24405689468087258 0.0 0.0 0.0 0.0 0.0 0.23568864501035591 0.0 0.0 0.0 0.0 0.0 1.0249796861232037 0.0 0.83352564576597643 0.0 1.4678323263029882 0.0 1.76508384977092 0.0 0.81352497905930687 0.0 0.0 0.0 0.61646114052814882 0.0 1.6219830061302465 0.0 1.3855942280660161 0.0 0.27824825942915188 0.0 0.0 0.0 1.1945389913033069 0.0 0.0 0.0 1.151979376884511 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7191152945882322 1.8661799666422887 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 help 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1963908436843806 0.0 1.233204816807097 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3385653324649232 1.0100612654928871 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5276351162485946 0.0 0.33711679225046126 1.6449395379288565 0.0 0.0 0.0 0.83610795836944907 0.0 0.0 0.0 0.0 0.0 0.82773970869893254 2.1187238900144982 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.30696375407977378 0.0 1.109881600775098 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5634465036776739 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.3193945854766493 0.0 2.1494955486812519 0.0 0.0 0.0 0.0 0.0 2.1812442469958322 0.0 0.0 0.0 0.0 0.0 1.6262474049167042 1.3111663582768089 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1494955486812519 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 pat_-_down 0.0 0.0 0.0 1.1945389913033069 0.0 0.0 0.0 0.0 0.0 0.55727226913781824 0.0 1.9321379344340861 0.0 0.0 0.0 0.0 0.0 1.4396614493362918 0.0 1.3426691833489821 0.81848776840143589 0.0 0.0 0.0 0.0 0.017557635519690449 1.2276911986202075 0.0 0.0 0.0 0.0 0.9123065236190907 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5731928419608145 0.0 1.2619802720988393 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2389907538741407 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3468797158853258 0.0 0.0 0.0 1.9096650785820275 0.0 0.0 0.0 1.8043045629242012 0.0 0.0 0.0 1.9096650785820275 0.0 2.2505916655526206 0.0 1.655884557805928 0.0 0.0 0.0 1.3468797158853258 0.0 0.0 1.2619802720988393 1.3343009336784657 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3343009336784657 0.0 0.0 1.5266728263259217 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.0274481142384109 1.7273435217880728 0.0 0.0 2.3841230581771433 1.6219830061302465 0.0 0.0 2.8259558104561826 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.9245680991242922 0.0 0.0 0.0 happen 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4255767094545528 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.68965140688180337 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.89535989637391189 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.0858362467204143 0.0 0.0 0.0 0.0 2.89191377824798 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.5166191628128685 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 imprison 0.0 0.0 0.0 0.38124749890129822 0.0 1.1188464420320776 0.0 0.0 0.0 0.0 0.94222290635276085 0.0 0.0 0.0 0.52100944127645721 1.5186458126045645 0.0 0.0 0.0 0.0 0.0 1.3914906371193179 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.66273760110515834 0.0 0.31806859727976666 0.0 0.0 1.222524871506919 0.0 0.12391258283880932 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5979825548410858 0.0 0.71338133392391312 0.0 1.3476880144609249 0.0 1.6449395379288567 0.0 0.69338066721724356 0.0 0.0 0.0 0.49631682868608562 0.0 1.5018386942881834 0.0 0.0 0.0 0.15810394758708868 0.0 0.0 0.0 1.0743946794612436 0.0 0.0 0.0 1.0318350650424477 0.0 0.0 0.0 0.0 0.52100944127645721 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.598970982746169 1.7460356548002252 0.0 0.0 0.0 0.0 0.0 0.0 1.5018386942881834 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6071992099460095 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 recapture 0.0 0.0 0.0 0.71395325272703425 0.0 0.0 1.343921531665448 0.0 0.0 0.76983371112149102 0.0 1.4515521958578135 0.0 0.0 0.0 0.0 0.0 1.6522228913199646 0.0 1.1497655172244905 1.0310492103851088 0.0 0.0 0.0 0.0 0.23011907750336327 1.4402526406038803 0.0 0.0 0.0 0.0 1.1248679656027636 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0926071033845419 0.0 1.4745417140825123 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4515521958578135 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5594411578689986 0.0 0.0 0.0 1.4290793400057551 0.0 0.0 0.0 2.0168660049078739 0.0 1.4290793400057551 0.0 1.4290793400057551 0.0 0.0 0.0 1.1752988192296554 0.0 0.0 0.0 1.9649062659771628 0.0 0.0 1.4745417140825123 0.85371519510219318 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5468623756621385 0.0 0.0 1.7392342683095945 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2400095562220836 1.9399049637717456 0.0 0.0 0.0 1.8345444481139193 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2400095562220836 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 try 0.0 1.658088010772363 0.0 0.0 1.4002589014702631 0.0 0.0 0.0 0.0 0.025393236173995207 0.0 0.0 0.76560792759192642 0.0 0.80242190071464281 0.41376391092285958 0.0 0.0 1.0573141503434327 0.0 0.28660873543761289 0.0 0.21463523581252364 0.0 0.0 0.04529439049129011 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9263519973670424 0.0 0.0 0.0 0.0 1.6196217299445668 0.0 0.0 0.0 0.40532504227699484 0.0 0.0 0.0 1.7504613309033781 0.96494083021241761 0.80242190071464281 0.99479379336209883 0.0 0.0 0.0 0.0 0.0 1.9263519973670424 0.0 0.0 0.2428061127792199 0.0 0.54005763624715175 0.0 0.0 0.0 0.0 0.0 0.084582107564325909 1.9263519973670424 0.0 0.0 0.85371519510219318 0.0 0.84498151513343867 0.0 0.0 0.0 0.66265995833948388 0.0 0.0 1.9263519973670424 0.62010034392068802 0.0 0.0 1.4955690812745881 0.0 0.0 0.0 0.0 1.0255654520288524 0.0 2.0063947050405786 0.0 2.0489543194593747 0.0 1.0573141503434327 1.9263519973670424 0.0 0.0 0.0 1.9263519973670424 0.0 0.0 0.0 1.9263519973670424 2.2940767774923594 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0255654520288524 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 consider 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.077270015186337 0.0 0.0 1.3861542952887211 0.0 1.6212740376496466 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8354220260552785 0.0 0.0 0.0 0.0 0.0 0.0 3.1223439133619655 0.0 0.0 0.0 0.0 0.0 0.0 0.54705320210569608 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.1497428875500795 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1689136345383533 0.0 0.0 0.0 0.0 0.73184694804503969 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2334521556759248 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2675259232064633 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.1497428875500795 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.4306767330121444 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 conviction 1.2885549118902617 0.0 1.5902232263167828 0.0 0.0 0.0 0.0 0.19691129253824538 2.1640236492441618 0.69384780414356917 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.38063242968662336 0.0 0.0 0.0 0.5545857368100614 2.1640236492441618 0.0 0.0 0.0 0.0 1.6940200199984261 1.1707718762338784 1.7420292391847869 0.0 0.0 0.0 0.072159587565768971 0.0 0.98025355223574517 0.0 1.0166211964066201 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.37226418001610684 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6632483613316726 0.0 0.0 1.7924600928116787 0.0 0.0 0.0 0.0 1.0598711802004368 0.0 0.75303667553389964 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.7924600928116787 0.0 0.0 1.0993129122517336 1.8275514126229488 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.85569082959398313 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.4517057216959426 0.0 0.0 2.024261706869003 0.0 2.068713469439837 0.0 0.0 0.0 2.3871672005583715 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 release 2.8049024012583503 0.0 2.4134235351249256 0.0 0.0 0.0 0.0 1.0201116013463885 0.0 2.2101952935116573 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8969799190547116 0.0 0.0 0.0 1.3777860456182045 0.0 0.28418629877363905 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3678357147650364 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.3735183191721951 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 it 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2714260296272946 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2286479076144903 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.74120921654665362 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.9316855668931563 0.0 0.0 0.0 0.0 2.7377630984207215 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.3624684829856104 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 accuse 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4255767094545528 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0901039731664235 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.2775474755411489 0.0 0.0 2.0979618985660689 0.20221271581396655 0.0 1.1103066804839428 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1987665976880346 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.1899243084486344 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2973788863561442 0.0 0.0 0.0 3.6158326174746791 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 wanted&quot; 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.2714260296272946 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.93595329333916522 0.0 0.5355007270545451 0.0 0.0 0.0 0.0 0.0 2.1233967957138908 0.0 0.0 1.9438112187388106 0.048062035986708267 0.0 0.9561560006566846 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.2883605108318887 0.0 0.0 2.0446159178607766 0.0 0.0 0.0 0.0 0.0 0.92600296248599712 0.0 1.0357736286213761 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.1432282065288861 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 transport 0.7394471015532541 0.0 0.34796823541982969 0.0 0.0 0.0 0.0 0.9005664506966059 0.0 0.0 0.64983494286356724 0.0 0.0 0.0 0.0 0.53311066855542566 1.7774347684049292 0.0 0.0 0.0 0.0 0.40595549307017909 0.0 0.0054779264730537196 0.0 0.29817254074837896 0.0 1.0842875878449838 0.0 0.0 0.62166406589687062 1.1929214288477794 1.5196056591028293 0.0 1.0133358518726991 0.37034963761596484 0.0 0.025680633790573091 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.6149158389071543 0.0 2.6647379634058317 0.61244741079194687 0.0 0.0 0.7394471015532541 0.36215287041178607 1.2433522824746712 0.65940439387971783 0.0 0.40099270372805007 0.0 0.10529826175526455 0.0 0.0 0.0 0.5163035502390444 0.0 0.0 0.0 0.0 0.0 1.2433522824746712 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8380593902213638 0.0 1.6149158389071543 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.62166406589687062 0.30658301925697551 0.76050051075108649 0.0 0.0 2.6647379634058317 0.0 0.0 0.0 0.0 0.0 0.0 2.0456987549996084 0.0 0.0 0.0 1.9025979113589351 0.62166406589687062 2.0456987549996084 1.4751538965319952 0.0 1.5196056591028293 0.0 0.0 0.0 1.8380593902213638 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 add 0.0 0.0 1.2607440251865403 0.0 0.0 0.0 0.0 0.56057927196794832 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.6902105581716396 0.0 0.0 0.74430040911632622 0.0 0.0 0.0 0.225106535679819 0.0 0.51780114995514404 0.0 0.0 0.0 0.0 1.5344398556635812 1.4125500380545444 2.4323814488695397 0.0 1.2329644610794646 0.0 0.0 0.24530924299733822 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.7359321594458097 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.3337691602014301 1.6522228913199646 0.0 2.1561280722413816 0.0 0.0 0.21515620482665093 0.0 0.32492687096202982 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4629808916814362 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.7508351799880746 0.0 2.5276916286738649 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.5344398556635812 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.8153737011256457 0.0 0.0 2.3879296862987061 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.7316644329998003 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 break_up 0.0 0.0 0.0 1.0934428744319382 0.0 0.0 0.0 0.0 0.0 0.0 0.96127110132345528 0.0 1.1963908436843806 0.0 1.233204816807097 1.5376940075752592 0.0 0.0 2.1812442469958322 0.0 0.0 0.0 0.0 0.31691408493294188 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.5276351162485946 0.0 0.0 0.0 0.0 0.83610795836944907 0.0 0.0 0.0 0.0 0.0 0.0 2.0888709268648173 0.82773970869893254 0.0 0.0 0.0 0.0 0.0 0.92388356925183512 0.0 0.0 0.0 1.3667362094316196 0.0 1.6639877328995512 0.0 0.30696375407977378 0.0 0.0 0.0 1.2085122042167253 0.0 0.0 0.0 1.9776452917545928 0.0 0.87029932311772862 0.0 0.0 0.0 1.7865900549918836 0.0 0.0 0.0 0.0 0.0 0.0 2.6194991779269876 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.4180068741447589 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 want 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.137894637002772 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.80242190071464259 0.0 0.40196933443002247 0.0 0.0 0.0 0.0 0.0 1.9898654030893681 0.0 0.0 1.8102798261142881 0.0 0.0 0.82262460803216197 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.154829118207366 0.0 0.0 1.9110845252362538 0.0 0.0 0.0 0.0 0.0 0.79247156986147449 0.0 0.90224223599685349 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0096968139043634 0.0 0.0 3.1050069937086886 3.3281505450228979 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 elect 0.0 0.0 0.0 1.0934428744319382 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.8310418175627174 0.0 0.0 0.0 0.0 0.0 2.0317125130248685 0.0 0.83610795836944907 1.4105388320900125 0.0 0.0 0.0 0.0 0.6096086992082671 1.819742262308784 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4720967250894459 0.0 1.8540313357874161 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9389307795739024 0.0 0.0 0.0 1.8085689617106588 0.0 0.0 0.0 0.0 0.0 1.8085689617106588 0.0 1.8085689617106588 0.0 2.8426427292411973 0.0 0.0 0.0 0.0 0.0 1.245783599013957 0.0 0.0 1.8540313357874161 1.233204816807097 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9263519973670424 0.0 0.0 2.1187238900144982 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 ride 2.363069648979311 0.0 1.9715907828458865 0.0 0.0 0.0 0.0 0.57827884906734928 0.0 2.4615097217925634 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.4551471667756726 0.0 0.0 1.9576045408711464 0.93595329333916522 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.92600296248599712 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2.1738276493407827 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.9316855668931563 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.9316855668931563 0.0 0.0 0.0 0.0 0.0 4.154829118207366 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0
DM
1
tommasoc80/EventStoryLine
ppmi_events_ecb+_test/3/full_corpus_ppmi.dm
[ "CC-BY-3.0" ]
$TTL 3600 ; default time to live @ IN SOA ns1.vedetta.lan hostmaster.vedetta.lan. ( 2017052902 ; serial 24h ; refresh 30m ; retry 2d ; expire 7d ; min ttl ) IN NS ns1.vedetta.lan. ; IN NS ns2.vedetta.lan. ; vedetta.lan zone prefix $ORIGIN 0.16.172.in-addr.arpa. 1 IN PTR lan.vedetta.lan. 10 IN PTR desktop.vedetta.lan. ; vedetta.lan default prefix $ORIGIN 16.172.in-addr.arpa.
DNS Zone
3
rjc/vedetta
src/var/nsd/zones/master/16.172.zone
[ "ISC" ]
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en"> <head profile="http://gmpg.org/xfn/11"> <meta charset="utf-8" /> <script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start': new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0], j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src= 'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f); })(window,document,'script','dataLayer','GTM-P24PF4B');</script> <!-- <meta property="fb:page_id" content="6427302910" /> --> <link href="https://plus.google.com/107188080561309681193" rel="publisher" /> <meta name="google-site-verification" content="7VWES_-rcHBcmaQis9mSYamPfNwE03f4vyTj4pfuAw0" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Blog Tool, Publishing Platform, and CMS &mdash; WordPress</title> <meta name="referrer" content="always"> <link href="//s.w.org/wp-includes/css/dashicons.css?20160504" rel="stylesheet" type="text/css" /> <link href='//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,300,600&subset=latin,cyrillic-ext,greek-ext,greek,vietnamese,latin-ext,cyrillic' rel='stylesheet' type='text/css'> <link rel="stylesheet" href="//s.w.org/style/wp4.css?77" /> <link rel="shortcut icon" href="//s.w.org/favicon.ico?2" type="image/x-icon" /> <meta name="apple-itunes-app" content="app-id=335703880" /><link rel="alternate" type="application/rss+xml" title="WordPress Blog RSS" href="http://wordpress.org/news/feed/" /><style type="text/css">#home-welcome,body,html{font-size:16px}#home-welcome *{box-sizing:border-box}#home-welcome{font-family:"Open Sans",sans-serif;line-height:1.5;font-weight:400;color:#32373c;padding:0;margin:0;background:#fff}#home-welcome header{padding:18px 36px;background:#0073aa}@media (min-width:737px){body,html{font-size:18px}#home-welcome header{padding:1.5625rem}}#home-welcome header h1{text-align:center;color:#FFF;line-height:1}#home-welcome h1{font-size:3.8147rem;font-weight:300}#home-welcome h1,#home-welcome h2,#home-welcome h3,#home-welcome h4,#home-welcome h5,#home-welcome h6{line-height:1.5;margin:2rem 0 1rem;font-family:inherit}#home-welcome header p.subheading{color:#FFF}#home-welcome p.subheading{font-size:1.25rem;font-weight:300;text-align:center;color:#82878C;margin:-.4rem auto 2rem}#home-welcome p{margin:1em 0;max-width:35.52714rem;font-size:18px}@media (min-width:67rem){#home-welcome #lang-guess{margin:1rem auto 0;max-width:50rem}}#home-welcome #lang-guess{padding:.5rem;background:#C7E8CA;text-align:center;font-size:.8rem;cursor:pointer}#home-welcome .intro{padding-bottom:0}#home-welcome .screenshots{height:400px;overflow:hidden;padding:1rem 1rem 0;position:relative;left:-30px;right:0;width:106%}@media(max-width:739px){#home-welcome .screenshots{padding:0;left:auto;right:auto;width:100%}}#home-welcome .screenshots .dashboard{box-shadow:0 1px 8px rgba(0,0,0,.2);max-width:800px}#home-welcome .screenshots .dashboard-mobile{position:absolute;bottom:-100px;right:1px;z-index:1;max-width:200px}#home-welcome img{border-style:none;max-width:100%}#home-welcome .showcase{max-width:100%;margin:0;border-bottom:none;padding-left:0;padding-right:0}#home-welcome section{margin:0 auto;padding:3.05176rem 1.5625rem;max-width:50rem;border-bottom:2px solid #EEE}#home-welcome section:last-child{border-bottom:none}#home-welcome section h2{text-align:center;line-height:1}#home-welcome h2{font-size:2.44141rem;font-weight:300}#home-welcome .showcase>div{width:100%;height:300px;background:url(https://s.w.org/images/home/collage-min.jpg?3) center top;background-size:cover;box-shadow:inset 0 0 8px rgba(0,0,0,.4)}@media (min-width:700px){#home-welcome .showcase>div{height:600px;background-attachment:fixed}}#home-welcome .cta-link{max-width:100%;text-align:center;margin:3.05176rem 0 0}#home-welcome a:hover{text-decoration:underline}#home-welcome a:active,a:hover{outline-width:0}#home-welcome a{color:#0073aa;text-decoration:none;background-color:transparent;border:none}#home-welcome .features{border-top:2px solid #eee}#home-welcome .features ul{list-style:none;margin:3rem 0;padding:0;display:flex;flex-wrap:wrap;align-items:center}#home-welcome .features ul li{display:flex;align-items:center;justify-content:center;flex-direction:column;width:50%;height:160px;text-align:center;border-right:1px solid #eee;border-bottom:1px solid #eee}@media (max-width:739px){#home-welcome h1{font-size:3.2rem}#home-welcome .features ul li:nth-child(n+7){border-bottom:none}#home-welcome .features ul li:nth-child(2n){border-right:none}}@media (min-width:740px){#home-welcome .features ul li{width:25%;height:200px}#home-welcome .features ul li:nth-child(4n){border-right:none}#home-welcome .features ul li:nth-child(n+5){border-bottom:none}}#home-welcome .features ul li img{height:2.5rem;margin:.25rem auto 1.25rem}#home-welcome .features ul li img,#home-welcome .features ul li span{display:block;margin-bottom:1rem;color:#00A0D2;font-size:3rem}#home-welcome .dashicons{display:block;margin:0 auto -1rem;font-size:4rem;color:#CBCDCE;width:auto;height:auto}#home-welcome .features p{text-align:center;margin-left:auto;margin-right:auto}#home-welcome .community-2{background:url(https://s.w.org/images/home/community-2.jpg?3) no-repeat;position:relative;max-width:100%;background-size:cover;height:500px;border:none;display:flex;align-items:flex-start;justify-content:flex-end;flex-direction:column}#home-welcome .community-2 .screen{background:rgba(0,0,0,.5);position:absolute;left:0;right:0;top:0;z-index:0;width:100%;height:100%}#home-welcome .community-2 .subheading,#home-welcome .community-2 h2{color:#fff;position:relative;z-index:1;text-shadow:0 0 8px rgba(0,0,0,.5);text-align:left;margin:0 0 1rem;max-width:100%}#home-welcome section .container{max-width:50rem;margin:0 auto;z-index:0}@media (min-width:737px){#home-welcome .cta-wrapper{font-size:.8rem;margin:4rem 0 2rem}}#home-welcome .cta-wrapper{text-align:center;font-size:.9144rem;margin:2rem 0;display:block}#home-welcome .button,#home-welcome .button-primary,#home-welcome .button-secondary{display:inline-block;text-decoration:none!important;font-size:.8rem;line-height:1;height:1.5625rem;margin:0;padding:0 .8rem;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;-webkit-border-radius:3px;border-radius:3px;white-space:nowrap;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#home-welcome button::-moz-focus-inner,#home-welcome input[type=reset]::-moz-focus-inner,#home-welcome input[type=button]::-moz-focus-inner,#home-welcome input[type=submit]::-moz-focus-inner{border-width:0;border-style:none;padding:0}#home-welcome .button-group.button-xl .button,#home-welcome .button.button-xl{height:2.44141rem;line-height:2.3;padding:0 1.5rem;font-size:1rem}#home-welcome .button-group.button-large .button,#home-welcome .button.button-large{height:1.95313rem;line-height:1;padding:0 1rem}#home-welcome .button-group.button-small .button,#home-welcome .button.button-small{height:1.25rem;line-height:1;padding:0 .5rem;font-size:.64rem}#home-welcome .button:active,#home-welcome .button:focus{outline:0}#home-welcome .button.hidden{display:none}#home-welcome input[type=reset],#home-welcome input[type=reset]:active,#home-welcome input[type=reset]:focus,#home-welcome input[type=reset]:hover{background:0 0;border:none;-webkit-box-shadow:none;box-shadow:none;padding:0 2px 1px;width:auto}#home-welcome .button,#home-welcome .button-secondary{color:#555;border-color:#ccc;background:#f7f7f7;-webkit-box-shadow:0 1px 0 #ccc;box-shadow:0 1px 0 #ccc;vertical-align:top}#home-welcome p .button{vertical-align:baseline}#home-welcome .button-secondary:focus,#home-welcome .button-secondary:hover,#home-welcome .button.focus,#home-welcome .button.hover,#home-welcome .button:focus,#home-welcome .button:hover{background:#fafafa;border-color:#999;color:#23282d}#home-welcome .button-link:focus,#home-welcome .button-secondary:focus,#home-welcome .button.focus,#home-welcome .button:focus{border-color:#5b9dd9;-webkit-box-shadow:0 0 3px rgba(0,115,170,.8);box-shadow:0 0 3px rgba(0,115,170,.8)}#home-welcome .button-secondary:active,#home-welcome .button.active,#home-welcome .button.active:hover,#home-welcome .button:active{background:#eee;border-color:#999;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5);-webkit-transform:translateY(1px);-ms-transform:translateY(1px);transform:translateY(1px)}#home-welcome .button.active:focus{border-color:#5b9dd9;-webkit-box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(0,115,170,.8);box-shadow:inset 0 2px 5px -3px rgba(0,0,0,.5),0 0 3px rgba(0,115,170,.8)}#home-welcome .button-disabled,#home-welcome .button-secondary.disabled,#home-welcome .button-secondary:disabled,#home-welcome .button-secondary[disabled],#home-welcome .button.disabled,#home-welcome .button:disabled,#home-welcome .button[disabled]{color:#a0a5aa!important;border-color:#ddd!important;background:#f7f7f7!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:0 1px 0 #fff!important;cursor:default;-webkit-transform:none!important;-ms-transform:none!important;transform:none!important}#home-welcome .button-link{margin:0;padding:0;-webkit-box-shadow:none;box-shadow:none;border:0;-webkit-border-radius:0;border-radius:0;background:0 0;outline:0;cursor:pointer}#home-welcome .button-link:focus{outline:#5b9dd9 solid 1px}#home-welcome .button-primary{background:#0085ba;border-color:#0073aa #006799 #006799;-webkit-box-shadow:0 1px 0 #006799;box-shadow:0 1px 0 #006799;color:#fff;text-decoration:none;text-shadow:0 -1px 1px #006799,1px 0 1px #006799,0 1px 1px #006799,-1px 0 1px #006799}#home-welcome .button-primary.focus,#home-welcome .button-primary.hover,#home-welcome .button-primary:focus,#home-welcome .button-primary:hover{background:#008ec2;border-color:#006799;color:#fff}#home-welcome .button-primary.focus,#home-welcome .button-primary:focus{-webkit-box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db;box-shadow:0 1px 0 #0073aa,0 0 2px 1px #33b3db}#home-welcome .button-primary.active,#home-welcome .button-primary.active:focus,#home-welcome .button-primary.active:hover,#home-welcome .button-primary:active{background:#0073aa;border-color:#006799;-webkit-box-shadow:inset 0 2px 0 #006799;box-shadow:inset 0 2px 0 #006799;vertical-align:top}#home-welcome .button-primary-disabled,#home-welcome .button-primary.disabled,#home-welcome .button-primary:disabled,#home-welcome .button-primary[disabled]{color:#66c6e4!important;background:#008ec2!important;border-color:#007cb2!important;-webkit-box-shadow:none!important;box-shadow:none!important;text-shadow:0 -1px 0 rgba(0,0,0,.1)!important;cursor:default}#home-welcome .button-group{position:relative;display:inline-block;white-space:nowrap;font-size:0;vertical-align:middle}#home-welcome .button-group>.button{display:inline-block;-webkit-border-radius:0;border-radius:0;margin-right:-1px;z-index:10}#home-welcome .button-group>.button-primary{z-index:100}#home-welcome .button-group>.button:hover{z-index:20}#home-welcome .button-group>.button:first-child{-webkit-border-radius:3px 0 0 3px;border-radius:3px 0 0 3px}#home-welcome .button-group>.button:last-child{-webkit-border-radius:0 3px 3px 0;border-radius:0 3px 3px 0}#home-welcome .button-group>.button:focus{position:relative;z-index:1}#home-welcome a.button.button-large{line-height:31.25px;line-height:1.953125rem}#lang-guess{width:inherit;max-width:inherit;margin:0;background:inherit;border:inherit;text-align:center;font:inherit;padding:0;-moz-border-radius:inherit;-khtml-border-radius:inherit;-webkit-border-radius:inherit;border-radius:inherit}</style><link rel="alternate" href="https://af.wordpress.org/" hreflang="af" /> <link rel="alternate" href="https://ak.wordpress.org/" hreflang="ak" /> <link rel="alternate" href="https://am.wordpress.org/" hreflang="am" /> <link rel="alternate" href="https://ar.wordpress.org/" hreflang="ar" /> <link rel="alternate" href="https://arq.wordpress.org/" hreflang="arq" /> <link rel="alternate" href="https://emoji.wordpress.org/" hreflang="art-xemoji" /> <link rel="alternate" href="https://ary.wordpress.org/" hreflang="ary" /> <link rel="alternate" href="https://as.wordpress.org/" hreflang="as" /> <link rel="alternate" href="https://ast.wordpress.org/" hreflang="ast" /> <link rel="alternate" href="https://az.wordpress.org/" hreflang="az" /> <link rel="alternate" href="https://az-tr.wordpress.org/" hreflang="az-tr" /> <link rel="alternate" href="https://azb.wordpress.org/" hreflang="azb" /> <link rel="alternate" href="https://bcc.wordpress.org/" hreflang="bcc" /> <link rel="alternate" href="https://bel.wordpress.org/" hreflang="bel" /> <link rel="alternate" href="https://bg.wordpress.org/" hreflang="bg" /> <link rel="alternate" href="https://bn.wordpress.org/" hreflang="bn" /> <link rel="alternate" href="https://bo.wordpress.org/" hreflang="bo" /> <link rel="alternate" href="https://bre.wordpress.org/" hreflang="br" /> <link rel="alternate" href="https://bs.wordpress.org/" hreflang="bs" /> <link rel="alternate" href="https://ca.wordpress.org/" hreflang="ca" /> <link rel="alternate" href="https://ceb.wordpress.org/" hreflang="ceb" /> <link rel="alternate" href="https://ku.wordpress.org/" hreflang="ckb" /> <link rel="alternate" href="https://co.wordpress.org/" hreflang="co" /> <link rel="alternate" href="https://cs.wordpress.org/" hreflang="cs" /> <link rel="alternate" href="https://cy.wordpress.org/" hreflang="cy" /> <link rel="alternate" href="https://da.wordpress.org/" hreflang="da" /> <link rel="alternate" href="https://de.wordpress.org/" hreflang="de" /> <link rel="alternate" href="https://de-ch.wordpress.org/" hreflang="de-ch" /> <link rel="alternate" href="https://dv.wordpress.org/" hreflang="dv" /> <link rel="alternate" href="https://dzo.wordpress.org/" hreflang="dzo" /> <link rel="alternate" href="https://el.wordpress.org/" hreflang="el" /> <link rel="alternate" href="https://wordpress.org/" hreflang="en" /> <link rel="alternate" href="https://en-au.wordpress.org/" hreflang="en-au" /> <link rel="alternate" href="https://en-ca.wordpress.org/" hreflang="en-ca" /> <link rel="alternate" href="https://en-gb.wordpress.org/" hreflang="en-gb" /> <link rel="alternate" href="https://en-nz.wordpress.org/" hreflang="en-nz" /> <link rel="alternate" href="https://en-za.wordpress.org/" hreflang="en-za" /> <link rel="alternate" href="https://eo.wordpress.org/" hreflang="eo" /> <link rel="alternate" href="https://es.wordpress.org/" hreflang="es" /> <link rel="alternate" href="https://es-ar.wordpress.org/" hreflang="es-ar" /> <link rel="alternate" href="https://cl.wordpress.org/" hreflang="es-cl" /> <link rel="alternate" href="https://es-co.wordpress.org/" hreflang="es-co" /> <link rel="alternate" href="https://es-cr.wordpress.org/" hreflang="es-cr" /> <link rel="alternate" href="https://es-gt.wordpress.org/" hreflang="es-gt" /> <link rel="alternate" href="https://es-mx.wordpress.org/" hreflang="es-mx" /> <link rel="alternate" href="https://pe.wordpress.org/" hreflang="es-pe" /> <link rel="alternate" href="https://es-pr.wordpress.org/" hreflang="es-pr" /> <link rel="alternate" href="https://ve.wordpress.org/" hreflang="es-ve" /> <link rel="alternate" href="https://et.wordpress.org/" hreflang="et" /> <link rel="alternate" href="https://eu.wordpress.org/" hreflang="eu" /> <link rel="alternate" href="https://fa.wordpress.org/" hreflang="fa" /> <link rel="alternate" href="https://fa-af.wordpress.org/" hreflang="fa-af" /> <link rel="alternate" href="https://fi.wordpress.org/" hreflang="fi" /> <link rel="alternate" href="https://fao.wordpress.org/" hreflang="fo" /> <link rel="alternate" href="https://fr.wordpress.org/" hreflang="fr" /> <link rel="alternate" href="https://fr-be.wordpress.org/" hreflang="fr-be" /> <link rel="alternate" href="https://fr-ca.wordpress.org/" hreflang="fr-ca" /> <link rel="alternate" href="https://frp.wordpress.org/" hreflang="frp" /> <link rel="alternate" href="https://fuc.wordpress.org/" hreflang="fuc" /> <link rel="alternate" href="https://fur.wordpress.org/" hreflang="fur" /> <link rel="alternate" href="https://fy.wordpress.org/" hreflang="fy" /> <link rel="alternate" href="https://ga.wordpress.org/" hreflang="ga" /> <link rel="alternate" href="https://gd.wordpress.org/" hreflang="gd" /> <link rel="alternate" href="https://gl.wordpress.org/" hreflang="gl" /> <link rel="alternate" href="https://gu.wordpress.org/" hreflang="gu" /> <link rel="alternate" href="https://hat.wordpress.org/" hreflang="hat" /> <link rel="alternate" href="https://hau.wordpress.org/" hreflang="hau" /> <link rel="alternate" href="https://haz.wordpress.org/" hreflang="haz" /> <link rel="alternate" href="https://he.wordpress.org/" hreflang="he" /> <link rel="alternate" href="https://hi.wordpress.org/" hreflang="hi" /> <link rel="alternate" href="https://hr.wordpress.org/" hreflang="hr" /> <link rel="alternate" href="https://hu.wordpress.org/" hreflang="hu" /> <link rel="alternate" href="https://hy.wordpress.org/" hreflang="hy" /> <link rel="alternate" href="https://id.wordpress.org/" hreflang="id" /> <link rel="alternate" href="https://ido.wordpress.org/" hreflang="ido" /> <link rel="alternate" href="https://is.wordpress.org/" hreflang="is" /> <link rel="alternate" href="https://it.wordpress.org/" hreflang="it" /> <link rel="alternate" href="https://ja.wordpress.org/" hreflang="ja" /> <link rel="alternate" href="https://jv.wordpress.org/" hreflang="jv" /> <link rel="alternate" href="https://ka.wordpress.org/" hreflang="ka" /> <link rel="alternate" href="https://kab.wordpress.org/" hreflang="kab" /> <link rel="alternate" href="https://kal.wordpress.org/" hreflang="kal" /> <link rel="alternate" href="https://kin.wordpress.org/" hreflang="kin" /> <link rel="alternate" href="https://kk.wordpress.org/" hreflang="kk" /> <link rel="alternate" href="https://km.wordpress.org/" hreflang="km" /> <link rel="alternate" href="https://kn.wordpress.org/" hreflang="kn" /> <link rel="alternate" href="https://ko.wordpress.org/" hreflang="ko" /> <link rel="alternate" href="https://ltz.wordpress.org/" hreflang="lb" /> <link rel="alternate" href="https://li.wordpress.org/" hreflang="li" /> <link rel="alternate" href="https://lin.wordpress.org/" hreflang="lin" /> <link rel="alternate" href="https://lo.wordpress.org/" hreflang="lo" /> <link rel="alternate" href="https://lt.wordpress.org/" hreflang="lt" /> <link rel="alternate" href="https://lv.wordpress.org/" hreflang="lv" /> <link rel="alternate" href="https://me.wordpress.org/" hreflang="me" /> <link rel="alternate" href="https://mg.wordpress.org/" hreflang="mg" /> <link rel="alternate" href="https://mk.wordpress.org/" hreflang="mk" /> <link rel="alternate" href="https://ml.wordpress.org/" hreflang="ml" /> <link rel="alternate" href="https://khk.wordpress.org/" hreflang="mn" /> <link rel="alternate" href="https://mr.wordpress.org/" hreflang="mr" /> <link rel="alternate" href="https://mri.wordpress.org/" hreflang="mri" /> <link rel="alternate" href="https://ms.wordpress.org/" hreflang="ms" /> <link rel="alternate" href="https://mya.wordpress.org/" hreflang="mya" /> <link rel="alternate" href="https://nb.wordpress.org/" hreflang="nb" /> <link rel="alternate" href="https://ne.wordpress.org/" hreflang="ne" /> <link rel="alternate" href="https://nl.wordpress.org/" hreflang="nl" /> <link rel="alternate" href="https://nl-be.wordpress.org/" hreflang="nl-be" /> <link rel="alternate" href="https://nn.wordpress.org/" hreflang="nn" /> <link rel="alternate" href="https://oci.wordpress.org/" hreflang="oci" /> <link rel="alternate" href="https://ory.wordpress.org/" hreflang="ory" /> <link rel="alternate" href="https://os.wordpress.org/" hreflang="os" /> <link rel="alternate" href="https://pan.wordpress.org/" hreflang="pa" /> <link rel="alternate" href="https://pl.wordpress.org/" hreflang="pl" /> <link rel="alternate" href="https://ps.wordpress.org/" hreflang="ps" /> <link rel="alternate" href="https://pt.wordpress.org/" hreflang="pt" /> <link rel="alternate" href="https://br.wordpress.org/" hreflang="pt-br" /> <link rel="alternate" href="https://rhg.wordpress.org/" hreflang="rhg" /> <link rel="alternate" href="https://ro.wordpress.org/" hreflang="ro" /> <link rel="alternate" href="https://roh.wordpress.org/" hreflang="roh" /> <link rel="alternate" href="https://ru.wordpress.org/" hreflang="ru" /> <link rel="alternate" href="https://rup.wordpress.org/" hreflang="rup" /> <link rel="alternate" href="https://sa.wordpress.org/" hreflang="sa-in" /> <link rel="alternate" href="https://sah.wordpress.org/" hreflang="sah" /> <link rel="alternate" href="https://scn.wordpress.org/" hreflang="scn" /> <link rel="alternate" href="https://si.wordpress.org/" hreflang="si" /> <link rel="alternate" href="https://sk.wordpress.org/" hreflang="sk" /> <link rel="alternate" href="https://sl.wordpress.org/" hreflang="sl" /> <link rel="alternate" href="https://sna.wordpress.org/" hreflang="sna" /> <link rel="alternate" href="https://snd.wordpress.org/" hreflang="snd" /> <link rel="alternate" href="https://so.wordpress.org/" hreflang="so" /> <link rel="alternate" href="https://sq.wordpress.org/" hreflang="sq" /> <link rel="alternate" href="https://sq-xk.wordpress.org/" hreflang="sq-xk" /> <link rel="alternate" href="https://sr.wordpress.org/" hreflang="sr" /> <link rel="alternate" href="https://srd.wordpress.org/" hreflang="srd" /> <link rel="alternate" href="https://su.wordpress.org/" hreflang="su" /> <link rel="alternate" href="https://sv.wordpress.org/" hreflang="sv" /> <link rel="alternate" href="https://sw.wordpress.org/" hreflang="sw" /> <link rel="alternate" href="https://syr.wordpress.org/" hreflang="syr" /> <link rel="alternate" href="https://szl.wordpress.org/" hreflang="szl" /> <link rel="alternate" href="https://ta.wordpress.org/" hreflang="ta" /> <link rel="alternate" href="https://ta-lk.wordpress.org/" hreflang="ta-lk" /> <link rel="alternate" href="https://tah.wordpress.org/" hreflang="tah" /> <link rel="alternate" href="https://te.wordpress.org/" hreflang="te" /> <link rel="alternate" href="https://tg.wordpress.org/" hreflang="tg" /> <link rel="alternate" href="https://th.wordpress.org/" hreflang="th" /> <link rel="alternate" href="https://tir.wordpress.org/" hreflang="tir" /> <link rel="alternate" href="https://tl.wordpress.org/" hreflang="tl" /> <link rel="alternate" href="https://tr.wordpress.org/" hreflang="tr" /> <link rel="alternate" href="https://tt.wordpress.org/" hreflang="tt" /> <link rel="alternate" href="https://tuk.wordpress.org/" hreflang="tuk" /> <link rel="alternate" href="https://twd.wordpress.org/" hreflang="twd" /> <link rel="alternate" href="https://tzm.wordpress.org/" hreflang="tzm" /> <link rel="alternate" href="https://ug.wordpress.org/" hreflang="ug" /> <link rel="alternate" href="https://uk.wordpress.org/" hreflang="uk" /> <link rel="alternate" href="https://ur.wordpress.org/" hreflang="ur" /> <link rel="alternate" href="https://uz.wordpress.org/" hreflang="uz" /> <link rel="alternate" href="https://vi.wordpress.org/" hreflang="vi" /> <link rel="alternate" href="https://xho.wordpress.org/" hreflang="xho" /> <link rel="alternate" href="https://yor.wordpress.org/" hreflang="yor" /> <link rel="alternate" href="https://cn.wordpress.org/" hreflang="zh-cn" /> <link rel="alternate" href="https://zh-hk.wordpress.org/" hreflang="zh-hk" /> <link rel="alternate" href="https://tw.wordpress.org/" hreflang="zh-tw" /><script type="text/javascript" src="//s.w.org/wp-includes/js/jquery/jquery.js?v=1.11.1"></script> <script>document.cookie='devicePixelRatio='+((window.devicePixelRatio === undefined) ? 1 : window.devicePixelRatio)+'; path=/';</script> </head> <body id="wordpress-org" > <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-P24PF4B" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript> <div id="wporg-header"> <div class="wrapper"> <button id="mobile-menu-button" aria-expanded="false"><span class="screen-reader-text">Toggle Menu</span></button> <h1><a href="//wordpress.org">WordPress.org</a></h1> <div id="head-search"> <form action="//wordpress.org/search/do-search.php" method="get"> <label for="global-search" class="screen-reader-text">Search WordPress.org for:</label> <input id="global-search" class="text" name="search" type="text" value="" maxlength="150" placeholder="Search WordPress.org" /> <button type="submit" class="button"><span class="screen-reader-text">Submit</span></button> </form> </div> <div style="clear:both"></div> <ul id="wporg-header-menu"> <li class='menu-item'><a href='//wordpress.org/showcase/' title='See some of the sites built on WordPress.'>Showcase</a></li> <li class='menu-item'><a href='//wordpress.org/themes/' title='Find just the right look for your website.'>Themes</a></li> <li class='menu-item'><a href='//wordpress.org/plugins/' title='Plugins can extend WordPress to do almost anything you can imagine.'>Plugins</a></li> <li class='menu-item'><a href='//wordpress.org/mobile/' title='Take your website on the go!'>Mobile</a></li> <li class='menu-item'><a href='//wordpress.org/support/' title='Forums, documentation, help.'>Support</a><ul class="nav-submenu"><li><a href='//wordpress.org/support/' title='Support and discussion forums.'>Forums</a></li><li><a href='//codex.wordpress.org/Main_Page' title='Documentation, tutorials, best practices.'>Documentation</a></li></ul><div class="uparrow"></div></li> <li class='menu-item'><a href='//make.wordpress.org/' title='Contribute your knowledge.'>Get Involved</a></li> <li class='menu-item'><a href='//wordpress.org/about/' title='About the WordPress Organization, and where we&#039;re going.'>About</a></li> <li class='menu-item'><a href='//wordpress.org/news/' title='Come here for the latest scoop.'>Blog</a></li> <li class='menu-item'><a href='//wordpress.org/hosting/' title='Find a home for your blog.'>Hosting</a></li> <li id="download" class="button download-button" class='menu-item'><a href='//wordpress.org/download/' title='Get it. Got it? Good.'>Get WordPress</a></li> </ul> <div style="clear:both"></div> </div> </div> <div id="download-mobile"> <div class="wrapper"> <span class="download-ready">Ready to get started?</span><a class="button download-button" href="//wordpress.org/download/" title="Get it. Got it? Good.">Download WordPress</a> </div> </div> <!-- feed is cached --> <div id="home-welcome"> <header> <h1>Meet WordPress</h1> <p class="subheading">WordPress is open source software you can use to create a beautiful website, blog, or app.</p> </header> <div id="lang-guess-wrap"></div> <section class="intro"> <p class="subheading">Beautiful designs, powerful features, and the freedom to build anything you want. WordPress is both free and priceless at the same time.</p> <div class="screenshots"> <img src="https://s.w.org/images/home/screen-themes.png?3" class="dashboard" alt="" /> <img src="https://s.w.org/images/home/iphone-themes.png?3" class="dashboard-mobile" alt="" /> </div> </section> <section class="showcase"> <h2>Trusted by the Best</h2> <p class="subheading">31% of the web uses WordPress, from hobby blogs to the biggest news sites online.</p> <div class="collage"> </div> <p class="cta-link"><a href="https://wordpress.org/showcase/">Discover more sites built with WordPress</a>.</p> </section> <section class="features"> <h2>Powerful Features</h2> <p class="subheading">Limitless possibilities. What will you create?</p> <ul> <li> <span class="dashicons dashicons-admin-customizer"></span> Customizable<br />Designs </li> <li> <span class="dashicons dashicons-welcome-widgets-menus"></span> SEO<br />Friendly </li> <li> <span class="dashicons dashicons-smartphone"></span> Responsive<br />Mobile Sites </li> <li> <span class="dashicons dashicons-chart-line"></span> High<br />Performance </li> <li> <a href="https://wordpress.org/mobile/"><img src="https://s.w.org/images/home/icon-run-blue.svg" alt="" /> Manage<br />on the Go</a> </li> <li> <span class="dashicons dashicons-lock"></span> High<br />Security </li> <li> <span class="dashicons dashicons-images-alt2"></span> Powerful<br />Media Management </li> <li> <span class="dashicons dashicons-universal-access"></span> Easy and<br />Accessible </li> </ul> <p>Extend WordPress with over 45,000 plugins to help your website meet your needs. Add an online store, galleries, mailing lists, forums, analytics, and <a href="https://wordpress.org/plugins/">much more</a>.</p> </section> <section class="community-2"> <div class="screen"></div> <div class="container"> <h2>Community</h2> <p class="subheading">Hundreds of thousands of developers, content creators, and site owners gather at monthly meetups in 436 cities worldwide.</p> <a class="button button-secondary button-large" href="https://make.wordpress.org/community/meetups-landing-page">Find a local WordPress community</a> </div> </section> <section class="get"> <h2>Get Started with WordPress</h2> <p class="subheading">Over 60 million people have chosen WordPress to power the place on the web they call &ldquo;home&rdquo; &mdash; join the family.</p> <div class="cta-wrapper"> <a href="https://wordpress.org/download/" class="button button-primary button-xl">Get WordPress</a> </div> </section> </div> <div id="home-below"> <div class="wrapper"> <div class="col-2"> <h4><a href="https://wordpress.org/about/swag/">WordPress&nbsp;Swag</a></h4> <a href="https://wordpress.org/about/swag/"><img width="132" height="177" src="https://s.w.org/images/home/swag_col-1.jpg?1" alt="WordPress Swag" /></a> </div> <div class="col-4"> <h4><a href="https://wordpress.org/news/">News From Our Blog</a></h4> <h5><a href="https://wordpress.org/news/2018/08/the-month-in-wordpress-july-2018/">The Month in WordPress: July 2018</a></h5> <p>With WordPress 5.0 coming closer, thereโ€™s lots of work going on all across the project. Read on to learn about how we progressed in July. Release of WordPress 4.9.7 On July 5, WordPress 4.9.7 was released, fixing one security issue and 17 other bugs across the platform. While this is a minor release, incremental fixes [&#8230;]</p> </div> <div class="col-4"> <h4>It&rsquo;s Easy&nbsp;As&hellip;</h4> <ol class="steps"> <li class="one"><span></span><a href="https://wordpress.org/hosting/">Find a Web Host</a> and get great hosting while supporting WordPress at the same&nbsp;time.</li> <li class="two"><span></span><a href="https://wordpress.org/download/">Download &amp; Install WordPress</a> with our famous 5-minute&nbsp;installation. Feel like a rock star.</li> <li class="three"><span></span><a href="https://developer.wordpress.org">Read the Documentation</a> and become a WordPress expert yourself, impress your friends.</li> </ol> </div> <div class="col-2"> <h4><a href="/showcase/">WordPress&nbsp;Users</a></h4> <ul id="notable-users"> <li><a href='https://wordpress.org/showcase/playstationblog/'><img src='https://s.w.org/images/notableusers/playstation-2x.png' alt='playstation' width='130' height='57' /></a></li><li><a href='https://wordpress.org/showcase/blondie/'><img src='https://s.w.org/images/notableusers/blondie-2x.png' alt='blondie' width='130' height='57' /></a></li><li><a href='https://wordpress.org/showcase/the-white-house/'><img src='https://s.w.org/images/notableusers/whitehouse-2x.png' alt='whitehouse' width='130' height='57' /></a></li> </ul> <p id="showcase-link"><a href="https://wordpress.org/showcase/">&hellip; and hundreds more</a></p> </div> </div> </div> <div id="wporg-footer"> <div class="wrapper"> <ul> <li><a href="//wordpress.org/about/" title="An introduction to the WordPress project">About</a></li> <li><a href="//wordpress.org/news/" title="News and Updates">Blog</a></li> <li><a href="//wordpress.org/hosting/" title="Recommended web hosting providers">Hosting</a></li> <li><a href="https://wordpressfoundation.org/donate/" title="Donate to the WordPress Foundation">Donate</a></li> </ul> <ul> <li><a href="//wordpress.org/support/" title="Forums, documentation, and other resources">Support</a></li> <li><a href="//developer.wordpress.org" title="Resources for WordPress developers">Developers</a></li> <li><a href="//make.wordpress.org/" title="Give back to WordPress through code, support, translation and more">Get Involved</a></li> <li><a href="//learn.wordpress.org/" title="Workshops and training materials">Learn</a></li> </ul> <ul> <li><a href="//wordpress.org/showcase/" title="Some of the best WordPress sites on the Web">Showcase</a></li> <li><a href="//wordpress.org/plugins/" title="Add extra functionality to WordPress">Plugins</a></li> <li><a href="//wordpress.org/themes/" title="Make your WordPress pretty">Themes</a></li> <li><a href="//wordpress.org/ideas/" title="Share your ideas for improving WordPress">Ideas</a></li> </ul> <ul> <li><a href="//central.wordcamp.org/" title="Find a WordPress event near you">WordCamp</a></li> <li><a href="//wordpress.tv/" title="Videos, tutorials, and WordCamp sessions">WordPress.TV</a></li> <li><a href="//buddypress.org/" title="A set of plugins to transform your WordPress into a social network">BuddyPress</a></li> <li><a href="//bbpress.org/" title="Fast, slick forums built on WordPress">bbPress</a></li> </ul> <ul> <li><a href="//wordpress.com/?ref=wporg-footer" title="Hassle-free WordPress hosting">WordPress.com</a></li> <li><a href="//ma.tt/" title="Co-founder of WordPress, an example of what WordPress can do">Matt</a></li> <li><a href="//wordpress.org/about/privacy/" title="WordPress.org Privacy Policy">Privacy</a></li> <li><a href="https://publiccode.eu/" target="_blank">Public Code</a></li> </ul> <ul> <li> <iframe title="Follow @WordPress on Twitter" allowtransparency="true" frameborder="0" scrolling="no" src="//platform.twitter.com/widgets/follow_button.html?screen_name=WordPress&amp;show_count=false" style="width:135px; height:20px;"></iframe> </li> <li> <iframe title="Like WordPress on Facebook" src="//www.facebook.com/plugins/like.php?app_id=121415197926116&amp;href=http%3A%2F%2Fwww.facebook.com%2Fwordpress&amp;send=false&amp;layout=button_count&amp;width=135&amp;show_faces=false&amp;action=like&amp;colorscheme=light&amp;font=lucida+grande&amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:135px; height:21px;" allowTransparency="true"></iframe> </li> <li> <script src="https://apis.google.com/js/platform.js" async defer></script> <div class="g-plusone" data-size="medium" data-href="https://plus.google.com/+WordPress"></div> </li> </ul> </div> <p class="cip cip-image">Code is Poetry.</p> </div> <script type="text/javascript"> var _qevents = _qevents || []; (function() { var elem = document.createElement('script'); elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") + ".quantserve.com/quant.js"; elem.async = true; elem.type = "text/javascript"; var scpt = document.getElementsByTagName('script')[0]; scpt.parentNode.insertBefore(elem, scpt); })(); </script> <script type="text/javascript"> /** * Handles toggling the navigation menu for small screens and enables TAB key * navigation support for dropdown menus. */ ( function( $ ) { var container, button, menu, links, i, len; container = document.getElementById( 'wporg-header' ); if ( ! container ) { return; } button = container.getElementsByTagName( 'button' )[0]; if ( 'undefined' === typeof button ) { return; } menu = container.getElementsByTagName( 'ul' )[0]; // Hide menu toggle button if menu is empty and return early. if ( 'undefined' === typeof menu ) { button.style.display = 'none'; return; } menu.setAttribute( 'aria-expanded', 'false' ); if ( -1 === menu.className.indexOf( 'nav-menu' ) ) { menu.className += ' nav-menu'; } button.onclick = function() { if ( -1 !== menu.className.indexOf( 'toggled' ) ) { menu.className = menu.className.replace( ' toggled', '' ); button.setAttribute( 'aria-expanded', 'false' ); menu.setAttribute( 'aria-expanded', 'false' ); } else { menu.className += ' toggled'; button.setAttribute( 'aria-expanded', 'true' ); menu.setAttribute( 'aria-expanded', 'true' ); } }; // Get all the link elements within the menu. links = menu.getElementsByTagName( 'a' ); // Each time a menu link is focused or blurred, toggle focus. for ( i = 0, len = links.length; i < len; i++ ) { links[i].addEventListener( 'focus', toggleFocus, true ); links[i].addEventListener( 'blur', toggleFocus, true ); } /** * Sets or removes .focus class on an element. */ function toggleFocus() { var self = this; // Move up through the ancestors of the current link until we hit .nav-menu. while ( -1 === self.className.indexOf( 'nav-menu' ) ) { // On li elements toggle the class .focus. if ( 'li' === self.tagName.toLowerCase() ) { if ( -1 !== self.className.indexOf( 'focus' ) ) { self.className = self.className.replace( ' focus', '' ); } else { self.className += ' focus'; } } self = self.parentElement; } } /** * Toggles `focus` class to allow submenu access on tablets. */ ( function( container ) { var touchStartFn, i, parentLink = container.querySelectorAll( '.menu-item-has-children > a, .page_item_has_children > a' ); if ( 'ontouchstart' in window ) { touchStartFn = function( e ) { var menuItem = this.parentNode, i; if ( ! menuItem.classList.contains( 'focus' ) ) { e.preventDefault(); for ( i = 0; i < menuItem.parentNode.children.length; ++i ) { if ( menuItem === menuItem.parentNode.children[i] ) { continue; } menuItem.parentNode.children[i].classList.remove( 'focus' ); } menuItem.classList.add( 'focus' ); } else { menuItem.classList.remove( 'focus' ); } }; for ( i = 0; i < parentLink.length; ++i ) { parentLink[i].addEventListener( 'touchstart', touchStartFn, false ); } } }( container ) ); } )(); </script> <script type="text/javascript">_qevents.push( { qacct:"p-18-mFEk4J448M"} );</script> <noscript><img src="//pixel.quantserve.com/pixel/p-18-mFEk4J448M.gif" style="display: none;" border="0" height="1" width="1" alt=""/></noscript> <!-- --> <script type="text/javascript" src="//gravatar.com/js/gprofiles.js"></script> <script type="text/javascript"> (function($){ $.ajax({ url : '/lang-guess/lang-guess-ajax.php?uri=%2F', dataType: 'html' }).done(function(data) { if ( ! data ) return; $(document).ready( function() { $('#lang-guess-wrap').html(data); }); }); })(jQuery); </script> </body> </html>
Org
4
kernelrich/h2o-3
h2o-docs/src/front/assets/addthis/s.w.org
[ "Apache-2.0" ]
// Copyright 2021 The Google Research Authors. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #ifndef AUTOML_ZERO_MUTATOR_H_ #define AUTOML_ZERO_MUTATOR_H_ #include <memory> #include <random> #include "algorithm.h" #include "definitions.h" #include "instruction.pb.h" #include "mutator.pb.h" #include "random_generator.h" #include "randomizer.h" #include "gtest/gtest_prod.h" namespace automl_zero { class Mutator { public: Mutator( // What mutations may be applied. See the MutationType enum. const MutationTypeList& allowed_actions, // The probability of mutating each time. double mutate_prob, // Ops that can be introduced into the setup component function. Empty // means the component function won't be mutated at all. const std::vector<Op>& allowed_setup_ops, // Ops that can be introduced into the predict component function. Empty // means the component function won't be mutated at all. const std::vector<Op>& allowed_predict_ops, // Ops that can be introduced into the learn component function. Empty // means the component function won't be mutated at all. const std::vector<Op>& allowed_learn_ops, // Minimum/maximum component function sizes. const IntegerT setup_size_min, const IntegerT setup_size_max, const IntegerT predict_size_min, const IntegerT predict_size_max, const IntegerT learn_size_min, const IntegerT learn_size_max, // The random bit generator. std::mt19937* bit_gen, // The random number generator. RandomGenerator* rand_gen); Mutator(const Mutator& other) = delete; Mutator& operator=(const Mutator& other) = delete; void Mutate(std::shared_ptr<const Algorithm>* algorithm); void Mutate(IntegerT num_mutations, std::shared_ptr<const Algorithm>* algorithm); // Used to create a simple instance for tests. Mutator(); private: friend Mutator SimpleMutator(); FRIEND_TEST(MutatorTest, InstructionIndexTest); FRIEND_TEST(MutatorTest, SetupOpTest); FRIEND_TEST(MutatorTest, PredictOpTest); FRIEND_TEST(MutatorTest, LearnOpTest); FRIEND_TEST(MutatorTest, ComponentFunctionTest_SetupPredictLearn); FRIEND_TEST(MutatorTest, ComponentFunctionTest_Setup); FRIEND_TEST(MutatorTest, ComponentFunctionTest_Predict); FRIEND_TEST(MutatorTest, ComponentFunctionTest_Learn); FRIEND_TEST(MutatorTest, AlterParam); FRIEND_TEST(MutatorTest, RandomizeInstruction); FRIEND_TEST(MutatorTest, RandomizeComponentFunction); FRIEND_TEST(MutatorTest, RandomizeAlgorithm); void MutateImpl(Algorithm* algorithm); // Randomizes a single parameter within one instruction. Keeps the same op. void AlterParam(Algorithm* algorithm); // Randomizes an instruction (all its parameters, including the op). void RandomizeInstruction(Algorithm* algorithm); // Randomizes all the instructions in one of the three component functions. // Does not change the component function size. void RandomizeComponentFunction(Algorithm* algorithm); // Inserts an instruction, making the component function longer. Has // no effect on a maximum-length component function. void InsertInstruction(Algorithm* algorithm); // Inserts an instruction, making the component function shorter. Has // no effect on a minimum-length component function. void RemoveInstruction(Algorithm* algorithm); // First removes an instruction, then inserts an instruction. Has // no effect on a zero-length component function. void TradeInstruction(Algorithm* algorithm); // Randomizes all the instructions in all of the component functions. Does not // change the component function sizes. void RandomizeAlgorithm(Algorithm* algorithm); void InsertInstructionUnconditionally( const Op op, std::vector<std::shared_ptr<const Instruction>>* component_function); void RemoveInstructionUnconditionally( std::vector<std::shared_ptr<const Instruction>>* component_function); // Return operations to introduce into the component functions. Op SetupOp(); Op PredictOp(); Op LearnOp(); // Returns which instruction to mutate. InstructionIndexT InstructionIndex(InstructionIndexT component_function_size); // Returns which component function to mutate. ComponentFunctionT ComponentFunction(); const MutationTypeList allowed_actions_; const double mutate_prob_; const std::vector<Op> allowed_setup_ops_; const std::vector<Op> allowed_predict_ops_; const std::vector<Op> allowed_learn_ops_; const bool mutate_setup_; const bool mutate_predict_; const bool mutate_learn_; const InstructionIndexT setup_size_min_; const InstructionIndexT setup_size_max_; const InstructionIndexT predict_size_min_; const InstructionIndexT predict_size_max_; const InstructionIndexT learn_size_min_; const InstructionIndexT learn_size_max_; std::unique_ptr<std::mt19937> bit_gen_owned_; std::mt19937* bit_gen_; std::unique_ptr<RandomGenerator> rand_gen_owned_; RandomGenerator* rand_gen_; Randomizer randomizer_; }; } // namespace automl_zero #endif // AUTOML_ZERO_MUTATOR_H_
C
4
deepneuralmachine/google-research
automl_zero/mutator.h
[ "Apache-2.0" ]
package urn import ( "fmt" ) var ( errPrefix = "expecting the prefix to be the \"urn\" string (whatever case) [col %d]" errIdentifier = "expecting the identifier to be string (1..31 alnum chars, also containing dashes but not at its start) [col %d]" errSpecificString = "expecting the specific string to be a string containing alnum, hex, or others ([()+,-.:=@;$_!*']) chars [col %d]" errNoUrnWithinID = "expecting the identifier to not contain the \"urn\" reserved string [col %d]" errHex = "expecting the specific string hex chars to be well-formed (%%alnum{2}) [col %d]" errParse = "parsing error [col %d]" ) %%{ machine urn; # unsigned alphabet alphtype uint8; action mark { m.pb = m.p } action tolower { m.tolower = append(m.tolower, m.p - m.pb) } action set_pre { output.prefix = string(m.text()) } action set_nid { output.ID = string(m.text()) } action set_nss { raw := m.text() output.SS = string(raw) // Iterate upper letters lowering them for _, i := range m.tolower { raw[i] = raw[i] + 32 } output.norm = string(raw) } action err_pre { m.err = fmt.Errorf(errPrefix, m.p) fhold; fgoto fail; } action err_nid { m.err = fmt.Errorf(errIdentifier, m.p) fhold; fgoto fail; } action err_nss { m.err = fmt.Errorf(errSpecificString, m.p) fhold; fgoto fail; } action err_urn { m.err = fmt.Errorf(errNoUrnWithinID, m.p) fhold; fgoto fail; } action err_hex { m.err = fmt.Errorf(errHex, m.p) fhold; fgoto fail; } action err_parse { m.err = fmt.Errorf(errParse, m.p) fhold; fgoto fail; } pre = ([uU][rR][nN] @err(err_pre)) >mark %set_pre; nid = (alnum >mark (alnum | '-'){0,31}) %set_nid; hex = '%' (digit | lower | upper >tolower){2} $err(err_hex); sss = (alnum | [()+,\-.:=@;$_!*']); nss = (sss | hex)+ $err(err_nss); fail := (any - [\n\r])* @err{ fgoto main; }; main := (pre ':' (nid - pre %err(err_urn)) $err(err_nid) ':' nss >mark %set_nss) $err(err_parse); }%% %% write data noerror noprefix; // Machine is the interface representing the FSM type Machine interface { Error() error Parse(input []byte) (*URN, error) } type machine struct { data []byte cs int p, pe, eof, pb int err error tolower []int } // NewMachine creates a new FSM able to parse RFC 2141 strings. func NewMachine() Machine { m := &machine{} %% access m.; %% variable p m.p; %% variable pe m.pe; %% variable eof m.eof; %% variable data m.data; return m } // Err returns the error that occurred on the last call to Parse. // // If the result is nil, then the line was parsed successfully. func (m *machine) Error() error { return m.err } func (m *machine) text() []byte { return m.data[m.pb:m.p] } // Parse parses the input byte array as a RFC 2141 string. func (m *machine) Parse(input []byte) (*URN, error) { m.data = input m.p = 0 m.pb = 0 m.pe = len(input) m.eof = len(input) m.err = nil m.tolower = []int{} output := &URN{} %% write init; %% write exec; if m.cs < first_final || m.cs == en_fail { return nil, m.err } return output, nil }
Ragel in Ruby Host
5
lcarva/chains
vendor/github.com/leodido/go-urn/machine.go.rl
[ "Apache-2.0" ]
@media tty {}
CSS
0
mengxy/swc
crates/swc_css_parser/tests/errors/rome/invalid/media/.type/input.css
[ "Apache-2.0" ]
// Copyright 2010-2013 RethinkDB, all rights reserved. #include "containers/object_buffer.hpp" #include "extproc/extproc_pool.hpp" #include "extproc/extproc_spawner.hpp" extproc_pool_t::extproc_pool_t(size_t worker_count) : ct_interruptors(&interruptor), worker_cnt(0), prev_worker_cnt(0), dealloc_timer(DEALLOC_TIMER_FREQ_MS, this), worker_semaphore(worker_count, extproc_spawner_t::get_instance()), dealloc_pumper([this](signal_t *interruptor_) { dealloc_blocking(interruptor_); }) { } extproc_pool_t::~extproc_pool_t() { // Can only be destructed on the same thread we were created on assert_thread(); // Interrupt any and all workers interruptor.pulse(); } cross_thread_semaphore_t<extproc_worker_t> *extproc_pool_t::get_worker_semaphore() { return &worker_semaphore; } signal_t *extproc_pool_t::get_shutdown_signal() { return ct_interruptors.get(); } void extproc_pool_t::on_ring() { dealloc_pumper.notify(); } void extproc_pool_t::dealloc_blocking(UNUSED signal_t *interruptor_) { int cur_worker_cnt = worker_cnt; int dealloc_cnt = (prev_worker_cnt - cur_worker_cnt) / 2; prev_worker_cnt = cur_worker_cnt; for (int i = 0; i < dealloc_cnt; ++i) { object_buffer_t<cross_thread_semaphore_t<extproc_worker_t>::lock_t> worker_lock; worker_lock.create(get_worker_semaphore(), get_shutdown_signal()); if (worker_lock.get()->get_value()->is_process_alive()) { worker_lock.get()->get_value()->kill_process(); } } } void extproc_pool_t::on_worker_acquired() { ++worker_cnt; } void extproc_pool_t::on_worker_released() { --worker_cnt; } extproc_pool_t::ct_interruptors_t::ct_interruptors_t(signal_t *shutdown_signal) : ct_signals(get_num_threads()) { for (int i = 0; i < get_num_threads(); ++i) { ct_signals[i].init(new cross_thread_signal_t(shutdown_signal, threadnum_t(i))); } } signal_t *extproc_pool_t::ct_interruptors_t::get() { return ct_signals[get_thread_id().threadnum].get(); }
C++
4
zadcha/rethinkdb
src/extproc/extproc_pool.cc
[ "Apache-2.0" ]
CREATE TABLE employee( id int PRIMARY KEY, name text, address text, email text, age int );
SQL
4
DBatOWL/tutorials
persistence-modules/spring-data-cassandra-reactive/src/test/resources/cassandra-init.cql
[ "MIT" ]
const styles = ` .sprite-container { height: 100%; width: 100%; } .sprite-svg { height: 100%; width: 100%; background: var(--theme-color); } @-webkit-keyframes shimmer{ 0% { -webkit-transform: translateX(0%); transform: translateX(0%); stroke-width: 2px; } 5%{ opacity:100%; } 35% { stroke-width: 30px; opacity:100%; } 65%{ opacity:100%; } 100% { -webkit-transform: translateX(100%); transform: translateX(100%); stroke-width: 2px; } } @keyframes shimmer{ 0% { -webkit-transform: translateX(0%); transform: translateX(0%); stroke-width: 2px; } 35% { stroke-width: 30px; opacity:100%; } 65%{ opacity:100%; } 100% { -webkit-transform: translateX(100%); transform: translateX(100%); stroke-width: 2px; } } .sprite { opacity:0%; -webkit-animation-name: shimmer; animation-name: shimmer; animation-delay: 1s; width: 2px; -webkit-animation-duration: 2s; animation-duration: 2s; -webkit-animation-timing-function: ease-in-out; animation-timing-function: ease-in-out; -webkit-animation-iteration-count: infinite; animation-iteration-count: infinite; -webkit-animation-direction: normal; animation-direction: normal; } `; export default styles;
TypeScript
4
fcastillo-serempre/freeCodeCamp
client/src/components/helpers/skeleton-styles.ts
[ "BSD-3-Clause" ]
<%inherit file="/base.mako"/> <%def name="javascripts()"> <script> let redirectTo = '${redirect_url}'; if (redirectTo) { console.log("redirecting", redirectTo); window.top.location.href = redirectTo; } </script> </%def> <%def name="javascript_app()"></%def> <%def name="javascripts_entry()"></%def>
Mako
3
rikeshi/galaxy
templates/webapps/galaxy/root/redirect.mako
[ "CC-BY-3.0" ]
<html> <body> ${kcSanitize(msg("emailVerificationBodyCodeHtml",code))?no_esc} </body> </html>
FreeMarker
1
rmartinc/keycloak
themes/src/main/resources/theme/base/email/html/email-verification-with-code.ftl
[ "Apache-2.0" ]
{{<%= yield %><%= @variable_for_layout %>}}
HTML+ERB
1
mdesantis/rails
actionview/test/fixtures/actionpack/layouts/standard.text.erb
[ "MIT" ]
$$ MODE TUSCRIPT LOOP n=1,100 mod=MOD (n,15) SELECT mod CASE 0 PRINT n," FizzBuzz" CASE 3,6,9,12 PRINT n," Fizz" CASE 5,10 PRINT n," Buzz" DEFAULT PRINT n ENDSELECT ENDLOOP
Turing
3
LaudateCorpus1/RosettaCodeData
Task/FizzBuzz/TUSCRIPT/fizzbuzz.tu
[ "Info-ZIP" ]
package TestDWire; module mkTb (); Reg#(int) cnt <- mkReg(0); rule up_counter; cnt <= cnt + 1; if(cnt > 3) $finish; endrule Wire#(int) w1 <- mkDWire(99); // w1 ้ป˜่ฎคๅ€ผ = 99 Reg#(int) r1 <- mkReg(99); // r1 ๅˆๅง‹ๅ€ผ = 99 rule test1 (cnt%2 == 0); // ruleๆกไปถ๏ผšๅชๅœจ่ƒฝๆ•ด้™ค2็š„ๅ‘จๆœŸๆ‰ง่กŒ w1 <= cnt; endrule rule test2 (cnt%2 == 0); // ruleๆกไปถ๏ผšๅชๅœจ่ƒฝๆ•ด้™ค2็š„ๅ‘จๆœŸๆ‰ง่กŒ r1 <= cnt; endrule rule show; $display("cnt=%2d w1=%2d r1=%2d", cnt, w1, r1); endrule endmodule endpackage
Bluespec
3
Xiefengshang/BSV_Tutorial_cn
src/7.WireTest/TestDWire.bsv
[ "MIT" ]
/* Copyright (c) 2017-2019 Netronome Systems, Inc. All rights reserved. * * SPDX-License-Identifier: BSD-2-Clause */ #include <single_ctx_test.uc> #include <global.uc> .reg rand1 .reg rand2 local_csr_rd[PSEUDO_RANDOM_NUMBER] immed[rand1, 0] test_assert_unequal(rand1, 0) local_csr_rd[PSEUDO_RANDOM_NUMBER] immed[rand2, 0] test_assert_unequal(rand1, rand2) test_pass()
UnrealScript
3
pcasconnetronome/nic-firmware
test/datapath/pseudo_random_test.uc
[ "BSD-2-Clause" ]
-- CreateTable CREATE TABLE "Blog" ( "id" INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, "fullname" TEXT );
SQL
4
safareli/prisma
packages/migrate/src/__tests__/fixtures/existing-db-1-warning/prisma/migrations/20201126142527_init/migration.sql
[ "Apache-2.0" ]
/* Copyright 2019 The TensorFlow Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==============================================================================*/ #include <vector> #define EIGEN_USE_THREADS #include "third_party/eigen3/Eigen/Core" #include "third_party/eigen3/Eigen/SparseCholesky" #include "third_party/eigen3/Eigen/SparseCore" #include "third_party/eigen3/Eigen/OrderingMethods" #include "third_party/eigen3/unsupported/Eigen/CXX11/Tensor" #include "tensorflow/core/framework/allocator.h" #include "tensorflow/core/framework/op.h" #include "tensorflow/core/framework/op_kernel.h" #include "tensorflow/core/framework/variant_op_registry.h" #include "tensorflow/core/kernels/sparse/kernels.h" #include "tensorflow/core/kernels/sparse/sparse_matrix.h" #include "tensorflow/core/util/work_sharder.h" namespace tensorflow { // Op to compute the Approximate Minimum Degree (AMD) ordering for a sparse // matrix. // // Accepts a CSRSparseMatrix which may represent a single sparse matrix (rank 2) // or a batch of sparse matrices (rank 3). Each component must be a square // matrix. The input is assumed to be symmetric; only the lower triangular part // of each component matrix is read. The numeric values of the sparse matrix // does not affect the returned AMD ordering; only the sparsity pattern does. // // For each component sparse matrix A, the corresponding output Tensor // represents the AMD ordering of A's rows and columns. The ordering is returned // as a 1D Tensor (per batch) containing the list of indices, i.e. it contains // each of the integers {0, .. N-1} exactly once; where N is the number of rows // of the sparse matrix. The ith element represents the index of the row that // the ith row should map to. // If P represents the permutation matrix corresponding to the indices, then the // matrix: // P^{-1} * A * P // would have a sparse Cholesky decomposition with fewer structural non-zero // elements than the sparse Cholesky decomposition of A itself. class CSROrderingAMDCPUOp : public OpKernel { using SparseMatrix = Eigen::SparseMatrix<int, Eigen::RowMajor>; using Indices = Eigen::Matrix<int, Eigen::Dynamic, Eigen::Dynamic, Eigen::RowMajor>; using IndicesMap = Eigen::Map<Indices>; using ConstIndicesMap = Eigen::Map<const Indices>; public: explicit CSROrderingAMDCPUOp(OpKernelConstruction* c) : OpKernel(c) {} void Compute(OpKernelContext* ctx) final { // Extract the input CSRSparseMatrix. const CSRSparseMatrix* input_matrix; OP_REQUIRES_OK(ctx, ExtractVariantFromInput(ctx, 0, &input_matrix)); const Tensor& dense_shape = input_matrix->dense_shape(); const int rank = dense_shape.dim_size(0); OP_REQUIRES(ctx, rank == 2 || rank == 3, errors::InvalidArgument("sparse matrix must have rank 2 or 3; ", "but dense_shape has size ", rank)); auto dense_shape_vec = dense_shape.vec<int64_t>(); const int64_t num_rows = dense_shape_vec((rank == 2) ? 0 : 1); const int64_t num_cols = dense_shape_vec((rank == 2) ? 1 : 2); OP_REQUIRES(ctx, num_rows == num_cols, errors::InvalidArgument("sparse matrix must be square; got: ", num_rows, " != ", num_cols)); // Allocate the output permutation indices. const int batch_size = input_matrix->batch_size(); TensorShape permutation_indices_shape = (rank == 2) ? TensorShape{num_rows} : TensorShape{batch_size, num_rows}; Tensor permutation_indices(cpu_allocator(), DT_INT32, permutation_indices_shape); ctx->set_output(0, permutation_indices); // Parallelize AMD computation across batches using a threadpool. auto worker_threads = *(ctx->device()->tensorflow_cpu_worker_threads()); const int64_t amd_cost_per_batch = 10 * num_rows * (input_matrix->total_nnz() / batch_size); Shard( worker_threads.num_threads, worker_threads.workers, batch_size, amd_cost_per_batch, [&](int64_t batch_begin, int64_t batch_end) { for (int64_t batch_index = batch_begin; batch_index < batch_end; ++batch_index) { // Define an Eigen SparseMatrix Map to operate on the // CSRSparseMatrix component without copying the data. // The values doesn't matter for computing the ordering, hence we // reuse the column pointers as dummy values. Eigen::Map<const SparseMatrix> sparse_matrix( num_rows, num_rows, input_matrix->nnz(batch_index), input_matrix->row_pointers_vec(batch_index).data(), input_matrix->col_indices_vec(batch_index).data(), input_matrix->col_indices_vec(batch_index).data()); Eigen::PermutationMatrix<Eigen::Dynamic, Eigen::Dynamic, int> permutation_matrix; // Compute the AMD ordering. Eigen::AMDOrdering<int> amd_ordering; amd_ordering(sparse_matrix.template selfadjointView<Eigen::Lower>(), permutation_matrix); // Define an Eigen Map over the allocated output Tensor so that it // can be mutated in place. IndicesMap permutation_map( permutation_indices.flat<int>().data() + batch_index * num_rows, num_rows, 1); permutation_map = permutation_matrix.indices(); } }); } }; REGISTER_KERNEL_BUILDER(Name("SparseMatrixOrderingAMD").Device(DEVICE_CPU), CSROrderingAMDCPUOp); } // namespace tensorflow
C++
5
EricRemmerswaal/tensorflow
tensorflow/core/kernels/sparse/sparse_ordering_amd_op.cc
[ "Apache-2.0" ]
\require "c>=0.2.0"
LilyPond
0
HolgerPeters/lyp
spec/package_setups/includes/[email protected]/inc/include1.ly
[ "MIT" ]
<%def name="make_maze(structure, height, size_scaling)"> % for i in xrange(len(structure)): % for j in xrange(len(structure[0])): % if str(structure[i][j]) == '1': <geom name="block_${i}_${j}" pos='${j*size_scaling} ${i*size_scaling} ${height/2*size_scaling}' size='${0.5*size_scaling} ${0.5*size_scaling} ${height/2*size_scaling}' type='box' material="" contype="1" conaffinity="1" rgba='0.4 0.4 0.4 1' /> % endif % endfor % endfor </%def> <%def name="make_contacts(geom_name, structure)"> % for i in xrange(len(structure)): % for j in xrange(len(structure[0])): % if str(structure[i][j]) == '1': <pair geom1="${geom_name}" geom2="block_${i}_${j}" /> % endif % endfor % endfor </%def> <%def name="find_goal_range(structure, size_scaling)"> <% found = False goal_range = [] for i in xrange(len(structure)): for j in xrange(len(structure[0])): if structure[i][j] == 'g': goal_range.append(j*size_scaling-size_scaling*0.5), goal_range.append(j*size_scaling+size_scaling*0.5), goal_range.append(i*size_scaling-size_scaling*0.5), goal_range.append(i*size_scaling+size_scaling*0.5), found = True break if found: break %> <numeric name="goal_range" data="${" ".join(map(str, goal_range))}" /> </%def> <%def name="find_robot(structure, size_scaling, z_offset=0)"> <% robot_pos = [0, 0, z_offset] found = False for i in xrange(len(structure)): for j in xrange(len(structure[0])): if structure[i][j] == 'r': robot_pos[0] = j*size_scaling robot_pos[1] = i*size_scaling found = True break if found: break %> ${' '.join(map(str, robot_pos))} </%def> <%def name="encode_map(structure, size_scaling)"> <% data = [] data.append(len(structure)) data.append(len(structure[0])) data.append(size_scaling) for i in xrange(len(structure)): for j in xrange(len(structure[0])): if structure[i][j] == 1: data.append(1) elif structure[i][j] == 'g': data.append(2) else: data.append(0) %> ${' '.join(map(str, data))} </%def>
Mako
4
RussellM2020/maml_gps
vendor/mujoco_models/utils.mako
[ "MIT" ]
0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 0 / 1 / 1 0 3 1 3 1 1 1 1 1 1 1 1 0 0 1 1 1 1 / / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 / 0 1 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 2 1 1 1 0 0 0 / 0 / 1 0 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 0 0 0 / 0 0 0 / 0 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 / / . / 1 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 / 0 0 / 4 / 0. 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 2 0 /. 3 . . 0 / 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0. . 0 0 / / 1 / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 / 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 0 0 / 0 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 2 1 1 1 1 1 1 / 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 0 1 1 1 0 / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 1 0 1 / 0 0 0 0 0 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 0 1 0 / 0 - 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 / 1 0 0/ / 0 0 0 / 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 / 6 0 0 0 1 / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 1 0. 4 0 / 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 0 0 0 /. 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 3 0 1 1 1 1 1 0 1 0 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 2 1 0 0 0 1 0 / 0 1 0 1 / 1 0 0 0 / 0 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 1 / / 0 0 0 1 0 / 1 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 0 1 1 0 1 0 1 0 0 0 1 0 0 1 0 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 0 1 1 0 / 0./ / / / 0 . 0 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 0 / . 0 1/ / 0 0 1 1 1 1 1 1 1 1 1 1 1 0 0 0 / 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 1 2 1 0. 2 9 < 2 1 0 / 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 2 0. / 0 : : 2 / 0 / 1 1 1 1 1 1 1 1 1 1 0 0 0 0 / . / 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 2 1 1 3 3 2 1 1 0 1 0 1 1 1 1 0 3 0 0 /. . / / / 0 1 0 0 1 1 1 1 1 1 1 1 0 1 0 0 / / 6 5 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 / / 2 0 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 0 1 3 1 0 1 1 / 1 1 0 1 1 0 1 1 1 1 0 1 0 3 1 1 0 0 0 0 / 2 5/ / 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 0 0 0 / 3= 4 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 1 1 1 1 1 1 0 / 0 1 / 1 1 / 0 1 1 1 1 1 1 1 0 1 0 1 1 1 0 0 0 0 2 / 0 / 0 1 1 0 1 1 1 1 1 1 1 1 1 / 1 0 0 / /1/ 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 / 0 0 0 / 0 0 / 1 / / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 1 0 1 1 1 0 2 1 1 3 1 1 1 / 1 1 0/ 1 0 1 / / 0 / 0 0 0 0 2 1 1 1 1 1 1 1 1 2 1 0 3 0 / 0 0 / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 / 0 0 / / / / 0 0 1 0 1 1 1 1 0 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 2 1 0 1 2 0 0 0 / 0 0 1 1 0 1 1 1 1 1 / 0 0 0 0 0 0 0 0 0 / 0 0 0 1 0 0 1 1 1 1 1 0 0 0 0 1 1 1 1 / 1 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 0 0 0 / 3 1 . / 1 1 0 / / / 0 1 1 1 0 0 1 0 1 0 0 1 0 1 0 0 0 1 0 1 1 0 0 1 0 1 4 / 0 0 / 0 1 1 1 1 1 0 0 0 0 0 / 0 0 / / 0 0 1 0 0 0 1 1 1 1 1 0 1 1 1 1 0 0 0 1 1 0 / 1 . 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 0 0 0 / 4 1 . 0 0 . 0 0 0 0 1 / 0 0 1 0 1 1 0 / 0 0 0 / 1 1 0 0 1 0 0 0 / / 0 06 . 0 0 1 / 1 0 0 1 1 0 0 / 0- / 0- 4 0. 1 . 0 0 0 1 0 1 0 0 1 0 0 0 0 1 1 0 0 1 / 1 1 / 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 1 0 0 0. 0 0 . 0 1 0 0 / 0 0 1 / 1 / 1 / 0 0 0 / / 0 1 0 0 0 1 0 0 1 1 0 0 1 0, . 0 1 1 1 0 1 0 1 0 / / / 0 5 0 / 1: 1 / 0 0 1 0 0 0 1 1 1 1 0 0 0 0 0 0 0 1 1 / 0 1 1 1 0 0 0 1 / 2 1 1 1 0 1 0 1 3 1 / 1 1 1 1 1 1 1 1 1 / 0 1 1 1 0 1 0 0 0 1 2 1 1 1 1 1 0 1 1 0 0 0 / 0 .- / / 2 0 / 0 2 / 0 0 0 0 . / . / 0+ / / 0 1 0 1 1 0 / 0 /- 0 0 0 1 1 0 1 / 1 0 0 0 /- :> 0 . 1 / / 0 0 / / 0 0 1 0 0 1 0 0 0 / / 0 0 0 1 1 0 1 0 0 0 0 / 0 1 / 1 1 1 1 1 1 1 1 1 0 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 0 0 3 1 0 1 1 1 1 1 1 1 0 / 1 1 0 0 0 / 1@ 1.5 1 / 0 1 0 2 / 1 / 2 1 / / /9 / . 0 0 1 1 0 0 0 0. 8 8 , 0 0 1 1 1 1 1 0 0 / 6 4 8 : 1 .. 0 0 0 0 1 0 0 1 0 0 0 0 0 0- 2 2 / / 0 1 / 0 0 1 0 / 0 0 0 0 . 1 1 1 1 1 1 3 1 1 1 1 0 0 1 1 1 1 1 1 1 1 0 / 0 0 1 1 0 1 1 / 1 1 1 1 1 0 1 1 1 1 0 / 0 0 /: 0 /. / 0 / 0 1 0 0 /.EB 1 / 0 4/ 0 1 0 0 0 0 /--/ 5 6 1 . 0 0 / / 1 0 0 2 / 0 9 9 ; 0 0 0 0. 0 1 1 / 1 0 0 1 0 0 0. 5@ 7- . / 0 0 1 / 1 0 0 0 0 0 1 / 2 1 1 1 1 0 0 1 0 0 0 1 1 0 1 1 1 1 1 1 1 1 1 1 0 2 0 0 0 / 1 / 1 1 1 1 1 1 1 1 1 0 1 0 0 /- 0 0 / / / 0 0 0 0-9 4. 2 / 0 2 0 0 0 / 0 0 / / . ;A 0 ,;<, 0 0 1 1 0 1 0 / / / 1 : 4 / 0 0 . 1 / 0 / 1 2 1 0 0 0 0 0.7B 0 / 0 0 / 1 / 0 2 1 . 0 0 0 1 0 1 1 2 1 / 1 1 1 0 0 0 0 1 1 0 1 1 1 1 1 1 0 . 0 0 0 . . 0 0 0 0 1 1 1 1 1 1 1 2 1 1 1 0 2 0 1 0 0 2 . 0 . 0 0 0 . 2 1 0 0 0 / /. 0 0 /-- . 1 5C@ 2 / / . / 0 / 0 0 1 / 1 0 0 0 0 / / 2 / 0 0 0 0 1 0 1 0 0 / . / 0 / 0/ . / 0 0 1 0 0 0 2 1 1 1 1 0 0 0 0 1 1 1 0 1 0 0 0 0 / / / 0 0 1 / 1 1 1 1 1 1 0 . 0 / 3 0 0 0 0 1 1 1 1 1 0 1 1 1 1 1 0 1 0 1 1 1 0 0 0 0 0 0 0 / / / . 0 1 . 3 0 0 0 / 1 4@ 3 0 6CD < 0 / 0 0 0 0 0 0 1 1 / 0 0 0 0 . 0 / 0 1 0 0 0 0 . 1 1 / 0 3 0 / / / 0 0 0 0 2 1 0 1 1 1 1 1 1 1 1 1 0 0 1 1 1 0 1 0 / 0 . 0 1 / 0 0 0 0 1 1 1 1 0 1 0 0 0 / ; 2 0 0 0 1 1 1 1 1 1 4 0 1 1 1 1 / 1 0 1 1 0 0 2 0 0 / /- 5;- 0 0 / 3 1 1 0 / 1 3< 7-/ > E = / 1 0 1 1 1 0 2 0 0 1 0 / 0 / . 0 1 0 0 0 0 1 0 / 1 0 0.? 4. 0 1 0 / 2 0 0 1 0 1 1 1 1 1 1 1 / 0 0 0 1 1 1 1 0 1 0 0. 5= / 0 0 1 / 1 1 1 1 0 3 0 / / // / / 0 0 1 1 1 1 1 1 1 1 1 1 3 1 1 1 / / 0 0-- / 0- / / / 0 / 0 0 0 / 0 / / 1 . /-- . ? @ B3 - 0 ..-,-- 1 0 2 0 / . 3 9--- / 0 1 / 0 0 1 0 / //. / 0 / 1 4 0 1 2 1 0 1 1 1 1 1 1 0 0 0 0 1 1 1 1 1 2 1 0 0 . 3 9 / / 0 0 0 1 1 1 2 1 . 0 0 0 / / 0 0 0 / 2 1 1 1 1 1 1 1 1 1 1 1 1 1 / 1 0. 0 9 / / / 0 0 2 0 0 0 0 1 0 0 0 0 0 / 1 0 0 / 4 ;B 6. 0 0CACE; / 0 0 / 1 3 6$J>E 2 / 0 0 1 / 1 0 1 0 0 / /1 0 / 0 0 1 / 0 0 1 1 1 1 1 1 1 1 0 / 0 0 1 1 1 1 0 1 0 0 / . 0 / 0 0 0 2 / 0 1 0 0 0 / 0 0 0 0 0 0 0 - 1 1 1 1 0 1 1 1 1 1 1 1 1 3 / 0 0 0 0 7 / 0 . 0 0 0 0 0 0 / 1 0 / 0 0 2 0 / 0 1 0- / 0 0 0 0 0 6@"OK@ . 0 0 0 1 4 1 4 2CC / / 0 1 / 1 0 1 1 0 / 0 0 1 1 0 0 / 1 1 1 1 1 1 1 1 1 1 1 0 0 1 0 1 1 1 1 1 0 1 1 0 0 / 0 0 0 0 0 0 1 2 1 1 1 1 0 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 1 0 .. 2 0 0 0 / 0 1 1 1 1 0 1 1 1 0 1 0 /.- / 0 / / / 0 / 0-, 8= 1 / 0 0 0 / / //+ / 2 / 0 0 1 0 0 1 0 2 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 0 1 / 0 0 / 0 0 0 / 0 0 0 0 0 0 / 1 1 1 1 0 / 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 / 1 0 1 0 0 0 , / 0 0 1 . 1 1 / 1 0 2 0 0 . 4G 2 / 0 0 0 1 0 1 2 0 4 2/ 0 0 1 0 0 0 0 1 0 / / / 0 0 1 0 1 1 0 0 1 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 - 1 1 0 /. / / 0 0 / 1 0 0 / 0 0 0 0 0 / / 1 / 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 0 1 0 0 1 // 2 4 . 0 0 0 2 1 1 1 0 1 1 0 0 0 5 / / 0 1 1 1 0 0 0 /// 0 0 0 1 0 1 1 0 0 0 0 0 / 1 0 1 0 1 1 1 0 0 0 1 / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 1 0 0 /9 3 / 0 0 1 2 1 0 . 0 / 0 . 0 0 0 1 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 0 0 1 2 0 / / / 0 1 1 1 1 1 1 1 0 / / 0 .- . 0 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 1 0 / / 0 0 3 / 1 1 1 1 3 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 2 0 1 / 0-(89. / 0 / 0 0 /-. / 0 0 2 / 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 / 0 / // / 1 0 2 1 1 0 1 0 1 0 / . / 0 1 0 1 1 1 0 1 0 1 0 0 1 0 1 1 1 1 0 0 2 1 0 / 1 0 0 . 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 00 / / 0 0 0 0 1 / > 4 0 0 /< / 0 1 / 2 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 0 1 1 1 0 0 0 0 2 / 0 1 1 1 1 1 1 0 1 1 1 1 / 0 1 0 1 1 0 1 / 1 1 1 1 1 0 1 1 1 1 1 1 0 1 / 1 1 0 0 1 3 1 3 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 / / / 0 / / 1 1 / 3(SJ 5 / 0 // 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 0 0 0 0 0 0 0 /- 7B 2 0 0 0 / 0 / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 3 1 0 0 0 0 0 0 0 /, / 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 0 1 1 1 0 0 0 1 0 - 0 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 1 0 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 1 0 0 / 0 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 3 1 0 0 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 0 1 1 1 0 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 0 1 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 0 0 0 0 0 0 / 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 / 0 0 0 0 0 1 1 2 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 / 0 0 0/0 . 0 0 / 2 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 / 0/1%*0/ 0 0 3 1 / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0./<D--/ 0 / 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 0 0 0.,"$0. 1 0 0 / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 01/ 0 / 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 . 1 0 0 / 0 / / / 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 / 1 1 0 / -1. 0 0 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 / 1 3 1 0 / / / / 0 0 2 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 / 1 0 0 0 0 0 1 0 0 / 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 / 0 0 0 0 / 0 0 0 - 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 / 1 0 .. 0 0 0 3 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 / 0 .* , / . 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 0 0 0-01. 0 1 1 0 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 1 0 0 // 0 / 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 1 0 0 . 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 0 0 0 0 0 1 1 / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 0 0 / / 0 / 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 / 1 0 0 / 1 / 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 / 0 0 / / 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 . 0 /2 2 / 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 2 / 0 / 0 1 / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 / / 0 0 2 . 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 / 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 / / 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 / 2 1 / 0 1 0 0 0 / 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 0 1 1 1 1 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 0 0 0 0 0 / 0 0 1 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 0 0 1 0 1 0 0 0 / 0 0 / 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 / 0 0 1 0 0 0 0 / 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 / / / 1 0 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 /+ 0 / 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 / 0 0 / 0 0 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 / / 0 / 1 0 / 0 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 - 0 / / 0. 0 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 / 0 / / / / 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 / 0 0 0 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 / 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 / 2 1 / 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 . 1 0 / 0 0 1 1 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 0 0 1 0 0 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 / 0 1 0 2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 0 0 / 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 2 0 / / / 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 0 0 0 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 . 0 0 1 1 1 / 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 / 0 0 1 / 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 / 1 5 / 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 0 2 1 1 0 0 0 / / 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 / 1 / 0 / . / 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 0 1 1 1 1 0 0 1 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 0 / 0 0 / 0 / 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 1 1 1 0 0 0 1 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 2 1 1 1 1 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 0 / 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 1 1 1 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 1 1 0 1 1 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0 1 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
Octave
0
CristiRO/Monalisa
WEBS/WEB_GRAPH/WEB-INF/classes/lia/web/servlets/map2d/images/map0/map1_2.8/map2_2.8_2.1.oct
[ "Apache-2.0" ]
{{ content|markdown_to_html }}
Twig
1
simonberger/symfony
src/Symfony/Bridge/Twig/Resources/views/Email/zurb_2/notification/content_markdown.html.twig
[ "MIT" ]
# Systemd plugin The systemd plugin provides many useful aliases for systemd. To use it, add systemd to the plugins array of your zshrc file: ```zsh plugins=(... systemd) ``` ## Aliases | Alias | Command | Description | |:-----------------------|:-----------------------------------|:-----------------------------------------------------------------| | `sc-list-units` | `systemctl list-units` | List all units systemd has in memory | | `sc-is-active` | `systemctl is-active` | Show whether a unit is active | | `sc-status` | `systemctl status` | Show terse runtime status information about one or more units | | `sc-show` | `systemctl show` | Show properties of units, jobs, or the manager itself | | `sc-help` | `systemctl help` | Show man page of units | | `sc-list-unit-files` | `systemctl list-unit-files` | List unit files installed on the system | | `sc-is-enabled` | `systemctl is-enabled` | Checks whether any of the specified unit files are enabled | | `sc-list-jobs` | `systemctl list-jobs` | List jobs that are in progress | | `sc-show-environment` | `systemctl show-environment` | Dump the systemd manager environment block | | `sc-cat` | `systemctl cat` | Show backing files of one or more units | | `sc-list-timers` | `systemctl list-timers` | List timer units currently in memory | | **Aliases with sudo** ||| | `sc-start` | `sudo systemctl start` | Start Unit(s) | | `sc-stop` | `sudo systemctl stop` | Stop Unit(s) | | `sc-reload` | `sudo systemctl reload` | Reload Unit(s) | | `sc-restart` | `sudo systemctl restart` | Restart Unit(s) | | `sc-try-restart` | `sudo systemctl try-restart` | Restart Unit(s) | | `sc-isolate` | `sudo systemctl isolate` | Start a unit and its dependencies and stop all others | | `sc-kill` | `sudo systemctl kill` | Kill unit(s) | | `sc-reset-failed` | `sudo systemctl reset-failed` | Reset the "failed" state of the specified units, | | `sc-enable` | `sudo systemctl enable` | Enable unit(s) | | `sc-disable` | `sudo systemctl disable` | Disable unit(s) | | `sc-reenable` | `sudo systemctl reenable` | Reenable unit(s) | | `sc-preset` | `sudo systemctl preset` | Reset the enable/disable status one or more unit files | | `sc-mask` | `sudo systemctl mask` | Mask unit(s) | | `sc-unmask` | `sudo systemctl unmask` | Unmask unit(s) | | `sc-link` | `sudo systemctl link` | Link a unit file into the unit file search path | | `sc-load` | `sudo systemctl load` | Load unit(s) | | `sc-cancel` | `sudo systemctl cancel` | Cancel job(s) | | `sc-set-environment` | `sudo systemctl set-environment` | Set one or more systemd manager environment variables | | `sc-unset-environment` | `sudo systemctl unset-environment` | Unset one or more systemd manager environment variables | | `sc-edit` | `sudo systemctl edit` | Edit a drop-in snippet or a whole replacement file with `--full` | | `sc-enable-now` | `sudo systemctl enable --now` | Enable and start unit(s) | | `sc-disable-now` | `sudo systemctl disable --now` | Disable and stop unit(s) | | `sc-mask-now` | `sudo systemctl mask --now` | Mask and stop unit(s) | ### User aliases You can use the above aliases as `--user` by using the prefix `scu` instead of `sc`. For example: `scu-list-units` will be aliased to `systemctl --user list-units`. ### Unit Status Prompt You can add a token to your prompt in a similar way to the gitfast plugin. To add the token to your prompt, drop `$(systemd_prompt_info [unit]...)` into your prompt (more than one unit may be specified). The plugin will add the following to your prompt for each `$unit`. ```text <prefix><unit>:<active|notactive><suffix> ``` You can control these parts with the following variables: - `<prefix>`: Set `$ZSH_THEME_SYSTEMD_PROMPT_PREFIX`. - `<suffix>`: Set `$ZSH_THEME_SYSTEMD_PROMPT_SUFFIX`. - `<unit>`: name passed as parameter to the function. If you want it to be in ALL CAPS, you can set the variable `$ZSH_THEME_SYSTEMD_PROMPT_CAPS` to a non-empty string. - `<active>`: shown if the systemd unit is active. Set `$ZSH_THEME_SYSTEMD_PROMPT_ACTIVE`. - `<notactive>`: shown if the systemd unit is *not* active. Set `$ZSH_THEME_SYSTEMD_PROMPT_NOTACTIVE`. For example, if your prompt contains `PROMPT='$(systemd_prompt_info dhcpd httpd)'` and you set the following variables: ```sh ZSH_THEME_SYSTEMD_PROMPT_PREFIX="[" ZSH_THEME_SYSTEMD_PROMPT_SUFFIX="]" ZSH_THEME_SYSTEMD_PROMPT_ACTIVE="+" ZSH_THEME_SYSTEMD_PROMPT_NOTACTIVE="X" ZSH_THEME_SYSTEMD_PROMPT_CAPS=1 ``` If `dhcpd` is running, and `httpd` is not, then your prompt will look like this: ```text [DHCPD: +][HTTPD: X] ```
Markdown
4
residwi/ohmyzsh
plugins/systemd/README.md
[ "MIT" ]
' ********** Copyright 2018 Roku, Inc. All Rights Reserved. ********** Library "Roku_Ads.brs" function init() m.top.adPlaying = False m.top.functionName = "runPreplay" ' defined in PreplayTask.brs end function function runPreplay() ' ' 1. Make Preplay request to Uplynk, without adapter ' preplayInfo = loadPreplay() ' ' 2. Load and instanciate Adapter ' adapter = loadAdapter() ' ' 3. Setup adapter with preplayInfo, read by myself ' setupStream(adapter, preplayInfo) ' ' 4. Play content ' runLoop(adapter) end function function loadAdapter() as object ' ' 1. Load and instanciate Adopter ' adapter = RAFX_SSAI({name:"uplynk"}) ' Required, "uplynk" if adapter <> invalid adapter.init({loglevel:20}) ' init() call is required. Parameter is optional. print "RAFX_SSAI version ";adapter["__version__"] end if return adapter end function function setupStream(adapter as object, preplayInfo as object) as void if invalid = adapter or invalid = preplayInfo then return ' ' 3.1 Compose request info ' preplayInfo["type"] = adapter.StreamType.VOD ' Required, VOD ' ' 3.2 Provide adapter the preplay info ' adapter.setStreamInfo(preplayInfo) ' ' 3.3 Configure video node ' vidContent = createObject("RoSGNode", "ContentNode") vidContent.url = preplayInfo.playURL ' returned from Uplynk server vidContent.title = m.top.testConfig.title vidContent.streamformat = "hls" m.top.video.content = vidContent m.top.video.setFocus(true) m.top.video.visible = true m.top.video.EnableCookies() ' ' 3.4 other RAF settings ' adIface = Roku_Ads() adIface.enableAdMeasurements(true) ' Required ' adIface.setContentLength() ' Set app/content specific info ' adIface.setNielsenProgramId() ' Set app/content specific info ' adIface.setNielsenGenre() ' Set app/content specific info ' adIface.setNielsenAppId() ' Set app/content specific info ' adIface.setDebugOutput(true) end function function runLoop(adapter as object) as void if invalid = adapter then return ' ' 4.1 set callbacks ' addCallbacks(adapter) ' Required when not using RAF.stitchedAdHandledEvent() ' ' 4.1 Enable adapter Ad tracking ' port = CreateObject("roMessagePort") ' adapter.enableAds({player:{sgnode:m.top.video, port:port} ' Required }) ' ' 3.3 Observe video node ' m.top.video.observeFieldScoped("position", port) ' Required m.top.video.observeFieldScoped("control", port) m.top.video.observeFieldScoped("state", port) ' ' 3.4 Start playback ' m.top.video.control = "play" while true msg = wait(1000, port) if type(msg) = "roSGNodeEvent" and msg.getField() = "control" and msg.getNode() = m.top.video.id and not m.top.adPlaying and msg.getData() = "stop" or m.top.video = invalid exit while ' video node stopped. quit loop end if ' ' 3.5 Have adapter handle events ' curAd = adapter.onMessage(msg) ' Required if invalid = curAd m.top.video.setFocus(true) end if if "roSGNodeEvent" = type(msg) and "state" = msg.getField() and "finished" = msg.getData() and msg.getNode() = m.top.video.id then exit while ' stream ended. quit loop end if end while m.top.video.unobserveFieldScoped("position") m.top.video.unobserveFieldScoped("control") m.top.video.unobserveFieldScoped("state") end function ' ' Required, Configure callback functions when NOT using RAF.stitchedAdHandledEvent() ' function addCallbacks(adapter) as void adapter.addEventListener(adapter.AdEvent.PODS, podsCallback) adapter.addEventListener(adapter.AdEvent.POD_START, podStartCallback) adapter.addEventListener(adapter.AdEvent.IMPRESSION, adEventCallback) adapter.addEventListener(adapter.AdEvent.FIRST_QUARTILE, adEventCallback) adapter.addEventListener(adapter.AdEvent.MIDPOINT, adEventCallback) adapter.addEventListener(adapter.AdEvent.THIRD_QUARTILE, adEventCallback) adapter.addEventListener(adapter.AdEvent.COMPLETE, adEventCallback) adapter.addEventListener(adapter.AdEvent.POD_END, podEndCallback) ' m.adIndex = 0 m.COMPLETE = adapter.AdEvent.COMPLETE end function function podsCallback(podsInfo as Object) adPods = podsInfo["adPods"] ' New list of adPods found print " Pod count: ";adPods.count() for each adPod in adPods print " Ad count: ";adPod.ads.count(); " renderTime: ";adPod.renderTime; " endTime: ";adPod.renderTime+adPod.duration end for end function function podStartCallback(podInfo as Object) if not m.top.adPlaying m.top.adPlaying = True m.top.video.enableTrickPlay = false end if end function function adEventCallback(adInfo as Object) as Void print "At ";adInfo.position;" from Adopter -- " ; adInfo.event end function function podEndCallback(podInfo as Object) m.top.adPlaying = False m.top.video.enableTrickPlay = true m.top.video.setFocus(true) end function ' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ function loadPreplay() as object ' ' Your App may request Preplay info to Uplynk without using adapter.requestStream() ' prior to this playback task begin. ' However, the preplay response from Uplynk must be provided to ' the adapter.setStreamInfo() as is in this playback task. ' preplayInfo = invalid xfer = createObject("roUrlTransfer") xfer.setUrl(m.top.testConfig.url) ' Required, mediaURL, .json xfer.addHeader("Accept", "application/json") jsnstr = xfer.getToString() if invalid <> jsnstr and "" <> jsnstr preplayInfo = parsejson(jsnstr) end if return preplayInfo end function
Brightscript
5
khangh/samples
advertising/rsgupl/components/PreplayTask.brs
[ "MIT" ]
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> </head> <body> <div> <div> <h1>Open Path in File Manager</h1> <i>Supports: Win, macOS, Linux <span>|</span> Process: Both</i> <div> <p>This demonstrates using the <code>shell</code> module to open the system file manager at a particular location.</p> <p>Clicking the demo button will open your file manager at the root.</p> <div> <button id="open-file-manager">View Demo</button> </div> </div> </div> </div> </body> <script> require('./renderer.js') </script> </html>
HTML
3
lingxiao-Zhu/electron
docs/fiddles/native-ui/external-links-file-manager/path-in-file-manager/index.html
[ "MIT" ]
con func a b = a -> b signature S = sig con funcy a b = a -> b end structure M : S = struct con funcy = func end
UrWeb
3
apple314159/urweb
tests/conargs.ur
[ "BSD-3-Clause" ]
<h1>New Message</h1> <%= render 'form', message: @message %> <%= link_to 'Back', messages_path %>
HTML+ERB
3
mdesantis/rails
actiontext/test/dummy/app/views/messages/new.html.erb
[ "MIT" ]
--TEST-- Union of int|string shouldn't warn if string semantics are used --FILE-- <?php $float = 1.0; function foo(int|string $a): void { var_dump($a); } foo(1.0); foo(1.5); foo(fdiv(0, 0)); foo(10e120); foo(10e500); // Infinity ?> --EXPECTF-- int(1) Deprecated: Implicit conversion from float 1.5 to int loses precision in %s on line %d int(1) string(3) "NAN" string(8) "1.0E+121" string(3) "INF"
PHP
3
NathanFreeman/php-src
Zend/tests/float_to_int/union_int_string_type_arg.phpt
[ "PHP-3.01" ]
#!/bin/bash # This file is a part of Julia. License is MIT: https://julialang.org/license # We need a URL if [[ -z "$1" ]]; then echo "Usage: $0 <julia DMG url>" >&2 exit 1 fi # You need to define these in your environment if [[ -z "${APPLEID}" ]] || [[ -z "${APPLEID_PASSWORD}" ]]; then echo "You must define APPLEID and APPLEID_PASSWORD in your environment!" >&2 exit 1 fi # Use `aws` to download an `s3://` URL, otherwise use `curl` URL="$1" if [[ "$URL" == s3://* ]]; then aws s3 cp "${URL}" . elif [[ "${URL}" == http* ]]; then # Download .dmg curl -L "${URL}" -O else echo "Unknown URL format: '${URL}'" >&2 exit 1 fi # Unpack dmg into our `dmg` folder rm -rf dmg DMG_NAME=$(basename "${URL}") # Copy app over to our `dmg` folder for j in /Volumes/Julia-*; do hdiutil detach "${j}"; done hdiutil mount "${DMG_NAME}" cp -Ra /Volumes/Julia-* dmg # Autodetect APP_NAME and VOL_NAME APP_NAME=$(basename dmg/*.app) VOL_NAME=$(basename /Volumes/Julia-*) if [[ ! -d dmg/${APP_NAME} ]]; then echo "ERORR: Unable to auto-detect APP_NAME, check dmg folder!" >&2 exit 1 fi # Unmount everything again for j in /Volumes/Julia-*; do hdiutil detach "${j}"; done # Run notarization make notarize "DMG_NAME=${DMG_NAME}" "APP_NAME=${APP_NAME}" "VOL_NAME=${VOL_NAME}" # If it was an s3 bucket, auto-upload it if [[ "${URL}" == s3://* ]]; then aws s3 cp --acl public-read "${DMG_NAME}" "${URL}" fi
Shell
4
jonas-schulze/julia
contrib/mac/app/renotarize_dmg.sh
[ "MIT" ]
๏ปฟusing System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Org.Unidal.Cat.Util { class MD5Util { public static string Compute(string str) { string hash = ""; using (System.Security.Cryptography.MD5 md5 = System.Security.Cryptography.MD5.Create()) { hash = BitConverter.ToString( md5.ComputeHash(Encoding.UTF8.GetBytes(str)) ).Replace("-", String.Empty); } return hash; } } }
C#
4
woozhijun/cat
lib/csharp/src/CatClient/Util/MD5Util.cs
[ "Apache-2.0" ]
import Debug "mo:base/Debug"; import Nat "mo:base/Nat"; Debug.print("Nat"); do { Debug.print(" add"); assert(Nat.add(1, Nat.add(2, 3)) == Nat.add(1, Nat.add(2, 3))); assert(Nat.add(0, 1) == 1); assert(1 == Nat.add(1, 0)); assert(Nat.add(0, 1) == Nat.add(1, 0)); assert(Nat.add(1, 2) == Nat.add(2, 1)); }; do { Debug.print(" toText"); assert(Nat.toText(0) == "0"); assert(Nat.toText(1234) == "1234"); };
Modelica
4
CapuzR/prixer-fe
.vessel/base/494824a2787aee24ab4a5888aa519deb05ecfd60/test/natTest.mo
[ "MIT" ]
.master { color: black; font-size: 12px; } .emphasis { @extend .master; font-weight: bold; } .emphasis { @extend .master; font-weight: bold; } .emphasis { @extend .master ; font-weight: bold; } .emphasis { @extend .master ; font-weight: bold; } .emphasis { @extend .master ; font-weight : bold ; } .emphasis { @extend .master ; font-weight : bold ; } %message-shared { border: 1px solid #ccc; padding: 10px; color: #333; } .message { @extend %message-shared; } .message { @extend %message-shared; } .message { @extend %message-shared ; } .message { @extend %message-shared ; } .message { @extend %message-shared; } .message { @extend %message-shared; } a.important { @extend .notice !optional; } a.important { @extend .notice !optional; } a.important { @extend .notice !optional ; } a.important { @extend .notice !optional ; } a.important { @extend .notice !optional ; } a.important { @extend .notice !optional ; } .message-error { @extend .message, .important; } .message-error { @extend .message , .important ; } .message-error { @extend .message , .important ; } .message-error { @extend .message, .important; } .message-error { @extend .message, .important; } .message-error { @extend .message , .important ; } .message-error { @extend .message , .important; } .message-error { @extend .very-very-very-very-very-very-very-very-very-very-very-very-very-long-selector, .very-very-very-very-very-very-very-very-very-very-very-very-very-long-selector; }
CSS
2
fuelingtheweb/prettier
tests/css_atrule/extend.css
[ "MIT" ]
package unit.issues; @:generic class Issue6952TestClass<@:const T> { public function new() {} public function foo() { return T; } } class Issue6952 extends Test { function test() { var x = new Issue6952TestClass<"hello world">(); eq("hello world", x.foo()); var r1:EReg = new Issue6952TestClass<~/a/>().foo(); var r2:EReg = new Issue6952TestClass<~/b/>().foo(); eq(true, r1.match("a")); eq(false, r1.match("b")); eq(false, r2.match("a")); eq(true, r2.match("b")); } }
Haxe
3
Alan-love/haxe
tests/unit/src/unit/issues/Issue6952.hx
[ "MIT" ]
<div class="input_query_container" > <div class="suggestion_full_container"> <div class="suggestion_list_container"> <ul class="suggestion_name_list"></ul> </div> <div class="suggestion_description"></div> </div> <div class="suggestion_description_arrow arrow"></div> <div class="suggestion_description_arrow_overlay arrow"></div> <textarea class="input_query" id="input_query"></textarea> <div class="button_container"> <button class="btn button_query execute_query">Run</button> <button class="btn button_query abort_query">Abort</button> <button class="btn button_query clear_query">Clear</button> </div> </div> <div class="loading_query"> <img src="images/ajax-loader.gif" class="loading_query_img"/> </div>
Handlebars
3
zadcha/rethinkdb
admin/static/handlebars/dataexplorer_input_query.hbs
[ "Apache-2.0" ]
0 reg32_t "dword" 1 code_t "proc*" 2 num32_t "int" 3 uint32_t "unsigned int" 4 num8_t "char" 3 uint32_t "size_t" 5 ptr(TOP) "void*" 6 ptr(struct(0:num32_t,4:ptr(num8_t),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),20:ptr(num8_t),24:ptr(num8_t),28:ptr(num8_t),32:ptr(num8_t),36:ptr(num8_t),40:ptr(num8_t),44:ptr(num8_t),48:ptr(struct(0:ptr(TOP),4:ptr(struct(0:num32_t,4:ptr(reg8_t),8:ptr(reg8_t),12:ptr(reg8_t),16:ptr(reg8_t),20:ptr(reg8_t),24:ptr(reg8_t),28:ptr(reg8_t),32:ptr(reg8_t),36:ptr(reg8_t),40:ptr(reg8_t),44:ptr(reg8_t),48:ptr(TOP),52:ptr(TOP),56:num32_t,60:num32_t,64:num32_t,68:uint16_t,70:int8_t,71:array(num8_t,1),72:ptr(TOP),76:num64_t,84:ptr(TOP),88:ptr(TOP),92:ptr(TOP),96:ptr(TOP),100:uint32_t,104:num32_t,108:array(num8_t,40))),8:num32_t)),52:ptr(struct(0:num32_t,4:ptr(num8_t),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),20:ptr(num8_t),24:ptr(num8_t),28:ptr(num8_t),32:ptr(num8_t),36:ptr(num8_t),40:ptr(num8_t),44:ptr(num8_t),48:ptr(struct(0:ptr(TOP),4:ptr(TOP),8:num32_t)),52:ptr(TOP),56:num32_t,60:num32_t,64:num32_t,68:uint16_t,70:int8_t,71:array(num8_t,1),72:ptr(TOP),76:num64_t,84:ptr(TOP),88:ptr(TOP),92:ptr(TOP),96:ptr(TOP),100:uint32_t,104:num32_t,108:array(num8_t,40))),56:num32_t,60:num32_t,64:num32_t,68:uint16_t,70:int8_t,71:array(num8_t,1),72:ptr(TOP),76:num64_t,84:ptr(TOP),88:ptr(TOP),92:ptr(TOP),96:ptr(TOP),100:uint32_t,104:num32_t,108:array(num8_t,40))) "FILE*" 7 ptr(num8_t) "char*" 3 uint32_t "__gid_t" 3 uint32_t "__uid_t" 8 ptr(struct(0:num32_t,4:num32_t)) "timeval*" 9 ptr(num32_t) "int[]" 10 reg64_t "qword" 9 ptr(num32_t) "__time_t*" 11 ptr(struct(0:array(num32_t,6),24:num32_t,28:struct(0:array(uint32_t,32)))) "__jmp_buf_tag*" 12 ptr(struct(0:num32_t,4:num32_t,8:num32_t,12:num32_t,16:num32_t,20:num32_t,24:num32_t,28:num32_t,32:num32_t,36:num32_t,40:ptr(num8_t))) "tm*" 13 ptr(struct(0:union(code_t,code_t),4:struct(0:array(uint32_t,32)),132:num32_t,136:code_t)) "sigaction*" 14 ptr(struct(0:array(uint32_t,32))) "sigset_t*" 1 code_t "(int -?-> void)*" 15 ptr(ptr(num8_t)) "char**" 16 union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t))) "Union_1" 17 float64_t "double" 18 float80_t "long double" 19 reg16_t "word" 20 ptr(array(reg8_t,16)) "unknown_128*" 21 ptr(array(reg8_t,56)) "unknown_448*" 22 ptr(array(reg8_t,211)) "unknown_1688*" 23 ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))) "Struct_5*" 24 num64_t "long long" 25 array(reg8_t,10) "unknown_80" 26 ptr(struct(0:reg32_t,4:num8_t)) "StructFrag_5*" 27 int32_t "signed int" 28 union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP)))) "Union_14" 29 ptr(struct(0:array(reg8_t,36),36:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP)))))) "StructFrag_48*" 9 ptr(num32_t) "int*" 2 num32_t "__ssize_t" 30 ptr(reg64_t) "qword*" 7 ptr(num8_t) "char[]" 31 ptr(array(reg8_t,58)) "unknown_464*" 32 ptr(struct(0:uint64_t,4:num32_t)) "Struct_115*" 33 ptr(struct(0:union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t))),64:reg32_t,68:reg32_t,96:num32_t,112:ptr(num8_t),116:num8_t)) "Struct_19*" 34 ptr(struct(0:float32_t,4:float32_t,8:float32_t,12:float32_t)) "Struct_11*" 35 float32_t "float" 36 ptr(struct(0:array(reg8_t,20),20:ptr(struct(0:float32_t,4:float32_t,8:float32_t,12:float32_t)))) "StructFrag_46*" 37 ptr(struct(0:ptr(TOP),4:ptr(TOP),112:ptr(TOP))) "Struct_13*" 38 ptr(struct(0:reg16_t,2:num8_t)) "StructFrag_2*" 39 ptr(reg32_t) "dword[]" 39 ptr(reg32_t) "dword*" 40 ptr(struct(8:float32_t,16:num8_t)) "Struct_12*" 41 union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t)),ptr(struct(0:reg32_t,4:num8_t))) "Union_7" 42 ptr(ptr(TOP)) "void**" 43 ptr(array(reg8_t,32)) "unknown_256*" 44 ptr(ptr(struct(0:reg32_t,4:num8_t))) "StructFrag_5**" 45 ptr(struct(0:ptr(num8_t),4:num32_t,8:ptr(num32_t),12:num32_t)) "option*" 15 ptr(ptr(num8_t)) "char[]*" 46 ptr(array(reg8_t,36)) "unknown_288*" 47 ptr(uint64_t) "uintmax_t*" 15 ptr(ptr(num8_t)) "char*[]" 48 ptr(uint32_t) "unsigned int*" 49 ptr(struct(0:struct(0:num32_t,4:ptr(struct(0:ptr(num8_t),4:ptr(TOP),8:array(num8_t,4))),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),20:union(num32_t,ptr(TOP)),24:num32_t,28:code_t,32:code_t,36:ptr(TOP),40:uint32_t),12:reg32_t)) "Struct_62*" 50 ptr(struct(0:struct(0:num32_t,4:ptr(struct(0:ptr(num8_t),4:ptr(TOP),8:array(num8_t,4))),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),20:union(num32_t,ptr(TOP)),24:num32_t,28:code_t,32:code_t,36:ptr(TOP),40:uint32_t),16:reg32_t)) "Struct_45*" 51 ptr(struct(4:reg32_t,8:ptr(TOP),12:ptr(TOP),16:ptr(TOP),24:num32_t,40:num8_t)) "Struct_118*" 52 ptr(struct(0:ptr(num8_t),4:ptr(num8_t),104:reg32_t,112:ptr(num8_t))) "Struct_61*" 53 ptr(struct(0:array(reg8_t,104),104:reg32_t)) "StructFrag_36*" 54 union(ptr(reg32_t),ptr(struct(0:ptr(TOP),4:ptr(num8_t),24:reg32_t,28:uint32_t,32:uint32_t,36:uint32_t,40:reg32_t,44:reg32_t,52:num32_t,56:reg32_t,64:num32_t,68:uint32_t,96:uint32_t,100:uint32_t,104:reg32_t,108:reg32_t,112:ptr(num8_t),116:num8_t,117:num8_t,120:reg32_t,124:num8_t))) "Union_8" 55 ptr(int32_t) "signed int[]" 56 ptr(struct(0:array(reg8_t,36),36:num8_t)) "StructFrag_8*" 57 ptr(struct(0:array(reg8_t,36),36:ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))))) "StructFrag_49*" 58 ptr(struct(0:ptr(TOP),4:ptr(TOP))) "Struct_29*" 59 ptr(struct(4:ptr(TOP),52:uint32_t)) "Struct_70*" 60 ptr(struct(0:reg32_t,4:reg32_t)) "StructFrag_0*" 61 union(ptr(reg32_t),ptr(int32_t)) "Union_23" 62 ptr(struct(0:array(reg8_t,16),16:num8_t)) "StructFrag_41*" 63 ptr(struct(0:ptr(num8_t),4:ptr(num8_t),8:uint32_t,12:ptr(ptr(num8_t)))) "group*" 64 ptr(struct(0:ptr(num8_t),4:ptr(num8_t),8:uint32_t,12:uint32_t,16:ptr(num8_t),20:ptr(num8_t),24:ptr(num8_t))) "passwd*" 65 union(uint32_t,uint32_t) "Union_5" 66 ptr(struct(0:ptr(TOP),4:ptr(num8_t),24:reg32_t,28:uint32_t,32:uint32_t,36:uint32_t,40:reg32_t,44:reg32_t,52:num32_t,56:reg32_t,64:num32_t,68:uint32_t,96:uint32_t,100:uint32_t,104:reg32_t,108:reg32_t,112:ptr(num8_t),116:num8_t,117:num8_t,120:reg32_t,124:num8_t)) "Struct_49*" 67 ptr(struct(0:reg32_t,4:ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))))) "Struct_94*" 68 ptr(struct(0:ptr(TOP),12:reg32_t,32:code_t)) "Struct_35*" 69 ptr(struct(0:ptr(TOP),4:ptr(TOP),8:reg32_t,12:ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))),16:ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))),20:ptr(num8_t),36:ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))))) "Struct_81*" 70 ptr(struct(0:ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))),4:reg32_t)) "Struct_96*" 71 union(ptr(struct(0:ptr(TOP),12:reg32_t,16:reg32_t,20:ptr(struct(0:float32_t,4:float32_t,8:float32_t,12:float32_t)))),ptr(struct(24:code_t,28:code_t)),ptr(struct(0:ptr(TOP),4:ptr(TOP),8:reg32_t,12:ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))),16:ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))),20:ptr(num8_t),36:ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP)))))) "Union_18" 72 struct(0:ptr(TOP)) "Singleton_0" 73 ptr(struct(0:ptr(TOP))) "Singleton_0*" 74 ptr(struct(0:ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))),4:reg32_t,16:reg32_t,32:code_t,36:ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))))) "Struct_99*" 75 ptr(struct(0:ptr(TOP),4:reg32_t,16:reg32_t)) "Struct_93*" 76 ptr(struct(0:reg32_t,4:ptr(TOP))) "Struct_0*" 77 ptr(struct(0:ptr(struct(0:reg32_t,4:ptr(TOP))),4:reg32_t)) "Struct_74*" 78 ptr(struct(0:reg64_t,8:reg32_t)) "StructFrag_9*" 79 ptr(struct(0:array(reg8_t,12),12:reg32_t)) "StructFrag_17*" 80 ptr(struct(0:array(reg8_t,16),16:reg32_t)) "StructFrag_18*" 81 ptr(struct(4:reg32_t,24:code_t)) "Struct_77*" 76 ptr(struct(0:reg32_t,4:ptr(TOP))) "StructFrag_16*" 82 union(ptr(struct(0:array(reg8_t,24),24:code_t)),ptr(struct(4:reg32_t,24:code_t))) "Union_13" 83 ptr(array(reg8_t,46)) "unknown_368*" 84 ptr(array(reg8_t,85)) "unknown_680*" 85 ptr(struct(0:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:reg32_t,4:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:reg32_t,4:ptr(TOP))))))),4:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:reg32_t,4:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:reg32_t,4:ptr(TOP))))))),12:reg32_t,16:reg32_t,20:ptr(struct(0:float32_t,4:float32_t,8:float32_t,12:float32_t,16:num8_t)),32:code_t,36:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:reg32_t,4:ptr(TOP)))))) "Struct_43*" 86 ptr(struct(0:ptr(TOP),12:reg32_t,16:reg32_t,20:ptr(struct(0:float32_t,4:float32_t,8:float32_t,12:float32_t)))) "Struct_30*" 87 ptr(struct(0:ptr(reg32_t),4:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP)))))) "Struct_78*" 88 ptr(ptr(reg32_t)) "dword[]*" 89 ptr(struct(24:code_t,28:code_t)) "Struct_76*" 90 union(ptr(struct(0:array(reg8_t,24),24:code_t)),ptr(struct(24:code_t,28:code_t))) "Union_12" 91 ptr(struct(0:ptr(struct(0:reg32_t,4:ptr(TOP))),8:reg32_t,12:reg32_t,16:reg32_t)) "Struct_33*" 92 ptr(struct(0:ptr(TOP),4:ptr(TOP),8:uint32_t,12:reg32_t,16:reg32_t,20:ptr(struct(8:float32_t,16:num8_t)),24:reg32_t,28:reg32_t,32:reg32_t,36:reg32_t)) "Struct_85*" 93 ptr(struct(0:ptr(TOP),4:ptr(TOP),8:uint32_t,12:reg32_t,20:ptr(struct(8:float32_t,16:num8_t)),24:reg32_t,28:reg32_t,32:reg32_t,36:reg32_t)) "Struct_86*" 94 ptr(struct(0:ptr(struct(0:reg32_t,4:ptr(TOP))),4:reg32_t,12:reg32_t,16:reg32_t)) "Struct_75*" 95 union(ptr(uint64_t),ptr(struct(0:uint64_t,4:reg32_t))) "Union_11" 96 ptr(struct(0:ptr(num8_t),4:ptr(num8_t),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),20:ptr(num8_t),24:ptr(num8_t),28:ptr(num8_t),32:ptr(num8_t),36:ptr(num8_t),40:num8_t,41:num8_t,42:num8_t,43:num8_t,44:num8_t,45:num8_t,46:num8_t,47:num8_t,48:num8_t,49:num8_t,50:num8_t,51:num8_t,52:num8_t,53:num8_t)) "lconv*" 97 union(ptr(num8_t),ptr(struct(0:reg32_t,4:num8_t))) "Union_2" 98 ptr(struct(0:uint64_t,4:reg32_t)) "Struct_10*" 99 ptr(struct(0:array(reg8_t,40),40:num8_t)) "StructFrag_11*" 100 union(ptr(ptr(num8_t)),ptr(struct(0:ptr(num8_t),4:ptr(num8_t),104:reg32_t,112:ptr(num8_t)))) "Union_9" 101 ptr(struct(0:array(reg8_t,10),10:num8_t)) "StructFrag_37*" 102 ptr(struct(0:union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t))),24:reg32_t,64:uint32_t,68:uint32_t,96:num32_t,100:uint32_t,104:reg32_t,112:ptr(num8_t),116:num8_t)) "Struct_60*" 103 ptr(struct(40:ptr(num8_t),44:ptr(num8_t))) "Struct_8*" 104 ptr(struct(0:num32_t,4:ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))),4294967292:reg32_t)) "Struct_37*" 105 array(reg8_t,3) "unknown_24" 1 code_t "(void -> void)*" 106 ptr(array(reg8_t,25)) "unknown_200*" 107 ptr(array(reg8_t,22)) "unknown_176*" 108 ptr(struct(0:num32_t,4:ptr(struct(0:ptr(num8_t),4:ptr(TOP),8:array(num8_t,4))),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),20:union(num32_t,ptr(TOP)),24:num32_t,28:code_t,32:code_t,36:ptr(TOP),40:uint32_t)) "obstack*" 109 array(reg8_t,11) "unknown_88" 110 ptr(struct(0:ptr(struct(0:reg32_t,4:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:reg32_t,4:ptr(TOP)))))),4:ptr(struct(0:reg32_t,4:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:reg32_t,4:ptr(TOP)))))),12:reg32_t,16:reg32_t,20:ptr(struct(0:float32_t,4:float32_t,8:float32_t,12:float32_t,16:num8_t)),32:code_t,36:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:reg32_t,4:ptr(TOP)))))) "Struct_40*" 111 ptr(array(reg8_t,3)) "unknown_24*" 112 ptr(struct(0:struct(0:num32_t,4:ptr(struct(0:ptr(num8_t),4:ptr(TOP),8:array(num8_t,4))),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),20:union(num32_t,ptr(TOP)),24:num32_t,28:code_t,32:code_t,36:ptr(TOP),40:uint32_t),40:num8_t)) "Struct_42*" 48 ptr(uint32_t) "size_t*" 113 ptr(struct(0:ptr(num8_t),4:ptr(num8_t),104:reg32_t,116:num8_t,117:num8_t)) "Struct_17*" 114 ptr(struct(0:ptr(num8_t),4:ptr(num8_t),64:reg32_t,68:num32_t,96:reg32_t,100:reg32_t,116:num8_t,117:num8_t)) "Struct_18*" 115 ptr(struct(0:array(reg8_t,84),84:num32_t)) "StructFrag_12*" 116 union(ptr(num8_t),ptr(struct(0:ptr(num8_t),4:ptr(num8_t),104:reg32_t,116:num8_t,117:num8_t))) "Union_6" 117 ptr(struct(0:array(reg8_t,12),12:ptr(TOP))) "StructFrag_10*" 118 ptr(struct(0:reg64_t,8:ptr(reg32_t))) "StructFrag_35*" 119 ptr(struct(0:union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t))),4:union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t))),64:num32_t,68:num32_t,96:num32_t,100:num32_t,112:ptr(num8_t),116:num8_t,117:num8_t)) "Struct_57*" 120 ptr(struct(0:struct(0:num32_t,4:num32_t),4:reg32_t)) "Struct_44*" 121 ptr(struct(0:struct(0:num32_t,4:ptr(struct(0:ptr(num8_t),4:ptr(TOP),8:array(num8_t,4))),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),20:union(num32_t,ptr(TOP)),24:num32_t,28:code_t,32:code_t,36:ptr(TOP),40:uint32_t),12:ptr(TOP))) "Struct_52*" 122 ptr(struct(0:reg64_t,8:ptr(TOP))) "StructFrag_34*" 123 ptr(struct(12:ptr(TOP),16:reg32_t)) "Struct_58*" 124 ptr(struct(0:reg32_t,40:ptr(num8_t),44:ptr(num8_t))) "Struct_9*" 125 array(reg8_t,32) "unknown_256" 126 union(ptr(reg32_t),struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(array(reg8_t,16)))) "Union_20" 127 ptr(struct(0:reg32_t,8:reg32_t,24:code_t)) "Struct_95*" 128 union(ptr(reg32_t),ptr(struct(0:reg32_t,40:ptr(num8_t),44:ptr(num8_t)))) "Union_22" 129 ptr(array(reg8_t,24)) "unknown_192*" 2 num32_t "__time_t" 130 ptr(struct(0:array(reg8_t,22),22:num8_t)) "StructFrag_43*" 131 union(ptr(struct(0:array(reg8_t,40),40:num8_t)),ptr(struct(0:array(reg8_t,34),34:num8_t))) "Union_26" 132 ptr(struct(0:struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(array(reg8_t,16))),4:ptr(struct(4:ptr(TOP))))) "Struct_87*" 133 struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(array(reg8_t,16))) "Struct_5" 134 ptr(struct(12:reg32_t,24:code_t,36:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP)))))) "Struct_91*" 135 union(ptr(struct(0:array(reg8_t,12),12:reg32_t)),ptr(struct(12:reg32_t,24:code_t,36:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:reg8_t)),8:num8_t,12:ptr(TOP))))))) "Union_19" 136 ptr(struct(0:ptr(struct(0:struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(array(reg8_t,16))),4:ptr(struct(4:ptr(TOP))))),4:reg32_t,12:reg32_t)) "Struct_90*" 137 union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t)),ptr(struct(0:reg32_t,4:reg32_t)),ptr(reg32_t),ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))),ptr(struct(0:array(reg8_t,16),16:num8_t))) "Union_24" 138 uint64_t "uintmax_t" 2 num32_t "__pid_t" 139 ptr(ptr(uint16_t)) "unsigned short**" 140 ptr(union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t)))) "Union_1*" 141 ptr(code_t) "proc**" 142 ptr(ptr(struct(0:ptr(TOP),4:ptr(TOP),112:ptr(TOP)))) "Struct_13**" 143 ptr(ptr(struct(0:ptr(num8_t),4:ptr(num8_t),104:reg32_t,112:ptr(num8_t)))) "Struct_61**" 144 ptr(ptr(struct(0:array(reg8_t,104),104:reg32_t))) "StructFrag_36**" 145 ptr(ptr(struct(0:ptr(num8_t),4:ptr(num8_t),64:reg32_t,68:num32_t,96:reg32_t,100:reg32_t,116:num8_t,117:num8_t))) "Struct_18**" 146 ptr(ptr(struct(0:array(reg8_t,84),84:num32_t))) "StructFrag_12**" 147 ptr(reg16_t) "word*" 148 ptr(ptr(struct(0:union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t))),4:union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t))),64:num32_t,68:num32_t,96:num32_t,100:num32_t,112:ptr(num8_t),116:num8_t,117:num8_t))) "Struct_57**" 149 ptr(ptr(struct(0:union(ptr(num8_t),ptr(struct(0:reg16_t,2:num8_t))),64:reg32_t,68:reg32_t,96:num32_t,112:ptr(num8_t),116:num8_t))) "Struct_19**" 150 union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(TOP))),ptr(struct(0:ptr(TOP))),ptr(struct(0:struct(0:ptr(num8_t),4:ptr(struct(0:reg16_t,2:num8_t)),8:num8_t,12:ptr(array(reg8_t,16))),4:ptr(struct(4:ptr(TOP)))))) "Union_21" 151 union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:reg32_t,4:union(ptr(struct(0:reg32_t,4:ptr(TOP))),ptr(struct(0:reg32_t,4:ptr(TOP))))))) "Union_4" 152 ptr(uint16_t) "unsigned short*" 153 ptr(struct(0:array(reg8_t,16),16:uint32_t)) "StructFrag_51*" 154 ptr(struct(0:reg32_t,4:ptr(num8_t))) "StructFrag_52*" 155 ptr(struct(0:array(reg8_t,235722),235722:reg32_t)) "StructFrag_21*" 156 ptr(struct(0:array(reg8_t,536870908),4294967292:reg32_t)) "StructFrag_22*" 157 ptr(struct(0:array(reg8_t,83868),83868:reg32_t)) "StructFrag_27*" 158 ptr(struct(0:array(reg8_t,904),904:reg32_t)) "StructFrag_28*" 159 ptr(array(reg8_t,128)) "unknown_1024*" 160 array(reg8_t,4096) "unknown_32768" 161 array(reg8_t,135168) "unknown_1081344" 162 array(reg8_t,30) "unknown_240" 163 array(reg8_t,5) "unknown_40" 164 array(reg8_t,29) "unknown_232" 165 array(reg8_t,16) "unknown_128" 166 array(reg8_t,41) "unknown_328" 167 array(reg8_t,7) "unknown_56" 168 array(reg8_t,51) "unknown_408" 169 array(reg8_t,13) "unknown_104" 170 array(reg8_t,27) "unknown_216" 171 array(reg8_t,17) "unknown_136" 172 array(reg8_t,18) "unknown_144" 173 array(reg8_t,36) "unknown_288" 174 array(reg8_t,23) "unknown_184" 175 array(reg8_t,47) "unknown_376" 176 array(reg8_t,142) "unknown_1136" 177 array(reg8_t,53) "unknown_424" 178 array(reg8_t,55) "unknown_440" 179 array(reg8_t,28) "unknown_224" 180 array(reg8_t,90) "unknown_720" 181 array(reg8_t,66) "unknown_528" 182 array(reg8_t,70) "unknown_560" 183 array(reg8_t,85) "unknown_680" 184 array(reg8_t,84) "unknown_672" 185 array(reg8_t,38) "unknown_304" 186 array(reg8_t,21) "unknown_168" 187 array(reg8_t,87) "unknown_696" 188 array(reg8_t,22) "unknown_176" 189 array(reg8_t,46) "unknown_368" 190 array(reg8_t,109) "unknown_872" 191 array(reg8_t,6) "unknown_48" 192 array(reg8_t,57) "unknown_456" 193 array(reg8_t,62) "unknown_496" 194 array(reg8_t,31) "unknown_248" 195 array(reg8_t,40) "unknown_320" 196 array(reg8_t,82) "unknown_656" 197 array(reg8_t,20) "unknown_160" 198 array(reg8_t,25) "unknown_200" 199 array(reg8_t,14) "unknown_112" 200 array(reg8_t,99) "unknown_792" 201 array(reg8_t,19) "unknown_152" 202 array(reg8_t,39) "unknown_312" 203 array(reg8_t,211) "unknown_1688" 204 array(reg8_t,60) "unknown_480" 205 array(reg8_t,26) "unknown_208" 206 array(reg8_t,49) "unknown_392" 207 array(reg8_t,75) "unknown_600" 208 array(reg8_t,50) "unknown_400" 209 array(reg8_t,59) "unknown_472" 210 array(reg8_t,9) "unknown_72" 211 array(reg8_t,64) "unknown_512" 212 array(reg8_t,79) "unknown_632" 213 array(reg8_t,117) "unknown_936" 214 array(reg8_t,43) "unknown_344" 215 array(reg8_t,54) "unknown_432" 216 array(reg8_t,37) "unknown_296" 217 array(reg8_t,131) "unknown_1048" 218 array(reg8_t,68) "unknown_544" 219 array(reg8_t,61) "unknown_488" 220 array(reg8_t,94) "unknown_752" 221 array(reg8_t,35) "unknown_280" 222 array(reg8_t,24) "unknown_192" 223 array(reg8_t,52) "unknown_416" 224 array(reg8_t,12) "unknown_96" 225 array(reg8_t,65) "unknown_520" 226 array(reg8_t,45) "unknown_360" 227 array(reg8_t,72) "unknown_576" 228 array(reg8_t,160) "unknown_1280" 229 array(reg8_t,74) "unknown_592" 230 array(reg8_t,125) "unknown_1000" 231 array(reg8_t,88) "unknown_704" 232 array(reg8_t,121) "unknown_968" 233 array(reg8_t,116) "unknown_928" 234 array(reg8_t,69) "unknown_552" 235 array(reg8_t,242) "unknown_1936" 236 array(reg8_t,33) "unknown_264" 237 array(reg8_t,83) "unknown_664" 238 array(reg8_t,15) "unknown_120" 239 array(reg8_t,129) "unknown_1032" 240 array(reg8_t,58) "unknown_464" 241 array(reg8_t,71) "unknown_568" 242 array(reg8_t,136) "unknown_1088" 243 array(reg8_t,190) "unknown_1520" 244 array(reg8_t,137) "unknown_1096" 245 array(reg8_t,73) "unknown_584" 246 array(reg8_t,77) "unknown_616" 247 array(reg8_t,126) "unknown_1008" 248 array(reg8_t,81) "unknown_648" 249 array(reg8_t,100) "unknown_800" 250 array(reg8_t,44) "unknown_352" 251 array(reg8_t,98) "unknown_784" 252 array(reg8_t,89) "unknown_712" 253 array(reg8_t,92) "unknown_736" 254 array(reg8_t,132) "unknown_1056" 255 array(reg8_t,157) "unknown_1256" 256 array(reg8_t,104) "unknown_832" 257 array(reg8_t,34) "unknown_272" 258 array(reg8_t,280) "unknown_2240" 259 array(reg8_t,67) "unknown_536" 260 array(reg8_t,161) "unknown_1288" 261 array(reg8_t,63) "unknown_504" 262 array(reg8_t,76) "unknown_608" 263 array(reg8_t,56) "unknown_448" 264 array(reg8_t,106) "unknown_848" 265 array(reg8_t,48) "unknown_384" 266 array(reg8_t,107) "unknown_856" 267 array(reg8_t,215) "unknown_1720" 268 array(reg8_t,253) "unknown_2024" 269 array(reg8_t,97) "unknown_776" 270 array(reg8_t,42) "unknown_336" 271 array(reg8_t,113) "unknown_904" 272 array(reg8_t,78) "unknown_624" 273 array(reg8_t,95) "unknown_760" 274 array(reg8_t,111) "unknown_888" 275 array(reg8_t,124) "unknown_992" 276 array(reg8_t,103) "unknown_824" 277 array(reg8_t,96) "unknown_768" 278 array(reg8_t,229) "unknown_1832" 279 array(reg8_t,855) "unknown_6840" 280 array(reg8_t,91) "unknown_728" 281 array(reg8_t,213) "unknown_1704" 282 array(reg8_t,147) "unknown_1176" 283 array(reg8_t,197) "unknown_1576" 284 array(reg8_t,274) "unknown_2192" 285 array(reg8_t,101) "unknown_808" 286 array(reg8_t,179) "unknown_1432" 287 array(reg8_t,201) "unknown_1608" 288 array(reg8_t,145) "unknown_1160" 289 array(reg8_t,118) "unknown_944" 290 array(reg8_t,153) "unknown_1224" 291 array(reg8_t,141) "unknown_1128" 292 array(reg8_t,93) "unknown_744" 293 array(reg8_t,173) "unknown_1384" 294 array(reg8_t,149) "unknown_1192" 295 array(reg8_t,146) "unknown_1168" 296 array(reg8_t,138) "unknown_1104" 297 array(reg8_t,102) "unknown_816" 298 array(reg8_t,80) "unknown_640" 299 array(reg8_t,176) "unknown_1408" 300 array(reg8_t,105) "unknown_840" 301 array(reg8_t,119) "unknown_952" 302 array(reg8_t,112) "unknown_896" 303 array(reg8_t,110) "unknown_880" 304 array(reg8_t,175) "unknown_1400" 305 array(reg8_t,250) "unknown_2000" 306 array(reg8_t,140) "unknown_1120" 307 array(reg8_t,86) "unknown_688" 308 array(reg8_t,122) "unknown_976" 309 array(num8_t,75) "char[75]" 310 array(num8_t,153) "char[153]" 311 array(num8_t,23) "char[23]" 312 array(num8_t,39) "char[39]" 313 array(num8_t,14) "char[14]" 314 array(num8_t,4) "char[4]" 315 array(num8_t,69) "char[69]" 316 array(num8_t,65) "char[65]" 317 array(num8_t,66) "char[66]" 318 struct(0:ptr(num8_t),4:num32_t,8:ptr(num32_t),12:num32_t) "option" 319 array(reg8_t,672) "unknown_5376" 320 array(num8_t,9) "char[9]" 321 array(num8_t,132) "char[132]" 322 array(num8_t,5) "char[5]" 323 array(num8_t,3) "char[3]" 324 array(num8_t,90) "char[90]" 325 array(num8_t,10) "char[10]" 326 array(num8_t,2) "char[2]" 327 array(num8_t,6) "char[6]" 328 array(num8_t,13) "char[13]" 329 array(num8_t,38) "char[38]" 330 array(num8_t,41) "char[41]" 331 array(reg8_t,1120) "unknown_8960" 332 array(num8_t,24) "char[24]" 333 array(num8_t,52) "char[52]" 334 array(num8_t,7) "char[7]" 335 array(num8_t,25) "char[25]" 336 array(num8_t,40) "char[40]" 337 array(num8_t,21) "char[21]" 338 array(ptr(TOP),15) "void*[15]" 339 array(num8_t,51) "char[51]" 340 array(num8_t,17) "char[17]" 341 array(num8_t,29) "char[29]" 342 array(num8_t,36) "char[36]" 1 code_t "(dword,dword -> dword)*" 343 array(reg8_t,220) "unknown_1760" 344 array(num8_t,26) "char[26]" 345 array(ptr(TOP),5) "void*[5]" 346 array(num8_t,195) "char[195]" 347 array(num8_t,8) "char[8]" 348 array(num8_t,33) "char[33]" 349 array(num8_t,144) "char[144]" 350 array(num8_t,271) "char[271]" 351 array(num8_t,582) "char[582]" 352 array(num8_t,360) "char[360]" 353 array(num8_t,419) "char[419]" 354 array(num8_t,61) "char[61]" 355 array(num8_t,245) "char[245]" 356 array(num8_t,269) "char[269]" 357 array(num8_t,422) "char[422]" 358 array(num8_t,426) "char[426]" 359 array(num8_t,359) "char[359]" 360 array(num8_t,370) "char[370]" 361 array(num8_t,441) "char[441]" 362 array(num8_t,197) "char[197]" 363 array(num8_t,488) "char[488]" 364 array(num8_t,531) "char[531]" 365 array(num8_t,142) "char[142]" 366 array(num8_t,358) "char[358]" 367 array(num8_t,337) "char[337]" 368 array(num8_t,45) "char[45]" 369 array(num8_t,54) "char[54]" 370 array(num8_t,286) "char[286]" 371 array(num8_t,152) "char[152]" 372 array(num8_t,12) "char[12]" 373 array(num8_t,11) "char[11]" 374 array(num8_t,27) "char[27]" 375 array(num8_t,16) "char[16]" 376 array(num8_t,18) "char[18]" 377 float16_t "short float" 378 array(num8_t,56) "char[56]" 379 array(reg32_t,127) "dword[127]" 380 array(reg32_t,30) "dword[30]" 381 array(reg32_t,34) "dword[34]" 382 array(reg8_t,499) "unknown_3992" 383 array(num8_t,203) "char[203]" 384 array(num8_t,28) "char[28]" 385 array(num8_t,32) "char[32]" 386 array(num8_t,44) "char[44]" 387 array(num8_t,48) "char[48]" 388 array(num8_t,60) "char[60]" 389 array(num8_t,22) "char[22]" 390 array(num8_t,20) "char[20]" 391 array(num8_t,64) "char[64]" 392 array(num8_t,47) "char[47]" 393 array(ptr(TOP),54) "void*[54]" 394 array(num8_t,37) "char[37]" 395 array(num8_t,81) "char[81]" 396 array(reg8_t,2900) "unknown_23200" 397 array(reg8_t,12140) "unknown_97120" 398 array(reg8_t,3872) "unknown_30976" 1 code_t "(void -?-> dword)*" 399 array(reg8_t,232) "unknown_1856" 400 array(reg8_t,120) "unknown_960" 401 ptr(struct(0:ptr(struct(0:reg32_t,4:reg32_t)),4:ptr(TOP),12:reg32_t,16:reg32_t,20:ptr(struct(0:float32_t,4:float32_t,8:float32_t,12:float32_t,16:num8_t)),32:ptr(TOP),36:ptr(struct(0:reg32_t,4:reg32_t)))) "Struct_1*" 402 ptr(struct(0:ptr(struct(0:ptr(num8_t),4:ptr(num8_t),64:reg32_t,68:reg32_t,112:ptr(num8_t),116:num8_t,117:num8_t)),4:reg32_t)) "Struct_3*" 403 struct(0:num32_t,4:num32_t) "timespec" 404 ptr(struct(0:array(reg8_t,16),16:ptr(TOP))) "StructFrag_3*" 405 ptr(struct(0:num32_t,40:ptr(num8_t),44:ptr(num8_t))) "Struct_7*" 406 array(reg8_t,128) "unknown_1024" 407 struct(0:num32_t,4:ptr(struct(0:ptr(num8_t),4:ptr(TOP),8:array(num8_t,4))),8:ptr(num8_t),12:ptr(num8_t),16:ptr(num8_t),20:union(num32_t,ptr(TOP)),24:num32_t,28:code_t,32:code_t,36:ptr(TOP),40:uint32_t) "obstack" 408 ptr(struct(0:ptr(num8_t),4:ptr(TOP),8:array(num8_t,4))) "_obstack_chunk*" 409 union(ptr(TOP),num32_t) "Union_0" 1 code_t "(_Inout_ void*,int -?-> _obstack_chunk*)*" 1 code_t "(_Inout_ void*,_Inout_ _obstack_chunk* -?-> void)*" 410 array(reg8_t,1932) "unknown_15456" 411 struct(0:array(num32_t,6),24:num32_t,28:struct(0:array(uint32_t,32))) "__jmp_buf_tag" 412 ptr(struct(0:reg64_t,8:num8_t)) "StructFrag_4*" 413 array(reg8_t,256) "unknown_2048"
BlitzBasic
2
matt-noonan/retypd-data
data/dir.decls
[ "MIT" ]
--- nsprpub/configure.orig +++ nsprpub/configure @@ -36,7 +36,7 @@ ac_help="$ac_help --enable-n32 Enable n32 ABI support (IRIX only)" ac_help="$ac_help - --enable-64bit Enable 64-bit support (on certain platforms)" + --disable-64bit Disable 64-bit support (on 64-bit platforms)" ac_help="$ac_help --enable-mdupdate Enable use of certain compilers' mdupdate feature" ac_help="$ac_help @@ -699,7 +699,7 @@ USE_USER_PTHREADS= USE_NSPR_THREADS= USE_N32= -USE_64= +USE_64=maybe USE_CPLUS= USE_IPV6= USE_MDUPDATE= @@ -920,12 +920,44 @@ # Check whether --enable-64bit or --disable-64bit was given. if test "${enable_64bit+set}" = set; then enableval="$enable_64bit" - if test "$enableval" = "yes"; then + if test "$enableval" = "no"; then + USE_64= + else USE_64=1 fi fi +if test "${USE_64}"; then + echo $ac_n "checking for 64-bit OS""... $ac_c" 1>&6 +echo "configure:934: checking for 64-bit OS" >&5 + cat > conftest.$ac_ext <<EOF +#line 936 "configure" +#include "confdefs.h" + +int main() { +int assert[(sizeof(long) == 8) ? 1: -1] +; return 0; } +EOF +if { (eval echo configure:943: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + result="yes" +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + result="no" +fi +rm -f conftest* + echo "$ac_t"""$result"" 1>&6 + if test "$result" = "no" && test "$USE_64" = 1; then + { echo "configure: error: Can't --enable-64bit on non 64-bit platforms" 1>&2; exit 1; } + fi + if test "$result" = "yes"; then + USE_64=1 + fi +fi + # Check whether --enable-mdupdate or --disable-mdupdate was given. if test "${enable_mdupdate+set}" = set; then enableval="$enable_mdupdate" @@ -1067,7 +1099,7 @@ # Extract the first word of "$WHOAMI whoami", so it can be a program name with args. set dummy $WHOAMI whoami; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1071: checking for $ac_word" >&5 +echo "configure:1103: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_WHOAMI'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1138,13 +1170,13 @@ _SAVE_LDFLAGS="$LDFLAGS" echo $ac_n "checking for $host compiler""... $ac_c" 1>&6 -echo "configure:1142: checking for $host compiler" >&5 +echo "configure:1174: checking for $host compiler" >&5 for ac_prog in $HOST_CC gcc cc /usr/ucb/cc do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1148: checking for $ac_word" >&5 +echo "configure:1180: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_HOST_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1190,16 +1222,16 @@ LDFLAGS="$HOST_LDFLAGS" echo $ac_n "checking whether the $host compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:1194: checking whether the $host compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works" >&5 +echo "configure:1226: checking whether the $host compiler ($HOST_CC $HOST_CFLAGS $HOST_LDFLAGS) works" >&5 cat > conftest.$ac_ext <<EOF -#line 1196 "configure" +#line 1228 "configure" #include "confdefs.h" int main() { return(0); ; return 0; } EOF -if { (eval echo configure:1203: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:1235: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_prog_host_cc_works=1 echo "$ac_t""yes" 1>&6 else @@ -1228,7 +1260,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1232: checking for $ac_word" >&5 +echo "configure:1264: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1262,7 +1294,7 @@ # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1266: checking for $ac_word" >&5 +echo "configure:1298: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1292,7 +1324,7 @@ # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1296: checking for $ac_word" >&5 +echo "configure:1328: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1343,7 +1375,7 @@ # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1347: checking for $ac_word" >&5 +echo "configure:1379: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1375,7 +1407,7 @@ fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:1379: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:1411: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. @@ -1386,12 +1418,12 @@ cat > conftest.$ac_ext << EOF -#line 1390 "configure" +#line 1422 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:1395: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1427: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -1417,12 +1449,12 @@ { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:1421: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:1453: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:1426: checking whether we are using GNU C" >&5 +echo "configure:1458: checking whether we are using GNU C" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1431,7 +1463,7 @@ yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1435: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:1467: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -1450,7 +1482,7 @@ ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:1454: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:1486: checking whether ${CC-cc} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1487,7 +1519,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1491: checking for $ac_word" >&5 +echo "configure:1523: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1523,7 +1555,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1527: checking for $ac_word" >&5 +echo "configure:1559: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1555,7 +1587,7 @@ echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:1559: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5 +echo "configure:1591: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5 ac_ext=C # CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. @@ -1566,12 +1598,12 @@ cat > conftest.$ac_ext << EOF -#line 1570 "configure" +#line 1602 "configure" #include "confdefs.h" int main(){return(0);} EOF -if { (eval echo configure:1575: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:1607: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cxx_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -1597,12 +1629,12 @@ { echo "configure: error: installation or configuration problem: C++ compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:1601: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:1633: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6 cross_compiling=$ac_cv_prog_cxx_cross echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6 -echo "configure:1606: checking whether we are using GNU C++" >&5 +echo "configure:1638: checking whether we are using GNU C++" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1611,7 +1643,7 @@ yes; #endif EOF -if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1615: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1647: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gxx=yes else ac_cv_prog_gxx=no @@ -1630,7 +1662,7 @@ ac_save_CXXFLAGS="$CXXFLAGS" CXXFLAGS= echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6 -echo "configure:1634: checking whether ${CXX-g++} accepts -g" >&5 +echo "configure:1666: checking whether ${CXX-g++} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1675,7 +1707,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1679: checking for $ac_word" >&5 +echo "configure:1711: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1710,7 +1742,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1714: checking for $ac_word" >&5 +echo "configure:1746: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1745,7 +1777,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1749: checking for $ac_word" >&5 +echo "configure:1781: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_AS'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1780,7 +1812,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1784: checking for $ac_word" >&5 +echo "configure:1816: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_LD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1815,7 +1847,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1819: checking for $ac_word" >&5 +echo "configure:1851: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1850,7 +1882,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1854: checking for $ac_word" >&5 +echo "configure:1886: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_WINDRES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1885,7 +1917,7 @@ # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1889: checking for $ac_word" >&5 +echo "configure:1921: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1915,7 +1947,7 @@ # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1919: checking for $ac_word" >&5 +echo "configure:1951: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1966,7 +1998,7 @@ # Extract the first word of "cl", so it can be a program name with args. set dummy cl; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:1970: checking for $ac_word" >&5 +echo "configure:2002: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -1998,7 +2030,7 @@ fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:2002: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 +echo "configure:2034: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 ac_ext=c # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. @@ -2009,12 +2041,12 @@ cat > conftest.$ac_ext << EOF -#line 2013 "configure" +#line 2045 "configure" #include "confdefs.h" main(){return(0);} EOF -if { (eval echo configure:2018: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2050: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cc_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -2040,12 +2072,12 @@ { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:2044: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:2076: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 cross_compiling=$ac_cv_prog_cc_cross echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 -echo "configure:2049: checking whether we are using GNU C" >&5 +echo "configure:2081: checking whether we are using GNU C" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2054,7 +2086,7 @@ yes; #endif EOF -if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2058: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2090: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gcc=yes else ac_cv_prog_gcc=no @@ -2073,7 +2105,7 @@ ac_save_CFLAGS="$CFLAGS" CFLAGS= echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 -echo "configure:2077: checking whether ${CC-cc} accepts -g" >&5 +echo "configure:2109: checking whether ${CC-cc} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2113,7 +2145,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2117: checking for $ac_word" >&5 +echo "configure:2149: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2145,7 +2177,7 @@ echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6 -echo "configure:2149: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5 +echo "configure:2181: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5 ac_ext=C # CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. @@ -2156,12 +2188,12 @@ cat > conftest.$ac_ext << EOF -#line 2160 "configure" +#line 2192 "configure" #include "confdefs.h" int main(){return(0);} EOF -if { (eval echo configure:2165: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:2197: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then ac_cv_prog_cxx_works=yes # If we can't run a trivial program, we are probably using a cross compiler. if (./conftest; exit) 2>/dev/null; then @@ -2187,12 +2219,12 @@ { echo "configure: error: installation or configuration problem: C++ compiler cannot create executables." 1>&2; exit 1; } fi echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 -echo "configure:2191: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5 +echo "configure:2223: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5 echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6 cross_compiling=$ac_cv_prog_cxx_cross echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6 -echo "configure:2196: checking whether we are using GNU C++" >&5 +echo "configure:2228: checking whether we are using GNU C++" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2201,7 +2233,7 @@ yes; #endif EOF -if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:2205: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then +if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:2237: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then ac_cv_prog_gxx=yes else ac_cv_prog_gxx=no @@ -2220,7 +2252,7 @@ ac_save_CXXFLAGS="$CXXFLAGS" CXXFLAGS= echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6 -echo "configure:2224: checking whether ${CXX-g++} accepts -g" >&5 +echo "configure:2256: checking whether ${CXX-g++} accepts -g" >&5 if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2254,7 +2286,7 @@ fi fi echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 -echo "configure:2258: checking how to run the C preprocessor" >&5 +echo "configure:2290: checking how to run the C preprocessor" >&5 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= @@ -2269,13 +2301,13 @@ # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. cat > conftest.$ac_ext <<EOF -#line 2273 "configure" +#line 2305 "configure" #include "confdefs.h" #include <assert.h> Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2279: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2311: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -2286,13 +2318,13 @@ rm -rf conftest* CPP="${CC-cc} -E -traditional-cpp" cat > conftest.$ac_ext <<EOF -#line 2290 "configure" +#line 2322 "configure" #include "confdefs.h" #include <assert.h> Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2296: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2328: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -2303,13 +2335,13 @@ rm -rf conftest* CPP="${CC-cc} -nologo -E" cat > conftest.$ac_ext <<EOF -#line 2307 "configure" +#line 2339 "configure" #include "confdefs.h" #include <assert.h> Syntax Error EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2313: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:2345: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then : @@ -2336,7 +2368,7 @@ # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2340: checking for $ac_word" >&5 +echo "configure:2372: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2368,7 +2400,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2372: checking for $ac_word" >&5 +echo "configure:2404: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_AS'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2409,7 +2441,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2413: checking for $ac_word" >&5 +echo "configure:2445: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_AR'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2450,7 +2482,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2454: checking for $ac_word" >&5 +echo "configure:2486: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2491,7 +2523,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2495: checking for $ac_word" >&5 +echo "configure:2527: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_STRIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2532,7 +2564,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2536: checking for $ac_word" >&5 +echo "configure:2568: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_WINDRES'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2600,7 +2632,7 @@ fi echo $ac_n "checking for gcc -pipe support""... $ac_c" 1>&6 -echo "configure:2604: checking for gcc -pipe support" >&5 +echo "configure:2636: checking for gcc -pipe support" >&5 if test -n "$GNU_CC" && test -n "$GNU_CXX" && test -n "$GNU_AS"; then echo '#include <stdio.h>' > dummy-hello.c echo 'int main() { printf("Hello World\n"); return 0; }' >> dummy-hello.c @@ -2615,14 +2647,14 @@ _SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -pipe" cat > conftest.$ac_ext <<EOF -#line 2619 "configure" +#line 2651 "configure" #include "confdefs.h" #include <stdio.h> int main() { printf("Hello World\n"); ; return 0; } EOF -if { (eval echo configure:2626: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:2658: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* _res_gcc_pipe="yes" else @@ -2649,7 +2681,7 @@ if test "$GNU_CC"; then echo $ac_n "checking for visibility(hidden) attribute""... $ac_c" 1>&6 -echo "configure:2653: checking for visibility(hidden) attribute" >&5 +echo "configure:2685: checking for visibility(hidden) attribute" >&5 if eval "test \"`echo '$''{'ac_cv_visibility_hidden'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2673,7 +2705,7 @@ EOF echo $ac_n "checking for visibility pragma support""... $ac_c" 1>&6 -echo "configure:2677: checking for visibility pragma support" >&5 +echo "configure:2709: checking for visibility pragma support" >&5 if eval "test \"`echo '$''{'ac_cv_visibility_pragma'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2726,7 +2758,7 @@ # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:2730: checking for $ac_word" >&5 +echo "configure:2762: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_PERL'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -2983,17 +3015,17 @@ DSO_LDOPTS='-brtl -bnortllib -bM:SRE -bnoentry -bexpall -blibpath:/usr/lib:/lib' ac_safe=`echo "sys/atomic_op.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/atomic_op.h""... $ac_c" 1>&6 -echo "configure:2987: checking for sys/atomic_op.h" >&5 +echo "configure:3019: checking for sys/atomic_op.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 2992 "configure" +#line 3024 "configure" #include "confdefs.h" #include <sys/atomic_op.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:2997: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:3029: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -3150,7 +3182,7 @@ _DEBUG_FLAGS='-gdwarf-2 -O0' MKSHLIB='$(CCC) $(DSO_LDOPTS) -o $@' echo $ac_n "checking for gethostbyaddr in -lbind""... $ac_c" 1>&6 -echo "configure:3154: checking for gethostbyaddr in -lbind" >&5 +echo "configure:3186: checking for gethostbyaddr in -lbind" >&5 ac_lib_var=`echo bind'_'gethostbyaddr | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -3158,7 +3190,7 @@ ac_save_LIBS="$LIBS" LIBS="-lbind $LIBS" cat > conftest.$ac_ext <<EOF -#line 3162 "configure" +#line 3194 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -3169,7 +3201,7 @@ gethostbyaddr() ; return 0; } EOF -if { (eval echo configure:3173: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:3205: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -3295,7 +3327,7 @@ MKSHLIB='$(CC) -o $@ $(DSO_LDOPTS)' DSO_CFLAGS=-fPIC - DSO_LDOPTS='-shared -Wl,-soname,$(@:$(OBJDIR)/%.so=%.so)' + DSO_LDOPTS='-shared -Wl,-soname,$(SONAME)' STRIP="$STRIP -d" case "$target_os" in bsdi4.2* | bsdi4.3* | bsdi5.*) @@ -3524,7 +3556,7 @@ fi MKSHLIB='$(CC) $(DSO_LDOPTS) -o $@' DSO_CFLAGS=-fPIC - DSO_LDOPTS='-shared -Wl,-soname -Wl,$(notdir $@)' + DSO_LDOPTS='-shared -Wl,-soname -Wl,$(SONAME)' MDCPUCFG_H=_freebsd.cfg PR_MD_CSRCS=freebsd.c ;; @@ -3554,7 +3586,7 @@ #define _USE_BIG_FDS 1 EOF - DSO_LDOPTS='-b +h $(notdir $@)' + DSO_LDOPTS='-b +h $(SONAME)' PR_MD_CSRCS=hpux.c if test "$OS_TEST" = "ia64"; then DLL_SUFFIX=so @@ -3908,7 +3940,7 @@ PR_MD_CSRCS=linux.c MKSHLIB='$(CC) $(DSO_LDOPTS) -o $@' DSO_CFLAGS=-fPIC - DSO_LDOPTS='-shared -Wl,-soname -Wl,$(notdir $@)' + DSO_LDOPTS='-shared -Wl,-soname -Wl,$(SONAME)' _OPTIMIZE_FLAGS=-O2 _DEBUG_FLAGS="-g -fno-inline" # most people on linux use gcc/gdb, and that # combo is not yet good at debugging inlined @@ -4314,7 +4346,7 @@ else OBJECT_FMT=ELF DLL_SUFFIX=so - DSO_LDOPTS='-shared -Wl,-soname,$(notdir $@)' + DSO_LDOPTS='-shared -Wl,-soname,$(SONAME)' fi fi @@ -4405,7 +4437,7 @@ MDCPUCFG_H=_nto.cfg PR_MD_CSRCS=nto.c - MKSHLIB='$(CC) $(DSO_LDOPTS) -Wl,-soname -Wl,$(notdir $@) -o $@' + MKSHLIB='$(CC) $(DSO_LDOPTS) -Wl,-soname -Wl,$(SONAME) -o $@' DSO_CFLAGS=-fPIC DSO_LDOPTS=-shared OS_LIBS="$OS_LIBS -lsocket" @@ -4504,17 +4536,17 @@ _OPTIMIZE_FLAGS="$_OPTIMIZE_FLAGS -Olimit 4000" ac_safe=`echo "machine/builtins.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for machine/builtins.h""... $ac_c" 1>&6 -echo "configure:4508: checking for machine/builtins.h" >&5 +echo "configure:4540: checking for machine/builtins.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 4513 "configure" +#line 4545 "configure" #include "confdefs.h" #include <machine/builtins.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4518: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4550: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -4564,7 +4596,7 @@ EOF fi - DSO_LDOPTS='-shared -all -expect_unresolved "*" -soname $(notdir $@)' + DSO_LDOPTS='-shared -all -expect_unresolved "*" -soname $(SONAME)' MDCPUCFG_H=_osf1.cfg PR_MD_CSRCS=osf1.c ;; @@ -4687,7 +4719,7 @@ _OPTIMIZE_FLAGS='-O -F Olimit,4000' fi - DSO_LDOPTS='-G -z defs -h $(@:$(OBJDIR)/%.so=%.so)' + DSO_LDOPTS='-G -z defs -h $(SONAME)' if test "$OS_RELEASE" = "5.43"; then cat >> confdefs.h <<\EOF @@ -4773,10 +4805,10 @@ if `$CC -print-prog-name=ld` -v 2>&1 | grep -c GNU >/dev/null; then GCC_USE_GNU_LD=1 fi - DSO_LDOPTS='-shared -Wl,-h,$(notdir $@),-z,combreloc,-z,defs,-z,ignore' + DSO_LDOPTS='-shared -Wl,-h,$(SONAME),-z,combreloc,-z,defs,-z,ignore' else DSO_CFLAGS=-KPIC - DSO_LDOPTS='-G -h $(notdir $@) -z combreloc -z defs -z ignore' + DSO_LDOPTS='-G -h $(SONAME) -z combreloc -z defs -z ignore' fi if test -n "$GNU_CC"; then CFLAGS="$CFLAGS -Wall" @@ -5084,7 +5116,7 @@ ;; *) echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6 -echo "configure:5088: checking for dlopen in -ldl" >&5 +echo "configure:5120: checking for dlopen in -ldl" >&5 ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5092,7 +5124,7 @@ ac_save_LIBS="$LIBS" LIBS="-ldl $LIBS" cat > conftest.$ac_ext <<EOF -#line 5096 "configure" +#line 5128 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ /* We use char because int might match the return type of a gcc2 @@ -5103,7 +5135,7 @@ dlopen() ; return 0; } EOF -if { (eval echo configure:5107: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5139: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_lib_$ac_lib_var=yes" else @@ -5120,17 +5152,17 @@ echo "$ac_t""yes" 1>&6 ac_safe=`echo "dlfcn.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dlfcn.h""... $ac_c" 1>&6 -echo "configure:5124: checking for dlfcn.h" >&5 +echo "configure:5156: checking for dlfcn.h" >&5 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 5129 "configure" +#line 5161 "configure" #include "confdefs.h" #include <dlfcn.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:5134: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5166: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` if test -z "$ac_err"; then rm -rf conftest* @@ -5163,13 +5195,13 @@ if test $ac_cv_prog_gcc = yes; then echo $ac_n "checking whether ${CC-cc} needs -traditional""... $ac_c" 1>&6 -echo "configure:5167: checking whether ${CC-cc} needs -traditional" >&5 +echo "configure:5199: checking whether ${CC-cc} needs -traditional" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gcc_traditional'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_pattern="Autoconf.*'x'" cat > conftest.$ac_ext <<EOF -#line 5173 "configure" +#line 5205 "configure" #include "confdefs.h" #include <sgtty.h> Autoconf TIOCGETP @@ -5187,7 +5219,7 @@ if test $ac_cv_prog_gcc_traditional = no; then cat > conftest.$ac_ext <<EOF -#line 5191 "configure" +#line 5223 "configure" #include "confdefs.h" #include <termio.h> Autoconf TCGETA @@ -5211,12 +5243,12 @@ for ac_func in lchown strerror do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:5215: checking for $ac_func" >&5 +echo "configure:5247: checking for $ac_func" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 5220 "configure" +#line 5252 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -5239,7 +5271,7 @@ ; return 0; } EOF -if { (eval echo configure:5243: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5275: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ac_func=yes" else @@ -5280,7 +5312,7 @@ if test -z "$GNU_CC"; then echo $ac_n "checking for +Olit support""... $ac_c" 1>&6 -echo "configure:5284: checking for +Olit support" >&5 +echo "configure:5316: checking for +Olit support" >&5 if eval "test \"`echo '$''{'ac_cv_hpux_usable_olit_option'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5319,7 +5351,7 @@ *) echo $ac_n "checking for pthread_create in -lpthreads""... $ac_c" 1>&6 -echo "configure:5323: checking for pthread_create in -lpthreads" >&5 +echo "configure:5355: checking for pthread_create in -lpthreads" >&5 echo " #include <pthread.h> void *foo(void *v) { return v; } @@ -5341,7 +5373,7 @@ echo "$ac_t""no" 1>&6 echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6 -echo "configure:5345: checking for pthread_create in -lpthread" >&5 +echo "configure:5377: checking for pthread_create in -lpthread" >&5 echo " #include <pthread.h> void *foo(void *v) { return v; } @@ -5363,7 +5395,7 @@ echo "$ac_t""no" 1>&6 echo $ac_n "checking for pthread_create in -lc_r""... $ac_c" 1>&6 -echo "configure:5367: checking for pthread_create in -lc_r" >&5 +echo "configure:5399: checking for pthread_create in -lc_r" >&5 echo " #include <pthread.h> void *foo(void *v) { return v; } @@ -5385,7 +5417,7 @@ echo "$ac_t""no" 1>&6 echo $ac_n "checking for pthread_create in -lc""... $ac_c" 1>&6 -echo "configure:5389: checking for pthread_create in -lc" >&5 +echo "configure:5421: checking for pthread_create in -lc" >&5 echo " #include <pthread.h> void *foo(void *v) { return v; } @@ -5530,7 +5562,7 @@ rm -f conftest* ac_cv_have_dash_pthread=no echo $ac_n "checking whether ${CC-cc} accepts -pthread""... $ac_c" 1>&6 -echo "configure:5534: checking whether ${CC-cc} accepts -pthread" >&5 +echo "configure:5566: checking whether ${CC-cc} accepts -pthread" >&5 echo 'int main() { return 0; }' | cat > conftest.c ${CC-cc} -pthread -o conftest conftest.c > conftest.out 2>&1 if test $? -eq 0; then @@ -5553,7 +5585,7 @@ ac_cv_have_dash_pthreads=no if test "$ac_cv_have_dash_pthread" = "no"; then echo $ac_n "checking whether ${CC-cc} accepts -pthreads""... $ac_c" 1>&6 -echo "configure:5557: checking whether ${CC-cc} accepts -pthreads" >&5 +echo "configure:5589: checking whether ${CC-cc} accepts -pthreads" >&5 echo 'int main() { return 0; }' | cat > conftest.c ${CC-cc} -pthreads -o conftest conftest.c > conftest.out 2>&1 if test $? -eq 0; then @@ -5980,6 +6012,7 @@ config/nsprincl.mk config/nsprincl.sh config/nspr-config +config/nspr.pc lib/Makefile lib/ds/Makefile lib/libc/Makefile @@ -6097,7 +6130,7 @@ s%\]%\\&%g s%\$%$$%g EOF -DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' ' | tr '\015' ' '` +DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' '` rm -f conftest.defs
Darcs Patch
4
crystalfontz/openembedded
recipes/mozilla/nspr-4.7.1/99_configure.dpatch
[ "MIT" ]
%include agda.fmt \AgdaHide{ \begin{code} module Issue854.Terms where open import Data.Nat open import Data.List infixr 3 _to_ \end{code} } \subsection{Terms} \label{terms} \begin{code} mutual data VTerm : Set where var : (n : โ„•) โ†’ VTerm con : (n : โ„•)(p : VTerm) โ†’ VTerm thunk : (c : CTerm) โ†’ VTerm โŸจโŸฉ : VTerm _,_ : (u v : VTerm) โ†’ VTerm ๐Ÿ˜-elim : (v : VTerm) โ†’ VTerm ฮนโ‚ ฮนโ‚‚ : (v : VTerm) โ†’ VTerm data CTerm : Set where return force : (v : VTerm) โ†’ CTerm _to_ : (c k : CTerm) โ†’ CTerm letโ€ฒ_be_ split : (v : VTerm)(k : CTerm) โ†’ CTerm โŸจโŸฉ : CTerm ฦ›_ : (c : CTerm) โ†’ CTerm _ยท_ : (f : CTerm)(v : VTerm) โ†’ CTerm op : (n : โ„•) โ†’ CTerm iter : (ฯ† : List CTerm)(v : VTerm) โ†’ CTerm run : (ฯ† : List CTerm)(c : CTerm) โ†’ CTerm _,_ : (c d : CTerm) โ†’ CTerm ฯ€โ‚ ฯ€โ‚‚ : (p : CTerm) โ†’ CTerm \end{code}
Literate Agda
3
shlevy/agda
test/LibSucceed/Issue854/Terms.lagda
[ "BSD-3-Clause" ]
package jadx.tests.integration.synchronize; import org.junit.jupiter.api.Test; import jadx.tests.api.SmaliTest; import static jadx.tests.api.utils.assertj.JadxAssertions.assertThat; public class TestSynchronized4 extends SmaliTest { // @formatter:off /* public boolean test(int i) { synchronized (this.obj) { if (isZero(i)) { return call(obj, i); } System.out.println(); return getField() == null; } } */ // @formatter:on @Test public void test() { assertThat(getClassNodeFromSmali()) .code() .containsOne("synchronized (this.obj) {") .containsOne("return call(this.obj, i);") .containsOne("return getField() == null;"); } }
Java
4
Dev-kishan1999/jadx
jadx-core/src/test/java/jadx/tests/integration/synchronize/TestSynchronized4.java
[ "Apache-2.0" ]
label ccc0041: play bgm "bgm/bgm003.ogg" call gl(0,"bgcc0012a") call vsp(0,1) call vsp(1,0) with wipeleft "ไฟๅฅๅฎคใ€‚" "็œผ้กใงๅทจไนณใฎ้คŠ่ญทๆ•™ๅธซ๏ผˆ็”ทๅฃ่ชฟใงใ‚ใ‚‹ใ“ใจใŒๅคšใ„๏ผ‰ใŒๅฟ…่ฆใช็ฉบ้–“ใงใ‚ใ‚‹ใ€‚" "็œผ้กใงๅทจไนณใฎ้คŠ่ญทๆ•™ๅธซใŒใ„ใชใ„ไฟๅฅๅฎคใชใฉใ€ใƒใ‚ฟใฎไน—ใฃใฆใ„ใชใ„ไธญใƒˆใƒญใฎใ‚ˆใ†ใชใ‚‚ใฎใ ใ€‚" "ใ ใŒใ•ใ™ใŒใซไปŠใ€็œผ้กใงๅทจไนณใฎ้คŠ่ญทๆ•™ๅธซใ‚’ๆœŸๅพ…ใ™ใ‚‹ใ“ใจใฏใงใใชใ„ใ€‚" call gl(1,"TCHY0000b|tchy000x") call gp(1,t=center)#x=180 call vsp(1,1) with dissolve "ใ‹ใ‚ใ‚Šใซๆ›œๅญใกใ‚ƒใ‚“ใŒใ„ใŸใ€‚" ๅคชไธ€ "ใ€Œ็œผ้กใคใ‘ใฆ็™ฝ่กฃ็€ใฆใ‚ˆใ€" call gl(1,"TCHY0001b|tchy000x") call vsp(1,1) with dissolve voice "vfCCC0041you000" ๆ›œๅญ "ใ€Œโ€ฆโ€ฆใ†ใ‚“ใ€" hide pic1 with dissolve "ๅฏๅฐใฎๆ–นใซๆถˆใˆใ‚‹ใ€‚" "ๆˆปใฃใฆใใ‚‹ใจ็œผ้กใ‚’ใ—ใฆใ„ใŸใ€‚" "่ชฟ้”ใŒใฏใ‚„ใ™ใŽใŸใ€‚" "ใ—ใ‹ใ‚‚ใชใœใƒ™ใƒƒใƒ‰ใ‹ใ‚‰โ€ฆโ€ฆใ€‚" "ใคใ„ใงใ€้คŠ่ญทๆ•™่ซญใŒไฝฟใ†ใƒญใƒƒใ‚ซใƒผใซใ€‚" "ไธญใซใฏ็™ฝ่กฃใŒใ‚ใฃใŸใ€‚" "ๆˆปใฃใฆใใ‚‹ใ€‚" "็™บๆณจ้€šใ‚ŠๅฎŒ็ดใ€‚" "ๆ‰€่ฆๆ™‚้–“๏ผ‘๏ผ็ง’ใŸใ‚‰ใšใ€‚" voice "vfCCC0041you001" ๆ›œๅญ "ใ€Œโ€ฆโ€ฆใ“ใ‚Œใงใ„ใ„๏ผŸใ€" ๅคชไธ€ "ใ€Œใƒ†ใƒณใƒ—ใƒซใƒˆใƒณยทใƒšใƒƒใ‚ฏไปฅไธŠใ€" voice "vfCCC0041you002" ๆ›œๅญ "ใ€Œใใ†ใ€" "่ชใ‚ใชใ„ใ‚ใ‘ใซใฏใ„ใ‹ใชใ„ใ€‚" "ใƒใ‚นใƒˆใ‚‚ใพใ‚ใ€ใชใ‹ใชใ‹ใฎใ‚‚ใฎใ ใ€‚" "็™ฝ่กฃใฎ้คŠ่ญทๆ•™่ซญใจใ—ใฆใฎๆ›œๅญใกใ‚ƒใ‚“ใ€‚" voice "vfCCC0041you003" "ๆ›œๅญๅ…ˆ็”Ÿใ€Ž่„ฑใ„ใงใ€‚่จบๅฏŸใงใใชใ„ใ‹ใ‚‰ใ€" voice "vfCCC0041you004" "ๆ›œๅญๅ…ˆ็”Ÿใ€Žไธ‹ใ‚‚ใ€" voice "vfCCC0041you005" "ๆ›œๅญๅ…ˆ็”Ÿใ€Žๆ€งๆฉŸ่ƒฝใ‚’่จบๅฏŸใ™ใ‚‹ใ‹ใ‚‰ใ€" voice "vfCCC0041you006" "ๆ›œๅญๅ…ˆ็”Ÿใ€Žโ€ฆโ€ฆใ ใ‚ใ€‚็งใซ่งฆใ‚ŒใŸใ‚‰ใ€ใŸใ ใ˜ใ‚ƒใŠใ‹ใชใ„ใ€" voice "vfCCC0041you007" "ๆ›œๅญๅ…ˆ็”Ÿใ€Žโ€ฆโ€ฆใใ†โ€ฆโ€ฆใ˜ใฃใจใ—ใฆใฆโ€ฆโ€ฆใ„ใ„ๅญโ€ฆโ€ฆใ€" ๅคชไธ€ "ใ€Œใ†ใ€ใ†ใ†โ€ฆโ€ฆใ€" "ใ‘ใฃใ“ใ†ใ„ใ„ใ‚“ใ˜ใ‚ƒใชใ„ใ‹ใ€‚" voice "vfCCC0041you008" ๆ›œๅญ "ใ€Œๅคชไธ€ใฏไปŠใ€็งใงๆทซใ‚‰ใชๅฆ„ๆƒณใ‚’ใ—ใฆใ„ใ‚‹ใจ่ฆ‹ใŸใ€" ๅคชไธ€ "ใ€Œโ€ฆโ€ฆใ€" "ๆ•—ๅŒ—ๆ„Ÿใ€‚" "ใคใใ‚ใ„ใŒ้•ทใ„ใจใ“ใ‚Œใ ใ‹ใ‚‰ใ€‚" ๅคชไธ€ "ใ€Œใ‚‚ใ†ใ„ใ„ใ‚ˆใ‚ณใ‚นใƒ—ใƒฌใ€" voice "vfCCC0041you009" ๆ›œๅญ "ใ€Œใ‚ณใ‚นใƒ—ใƒฌใ‚’ใ•ใ›ใ‚‰ใ‚Œใฆใ„ใŸโ€ฆโ€ฆใ€" "ใฝใคใ‚Šใจๅ‘Ÿใใ€‚" call gl(1,"TCHY0000b|tchy000x") call gp(1,t=center) call vsp(1,1) with dissolve "ใ„ใคใ‚‚ใฎๅฝผๅฅณใซๆˆปใ‚‹ใ€‚" "ใ‚„ใฃใฑใ‚Šใƒกใ‚ฌใƒใฏใƒ™ใƒƒใƒ‰ใซๆˆปใ—ใซ่กŒใฃใŸใ€‚" ๅคชไธ€ "ใ€Œใงใ€ใฉใ†ใ—ใฆใ“ใ“ใซ๏ผŸใ€" call gl(1,"TCHY0001b|tchy000x") call vsp(1,1) with dissolve voice "vfCCC0041you010" ๆ›œๅญ "ใ€Œโ€ฆโ€ฆๅฎฎๆพ„ใŒๆ€ชๆˆ‘ใ‚’ใ€" stop bgm "ใƒ™ใƒƒใƒ‰ใ‚’ใฎใžใใ“ใ‚€ใ€‚" play bgm "bgm/bgm012.ogg" call gl(0,"evcc0006") call vsp(0,1) call vsp(1,0) with ImageDissolve("sys/EFMSK_22_MSK.bmp",time=1) ๅคชไธ€ "ใ€Œใฟใฟๅ…ˆ่ผฉ๏ผŸใ€" voice "vfCCC0041you011" ๆ›œๅญ "ใ€Œใ‚‚ใ†ๅฏใฆใ„ใ‚‹ใ‹ใ‚‰ใ€" ๅคชไธ€ "ใ€Œโ€ฆโ€ฆๆ‰‹ๅฝ“ใฏ๏ผŸใ€" voice "vfCCC0041you012" ๆ›œๅญ "ใ€Œใ—ใฆใŠใ„ใŸใ€" "ใพใ˜ใพใ˜ใจ่ฆ‹ใคใ‚ใ‚‹ใ€‚" ๅคชไธ€ "ใ€Œ็ใ—ใ„โ€ฆโ€ฆ่‡ช็™บ็š„ใซไบบใฎใŸใ‚ใซใชใ‚‹ใ“ใจใ‚’ใ—ใฆใ„ใ‚‹ใ€" voice "vfCCC0041you013" ๆ›œๅญ "ใ€Œใ—ใชใ‹ใฃใŸใ‚‰โ€ฆโ€ฆๅคชไธ€ใซใ„ใ˜ใ‚ใ‚‰ใ‚Œใ‚‹ใจๆ€ใฃใŸใ‹ใ‚‰โ€ฆโ€ฆใ€" ๅคชไธ€ "ใ€Œใชใ‚‹ใปใฉใ€" "ใใ‚Œใฏ็ขบใ‹ใซใ€‚" "้ ฌใ‚’ไธกๅดใ‹ใ‚‰ใคใพใ‚€ใ€‚" ๅคชไธ€ "ใ€Œใ—ใฆใ‚‚ใ„ใ˜ใ‚ใ‚‹ใ€" voice "vfCCC0041you014" ๆ›œๅญ "ใ€Œโ€ฆโ€ฆใใ†ใญใ€" "็ซฏๆญฃใช้ก”ใ‚’ใ€็ฒ˜ๅœŸใฎใ‚ˆใ†ใซใ“ใญใ‚‹ใ€‚" voice "vfCCC0041you015" ๆ›œๅญ "ใ€Œใ‚„ใ‚ใฆใ€" "ใ‘ใฉๆœฌๆฐ—ใงๆŠตๆŠ—ใฏใ—ใชใ„ใ€‚" "ๆŠตๆŠ—ใฎไป•ๆ–นใ‚’็Ÿฅใ‚‰ใชใ„ใจใ€‚" "ๅŸบๆœฌใŒใ€ๆŽ’้™คใ™ใ‚‹ใ‹ใ‚นใƒซใƒผใ™ใ‚‹ใ‹ใฎใฉใกใ‚‰ใ‹ใ ใ‹ใ‚‰ใ€‚" ๅคชไธ€ "ใ€Œใ†ใ‚Šใ†ใ‚Šใ€" voice "vfCCC0041you016" ๆ›œๅญ "ใ€Œใ†ใƒผใ€ใ†ใ†โ€ฆโ€ฆใ€" ๅคชไธ€ "ใ€Œใ‚„ใ‚ใ‚‰ใ‹ใ„ใปใฃใบใ ใชใใ€" voice "vfCCC0041you017" ๆ›œๅญ "ใ€Œโ€ฆโ€ฆใ„ใŸใ„โ€ฆโ€ฆใ„ใŸใ™ใŽโ€ฆโ€ฆใ€" ๅคชไธ€ "ใ€Œใปใฃใบใชใ‚“ใฆๆŒใฃใฆใ‚‹ใ‹ใ‚‰ๆ‚ชใ„ใ‚“ใ ใ€" voice "vfCCC0041you018" ๆ›œๅญ "ใ€Œใ‚€ใกใ‚ƒใใกใ‚ƒ่จ€ใ†ใ€" "ๆ—ฉใ€…ใซ้ฃฝใใ‚‹ใ€‚" ๅคชไธ€ "ใ€Œใงใ€ๅ…ˆ่ผฉใฎๆ€ชๆˆ‘ใฎๅ…ทๅˆใฏ๏ผŸใ€" voice "vfCCC0041you019" ๆ›œๅญ "ใ€Œ่ปฝใ„ๆ“ฆ้Žๅ‚ทใจๆ‰“ๆ’ฒใ€‚ๅ‘ฝใซๅˆฅ็Šถใฏใชใ—ใ€" "ใ“ใ“ใ‚ใชใ—ใ‹่ตคใใชใฃใŸ้ ฌใงใ€่จ€ใฃใŸใ€‚" ๅคชไธ€ "ใ€Œใใฃใ‹ใ€" "่ฆ‹ใ‚Œใฐใ€่ปฝใ„ๅฏๆฏใ€‚" "่‹ฆใ—ใ‚“ใงใฏใ„ใชใ„ใ‚ˆใ†ใ ใ€‚" ๅคชไธ€ "ใ€Œใ‚ˆใๅฏใฆใ‚‹ใ€" "้กใฎ้ซชใ‚’ใ‹ใใ‚ใ‘ใ‚‹ใ€‚" voice "vfCCC0041msa000" ่ฆ‹้‡Œ "ใ€Œใ‚“ใ‚“ใƒผใ€" "ๅ–‰ใ‚’้ณดใ‚‰ใ™ใ€‚" "่Œใ‚†ใ‚‹ใ€‚" "ๆฌกใฏๅˆฅใฎ็ฎ‡ๆ‰€ใซๆ‰‹ใ‚’ใฎใฐใ™ใ€‚" "ใŒใฃใ—ใฃ" ๅคชไธ€ "ใ€Œใฌใ…๏ผใ€" "ๆ›œๅญใกใ‚ƒใ‚“ใŒใ€ไฟบใฎๆ‰‹้ฆ–ใ‚’ๆกใฃใฆใ„ใŸใ€‚" "ๆˆไบบ็”ทๆ€งไธฆใฟใฎๆกๅŠ›๏ผ" ๅคชไธ€ "ใ€Œโ€ฆโ€ฆไฝ•ใ™ใ‚‹ใฎใ•ใ€" voice "vfCCC0041you020" ๆ›œๅญ "ใ€Œๅคชไธ€ใฏไปŠใ€ใƒœใ‚คใƒณใ‚ฟใƒƒใƒใ‚’ใ—ใ‚ˆใ†ใจใ—ใฆใ„ใŸใ€" ๅคชไธ€ "ใ€ŒใƒŽใ€ใƒŽใƒผใ€" voice "vfCCC0041you021" ๆ›œๅญ "ใ€Œ่‹ฑ่ชžใซใชใ‚‹ใจใ“ใ‚ใŒๆ€ชใ—ใ„ใจๆ€ใ†โ€ฆโ€ฆใ€" voice "vfCCC0041you022" ๆ›œๅญ "ใ€Œๅคชไธ€ใฏ่‹ฑ่ชžใŒ่‹ฆๆ‰‹ใชใ“ใจใ‚‚ใ€้‡่ฆใชๅˆคๆ–ญใƒใ‚คใƒณใƒˆใ€" ๅคชไธ€ "ใ€Œใใฃใ€ใใ“ใพใงไฟบใ‚’็ ”็ฉถใ—ใฆใ„ใ‚‹ใจใฏโ€ฆโ€ฆใ€" "ใ‚„ใฏใ‚Šไธ–ใฏใ™ในใ‹ใ‚‰ใใƒกใ‚ฟใ‚ฒใƒผใƒ ใ€‚" voice "vfCCC0041you023" ๆ›œๅญ "ใ€Œ็งใฎ็›ฎใŒ้ป’ใ„ใ†ใกใฏใ€ใ“ใฎใƒœใ‚คใƒณใซใฏ่งฆใ‚Œใ•ใ›ใชใ„ใ€" ๅคชไธ€ "ใ€ŒใŠใฎใ‚Œ๏ผใ€" "ใ ใŒๆŽฅ่ฟ‘ๆˆฆใงใฏๅ‹ใก็›ฎใฏใชใ„ใ€‚" ๅคชไธ€ "ใ€Œใ“ใ†ใชใฃใŸใ‚‰โ€ฆโ€ฆใ‚ญใƒŸใฎ่ƒธใ‚’ๆ‰ใ‚“ใงใ‚„ใ‚‹ใ•๏ผใ€" "็‰‡ๆ–นใฎๆ‰‹ใ‚’ใ€ๅฝผๅฅณใฎ่ƒธ้ƒจใซๅ‘ใ‘ใฆ็นฐใ‚Šๅ‡บใ™ใ€‚" voice "vfCCC0041you024" ๆ›œๅญ "ใ€Œโ€ฆโ€ฆใใ†ๆฅใ‚‹ใจๆ€ใฃใŸใ‚ใ€" "ๆ›œๅญใกใ‚ƒใ‚“ใฎๅŒ็œธใŒใ€ไธๆ•ตใช่‡ชไฟกใซๆบ€ใกใŸใ€‚" "็ŸฅใฃใŸใ“ใจใ‹๏ผ" "ใŸใจใˆ็ฝ ใŒใ‚ใ‚ใ†ใจใ‚‚ใ€‚" ๅคชไธ€ "ใ€Œใ“ใฎใพใพๆ‰ใฟ่ฒซใ๏ผใ€" "ใŒใฃใ—ใจใ€ๅฝผๅฅณใฎไนณใซๅทฆๆ‰‹ใ‚’ๅ™›ใฟใคใ‹ใ›ใŸใ€‚" "้ฟใ‘ใ‚‹็ด ๆŒฏใ‚Šใ‚‚ใ€้˜ฒใๆง˜ๅญใ‚‚ใชใ„ใ€‚" "ใ‚„ใฏใ‚Š็ฝ ใ‹ใ€‚" stop bgm call gl(0,"bgcc0012a") call gl(1,"TCHY0001b|tchy000x") call gp(1,t=center)#x=180 call vsp(0,1) call vsp(1,1) with Dissolve(500.0/1000.0) voice "vfCCC0041you025" ๆ›œๅญ "ใ€Œใ‹ใ‹ใฃใŸโ€ฆโ€ฆใ€" ๅคชไธ€ "ใ€Œใชใซ๏ผ๏ผŸใ€" call gl(1,"TCHY0002b|tchy000x") call vsp(1,1) with dissolve voice "vfCCC0041you026" ๆ›œๅญ "ใ€Œๆททไนฑใ—ใŸๅคชไธ€ใฏใ€็›ฎใฎๅ‰ใฎ็งใซ่ฅฒใ„ใ‹ใ‹ใ‚‹ใจโ€ฆโ€ฆ่ชญใ‚“ใงใ„ใŸใ€" ๅคชไธ€ "ใ€Œใ“ใ“ใฎๆ„Ÿ่งฆใฏใ€ใพใ•ใ‹ใฃ๏ผŸใ€" play bgm "bgm/bgm010.ogg" call gl(1,"TCHY0001b|tchy000x") call vsp(1,1) with dissolve voice "vfCCC0041you027" ๆ›œๅญ "ใ€Œใใ†โ€ฆโ€ฆใƒŽใƒผใƒ–ใƒฉใ€" ๅคชไธ€ "ใ€Œใ‚ใฃใ€ใ‚ใ‚ใ‚ใฃใ€ใชใซใƒ๏ผ๏ผŸใ€" "ๆŸ”ใ‚‰ใ‹ใ„ใ€‚" "ๅˆถๆœใฎไธŠใ‹ใ‚‰ใ€ๆƒณๅƒใ‚’็ตถใ™ใ‚‹ใ‚ฝใƒ•ใƒˆๆ„Ÿ่งฆใŒ๏ผ" ๅคชไธ€ "ใ€Œใ‚ใฃใ€ใ‚ใ‚ใ‚ใฃใ€" "ใฟใ‚‹ใฟใ‚‹็ŸฅใŒๅคฑใ‚ใ‚Œใฆใ„ใใ€‚" ๅคชไธ€ "ใ€ŒใŠใ€ไฟบใฎใ‚ฝใƒ•ใ‚ฃใ‚ข๏ผˆ็Ÿฅ๏ผ‰ใŒโ€ฆโ€ฆใ€" "ๆŸ”ใ‚‰ใ‹ใๅผตใ‚Šใฎใ‚ใ‚‹่ƒธใซ่งฆใ‚Œใ‚‹ใ“ใจใงใ€ไฟบใฎ็Ÿฅๆ€งใฏๅˆ†่งฃใ•ใ‚Œใฆใ—ใพใ†ใฎใงใ‚ใ‚‹๏ผ" "่ƒธใŒ่‚‰่ณชใŒ้ซ˜ใ‘ใ‚Œใฐ้ซ˜ใ„ใปใฉใ€ใใฎๅˆ†่งฃ้€ŸๅบฆใฏๅŠ ้€Ÿใ•ใ‚Œใ‚‹ใ€‚" ๅคชไธ€ "ใ€Œใใฃใ€ใชใ‚“ใฆโ€ฆโ€ฆ่ƒธใ โ€ฆโ€ฆใ”ใฃใใ‚Šใจ้ ญใŒๆ‚ชใใชใฃใฆใ„ใใ‚ˆใ†ใ ใ€" "ๆฐ—ใŒใคใใจใ€ไธกๆ‰‹ใงๆ‰ใฟ่พผใ‚“ใงใ„ใŸใ€‚" voice "vfCCC0041you028" ๆ›œๅญ "ใ€Œโ€ฆโ€ฆใ‚“ใฃโ€ฆโ€ฆใ€" "็†ฑใฃใฝใ„ๆŽ ใ‚ŒใŸๅฃฐใ€‚" "่€ณใซๅ…ฅใฃใฆใ€็†ๆ€งใ‚’่’ธ็™บใ•ใ›ใ‚‹ใ€‚" "ไธŠไธ‹ๅทฆๅณๅ››ๆ–นๅ…ซๆ–นๆฑ่ฅฟๅ—ๅŒ—ใ€‚" "ใ‚ขใƒŠใƒญใ‚ฐใ‚ณใƒณใƒˆใƒญใƒผใƒฉใƒผไธฆใฎ่‡ช็”ฑๅบฆใงใ€่ƒธใ‚’ๆ‰ใฟๅพ€ใใ€‚" voice "vfCCC0041you029" ๆ›œๅญ "ใ€ŒใŸใƒโ€ฆโ€ฆใกใ€ใ‚“ใฃโ€ฆโ€ฆใ€" ๅคชไธ€ "ใ€Œใใ€ใชใ‚“ใฆใ‚ฝใƒ•ใ‚ฃใ‚นใƒ†ใ‚ฃใ‚ฑใƒผใƒ†ใƒƒใƒ‰ใชใƒใ‚นใƒˆใชใ‚“ใ โ€ฆโ€ฆใ€" voice "vfCCC0041you030" ๆ›œๅญ "ใ€Œใ‚ใ‘ใ€ใ‚ใ‹ใ‚‰ใชใ„โ€ฆโ€ฆใโ€ฆโ€ฆใ€" "ใ‚ใ‚ใ‚ใ‚ใ€‚" "ไฟบใ€่ช˜ๆƒ‘ใ•ใ‚Œใกใ‚ƒใฃใฆใ‚‹ใ€‚" "ใพใ‚“ใพใจ่ช˜ๆƒ‘ใ•ใ‚Œใกใ‚ƒใฃใฆใ‚‹ใ€‚" voice "vfCCC0041msa001" ่ฆ‹้‡Œ "ใ€Œใตใ‚ใ‚๏ฝžใ€" "ๅ…ˆ่ผฉใŒ่ตทใใฆใใŸใ€‚" call gl(2,"TCMM0011b|TCMM0011") call vsp(1,0) call vsp(2,1) call gp(2,t=center)#x=225 with Dissolve(500.0/1000.0) voice "vfCCC0041msa002" ่ฆ‹้‡Œ "ใ€Œโ€ฆโ€ฆใ„ใ‘ใชใ„โ€ฆโ€ฆ็œผ้กใ—ใŸใพใพๅฏใฆโ€ฆโ€ฆๅฏใฆโ€ฆโ€ฆใ€" "ไฟบใŸใกใฎ็—ดๆ…‹ใซ็›ฎใ‚’็•™ใ‚ใŸใ€‚" call gl(2,"TCMM0004b|TCMM000x") call vsp(2,1) with dissolve voice "vfCCC0041msa004" ่ฆ‹้‡Œ "ใ€Œใ›ใ‚„ใƒผ๏ผใ€" "ๆ‰‹ๅˆ€ใŒๆŒฏใ‚Šไธ‹ใ‚ใ•ใ‚ŒใŸใ€‚" "ไนณ้ฆ–ใจๆŒ‡ๅ…ˆใ‚’ๅˆ‡ๆ–ญใ—ใฆใฎใ‘ใ‚‹ใ€‚" call gl(2,"TCMM0006b|TCMM0006") call vsp(2,1) with dissolve voice "vfCCC0041msa005" ่ฆ‹้‡Œ "ใ€Œใบใ‘ใใ‚“๏ผใ€" ๅคชไธ€ "ใ€Œใฏใ€ใฏใ„๏ผใ€" voice "vfCCC0041msa006" ่ฆ‹้‡Œ "ใ€ŒไปŠใฎใฏใ‚คใ‚จใƒญใƒผๅœๅญฆใงใ™ใ‹ใ‚‰๏ผใ€" "ใŒใฃใ—ใจๆŒ‡ใ‚’็ชใใคใ‘ใ‚‰ใ‚Œใ‚‹ใ€‚" "ใƒฌใƒƒใƒ‰ๅœๅญฆใจใ‹ใ‚ใ‚‹ใฎใ‹ใชโ€ฆโ€ฆใ€‚" ๅคชไธ€ "ใ€Œใ—ใ€ใ—ใ‹ใ—ใ‚ฝใƒ•ใ‚ฃใ‚นใƒ†ใ‚ฃใ‚ฑใƒผใƒ†ใƒƒใƒ‰ใชใŠใฑใ„ๅญใŒใงใ™ใญ๏ผใ€" voice "vfCCC0041msa007" ่ฆ‹้‡Œ "ใ€Œ้ƒฝไผš็š„ใซๆด—็ทดใ•ใ‚ŒใŸใŠใฑใ„ๅญใฎใ“ใจใชใฉ็†็”ฑใซใฏใชใ‚Šใพใ›ใ‚“๏ผใ€" "ๅ…ˆ่ผฉใฏ้ฆ–ใ‚’่ฝใจใ™ใ‚ˆใ†ใชๅ‹‡ใพใ—ใ„ไป•่‰ใงใ€่…•ใ‚’่–™ใ„ใ ใ€‚" call gl(2,"TCMM0002b|TCMM000x") call vsp(2,1) with dissolve voice "vfCCC0041msa008" ่ฆ‹้‡Œ "ใ€ŒใŠไน…ใ—ใถใ‚Šใงใ™ๆ”ฏๅ€‰ใ•ใ‚“ใ€" call gl(1,"TCHY0000b|tchy000x") call gp(1,t=left)#x=40 call gp(2,t=right)#x=340 call vsp(1,1) call vsp(2,1) with Dissolve(500.0/1000.0) stop bgm voice "vfCCC0041you031" ๆ›œๅญ "ใ€Œโ€ฆโ€ฆใ‚“ใ€" call gl(2,"TCMM0005b|TCMM000x") call vsp(2,1) with dissolve play bgm "bgm/bgm012.ogg" voice "vfCCC0041msa009" ่ฆ‹้‡Œ "ใ€Œๆœฌๅฝ“ใซโ€ฆโ€ฆใ„ใŸใŸใŸใ€" ๅคชไธ€ "ใ€Œๅคงไธˆๅคซใงใ™ใ‹๏ผŸใ€" call gl(2,"TCMM0003b|TCMM000x") call vsp(2,1) with dissolve voice "vfCCC0041msa010" ่ฆ‹้‡Œ "ใ€Œใ‚ใ‚ใ€ใชใซใ‚„ใ‚‰่ณ‡ๆใŒๅดฉใ‚Œใฆใใฆโ€ฆโ€ฆใ€" ๅคชไธ€ "ใ€Œๆ›œๅญใกใ‚ƒใ‚“ใŒๅŠฉใ‘ใฆใใ‚ŒใŸใ‚“ใงใ™ใ‚ˆใ€" call gl(2,"TCMM0002b|TCMM000x") call vsp(2,1) with dissolve voice "vfCCC0041msa011" ่ฆ‹้‡Œ "ใ€Œใพใ‚โ€ฆโ€ฆๆ”ฏๅ€‰ใ•ใ‚“ใŒ๏ผŸใ€" call gl(1,"TCHY0001b|tchy000x") call vsp(1,1) with dissolve voice "vfCCC0041you032" ๆ›œๅญ "ใ€ŒๅŠฉใ‘ใŸใฎใฏ็งใ˜ใ‚ƒใชใ„ใ‚ใ€" ๅคชไธ€ "ใ€Œใ˜ใ‚ƒใ‚่ชฐใ€" call gl(1,"TCHY0000b|tchy000x") call vsp(1,1) with dissolve voice "vfCCC0041you033" ๆ›œๅญ "ใ€Œโ€ฆโ€ฆๅณถๅ‹่ฒดใ€" ๅคชไธ€ "ใ€Œๅ‹่ฒดใŒ๏ผŸใ€" "ใฏใฏใƒผใ‚“ใ€ใใ‚Œใงใ‚ใ„ใคใ•ใฃใโ€ฆโ€ฆใ€‚" ๅคชไธ€ "ใ€Œๅ…ˆ่ผฉใ€ใ‚ใ„ใค็…งใ‚Œๅฑ‹ใชใ‚‚ใ‚“ใ ใ‹ใ‚‰โ€ฆโ€ฆใ€" call gl(2,"TCMM0000b|TCMM000x") call vsp(2,1) with dissolve "ใฟใฟๅ…ˆ่ผฉใฏใ€ๅ‘†็„ถใจใ—ใฆใ„ใŸใ€‚" ๅคชไธ€ "ใ€Œโ€ฆโ€ฆใ‚‚ใ—ใ‚‚ใ—๏ผŸใ€" voice "vfCCC0041msa012" ่ฆ‹้‡Œ "ใ€Œๅ‹่ฒดใŒโ€ฆโ€ฆ็งใ‚’โ€ฆโ€ฆ๏ผŸใ€" "็‹ผ็‹ฝใ—ใฆใ„ใ‚‹ใ‚ˆใ†ใซใ‚‚่ฆ‹ใˆใ‚‹ใ€‚" "ใ„ใค้ ƒใ‹ใ‚‰ใ‹ใ€‚" "ใ“ใฎไบŒไบบใฏใ€ๅ…จใๅฃใ‚’ใใ‹ใชใใชใฃใŸใฎใ ใ€‚" "้ƒจๅฎคใซใฏๅ‹่ฒดใ€‚" "ๅ…ˆ่ผฉใฏๆ”พ้€ๅฎคใ€‚" "ไบ’ใ„ใซๅŒใ˜็ฉบ้–“ใซๅฑ…ๅˆใ‚ใ›ใ‚‹ใ“ใจใ•ใˆใพใ‚ŒใซใชใฃใŸใ€‚" "่ชฐใŒ่ฆ‹ใฆใ‚‚ใ€ๆ‚Ÿใ‚‹ใ“ใจใŒใงใใŸใ€‚" "ใŸใ ใใฎ็†็”ฑใ ใ‘ใŒใ€็ง˜ใ‚ใ‚‰ใ‚ŒใŸใพใพใงใ€‚" "ไฟบใŸใกใฎไธๅ’Œใฏใ€่ชฐใฎ้–“ใซใ‚‚ใ‚ใฃใŸใฎใ ใ€‚" stop bgm "ๆฐ—ใŒใคใใจๆ›œๅญใกใ‚ƒใ‚“ใฏๆถˆใˆใฆใ„ใŸใ€‚" return #
Ren'Py
2
fossabot/cross-channel_chinese-localization_project
AllPlatforms/scripts/ccc/ccc0041.rpy
[ "Apache-2.0" ]
require "c/sys/time" require "c/time" {% if flag?(:darwin) %} # Darwin supports clock_gettime starting from macOS Sierra, but we can't # use it because it would prevent running binaries built on macOS Sierra # to run on older macOS releases. # # Furthermore, mach_absolute_time is reported to have a higher precision. require "c/mach/mach_time" {% end %} module Crystal::System::Time UnixEpochInSeconds = 62135596800_i64 def self.compute_utc_seconds_and_nanoseconds : {Int64, Int32} {% if LibC.has_method?("clock_gettime") %} ret = LibC.clock_gettime(LibC::CLOCK_REALTIME, out timespec) raise RuntimeError.from_errno("clock_gettime") unless ret == 0 {timespec.tv_sec.to_i64 + UnixEpochInSeconds, timespec.tv_nsec.to_i} {% else %} ret = LibC.gettimeofday(out timeval, nil) raise RuntimeError.from_errno("gettimeofday") unless ret == 0 {timeval.tv_sec.to_i64 + UnixEpochInSeconds, timeval.tv_usec.to_i * 1_000} {% end %} end def self.monotonic : {Int64, Int32} {% if flag?(:darwin) %} info = mach_timebase_info total_nanoseconds = LibC.mach_absolute_time * info.numer // info.denom seconds = total_nanoseconds // 1_000_000_000 nanoseconds = total_nanoseconds.remainder(1_000_000_000) {seconds.to_i64, nanoseconds.to_i32} {% else %} if LibC.clock_gettime(LibC::CLOCK_MONOTONIC, out tp) == 1 raise RuntimeError.from_errno("clock_gettime(CLOCK_MONOTONIC)") end {tp.tv_sec.to_i64, tp.tv_nsec.to_i32} {% end %} end # Many systems use /usr/share/zoneinfo, Solaris 2 has # /usr/share/lib/zoneinfo, IRIX 6 has /usr/lib/locale/TZ. ZONE_SOURCES = { "/usr/share/zoneinfo/", "/usr/share/lib/zoneinfo/", "/usr/lib/locale/TZ/", } LOCALTIME = "/etc/localtime" def self.zone_sources : Enumerable(String) ZONE_SOURCES end def self.load_localtime : ::Time::Location? if ::File.file?(LOCALTIME) && ::File.readable?(LOCALTIME) ::File.open(LOCALTIME) do |file| ::Time::Location.read_zoneinfo("Local", file) rescue ::Time::Location::InvalidTZDataError nil end end end {% if flag?(:darwin) %} @@mach_timebase_info : LibC::MachTimebaseInfo? private def self.mach_timebase_info @@mach_timebase_info ||= begin LibC.mach_timebase_info(out info) info end end {% end %} end
Crystal
5
n00p3/crystal
src/crystal/system/unix/time.cr
[ "Apache-2.0" ]
module audiostreamerscrobbler.players.heos.HeosMonitor import audiostreamerscrobbler.players.heos.HeosConnectionSingleton import audiostreamerscrobbler.players.heos.HeosSlaveMonitor function createHeosMonitor = |player, cb| { let heosConnection = getHeosConnectionInstance() let heosMasterMonitor = heosConnection: heosMasterMonitor() let heosSlaveMonitor = createHeosSlaveMonitor(heosConnection, player, cb) let monitor = DynamicObject("HeosMonitor"): define("_masterMonitor", |this| -> heosMasterMonitor): define("_slaveMonitor", |this| -> heosSlaveMonitor): define("player", |this| -> player): define("start", |this| -> startMonitor(this)): define("stop", |this| -> stopMonitor(this)) return monitor } local function startMonitor = |monitor| { let masterMonitor = monitor: _masterMonitor() let slaveMonitor = monitor: _slaveMonitor() masterMonitor: addSlave(slaveMonitor) } local function stopMonitor = |monitor| { let masterMonitor = monitor: _masterMonitor() let slaveMonitor = monitor: _slaveMonitor() masterMonitor: removeSlave(slaveMonitor) }
Golo
3
vvdleun/audiostreamerscrobbler
src/main/golo/include/players/heos/HeosMonitor.golo
[ "MIT" ]
"""Config flow for Verisure integration.""" from __future__ import annotations from collections.abc import Mapping from typing import Any, cast from verisure import ( Error as VerisureError, LoginError as VerisureLoginError, ResponseError as VerisureResponseError, Session as Verisure, ) import voluptuous as vol from homeassistant.config_entries import ConfigEntry, ConfigFlow, OptionsFlow from homeassistant.const import CONF_EMAIL, CONF_PASSWORD from homeassistant.core import callback from homeassistant.data_entry_flow import FlowResult from .const import ( CONF_GIID, CONF_LOCK_CODE_DIGITS, CONF_LOCK_DEFAULT_CODE, DEFAULT_LOCK_CODE_DIGITS, DOMAIN, LOGGER, ) class VerisureConfigFlowHandler(ConfigFlow, domain=DOMAIN): """Handle a config flow for Verisure.""" VERSION = 1 email: str entry: ConfigEntry installations: dict[str, str] password: str @staticmethod @callback def async_get_options_flow(config_entry: ConfigEntry) -> VerisureOptionsFlowHandler: """Get the options flow for this handler.""" return VerisureOptionsFlowHandler(config_entry) async def async_step_user( self, user_input: dict[str, Any] | None = None ) -> FlowResult: """Handle the initial step.""" errors: dict[str, str] = {} if user_input is not None: verisure = Verisure( username=user_input[CONF_EMAIL], password=user_input[CONF_PASSWORD] ) try: await self.hass.async_add_executor_job(verisure.login) except VerisureLoginError as ex: LOGGER.debug("Could not log in to Verisure, %s", ex) errors["base"] = "invalid_auth" except (VerisureError, VerisureResponseError) as ex: LOGGER.debug("Unexpected response from Verisure, %s", ex) errors["base"] = "unknown" else: self.email = user_input[CONF_EMAIL] self.password = user_input[CONF_PASSWORD] self.installations = { inst["giid"]: f"{inst['alias']} ({inst['street']})" for inst in verisure.installations } return await self.async_step_installation() return self.async_show_form( step_id="user", data_schema=vol.Schema( { vol.Required(CONF_EMAIL): str, vol.Required(CONF_PASSWORD): str, } ), errors=errors, ) async def async_step_installation( self, user_input: dict[str, Any] | None = None ) -> FlowResult: """Select Verisure installation to add.""" if len(self.installations) == 1: user_input = {CONF_GIID: list(self.installations)[0]} if user_input is None: return self.async_show_form( step_id="installation", data_schema=vol.Schema( {vol.Required(CONF_GIID): vol.In(self.installations)} ), ) await self.async_set_unique_id(user_input[CONF_GIID]) self._abort_if_unique_id_configured() return self.async_create_entry( title=self.installations[user_input[CONF_GIID]], data={ CONF_EMAIL: self.email, CONF_PASSWORD: self.password, CONF_GIID: user_input[CONF_GIID], }, ) async def async_step_reauth(self, data: Mapping[str, Any]) -> FlowResult: """Handle initiation of re-authentication with Verisure.""" self.entry = cast( ConfigEntry, self.hass.config_entries.async_get_entry(self.context["entry_id"]), ) return await self.async_step_reauth_confirm() async def async_step_reauth_confirm( self, user_input: dict[str, Any] | None = None ) -> FlowResult: """Handle re-authentication with Verisure.""" errors: dict[str, str] = {} if user_input is not None: verisure = Verisure( username=user_input[CONF_EMAIL], password=user_input[CONF_PASSWORD] ) try: await self.hass.async_add_executor_job(verisure.login) except VerisureLoginError as ex: LOGGER.debug("Could not log in to Verisure, %s", ex) errors["base"] = "invalid_auth" except (VerisureError, VerisureResponseError) as ex: LOGGER.debug("Unexpected response from Verisure, %s", ex) errors["base"] = "unknown" else: data = self.entry.data.copy() self.hass.config_entries.async_update_entry( self.entry, data={ **data, CONF_EMAIL: user_input[CONF_EMAIL], CONF_PASSWORD: user_input[CONF_PASSWORD], }, ) self.hass.async_create_task( self.hass.config_entries.async_reload(self.entry.entry_id) ) return self.async_abort(reason="reauth_successful") return self.async_show_form( step_id="reauth_confirm", data_schema=vol.Schema( { vol.Required(CONF_EMAIL, default=self.entry.data[CONF_EMAIL]): str, vol.Required(CONF_PASSWORD): str, } ), errors=errors, ) class VerisureOptionsFlowHandler(OptionsFlow): """Handle Verisure options.""" def __init__(self, entry: ConfigEntry) -> None: """Initialize Verisure options flow.""" self.entry = entry async def async_step_init( self, user_input: dict[str, Any] | None = None ) -> FlowResult: """Manage Verisure options.""" errors = {} if user_input is not None: if len(user_input[CONF_LOCK_DEFAULT_CODE]) not in [ 0, user_input[CONF_LOCK_CODE_DIGITS], ]: errors["base"] = "code_format_mismatch" else: return self.async_create_entry(title="", data=user_input) return self.async_show_form( step_id="init", data_schema=vol.Schema( { vol.Optional( CONF_LOCK_CODE_DIGITS, default=self.entry.options.get( CONF_LOCK_CODE_DIGITS, DEFAULT_LOCK_CODE_DIGITS ), ): int, vol.Optional( CONF_LOCK_DEFAULT_CODE, default=self.entry.options.get(CONF_LOCK_DEFAULT_CODE), ): str, } ), errors=errors, )
Python
5
liangleslie/core
homeassistant/components/verisure/config_flow.py
[ "Apache-2.0" ]