text stringlengths 9 39.2M | dir stringlengths 26 295 | lang stringclasses 185
values | created_date timestamp[us] | updated_date timestamp[us] | repo_name stringlengths 1 97 | repo_full_name stringlengths 7 106 | star int64 1k 183k | len_tokens int64 1 13.8M |
|---|---|---|---|---|---|---|---|---|
```xml
import {PlatformTest} from "@tsed/common";
import {TestMongooseContext} from "@tsed/testing-mongoose";
import {Agenda, AgendaService, Every} from "../src/index.js";
import {Server} from "./helpers/Server.js";
@Agenda()
class TestTwo {
@Every("* * * * *")
test3() {
// test
}
}
describe("Agenda integration", () => {
describe("enabled", () => {
beforeAll(async () => {
await TestMongooseContext.install();
const {url} = await TestMongooseContext.getMongooseOptions();
const bstrp = PlatformTest.bootstrap(Server, {
agenda: {
enabled: true,
db: {
address: url,
options: {}
}
}
});
await bstrp();
});
afterAll(async () => {
const agenda = PlatformTest.get<AgendaService>(AgendaService)!;
await TestMongooseContext.reset();
await agenda._db.close();
});
it("should have job definitions", () => {
const agenda = PlatformTest.get<AgendaService>(AgendaService)!;
expect(Object.keys(agenda._definitions)).toContain("test3");
});
it("should schedule cron-like jobs", async () => {
const agenda = PlatformTest.get<AgendaService>(AgendaService)!;
const jobs = await agenda.jobs();
const job2 = jobs.find((job: any) => job.attrs.name.includes("test3"));
expect(job2?.attrs.repeatInterval).toEqual("* * * * *");
});
});
describe("disabled", () => {
beforeAll(async () => {
await TestMongooseContext.install();
const bstrp = PlatformTest.bootstrap(Server, {
agenda: {
enabled: false
}
});
await bstrp();
});
afterAll(() => TestMongooseContext.reset());
it("should not have job definitions", () => {
const agenda = PlatformTest.injector.get(AgendaService)!;
expect(agenda._definitions).toBeUndefined();
});
});
});
``` | /content/code_sandbox/packages/third-parties/agenda/test/agenda-every.integration.spec.ts | xml | 2016-02-21T18:38:47 | 2024-08-14T21:19:48 | tsed | tsedio/tsed | 2,817 | 451 |
```xml
<?xml version="1.0" encoding="utf-8" ?>
<controls:TestContentPage
xmlns="path_to_url"
xmlns:x="path_to_url"
xmlns:d="path_to_url"
xmlns:mc="path_to_url"
xmlns:controls="clr-namespace:Xamarin.Forms.Controls" xmlns:controls1="clr-namespace:Xamarin.Forms.Controls.Issues"
mc:Ignorable="d"
x:Class="Xamarin.Forms.Controls.Issues.Issue9774"
Title="Issue 9774">
<ContentPage.Content>
<StackLayout HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand">
<!-- Place new controls here -->
<controls1:CustomFrame9974 HorizontalOptions="Center" VerticalOptions="CenterAndExpand">
<Label Text="Welcome to Xamarin.Forms!" HorizontalOptions="Center" VerticalOptions="CenterAndExpand" />
</controls1:CustomFrame9974>
</StackLayout>
</ContentPage.Content>
</controls:TestContentPage>
``` | /content/code_sandbox/Xamarin.Forms.Controls.Issues/Xamarin.Forms.Controls.Issues.Shared/Issue9774.xaml | xml | 2016-03-18T15:52:03 | 2024-08-16T16:25:43 | Xamarin.Forms | xamarin/Xamarin.Forms | 5,637 | 221 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<definitions id="definitions"
xmlns="path_to_url"
xmlns:activiti="path_to_url"
targetNamespace="Examples">
<process id="compensateProcess">
<startEvent id="start" />
<sequenceFlow sourceRef="start" targetRef="fork" />
<parallelGateway id="fork" />
<sequenceFlow sourceRef="fork" targetRef="bookHotel" />
<sequenceFlow sourceRef="fork" targetRef="bookFlight" />
<serviceTask id="bookHotel" activiti:expression="${true}">
<multiInstanceLoopCharacteristics isSequential="true">
<loopCardinality>5</loopCardinality>
</multiInstanceLoopCharacteristics>
</serviceTask>
<boundaryEvent id="compensateBookHotelEvt" name="Boundary event" attachedToRef="bookHotel">
<compensateEventDefinition />
</boundaryEvent>
<serviceTask id="undoBookHotel" isForCompensation="true" activiti:expression="${true}" />
<serviceTask id="bookFlight" activiti:expression="${true}">
<multiInstanceLoopCharacteristics isSequential="true">
<loopCardinality>5</loopCardinality>
</multiInstanceLoopCharacteristics>
</serviceTask>
<boundaryEvent id="compensateBookFlightEvt" name="Boundary event" attachedToRef="bookFlight">
<compensateEventDefinition />
</boundaryEvent>
<serviceTask id="undoBookFlight" isForCompensation="true" activiti:expression="${true}" />
<parallelGateway id="join" />
<sequenceFlow sourceRef="bookHotel" targetRef="join" />
<sequenceFlow sourceRef="bookFlight" targetRef="join" />
<sequenceFlow sourceRef="join" targetRef="throwCompensate" />
<intermediateThrowEvent id="throwCompensate">
<compensateEventDefinition activityRef="INVALID" />
</intermediateThrowEvent>
<sequenceFlow sourceRef="throwCompensate" targetRef="end" />
<endEvent id="end" />
<association associationDirection="One" sourceRef="compensateBookHotelEvt" targetRef="undoBookHotel" />
<association associationDirection="One" sourceRef="compensateBookFlightEvt" targetRef="undoBookFlight" />
</process>
</definitions>
``` | /content/code_sandbox/modules/flowable-engine/src/test/resources/org/flowable/engine/test/bpmn/event/compensate/CompensateEventTest.testInvalidActivityRefFails.bpmn20.xml | xml | 2016-10-13T07:21:43 | 2024-08-16T15:23:14 | flowable-engine | flowable/flowable-engine | 7,715 | 580 |
```xml
/**
* @file Wallpaper state
* @module store.wallpaper
* @author Surmon <path_to_url
*/
import { computed } from 'vue'
import { defineStore } from 'pinia'
import { createFetchStore } from './_fetch'
import { Language } from '/@/language'
import { TunnelModule } from '/@/constants/tunnel'
import tunnel from '/@/services/tunnel'
export type Wallpaper = Record<Language, Array<any>>
export const useWallpaperStore = defineStore('wallpaper', () => {
const fetchStore = createFetchStore<Wallpaper | null>({
fetcher: () => tunnel.dispatch<Wallpaper>(TunnelModule.BingWallpaper),
once: true,
data: null
})
const papers = computed(() => {
return (language: Language) => fetchStore.data.value?.[language]
})
return { ...fetchStore, papers }
})
``` | /content/code_sandbox/src/stores/wallpaper.ts | xml | 2016-09-23T02:02:33 | 2024-08-16T03:13:52 | surmon.me | surmon-china/surmon.me | 2,092 | 197 |
```xml
/** Capitalize the first letter of a string */
export const capitalizeFirstLetter = (name: string): string =>
name.charAt(0).toUpperCase() + name.slice(1);
/** TitleCase all words in a string */
export const toTitleCase = (value: string) => {
return value.replace(
/\w\S*/g,
(text) => text.charAt(0).toUpperCase() + text.substring(1).toLowerCase()
);
};
``` | /content/code_sandbox/src/core/helpers/titlecase.ts | xml | 2016-09-09T20:41:42 | 2024-08-16T07:38:46 | vscode-material-icon-theme | material-extensions/vscode-material-icon-theme | 2,007 | 95 |
```xml
import { G2Spec } from '../../../src';
export function flareElementPointMoveAreaNormalizeY(): G2Spec {
return {
type: 'area',
width: 600,
height: 400,
data: [
{ year: '1991', value: 3, type: 'type1' },
{ year: '1992', value: 4, type: 'type1' },
{ year: '1993', value: 3.5, type: 'type1' },
{ year: '1994', value: 5, type: 'type1' },
{ year: '1995', value: 4.9, type: 'type1' },
{ year: '1996', value: 2, type: 'type1' },
{ year: '1997', value: 7, type: 'type1' },
{ year: '1998', value: 11, type: 'type1' },
{ year: '1999', value: 13, type: 'type1' },
{ year: '1991', value: 6, type: 'type2' },
{ year: '1992', value: 1, type: 'type2' },
{ year: '1993', value: 4, type: 'type2' },
{ year: '1994', value: 9, type: 'type2' },
{ year: '1995', value: 1.9, type: 'type2' },
{ year: '1996', value: 5, type: 'type2' },
{ year: '1997', value: 4, type: 'type2' },
{ year: '1998', value: 6, type: 'type2' },
{ year: '1999', value: 15, type: 'type2' },
{ year: '1991', value: 6, type: 'type3' },
{ year: '1992', value: 1, type: 'type3' },
{ year: '1993', value: 4, type: 'type3' },
{ year: '1994', value: 9, type: 'type3' },
{ year: '1995', value: 1.9, type: 'type3' },
{ year: '1996', value: 5, type: 'type3' },
{ year: '1997', value: 4, type: 'type3' },
{ year: '1998', value: 6, type: 'type3' },
{ year: '1999', value: 15, type: 'type3' },
],
encode: { x: 'year', y: 'value', key: 'type', color: 'type' },
transform: [{ type: 'stackY' }, { type: 'normalizeY' }],
interaction: {
legendFilter: false,
elementPointMove: { selection: [1, 4] },
},
};
}
``` | /content/code_sandbox/__tests__/plots/static/flare-element-point-move-area-normalizeY.ts | xml | 2016-05-26T09:21:04 | 2024-08-15T16:11:17 | G2 | antvis/G2 | 12,060 | 674 |
```xml
import { useState } from 'react'
import { c } from 'ttag'
import { Button } from '@proton/atoms/Button'
import type { ModalStateProps } from '@proton/components'
import {
Form,
ModalTwo,
ModalTwoContent,
ModalTwoFooter,
ModalTwoHeader,
Radio,
Row,
useModalTwoStatic,
} from '@proton/components'
export enum SignatureFailDecision {
Ignore = 'ignore',
Accept = 'accept',
}
interface Props {
accept: () => void
ignore: () => void
}
export default function SignatureCheckFailedModal({ ignore, accept, onClose, ...modalProps }: Props & ModalStateProps) {
const [decision, setDecision] = useState(SignatureFailDecision.Accept)
const handleClose = () => {
ignore()
onClose()
}
const handleSubmit = () => {
if (decision === SignatureFailDecision.Accept) {
accept()
} else {
ignore()
}
onClose()
}
const reason = c('Info')
.t`The authorship of edits in the document could not be verified. Do you want to mark this document as verified? You can choose to Ignore to decide later.`
return (
<ModalTwo as={Form} onClose={handleClose} onSubmit={handleSubmit} size="small" {...modalProps}>
<ModalTwoHeader title={c('Title').t`Document verification failed`} />
<ModalTwoContent>
<p>{reason}</p>
<p>{c('Info').t`What do you want to do?`}</p>
<Row>
<Radio
id={SignatureFailDecision.Accept}
checked={decision === SignatureFailDecision.Accept}
onChange={() => setDecision(SignatureFailDecision.Accept)}
name="strategy"
className="inline-flex flex-nowrap"
>
<div>
<strong>{c('Label').t`Mark as verified`}</strong>
<br />
<span className="color-weak">{c('Info').t`Failing signatures will be re-signed by you`}</span>
</div>
</Radio>
</Row>
<Row>
<Radio
id={SignatureFailDecision.Ignore}
checked={decision === SignatureFailDecision.Ignore}
onChange={() => setDecision(SignatureFailDecision.Ignore)}
name="strategy"
className="inline-flex flex-nowrap"
>
<div>
<strong>{c('Label').t`Ignore`}</strong>
<br />
<span className="color-weak">{c('Info').jt`This message will be presented again later`}</span>
</div>
</Radio>
</Row>
<hr />
</ModalTwoContent>
<ModalTwoFooter>
<Button type="submit" color="norm">
{c('Action').t`Continue`}
</Button>
</ModalTwoFooter>
</ModalTwo>
)
}
export const useSignatureCheckFailedModal = () => {
return useModalTwoStatic(SignatureCheckFailedModal)
}
``` | /content/code_sandbox/applications/docs/src/app/Components/Modals/SignatureCheckFailedModal.tsx | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 665 |
```xml
import * as React from "react"
import { connect } from "react-redux"
import * as Selectors from "./../../Editor/NeovimEditor/NeovimEditorSelectors"
import * as State from "./../../Editor/NeovimEditor/NeovimEditorStore"
export interface ICursorLineRendererProps {
x: number
y: number
width: number
height: number
color: string
visible: boolean
opacity: number
}
export interface ICursorLineProps {
lineType: string
}
class CursorLineRenderer extends React.PureComponent<ICursorLineRendererProps, {}> {
public render(): null | JSX.Element {
if (!this.props.visible) {
return null
}
const width = this.props.width
const cursorStyle: React.CSSProperties = {
position: "absolute",
left: this.props.x.toString() + "px", // Window Start
top: this.props.y.toString() + "px", // Same as cursor
width: width.toString() + "px", // Window width
height: this.props.height ? this.props.height.toString() + "px" : "0px", // Same as cursor
backgroundColor: this.props.color,
opacity: this.props.opacity,
}
return <div style={cursorStyle} className="cursorLine" />
}
}
const emptyProps: ICursorLineRendererProps = {
x: 0,
y: 0,
width: 0,
height: 0,
color: null,
visible: false,
opacity: 0,
}
const mapStateToProps = (state: State.IState, props: ICursorLineProps) => {
const opacitySetting =
props.lineType === "line" ? "editor.cursorLineOpacity" : "editor.cursorColumnOpacity"
const opacity = state.configuration[opacitySetting]
const enabledSetting = props.lineType === "line" ? "editor.cursorLine" : "editor.cursorColumn"
const enabled = state.configuration[enabledSetting]
const isNormalInsertOrVisualMode =
state.mode === "normal" || state.mode === "insert" || state.mode === "visual"
const visible = enabled && isNormalInsertOrVisualMode
if (!visible) {
return emptyProps
}
const activeWindowDimensions = Selectors.getActiveWindowPixelDimensions(state)
return {
x: props.lineType === "line" ? activeWindowDimensions.x : state.cursorPixelX,
y: props.lineType === "line" ? state.cursorPixelY : activeWindowDimensions.y,
width: props.lineType === "line" ? activeWindowDimensions.width : state.cursorPixelWidth,
height: props.lineType === "line" ? state.fontPixelHeight : activeWindowDimensions.height,
color: state.colors["editore.foreground"],
visible,
opacity,
}
}
export const CursorLine = connect(mapStateToProps)(CursorLineRenderer)
``` | /content/code_sandbox/browser/src/UI/components/CursorLine.tsx | xml | 2016-11-16T14:42:55 | 2024-08-14T11:48:05 | oni | onivim/oni | 11,355 | 621 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="path_to_url"
xmlns:xsi="path_to_url"
xsi:schemaLocation="path_to_url path_to_url">
<modelVersion>4.0.0</modelVersion>
<groupId>DynamoDBJ2</groupId>
<artifactId>DynamoDBJ2</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>17</java.version>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.1</version>
<configuration>
<groups>IntegrationTest</groups>
</configuration>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>bom</artifactId>
<version>2.21.20</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>dynamodb</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>dynamodb-enhanced</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>secretsmanager</artifactId>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.10.1</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>2.14.2</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.14.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.9.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>kms</artifactId>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.9.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-commons</artifactId>
<version>1.9.2</version>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>1.9.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>2.0.5</version>
</dependency>
</dependencies>
</project>
``` | /content/code_sandbox/javav2/example_code/dynamodb/pom.xml | xml | 2016-08-18T19:06:57 | 2024-08-16T18:59:44 | aws-doc-sdk-examples | awsdocs/aws-doc-sdk-examples | 9,298 | 887 |
```xml
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<epp xmlns="urn:ietf:params:xml:ns:epp-1.0">
<command>
<create>
<contact:create
xmlns:contact="urn:ietf:params:xml:ns:contact-1.0">
<contact:id>@@RANDOM_CONTACT@@-@@CHANNEL_NUMBER@@</contact:id>
<contact:postalInfo type="int">
<contact:name>John Doe</contact:name>
<contact:org>Example, Inc.</contact:org>
<contact:addr>
<contact:street>111 Example Street</contact:street>
<contact:street></contact:street>
<contact:city>Los Angeles</contact:city>
<contact:sp>CA</contact:sp>
<contact:pc>90210</contact:pc>
<contact:cc>US</contact:cc>
</contact:addr>
</contact:postalInfo>
<contact:voice>+1.2020202022</contact:voice>
<contact:fax>+1.2022022022</contact:fax>
<contact:email>test@email.com</contact:email>
<contact:authInfo>
<contact:pw>somepassword</contact:pw>
</contact:authInfo>
</contact:create>
</create>
<clTRID>epp-client-contact-create-@@NOW@@-@@CHANNEL_NUMBER@@</clTRID>
</command>
</epp>
``` | /content/code_sandbox/load-testing/src/main/java/google/registry/client/resources/contact_create.xml | xml | 2016-02-29T20:16:48 | 2024-08-15T19:49:29 | nomulus | google/nomulus | 1,685 | 334 |
```xml
import { Pipe, PipeTransform } from "@angular/core";
import { CollectionView } from "@bitwarden/common/vault/models/view/collection.view";
@Pipe({
name: "collectionNameFromId",
pure: true,
})
export class GetCollectionNameFromIdPipe implements PipeTransform {
transform(value: string, collections: CollectionView[]) {
return collections.find((o) => o.id === value)?.name;
}
}
``` | /content/code_sandbox/apps/web/src/app/vault/individual-vault/pipes/get-collection-name.pipe.ts | xml | 2016-03-09T23:14:01 | 2024-08-16T15:07:51 | clients | bitwarden/clients | 8,877 | 92 |
```xml
export default function Page() {
return <p>app-layout</p>
}
// overwrite ../layout's maxDuration
export const maxDuration = 2
``` | /content/code_sandbox/test/e2e/app-dir/with-exported-function-config/app/app-layout/inner/page.tsx | xml | 2016-10-05T23:32:51 | 2024-08-16T19:44:30 | next.js | vercel/next.js | 124,056 | 34 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
-->
<LWM2M xmlns:xsi="path_to_url" xsi:noNamespaceSchemaLocation="path_to_url">
<Object ObjectType="MODefinition">
<Name>Concentration</Name>
<Description1>This IPSO object should be used to the particle concentration measurement of a medium. It also provides resources for minimum and maximum measured values, as well as the minimum and maximum range that can be measured by the sensor. An example measurement unit is parts per million.
</Description1>
<ObjectID>3325</ObjectID>
<ObjectURN>urn:oma:lwm2m:ext:3325:1.1</ObjectURN>
<LWM2MVersion>1.0</LWM2MVersion>
<ObjectVersion>1.1</ObjectVersion>
<MultipleInstances>Multiple</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Resources>
<Item ID="5700">
<Name>Sensor Value</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Mandatory</Mandatory>
<Type>Float</Type>
<RangeEnumeration></RangeEnumeration>
<Units></Units>
<Description>Last or Current Measured Value from the Sensor.</Description>
</Item>
<Item ID="5701">
<Name>Sensor Units</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>String</Type>
<RangeEnumeration></RangeEnumeration>
<Units></Units>
<Description>Measurement Units Definition.</Description>
</Item>
<Item ID="5601">
<Name>Min Measured Value</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>Float</Type>
<RangeEnumeration></RangeEnumeration>
<Units></Units>
<Description>The minimum value measured by the sensor since power ON or reset.</Description>
</Item>
<Item ID="5602">
<Name>Max Measured Value</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>Float</Type>
<RangeEnumeration></RangeEnumeration>
<Units></Units>
<Description>The maximum value measured by the sensor since power ON or reset.</Description>
</Item>
<Item ID="5603">
<Name>Min Range Value</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>Float</Type>
<RangeEnumeration></RangeEnumeration>
<Units></Units>
<Description>The minimum value that can be measured by the sensor.</Description>
</Item>
<Item ID="5604">
<Name>Max Range Value</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>Float</Type>
<RangeEnumeration></RangeEnumeration>
<Units></Units>
<Description>The maximum value that can be measured by the sensor.</Description>
</Item>
<Item ID="5605">
<Name>Reset Min and Max Measured Values</Name>
<Operations>E</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type></Type>
<RangeEnumeration></RangeEnumeration>
<Units></Units>
<Description>Reset the Min and Max Measured Values to Current Value.</Description>
</Item>
<Item ID="5821">
<Name>Current Calibration</Name>
<Operations>RW</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>Float</Type>
<RangeEnumeration></RangeEnumeration>
<Units></Units>
<Description>Read or Write the current calibration coefficient.</Description>
</Item>
<Item ID="5750">
<Name>Application Type</Name>
<Operations>RW</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>String</Type>
<RangeEnumeration></RangeEnumeration>
<Units></Units>
<Description>The application type of the sensor or actuator as a string depending on the use case.</Description>
</Item>
<Item ID="5518">
<Name>Timestamp</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>Time</Type>
<RangeEnumeration></RangeEnumeration>
<Units></Units>
<Description>The timestamp of when the measurement was performed.</Description>
</Item>
<Item ID="6050">
<Name>Fractional Timestamp</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>Float</Type>
<RangeEnumeration>0..1</RangeEnumeration>
<Units>s</Units>
<Description>Fractional part of the timestamp when sub-second precision is used (e.g., 0.23 for 230 ms).</Description>
</Item>
<Item ID="6042">
<Name>Measurement Quality Indicator</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>Integer</Type>
<RangeEnumeration>0..23</RangeEnumeration>
<Units></Units>
<Description>Measurement quality indicator reported by a smart sensor. 0: UNCHECKED No quality checks were done because they do not exist or can not be applied. 1: REJECTED WITH CERTAINTY The measured value is invalid. 2: REJECTED WITH PROBABILITY The measured value is likely invalid. 3: ACCEPTED BUT SUSPICIOUS The measured value is likely OK. 4: ACCEPTED The measured value is OK. 5-15: Reserved for future extensions. 16-23: Vendor specific measurement quality.</Description>
</Item>
<Item ID="6049">
<Name>Measurement Quality Level</Name>
<Operations>R</Operations>
<MultipleInstances>Single</MultipleInstances>
<Mandatory>Optional</Mandatory>
<Type>Integer</Type>
<RangeEnumeration>0..100</RangeEnumeration>
<Units></Units>
<Description>Measurement quality level reported by a smart sensor. Quality level 100 means that the measurement has fully passed quality check algorithms. Smaller quality levels mean that quality has decreased and the measurement has only partially passed quality check algorithms. The smaller the quality level, the more caution should be used by the application when using the measurement. When the quality level is 0 it means that the measurement should certainly be rejected.</Description>
</Item>
</Resources>
<Description2></Description2>
</Object>
</LWM2M>
``` | /content/code_sandbox/application/src/main/data/lwm2m-registry/3325.xml | xml | 2016-12-01T09:33:30 | 2024-08-16T19:58:25 | thingsboard | thingsboard/thingsboard | 16,820 | 1,871 |
```xml
export * from './dropdown';
export * from './icon';
export * from './form';
export * from './iframe';
export * from './notification';
``` | /content/code_sandbox/applications/pass-extension/src/app/content/types/index.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 31 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<definitions id="definitions"
xmlns="path_to_url" xmlns:activiti="path_to_url"
targetNamespace="Examples">
<signal id="theSignal" name="The Signal" />
<process id="processWithSignalStart1">
<startEvent id="theStart">
<signalEventDefinition id="theSignalEventDefinition" signalRef="theSignal" />
</startEvent>
<sequenceFlow id="flow1" sourceRef="theStart" targetRef="theTask" />
<userTask id="theTask" name="Task in process A" />
<sequenceFlow id="flow2" sourceRef="theTask" targetRef="theEnd" />
<endEvent id="theEnd" />
</process>
<process id="processWithSignalStart2">
<startEvent id="theStart2">
<signalEventDefinition id="theSignalEventDefinition2" signalRef="theSignal" />
</startEvent>
<sequenceFlow id="flow3" sourceRef="theStart2" targetRef="theTask2" />
<userTask id="theTask2" name="Task in process B" />
<sequenceFlow id="flow4" sourceRef="theTask2" targetRef="theEnd2" />
<endEvent id="theEnd2" />
</process>
<process id="processWithSignalStart3">
<startEvent id="theStart3">
<signalEventDefinition id="theSignalEventDefinition3" signalRef="theSignal" />
</startEvent>
<sequenceFlow id="flow5" sourceRef="theStart3" targetRef="theTask3" />
<userTask id="theTask3" name="Task in process C" />
<sequenceFlow id="flow6" sourceRef="theTask3" targetRef="theEnd3" />
<endEvent id="theEnd3" />
</process>
<process id="processWithSignalThrow">
<startEvent id="theStart4">
</startEvent>
<sequenceFlow id="flow7" sourceRef="theStart4" targetRef="signalThrow" />
<intermediateThrowEvent id="signalThrow">
<signalEventDefinition id="signalThrowEventDefinition" signalRef="theSignal"></signalEventDefinition>
</intermediateThrowEvent>
<sequenceFlow id="flow8" sourceRef="signalThrow" targetRef="theEnd4" />
<endEvent id="theEnd4" />
</process>
<process id="processWithSignalCatch">
<startEvent id="theStart5">
</startEvent>
<sequenceFlow id="flow9" sourceRef="theStart5" targetRef="theTask4" />
<userTask id="theTask4" name="Task in process D" />
<boundaryEvent attachedToRef="theTask4" id="signalCatch">
<signalEventDefinition id="signalCatchEventDefinition" signalRef="theSignal"></signalEventDefinition>
</boundaryEvent>
<sequenceFlow id="flow10" sourceRef="theTask4" targetRef="theEnd5" />
<sequenceFlow id="flow11" sourceRef="signalCatch" targetRef="theTask5" />
<userTask id="theTask5" name="Task after signal" />
<endEvent id="theEnd5" />
</process>
</definitions>
``` | /content/code_sandbox/modules/flowable5-test/src/test/resources/org/activiti/engine/test/api/tenant/TenancyTest.testStartProcessInstanceBySignalTenancy.bpmn20.xml | xml | 2016-10-13T07:21:43 | 2024-08-16T15:23:14 | flowable-engine | flowable/flowable-engine | 7,715 | 758 |
```xml
import { stateAndDispatch } from "../state";
import { setEvalResultsToNotStarted } from "./setEvalResultsToNotStarted";
import * as Actions from "../state/actions";
export function initNewProjectResults() {
const { dispatch } = stateAndDispatch();
setEvalResultsToNotStarted({ overwriteExistingEntries: true });
dispatch(Actions.clearAllEvalResultNotes());
}
``` | /content/code_sandbox/teachertool/src/transforms/initNewProjectResults.ts | xml | 2016-01-24T19:35:52 | 2024-08-16T16:39:39 | pxt | microsoft/pxt | 2,069 | 81 |
```xml
import { css } from 'lit';
export const styles = css`
:host {
display: inline-block;
}
.value {
width: var(--cds-global-space-7);
}
`;
``` | /content/code_sandbox/apps/core-simple-devapp/src/counter/counter.element.styles.ts | xml | 2016-09-29T17:24:17 | 2024-08-11T17:06:15 | clarity | vmware-archive/clarity | 6,431 | 46 |
```xml
import { makeStyles, mergeClasses } from '@griffel/react';
import type { TeachingPopoverCarouselSlots, TeachingPopoverCarouselState } from './TeachingPopoverCarousel.types';
import type { SlotClassNames } from '@fluentui/react-utilities';
export const teachingPopoverCarouselClassNames: SlotClassNames<TeachingPopoverCarouselSlots> = {
root: 'fui-TeachingPopoverCarousel',
};
// Todo: Page change animation & styles
const useStyles = makeStyles({
root: {},
});
/** Applies style classnames to slots */
export const useTeachingPopoverCarouselStyles_unstable = (state: TeachingPopoverCarouselState) => {
'use no memo';
const styles = useStyles();
state.root.className = mergeClasses(teachingPopoverCarouselClassNames.root, styles.root, state.root.className);
return state;
};
``` | /content/code_sandbox/packages/react-components/react-teaching-popover/library/src/components/TeachingPopoverCarousel/useTeachingPopoverCarouselStyles.styles.ts | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 172 |
```xml
import { CustomEvent } from '@antv/g';
import { G2Spec, PLOT_CLASS_NAME } from '../../../src';
export function penguinsPointBrush(): G2Spec {
return {
type: 'point',
data: {
type: 'fetch',
value: 'data/penguins.csv',
},
encode: {
color: 'species',
x: 'culmen_length_mm',
y: 'culmen_depth_mm',
},
state: {
inactive: { stroke: 'gray', opacity: 0.5 },
},
interaction: {
brushHighlight: true,
},
};
}
export function brush(plot, x, y, x1, y1) {
plot.dispatchEvent(
new CustomEvent('dragstart', {
// @ts-ignore
offsetX: x,
offsetY: y,
}),
);
plot.dispatchEvent(
new CustomEvent('dragend', {
// @ts-ignore
offsetX: x1,
offsetY: y1,
}),
);
}
export function dragMask(plot, x, y, x1, y1) {
const mask = plot.getElementById('selection');
drag(mask, x, y, x1, y1);
}
export function dblclick(plot, x = 200, y = 200) {
plot.dispatchEvent(
new CustomEvent('click', {
// @ts-ignore
offsetX: x,
offsetY: y,
timeStamp: Date.now(),
}),
);
plot.dispatchEvent(
new CustomEvent('click', {
// @ts-ignore
offsetX: x,
offsetY: y,
timeStamp: Date.now(),
}),
);
}
export function drag(shape, x, y, x1, y1) {
shape.dispatchEvent(
new CustomEvent('dragstart', {
// @ts-ignore
offsetX: x,
offsetY: y,
}),
);
shape.dispatchEvent(
new CustomEvent('dragend', {
// @ts-ignore
offsetX: x1,
offsetY: y1,
}),
);
}
export function brushSteps({ canvas }) {
const { document } = canvas;
const plot = document.getElementsByClassName(PLOT_CLASS_NAME)[0];
return [
{
changeState: () => {
brush(plot, 100, 100, 200, 200);
},
},
{
changeState: () => {
brush(plot, 250, 250, 400, 400);
},
},
{
changeState: () => {
dragMask(plot, 300, 300, 0, 0);
},
},
{
changeState: () => {
dragMask(plot, 100, 100, 640, 480);
},
},
...resize(plot),
];
}
// Origin mask: [490, 330, 640, 480]
export function resize(plot) {
const handles = [
['handle-n', 500, 330, 500, 200], // [490, 200, 640, 480]
['handle-e', 640, 300, 600, 300], // [490, 200, 600, 480]
['handle-s', 500, 480, 500, 300], // [490, 200, 600, 300]
['handle-w', 490, 200, 400, 200], // [400, 200, 500, 300]
['handle-nw', 400, 200, 300, 300], // [300, 300, 500, 300]
['handle-ne', 500, 300, 600, 200], // [300, 200, 600, 300]
['handle-se', 600, 300, 500, 200], // [300, 200, 500, 200]
['handle-sw', 300, 200, 400, 300], // [400, 200, 500, 300]
] as const;
return handles.map(([id, x, y, x1, y1]) => ({
changeState: () => {
const handle = plot.getElementById(id);
drag(handle, x, y, x1, y1);
},
}));
}
penguinsPointBrush.steps = brushSteps;
``` | /content/code_sandbox/__tests__/plots/interaction/penguins-point-brush.ts | xml | 2016-05-26T09:21:04 | 2024-08-15T16:11:17 | G2 | antvis/G2 | 12,060 | 933 |
```xml
import type { Package } from '@sentry/types';
import type { TurboModule } from 'react-native';
import { TurboModuleRegistry } from 'react-native';
import type { UnsafeObject } from './utils/rnlibrariesinterface';
// There has to be only one interface and it has to be named `Spec`
// Only extra allowed definitions are types (probably codegen bug)
export interface Spec extends TurboModule {
addListener: (eventType: string) => void;
removeListeners: (id: number) => void;
addBreadcrumb(breadcrumb: UnsafeObject): void;
captureEnvelope(
bytes: string,
options: {
hardCrashed: boolean;
},
): Promise<boolean>;
captureScreenshot(): Promise<NativeScreenshot[] | undefined | null>;
clearBreadcrumbs(): void;
crash(): void;
closeNativeSdk(): Promise<void>;
disableNativeFramesTracking(): void;
fetchNativeRelease(): Promise<NativeReleaseResponse>;
fetchNativeSdkInfo(): Promise<Package | null>;
fetchNativeDeviceContexts(): Promise<NativeDeviceContextsResponse | null>;
fetchNativeAppStart(): Promise<NativeAppStartResponse | null>;
fetchNativeFrames(): Promise<NativeFramesResponse | null>;
initNativeSdk(options: UnsafeObject): Promise<boolean>;
setUser(defaultUserKeys: UnsafeObject | null, otherUserKeys: UnsafeObject | null): void;
setContext(key: string, value: UnsafeObject | null): void;
setExtra(key: string, value: string): void;
setTag(key: string, value: string): void;
enableNativeFramesTracking(): void;
fetchModules(): Promise<string | undefined | null>;
fetchViewHierarchy(): Promise<number[] | undefined | null>;
startProfiling(): { started?: boolean; error?: string };
stopProfiling(): {
profile?: string;
nativeProfile?: UnsafeObject;
androidProfile?: UnsafeObject;
error?: string;
};
fetchNativePackageName(): string | undefined | null;
fetchNativeStackFramesBy(instructionsAddr: number[]): NativeStackFrames | undefined | null;
initNativeReactNavigationNewFrameTracking(): Promise<void>;
captureReplay(isHardCrash: boolean): Promise<string | undefined | null>;
getCurrentReplayId(): string | undefined | null;
}
export type NativeStackFrame = {
platform: string;
/**
* The instruction address of this frame.
* Formatted as hex with 0x prefix.
*/
instruction_addr: string;
package?: string;
/**
* The debug image address of this frame.
* Formatted as hex with 0x prefix.
*/
image_addr?: string;
in_app?: boolean;
/**
* The symbol name of this frame.
* If symbolicated locally.
*/
function?: string;
/**
* The symbol address of this frame.
* If symbolicated locally.
* Formatted as hex with 0x prefix.
*/
symbol_addr?: string;
};
export type NativeDebugImage = {
name?: string;
type?: string;
uuid?: string;
debug_id?: string;
image_addr?: string;
image_size?: number;
code_file?: string;
image_vmaddr?: string;
};
export type NativeStackFrames = {
frames: NativeStackFrame[];
debugMetaImages?: NativeDebugImage[];
};
export type NativeAppStartResponse = {
type: 'cold' | 'warm' | 'unknown';
has_fetched: boolean;
app_start_timestamp_ms?: number;
spans: {
description: string;
start_timestamp_ms: number;
end_timestamp_ms: number;
}[];
};
export type NativeFramesResponse = {
totalFrames: number;
slowFrames: number;
frozenFrames: number;
};
export type NativeReleaseResponse = {
build: string;
id: string;
version: string;
};
/**
* This type describes serialized scope from sentry-cocoa and sentry-android
* path_to_url
* path_to_url#L32
*/
export type NativeDeviceContextsResponse = {
[key: string]: unknown;
tags?: Record<string, string>;
extra?: Record<string, unknown>;
contexts?: Record<string, Record<string, unknown>>;
user?: {
userId?: string;
email?: string;
username?: string;
ipAddress?: string;
segment?: string;
data?: Record<string, unknown>;
};
dist?: string;
environment?: string;
fingerprint?: string[];
level?: string;
breadcrumbs?: {
level?: string;
timestamp?: string;
category?: string;
type?: string;
message?: string;
data?: Record<string, unknown>;
}[];
};
export type NativeScreenshot = {
data: number[];
contentType: string;
filename: string;
};
// The export must be here to pass codegen even if not used
export default TurboModuleRegistry.getEnforcing<Spec>('RNSentry');
``` | /content/code_sandbox/src/js/NativeRNSentry.ts | xml | 2016-11-30T14:45:57 | 2024-08-16T13:21:38 | sentry-react-native | getsentry/sentry-react-native | 1,558 | 1,053 |
```xml
import { Invite } from "./invite";
export interface TeamWorkspace {
id: string;
name: string;
accessCount?: number;
inviteId: string;
}
export interface Team {
id?: string;
name: string;
accessCount: number;
access: string[];
admins: string[];
adminCount: number;
members: {
[ownerId: string]: {
role: TeamRole;
};
};
owner: string;
inviteId?: string;
}
export enum TeamRole {
admin = "admin",
write = "write",
}
// teams invite
export interface TeamInviteMetadata extends Record<string, unknown> {
teamId: string;
teamRole: TeamRole;
ownerDisplayName?: string;
ownerEmail?: string;
teamName?: string;
teamAccessCount?: number;
plan?: string;
inviteId?: string;
}
export interface TeamInvite extends Invite {
metadata: TeamInviteMetadata;
}
``` | /content/code_sandbox/app/src/types/teamWorkspace.ts | xml | 2016-12-01T04:36:06 | 2024-08-16T19:12:19 | requestly | requestly/requestly | 2,121 | 206 |
```xml
import { createRoot } from 'react-dom/client'
import '@proton/polyfill'
import App from './App'
import './style'
const container = document.querySelector('.app-root')
const root = createRoot(container!)
root.render(<App />)
``` | /content/code_sandbox/applications/docs/src/app/index.tsx | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 51 |
```xml
import { Component } from '@angular/core';
@Component({
selector: 'app-counter',
templateUrl: './counter.component.html'
})
export class CounterComponent {
public currentCount = 0;
public incrementCounter() {
this.currentCount++;
}
}
``` | /content/code_sandbox/ClientApp/app/containers/counter/counter.component.ts | xml | 2016-09-20T15:25:10 | 2024-08-09T06:36:30 | aspnetcore-angular-universal | TrilonIO/aspnetcore-angular-universal | 1,464 | 55 |
```xml
import React, { useEffect, useState } from "react";
import { Col } from "antd";
import { TeamPlanDetails } from "./components/TeamPlanDetails";
import { BillingTeamMembers } from "./components/BillingTeamMembers";
import { BillingInvoiceTable } from "./components/BillingInvoiceTable";
import { useSelector } from "react-redux";
import { useParams } from "react-router-dom";
import { getAvailableBillingTeams, getBillingTeamById } from "store/features/billing/selectors";
import { getUserAuthDetails } from "store/selectors";
import { BillingTeamRoles } from "../../../types";
import { isCompanyEmail } from "utils/FormattingHelper";
import { trackBillingTeamViewed } from "features/settings/analytics";
import { BillingInformation } from "./components/BillingInformation";
import { AppMembersDrawer } from "./components/AddMembersDrawer/AddMembersDrawer";
export const MyBillingTeamDetails: React.FC = () => {
const { billingId } = useParams();
const user = useSelector(getUserAuthDetails);
const billingTeams = useSelector(getAvailableBillingTeams);
const billingTeamDetails = useSelector(getBillingTeamById(billingId));
const [isMembersDrawerOpen, setIsMembersDrawerOpen] = useState(false);
useEffect(() => {
if (billingId && billingTeamDetails) {
const emailStatus = !user.loggedIn
? "no_loggedIn"
: isCompanyEmail(user.details.profile.email)
? "company_email"
: "personal_email";
trackBillingTeamViewed(
emailStatus,
billingTeams?.length,
billingTeamDetails?.members[user?.details?.profile?.uid]?.role
);
}
}, [
billingId,
billingTeamDetails,
billingTeams?.length,
user.loggedIn,
user.details.profile.email,
user.details.profile.uid,
]);
if (!billingTeamDetails) return null;
return (
<div className="display-row-center w-full">
<div className="w-full" style={{ maxWidth: "1000px" }}>
<Col className="my-billing-team-title">{billingTeamDetails.name}</Col>
<Col className="mt-8">
<TeamPlanDetails billingTeamDetails={billingTeamDetails} />
</Col>
<Col style={{ marginTop: "24px" }}>
<BillingTeamMembers openDrawer={() => setIsMembersDrawerOpen(true)} />
</Col>
{billingTeamDetails.members?.[user?.details?.profile?.uid]?.role !== BillingTeamRoles.Member && (
<Col style={{ marginTop: "24px" }}>
<BillingInvoiceTable />
</Col>
)}
{billingTeamDetails.members?.[user?.details?.profile?.uid]?.role === BillingTeamRoles.Manager && (
<Col style={{ marginTop: "24px" }}>
<BillingInformation />
</Col>
)}
<AppMembersDrawer isOpen={isMembersDrawerOpen} onClose={() => setIsMembersDrawerOpen(false)} />
</div>
</div>
);
};
``` | /content/code_sandbox/app/src/features/settings/components/BillingTeam/components/BillingDetails/MyBillingTeamDetails/index.tsx | xml | 2016-12-01T04:36:06 | 2024-08-16T19:12:19 | requestly | requestly/requestly | 2,121 | 630 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~
~ path_to_url
~
~ Unless required by applicable law or agreed to in writing, software
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<sql-node-converter-test-cases>
<test-cases sql-case-id="update_without_alias" expected-sql="UPDATE `t_order` SET `status` = 'update' WHERE `order_id` = 1 AND `user_id` = 1" db-types="MySQL" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_without_alias" expected-sql="UPDATE `t_order` SET `status` = ? WHERE `order_id` = ? AND `user_id` = ?" db-types="MySQL" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_without_alias" expected-sql="UPDATE "t_order" SET "status" = 'update' WHERE "order_id" = 1 AND "user_id" = 1" db-types="PostgreSQL, openGauss, Oracle" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_without_alias" expected-sql="UPDATE "t_order" SET "status" = ? WHERE "order_id" = ? AND "user_id" = ?" db-types="PostgreSQL, openGauss, Oracle" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_alias" expected-sql="UPDATE `t_order` AS `o` SET `o`.`status` = 'update' WHERE `o`.`order_id` = 1 AND `o`.`user_id` = 1" db-types="MySQL" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_alias" expected-sql="UPDATE `t_order` AS `o` SET `o`.`status` = ? WHERE `o`.`order_id` = ? AND `o`.`user_id` = ?" db-types="MySQL" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_alias" expected-sql="UPDATE "t_order" AS "o" SET "o"."status" = 'update' WHERE "o"."order_id" = 1 AND "o"."user_id" = 1" db-types="openGauss" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_alias" expected-sql="UPDATE "t_order" AS "o" SET "o"."status" = ? WHERE "o"."order_id" = ? AND "o"."user_id" = ?" db-types="openGauss" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_unicode_escape_alias" expected-sql="UPDATE "t_order" AS "u" SET "status" = 'update' WHERE "u"."order_id" = 1 AND "u"."user_id" = 1" db-types="PostgreSQL, openGauss" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_unicode_escape_alias" expected-sql="UPDATE "t_order" AS "u" SET "status" = ? WHERE "u"."order_id" = ? AND "u"."user_id" = ?" db-types="PostgreSQL, openGauss" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_without_condition" expected-sql="UPDATE `t_order` AS `o` SET `o`.`status` = 'finished'" db-types="MySQL" />
<test-cases sql-case-id="update_with_extra_keywords" expected-sql="UPDATE `t_order` SET `status` = 'update' WHERE `order_id` = 1 AND `user_id` = 1" db-types="MySQL" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_extra_keywords" expected-sql="UPDATE `t_order` SET `status` = ? WHERE `order_id` = ? AND `user_id` = ?" db-types="MySQL" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_special_character" expected-sql="UPDATE `t_order` SET `status` = 'update' WHERE `order_id` = 1 AND `user_id` = 1" db-types="MySQL" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_special_character" expected-sql="UPDATE `t_order` SET `status` = ? WHERE `order_id` = ? AND `user_id` = ?" db-types="MySQL" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_without_parameters" expected-sql="UPDATE `t_order` SET `status` = 'update' WHERE `order_id` = 1000 AND `user_id` = 10" db-types="MySQL" />
<test-cases sql-case-id="update_without_parameters" expected-sql="UPDATE "t_order" SET "status" = 'update' WHERE "order_id" = 1000 AND "user_id" = 10" db-types="PostgreSQL, openGauss, Oracle" />
<test-cases sql-case-id="update_with_or" expected-sql="UPDATE `t_order` SET `status` = 'update' WHERE (`order_id` = 1000 OR `order_id` = 0) AND `user_id` = 10" db-types="MySQL" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_or" expected-sql="UPDATE `t_order` SET `status` = 'update' WHERE (`order_id` = ? OR `order_id` = ?) AND `user_id` = ?" db-types="MySQL" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_or" expected-sql="UPDATE "t_order" SET "status" = 'update' WHERE ("order_id" = 1000 OR "order_id" = 0) AND "user_id" = 10" db-types="PostgreSQL, openGauss, Oracle" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_or" expected-sql="UPDATE "t_order" SET "status" = 'update' WHERE ("order_id" = ? OR "order_id" = ?) AND "user_id" = ?" db-types="PostgreSQL, openGauss, Oracle" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_set_calculation" expected-sql="UPDATE `t_order` SET `status` = `status` - 1 WHERE `order_id` = 2 AND `user_id` = 3" db-types="MySQL" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_set_calculation" expected-sql="UPDATE `t_order` SET `status` = `status` - ? WHERE `order_id` = ? AND `user_id` = ?" db-types="MySQL" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_set_calculation" expected-sql="UPDATE "t_order" SET "status" = "status" - 1 WHERE "order_id" = 2 AND "user_id" = 3" db-types="PostgreSQL, openGauss, Oracle" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_set_calculation" expected-sql="UPDATE "t_order" SET "status" = "status" - ? WHERE "order_id" = ? AND "user_id" = ?" db-types="PostgreSQL, openGauss, Oracle" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_where_calculation" expected-sql="UPDATE `t_order` SET `status` = 1 WHERE `order_id` = `order_id` - 2 AND `user_id` = 3" db-types="MySQL" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_where_calculation" expected-sql="UPDATE `t_order` SET `status` = ? WHERE `order_id` = `order_id` - ? AND `user_id` = ?" db-types="MySQL" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_where_calculation" expected-sql="UPDATE "t_order" SET "status" = 1 WHERE "order_id" = "order_id" - 2 AND "user_id" = 3" db-types="PostgreSQL, openGauss, Oracle" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_where_calculation" expected-sql="UPDATE "t_order" SET "status" = ? WHERE "order_id" = "order_id" - ? AND "user_id" = ?" db-types="PostgreSQL, openGauss, Oracle" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_case_when" expected-sql="UPDATE `stock_freeze_detail` SET `row_status` = CASE WHEN `id` = 3 THEN 2 WHEN `id` = 4 THEN 2 WHEN `id` = 10 THEN 2 ELSE 'NULL' END, `update_user` = CASE WHEN `id` = 3 THEN 'll' WHEN `id` = 4 THEN 'll' WHEN `id` = 10 THEN 'll' ELSE 'NULL' END, `update_time` = CASE WHEN `id` = 3 THEN '2020-08-10T17:15:25.979+0800' ELSE 'NULL' END WHERE `tenant_id` = 'jd'" db-types="MySQL" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_case_when" expected-sql="UPDATE `stock_freeze_detail` SET `row_status` = CASE WHEN `id` = ? THEN ? WHEN `id` = ? THEN ? WHEN `id` = ? THEN ? ELSE 'NULL' END, `update_user` = CASE WHEN `id` = ? THEN ? WHEN `id` = ? THEN ? WHEN `id` = ? THEN ? ELSE 'NULL' END, `update_time` = CASE WHEN `id` = ? THEN ? ELSE 'NULL' END WHERE `tenant_id` = ?" db-types="MySQL" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_order_by_row_count" expected-sql="UPDATE `t_order` SET `status` = 'update' WHERE `order_id` = 1 AND `user_id` = 1 ORDER BY `order_id` LIMIT 10" db-types="MySQL" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_order_by_row_count" expected-sql="UPDATE `t_order` SET `status` = ? WHERE `order_id` = ? AND `user_id` = ? ORDER BY `order_id` LIMIT ?" db-types="MySQL" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_number" expected-sql="UPDATE "t_order" SET "order_id" = 1 WHERE "user_id" = 1" db-types="PostgreSQL,openGauss" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_number" expected-sql="UPDATE "t_order" SET "order_id" = ? WHERE "user_id" = ?" db-types="PostgreSQL,openGauss" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_set_null" expected-sql="UPDATE "employees" SET "commission_pct" = NULL WHERE "job_id" = 'SH_CLERK'" db-types="Oracle" />
<test-cases sql-case-id="update_with_set_subquery" expected-sql="UPDATE "employees" "a" SET "department_id" = (SELECT "department_id" FROM "departments" WHERE "location_id" = '2100')" db-types="Oracle" />
<test-cases sql-case-id="update_with_multiple_set" expected-sql="UPDATE "employees" SET "job_id" = 'SA_MAN', "salary" = 1000, "department_id" = 120 WHERE "last_name" = 'Douglas Grant'" db-types="Oracle" />
<test-cases sql-case-id="update_with_force_index" expected-sql="UPDATE `t_order` SET `status` = 'update' WHERE `order_id` = 1" db-types="MySQL" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_force_index" expected-sql="UPDATE `t_order` SET `status` = ? WHERE `order_id` = ?" db-types="MySQL" sql-case-types="PLACEHOLDER" />
<test-cases sql-case-id="update_with_subquery_using_interval" expected-sql="UPDATE "employees" "a" SET "salary" = (SELECT "salary" FROM "employees" WHERE "last_name" = 'Chung') WHERE "last_name" = 'Chung'" db-types="Oracle" />
<!-- FIXME -->
<!--<test-cases sql-case-id="update_with_translate_function" expected-sql="UPDATE "translate_tab" SET "char_col" = TRANSLATE("nchar_col" USING 'CHAR_CS')" db-types="Oracle" />-->
<test-cases sql-case-id="update_with_dot_column_name" expected-sql="UPDATE "employees" SET "salary" = "salary" + 10 WHERE "employee_id" BETWEEN ASYMMETRIC 1 AND 10" db-types="Oracle" sql-case-types="LITERAL" />
<test-cases sql-case-id="update_with_dot_column_name" expected-sql="UPDATE "employees" SET "salary" = "salary" + ? WHERE "employee_id" BETWEEN ASYMMETRIC ? AND ?" db-types="Oracle" sql-case-types="PLACEHOLDER" />
</sql-node-converter-test-cases>
``` | /content/code_sandbox/test/it/optimizer/src/test/resources/converter/update.xml | xml | 2016-01-18T12:49:26 | 2024-08-16T15:48:11 | shardingsphere | apache/shardingsphere | 19,707 | 3,384 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="path_to_url"
xmlns:tools="path_to_url"
package="com.journaldev.androidmultiasynctasks">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<activity
android:name=".MainActivity"
android:configChanges="orientation|keyboardHidden">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
``` | /content/code_sandbox/Android/AndroidMultiAsyncTasks/app/src/main/AndroidManifest.xml | xml | 2016-05-02T05:43:21 | 2024-08-16T06:51:39 | journaldev | WebJournal/journaldev | 1,314 | 189 |
```xml
import { randomUniform, randomLcg } from 'd3-random';
import { G2Spec } from '../../../src';
export function philosophyWordCloudCustom(): G2Spec {
const random = randomUniform.source(randomLcg(42))(0, 1);
return {
type: 'wordCloud',
layout: {
padding: 4,
spiral: 'rectangular',
random,
},
data: {
type: 'fetch',
value: 'data/philosophyWord.json',
},
encode: {
color: 'text',
},
};
}
philosophyWordCloudCustom.skip = true;
``` | /content/code_sandbox/__tests__/plots/static/philosophy-wordCloud-custom.ts | xml | 2016-05-26T09:21:04 | 2024-08-15T16:11:17 | G2 | antvis/G2 | 12,060 | 136 |
```xml
import { Meta, StoryObj } from '@storybook/angular';
import { DocDirective } from './doc-directive.directive';
const meta: Meta<DocDirective> = {
component: DocDirective,
};
export default meta;
type Story = StoryObj<DocDirective>;
export const Basic: Story = {
render: () => ({
moduleMetadata: {
declarations: [DocDirective],
},
template: '<div docDirective [hasGrayBackground]="true"><h1>DocDirective</h1></div>',
}),
};
``` | /content/code_sandbox/code/frameworks/angular/template/stories/argTypes/doc-directive/doc-directive.stories.ts | xml | 2016-03-18T04:23:44 | 2024-08-16T19:22:08 | storybook | storybookjs/storybook | 83,755 | 110 |
```xml
import React, { useContext } from 'react';
import { CalendarLocale } from '../locales';
import { format } from '@/internals/utils/date';
import type { FixedSizeListProps } from '@/internals/Windowing';
/**
* Represents the inner context value for the Calendar component.
*/
export interface CalendarInnerContextValue {
/**
* The current date of the calendar.
*/
date: Date;
/**
* The date range selected in the calendar.
*/
dateRange?: Date[];
/**
* The format used for displaying dates.
*/
format?: string;
/**
* The hover range value in the calendar.
*/
hoverRangeValue?: [Date, Date];
/**
* Indicates whether the calendar is inline or not.
*/
inline?: boolean;
/**
* Indicates whether the ISO week numbers should be shown in the calendar.
*/
isoWeek: boolean;
/**
* The start day of the week in the calendar.
* 0 - Sunday, 1 - Monday, 2 - Tuesday, 3 - Wednesday, 4 - Thursday, 5 - Friday, 6 - Saturday
*/
weekStart: 0 | 1 | 2 | 3 | 4 | 5 | 6;
/**
* Indicates whether week numbers should be shown in the calendar.
*/
showWeekNumbers?: boolean;
/**
* The target ID of the calendar.
*/
targetId?: string;
/**
* The props for the Month Dropdown component.
*/
monthDropdownProps?: MonthDropdownProps;
/**
* A function that determines if a date is disabled in the calendar.
* @param date - The date to check.
* @param selectRangeValue - The selected date range.
* @param type - The type of the calendar.
* @returns True if the date is disabled, false otherwise.
*/
disabledDate?: (date: Date, selectRangeValue?: Date[], type?: string) => boolean;
/**
* A function that determines if a date is in the same month as the current date in the calendar.
* @param date - The date to check.
* @returns True if the date is in the same month, false otherwise.
*/
inSameMonth?: (date: Date) => boolean;
/**
* A callback function that is called when the month is changed in the calendar.
* @param nextPageDate - The next page date.
* @param event - The mouse event.
*/
onChangeMonth?: (nextPageDate: Date, event: React.MouseEvent) => void;
/**
* A callback function that is called when the time is changed in the calendar.
* @param nextPageTime - The next page time.
* @param event - The mouse event.
*/
onChangeTime?: (nextPageTime: Date, event: React.MouseEvent) => void;
/**
* A callback function that is called when the mouse moves over a date in the calendar.
* @param date - The date.
*/
onMouseMove?: (date: Date) => void;
/**
* A callback function that is called when a date is selected in the calendar.
* @param date - The selected date.
* @param event - The mouse event.
*/
onSelect?: (date: Date, event: React.MouseEvent) => void;
/**
* A function that renders the cell content in the calendar.
* @param date - The date.
* @returns The rendered cell content.
*/
renderCell?: (date: Date) => React.ReactNode;
/**
* A function that renders the cell content in the picker.
* @param date - The date.
* @returns The rendered cell content.
*/
renderCellOnPicker?: (date: Date) => React.ReactNode;
/**
* A function that returns the class name for a cell in the calendar.
* @param date - The date.
* @returns The class name for the cell.
*/
cellClassName?: (date: Date) => string | undefined;
}
/**
* Props for the MonthDropdown component.
*/
export interface MonthDropdownProps extends Partial<FixedSizeListProps> {
/**
* The HTML element or React component to render as the root element of the MonthDropdown.
*/
as?: React.ElementType;
/**
* The HTML element or React component to render as each item in the MonthDropdown.
*/
itemAs?: React.ElementType;
/**
* The CSS class name to apply to each item in the MonthDropdown.
*/
itemClassName?: string;
}
export interface CalendarContextValue extends CalendarInnerContextValue {
locale: CalendarLocale;
formatDate?: typeof format;
}
const CalendarContext = React.createContext<CalendarContextValue>({} as any);
export const CalendarProvider = CalendarContext.Provider;
export const useCalendarContext = () => {
return useContext<CalendarContextValue>(CalendarContext);
};
export default CalendarContext;
``` | /content/code_sandbox/src/Calendar/CalendarContext.ts | xml | 2016-06-06T02:27:46 | 2024-08-16T16:41:54 | rsuite | rsuite/rsuite | 8,263 | 1,057 |
```xml
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="7702" systemVersion="14D136" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES">
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="7701"/>
<capability name="Constraints with non-1.0 multipliers" minToolsVersion="5.1"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner"/>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<view contentMode="scaleToFill" id="iN0-l3-epB">
<rect key="frame" x="0.0" y="0.0" width="480" height="480"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Powered by React Native" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="9" translatesAutoresizingMaskIntoConstraints="NO" id="8ie-xW-0ye">
<rect key="frame" x="20" y="439" width="441" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Project" textAlignment="center" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" minimumFontSize="18" translatesAutoresizingMaskIntoConstraints="NO" id="kId-c2-rCX">
<rect key="frame" x="20" y="140" width="441" height="43"/>
<fontDescription key="fontDescription" type="boldSystem" pointSize="36"/>
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
<nil key="highlightedColor"/>
</label>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
<constraints>
<constraint firstItem="kId-c2-rCX" firstAttribute="centerY" secondItem="iN0-l3-epB" secondAttribute="bottom" multiplier="1/3" constant="1" id="5cJ-9S-tgC"/>
<constraint firstAttribute="centerX" secondItem="kId-c2-rCX" secondAttribute="centerX" id="Koa-jz-hwk"/>
<constraint firstAttribute="bottom" secondItem="8ie-xW-0ye" secondAttribute="bottom" constant="20" id="Kzo-t9-V3l"/>
<constraint firstItem="8ie-xW-0ye" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="MfP-vx-nX0"/>
<constraint firstAttribute="centerX" secondItem="8ie-xW-0ye" secondAttribute="centerX" id="ZEH-qu-HZ9"/>
<constraint firstItem="kId-c2-rCX" firstAttribute="leading" secondItem="iN0-l3-epB" secondAttribute="leading" constant="20" symbolic="YES" id="fvb-Df-36g"/>
</constraints>
<nil key="simulatedStatusBarMetrics"/>
<freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
<point key="canvasLocation" x="548" y="455"/>
</view>
</objects>
</document>
``` | /content/code_sandbox/desktop/libs/Project/ios/Project/Base.lproj/LaunchScreen.xib | xml | 2016-05-19T21:29:00 | 2024-08-14T00:14:01 | deco-ide | decosoftware/deco-ide | 5,835 | 937 |
```xml
//
//
// Microsoft Bot Framework: path_to_url
//
// Bot Framework Emulator Github:
// path_to_url
//
// All rights reserved.
//
// 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.
//
export * from './tabContainer';
``` | /content/code_sandbox/packages/app/client/src/ui/shell/mdi/tab/index.ts | xml | 2016-11-11T23:15:09 | 2024-08-16T12:45:29 | BotFramework-Emulator | microsoft/BotFramework-Emulator | 1,803 | 261 |
```xml
import * as path from "path";
import * as semver from "semver";
import { DartTestCapabilities } from "../../shared/capabilities/dart_test";
import { dartVMPath } from "../../shared/constants";
import { DartSdks, Logger } from "../../shared/interfaces";
import { runProcess, safeSpawn } from "../processes";
import { WorkspaceContext } from "../workspace";
const cachedTestCapabilities: { [key: string]: DartTestCapabilities } = {};
export async function getPackageTestCapabilities(logger: Logger, workspaceContext: WorkspaceContext, folder: string): Promise<DartTestCapabilities> {
// Don't ever run the command below in places like the SDK.
if (workspaceContext.config.supportsDartRunTest === false)
return DartTestCapabilities.empty;
const sdks = workspaceContext.sdks as DartSdks;
if (!cachedTestCapabilities[folder]) {
const binPath = path.join(sdks.dart, dartVMPath);
const proc = await runProcess(logger, binPath, ["run", "test:test", "--version"], folder, {}, safeSpawn);
const capabilities = DartTestCapabilities.empty;
if (proc.exitCode === 0) {
if (semver.valid(proc.stdout.trim()))
capabilities.version = proc.stdout.trim();
}
cachedTestCapabilities[folder] = capabilities;
}
return cachedTestCapabilities[folder];
}
``` | /content/code_sandbox/src/shared/test/version.ts | xml | 2016-07-30T13:49:11 | 2024-08-10T16:23:15 | Dart-Code | Dart-Code/Dart-Code | 1,472 | 293 |
```xml
import * as nls from "vscode-nls";
import {
basicCheck,
createNotFoundMessage,
createVersionErrorMessage,
parseVersion,
} from "../util";
import { ValidationCategoryE, IValidation, ValidationResultT } from "./types";
nls.config({
messageFormat: nls.MessageFormat.bundle,
bundleFormat: nls.BundleFormat.standalone,
})();
const toLocale = nls.loadMessageBundle();
const label = "NPM";
async function test(): Promise<ValidationResultT> {
const result = await basicCheck({
command: "npm",
getVersion: parseVersion.bind(null, "npm --version"),
});
if (!result.exists) {
return {
status: "failure",
comment: createNotFoundMessage(label),
};
}
if (result.versionCompare === undefined) {
return {
status: "failure",
comment: createVersionErrorMessage(label),
};
}
return { status: "success" };
}
const main: IValidation = {
label,
description: toLocale("NpmCheckDescription", "Required for installing node packages"),
category: ValidationCategoryE.Common,
exec: test,
};
export default main;
``` | /content/code_sandbox/src/extension/services/validationService/checks/npm.ts | xml | 2016-01-20T21:10:07 | 2024-08-16T15:29:52 | vscode-react-native | microsoft/vscode-react-native | 2,617 | 253 |
```xml
import { colors, dimensions } from '@erxes/ui/src/styles';
import styled from 'styled-components';
const ConversationWrapper = styled.div`
height: 100%;
overflow: auto;
min-height: 100px;
background: ${colors.bgLight};
`;
const RenderConversationWrapper = styled.div`
padding: 20px;
overflow: hidden;
min-height: 100%;
> div:first-child {
margin-top: 0;
}
`;
const ActionBarLeft = styled.div`
display: flex;
flex-direction: row;
align-items: center;
`;
const AssignTrigger = styled.div`
padding-left: ${dimensions.unitSpacing}px;
margin-right: ${dimensions.unitSpacing}px;
i {
margin-left: 5px;
margin-right: -6px;
transition: all ease 0.3s;
color: ${colors.colorCoreGray};
display: inline-block;
@media (max-width: 768px) {
display: none;
}
}
&:hover {
cursor: pointer;
}
&[aria-describedby] {
color: ${colors.colorSecondary};
i {
transform: rotate(180deg);
}
}
`;
const AssignText = styled.div`
display: inline-block;
`;
const MailSubject = styled.h3`
margin: 0 0 ${dimensions.unitSpacing}px 0;
font-weight: bold;
font-size: 18px;
line-height: 22px;
`;
export {
ConversationWrapper,
RenderConversationWrapper,
ActionBarLeft,
AssignTrigger,
AssignText,
MailSubject
};
``` | /content/code_sandbox/packages/plugin-inbox-ui/src/inbox/components/conversationDetail/workarea/styles.ts | xml | 2016-11-11T06:54:50 | 2024-08-16T10:26:06 | erxes | erxes/erxes | 3,479 | 347 |
```xml
<!--
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~
~ path_to_url
~
~ Unless required by applicable law or agreed to in writing, software
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<dataset>
<metadata>
<column name="relid" />
<column name="indexrelid" />
<column name="schemaname" />
<column name="relname" />
<column name="indexrelname" />
<column name="idx_blks_read" />
<column name="idx_blks_hit" />
</metadata>
</dataset>
``` | /content/code_sandbox/test/e2e/sql/src/test/resources/cases/dql/dataset/empty_storage_units/postgresql/select_postgresql_pg_catalog_pg_statio_all_indexes.xml | xml | 2016-01-18T12:49:26 | 2024-08-16T15:48:11 | shardingsphere | apache/shardingsphere | 19,707 | 156 |
```xml
import chalk from 'chalk';
import semver from 'semver';
import { dedent } from 'ts-dedent';
import { checkWebpack5Builder } from '../helpers/checkWebpack5Builder';
import type { Fix } from '../types';
import { webpack5 } from './webpack5';
interface CRA5RunOptions {
craVersion: string;
// FIXME craPresetVersion: string;
storybookVersion: string;
}
/**
* Is the user upgrading from CRA4 to CRA5?
*
* If so:
*
* - Run webpack5 fix
*/
export const cra5: Fix<CRA5RunOptions> = {
id: 'cra5',
versionRange: ['<7', '>=7'],
async check({ packageManager, mainConfig, storybookVersion }) {
const craVersion = await packageManager.getPackageVersion('react-scripts');
if (!craVersion || semver.lt(craVersion, '5.0.0')) {
return null;
}
const builderInfo = await checkWebpack5Builder({ mainConfig, storybookVersion });
return builderInfo ? { craVersion, ...builderInfo } : null;
},
prompt({ craVersion }) {
const craFormatted = chalk.cyan(`Create React App (CRA) ${craVersion}`);
return dedent`
We've detected you are running ${craFormatted} which is powered by webpack5.
Your Storybook's main.js files specifies webpack4, which is incompatible.
In order to work with your version of CRA, we need to install Storybook's ${chalk.cyan(
'@storybook/builder-webpack5'
)}.
More info: ${chalk.yellow(
'path_to_url#cra5-upgrade'
)}
`;
},
async run(options) {
return webpack5.run({
...options,
result: { webpackVersion: null, ...options.result },
});
},
};
``` | /content/code_sandbox/code/lib/cli-storybook/src/automigrate/fixes/cra5.ts | xml | 2016-03-18T04:23:44 | 2024-08-16T19:22:08 | storybook | storybookjs/storybook | 83,755 | 408 |
```xml
import { AppPage } from './app.po';
describe('workspace-project App', () => {
let page: AppPage;
beforeEach(() => {
page = new AppPage();
});
it('should display welcome message', () => {
page.navigateTo();
expect(page.getParagraphText()).toEqual('Welcome to angularv61!');
});
});
``` | /content/code_sandbox/angularv61/e2e/src/app.e2e-spec.ts | xml | 2016-07-02T18:58:48 | 2024-08-15T23:36:46 | curso-angular | loiane/curso-angular | 1,910 | 74 |
```xml
// See LICENSE.txt for license information.
import React from 'react';
import {View, StyleSheet} from 'react-native';
import CompassIcon from '@components/compass_icon';
import {useTheme} from '@context/theme';
import {getFileType} from '@utils/file';
type FileIconProps = {
backgroundColor?: string;
defaultImage?: boolean;
failed?: boolean;
file?: FileInfo | ExtractedFileInfo;
iconColor?: string;
iconSize?: number;
smallImage?: boolean;
}
const BLUE_ICON = '#338AFF';
const RED_ICON = '#ED522A';
const GREEN_ICON = '#1CA660';
const GRAY_ICON = '#999999';
const FAILED_ICON_NAME_AND_COLOR = ['file-image-broken-outline-large', GRAY_ICON];
const ICON_NAME_AND_COLOR_FROM_FILE_TYPE: Record<string, string[]> = {
audio: ['file-audio-outline-large', BLUE_ICON],
code: ['file-code-outline-large', BLUE_ICON],
image: ['file-image-outline-large', BLUE_ICON],
smallImage: ['image-outline', BLUE_ICON],
other: ['file-generic-outline-large', BLUE_ICON],
patch: ['file-patch-outline-large', BLUE_ICON],
pdf: ['file-pdf-outline-large', RED_ICON],
presentation: ['file-powerpoint-outline-large', RED_ICON],
spreadsheet: ['file-excel-outline-large', GREEN_ICON],
text: ['file-text-outline-large', GRAY_ICON],
video: ['file-video-outline-large', BLUE_ICON],
word: ['file-word-outline-large', BLUE_ICON],
zip: ['file-zip-outline-large', BLUE_ICON],
};
const styles = StyleSheet.create({
fileIconWrapper: {
borderRadius: 4,
alignItems: 'center',
justifyContent: 'center',
},
});
const FileIcon = ({
backgroundColor, defaultImage = false, failed = false, file,
iconColor, iconSize = 48, smallImage = false,
}: FileIconProps) => {
const theme = useTheme();
const getFileIconNameAndColor = () => {
if (failed) {
return FAILED_ICON_NAME_AND_COLOR;
}
if (defaultImage) {
if (smallImage) {
return ICON_NAME_AND_COLOR_FROM_FILE_TYPE.smallImage;
}
return ICON_NAME_AND_COLOR_FROM_FILE_TYPE.image;
}
if (file) {
const fileType = getFileType(file);
return ICON_NAME_AND_COLOR_FROM_FILE_TYPE[fileType] || ICON_NAME_AND_COLOR_FROM_FILE_TYPE.other;
}
return ICON_NAME_AND_COLOR_FROM_FILE_TYPE.other;
};
const [iconName, defaultIconColor] = getFileIconNameAndColor();
const color = iconColor || defaultIconColor;
const bgColor = backgroundColor || theme?.centerChannelBg || 'transparent';
return (
<View style={[styles.fileIconWrapper, {backgroundColor: bgColor}]}>
<CompassIcon
name={iconName}
size={iconSize}
color={color}
/>
</View>
);
};
export default FileIcon;
``` | /content/code_sandbox/app/components/files/file_icon.tsx | xml | 2016-10-07T16:52:32 | 2024-08-16T12:08:38 | mattermost-mobile | mattermost/mattermost-mobile | 2,155 | 637 |
```xml
import dedent from 'dedent-js';
import { format as originalFormat, FormatFn } from '../src/sqlFormatter.js';
import behavesLikeMariaDbFormatter from './behavesLikeMariaDbFormatter.js';
import supportsJoin from './features/join.js';
import supportsOperators from './features/operators.js';
import supportsReturning from './features/returning.js';
import supportsSetOperations, { standardSetOperations } from './features/setOperations.js';
import supportsLimiting from './features/limiting.js';
import supportsCreateTable from './features/createTable.js';
import supportsParams from './options/param.js';
import supportsCreateView from './features/createView.js';
import supportsAlterTable from './features/alterTable.js';
import supportsStrings from './features/strings.js';
import supportsConstraints from './features/constraints.js';
import supportsDataTypeCase from './options/dataTypeCase.js';
describe('MariaDbFormatter', () => {
const language = 'mariadb';
const format: FormatFn = (query, cfg = {}) => originalFormat(query, { ...cfg, language });
behavesLikeMariaDbFormatter(format);
// in addition to string types listed in behavesLikeMariaDbFormatter
supportsStrings(format, ["B''"]);
supportsJoin(format, {
without: ['FULL', 'NATURAL INNER JOIN'],
additionally: ['STRAIGHT_JOIN'],
});
supportsSetOperations(format, [...standardSetOperations, 'MINUS', 'MINUS ALL', 'MINUS DISTINCT']);
supportsOperators(format, ['%', ':=', '&', '|', '^', '~', '<<', '>>', '<=>', '&&', '||', '!'], {
logicalOperators: ['AND', 'OR', 'XOR'],
any: true,
});
supportsReturning(format);
supportsLimiting(format, { limit: true, offset: true, fetchFirst: true, fetchNext: true });
supportsCreateTable(format, {
orReplace: true,
ifNotExists: true,
columnComment: true,
tableComment: true,
});
supportsConstraints(format, ['RESTRICT', 'CASCADE', 'SET NULL', 'NO ACTION', 'SET DEFAULT']);
supportsParams(format, { positional: true });
supportsCreateView(format, { orReplace: true, ifNotExists: true });
supportsAlterTable(format, {
addColumn: true,
dropColumn: true,
modify: true,
renameTo: true,
renameColumn: true,
});
supportsDataTypeCase(format);
it(`supports @"name" variables`, () => {
expect(format(`SELECT @"foo fo", @"foo\\"x", @"foo""y" FROM tbl;`)).toBe(dedent`
SELECT
@"foo fo",
@"foo\\"x",
@"foo""y"
FROM
tbl;
`);
});
it(`supports @'name' variables`, () => {
expect(format(`SELECT @'bar ar', @'bar\\'x', @'bar''y' FROM tbl;`)).toBe(dedent`
SELECT
@'bar ar',
@'bar\\'x',
@'bar''y'
FROM
tbl;
`);
});
it('formats ALTER TABLE ... ALTER COLUMN', () => {
expect(
format(
`ALTER TABLE t ALTER COLUMN foo SET DEFAULT 10;
ALTER TABLE t ALTER COLUMN foo DROP DEFAULT;`
)
).toBe(dedent`
ALTER TABLE t
ALTER COLUMN foo
SET DEFAULT 10;
ALTER TABLE t
ALTER COLUMN foo
DROP DEFAULT;
`);
});
});
``` | /content/code_sandbox/test/mariadb.test.ts | xml | 2016-09-12T13:09:04 | 2024-08-16T10:30:12 | sql-formatter | sql-formatter-org/sql-formatter | 2,272 | 764 |
```xml
import React from 'react';
import clsx from 'clsx';
import styles from './HomepageFeatures.module.scss';
const features = [
{
title: 'Easy to Use',
Svg: require('../../static/img/undraw_relaxation.svg').default,
description: (
<>
Despite its rich features and plugins,{' '}
<code>react-native-render-html</code> was designed for ease of use in
mind. Getting started is a matter of seconds.
</>
)
},
{
title: 'Transparent',
Svg: require('../../static/img/undraw_back_home.svg').default,
description: (
<>
The internal data structure to render elements is{' '}
<strong>entirely transparent</strong>. You can easily{' '}
<strong>inspect</strong> the transient tree structure and have an
immediate idea of the engine belly.
</>
)
},
{
title: 'Hackable',
Svg: require('../../static/img/undraw_hacker_mind.svg').default,
description: (
<>
Every step of the data flow can be tampered with. You can{' '}
<strong>alter the DOM</strong>,{' '}
<strong>customize and define elements models</strong>, implement{' '}
<strong>custom renderers</strong> and <strong>defer rendering</strong>{' '}
for asynchronous DOM inspection in a breeze.
</>
)
},
{
title: 'Standards Compliance',
Svg: require('../../static/img/undraw_static_assets.svg').default,
description: (
<>
This library aims at balancing adherance to the W3C and WHATWG standards
with complexity and speed.
</>
)
},
{
title: 'Styles Safety',
Svg: require('../../static/img/undraw_security_on.svg').default,
description: (
<>
Despite React Native styles and W3C CSS numerous incompatibilities, this
library <strong>reconciles both standards</strong>, and brings support
for properties unavailable in React Native such as{' '}
<code>list-style-type</code>, <code>white-space</code>...
</>
)
},
{
title: 'Production Ready',
Svg: require('../../static/img/undraw_certificate.svg').default,
description: (
<>
This library is ready for production, and its development{' '}
<strong>test-driven</strong>. The transient node engine is{' '}
<strong>CI-benchmarked</strong> to safeguard its speed.
</>
)
}
];
function Feature({ Svg, title, description }) {
return (
<div className={clsx('col col--4')}>
<div className="text--center">
<Svg className={styles.featureSvg} alt={title} />
</div>
<div className="text--center padding-horiz--md">
<h2>{title}</h2>
<p>{description}</p>
</div>
</div>
);
}
export default function HomepageFeatures() {
return (
<section className={styles.features}>
<h1 style={{ display: 'none' }}>Overview of features</h1>
<div className="container">
<div className="row">
{features.map((props, idx) => (
<Feature key={idx} {...props} />
))}
</div>
</div>
</section>
);
}
``` | /content/code_sandbox/apps/website/src/components/HomepageFeatures.tsx | xml | 2016-11-29T10:50:53 | 2024-08-08T06:53:22 | react-native-render-html | meliorence/react-native-render-html | 3,445 | 739 |
```xml
<?xml version="1.0"?>
<md:EntityDescriptor xmlns:md="urn:oasis:names:tc:SAML:2.0:metadata" xmlns:ds="path_to_url#" entityID="path_to_url">
<md:IDPSSODescriptor protocolSupportEnumeration="urn:oasis:names:tc:SAML:2.0:protocol">
<md:KeyDescriptor use="signing">
<ds:KeyInfo xmlns:ds="path_to_url#">
<ds:X509Data>
<ds:X509Certificate>your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashCgKCAQEAzUCFozgNb1h1M0jzNRSCjhOBnR+uVbVpaWfXYIR+AhWDdEe5ryY+CgavOg8bfLybyzFdehlYdDRgkedEB/GjG8aJw06l0qF4jDOAw0kEygWCu2mcH7XOxRt+YAH3TVHa/Hu1W3WjzkobqqqLQ8gkKWWM27fOgAZ6GieaJBN6VBSMMcPey3HWLBmc+TYJmv1dbaO2jHhKh8pfKw0W12VM8P1PIO8gv4Phu/your_sha256_hashyour_sha256_hashAdBgNVHQ4EFgQUxpuwcs/CYQOyui+r1G+3KxBNhxkwHwYDVR0jBBgwFoAUxpuwcs/CYQOyui+r1G+3KxBNhxkwDAYDVR0TBAUwAwEByour_sha512_hashyour_sha512_hash/ly7yapFzlYSJLGoVE+your_sha256_hash6lgOo3cEdB/ksCq3hmtlC/DlLZ/D8CJ+7VuZnS1rR2naQ==</ds:X509Certificate>
</ds:X509Data>
</ds:KeyInfo>
</md:KeyDescriptor>
<md:KeyDescriptor use="encryption">
<ds:KeyInfo xmlns:ds="path_to_url#">
<ds:X509Data>
<ds:X509Certificate>your_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashyour_sha256_hashCgKCAQEAzUCFozgNb1h1M0jzNRSCjhOBnR+uVbVpaWfXYIR+AhWDdEe5ryY+CgavOg8bfLybyzFdehlYdDRgkedEB/GjG8aJw06l0qF4jDOAw0kEygWCu2mcH7XOxRt+YAH3TVHa/Hu1W3WjzkobqqqLQ8gkKWWM27fOgAZ6GieaJBN6VBSMMcPey3HWLBmc+TYJmv1dbaO2jHhKh8pfKw0W12VM8P1PIO8gv4Phu/your_sha256_hashyour_sha256_hashAdBgNVHQ4EFgQUxpuwcs/CYQOyui+r1G+3KxBNhxkwHwYDVR0jBBgwFoAUxpuwcs/CYQOyui+r1G+3KxBNhxkwDAYDVR0TBAUwAwEByour_sha512_hashyour_sha512_hash/ly7yapFzlYSJLGoVE+your_sha256_hash6lgOo3cEdB/ksCq3hmtlC/DlLZ/D8CJ+7VuZnS1rR2naQ==</ds:X509Certificate>
</ds:X509Data>
</ds:KeyInfo>
</md:KeyDescriptor>
<md:SingleLogoutService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect" Location="path_to_url"/>
<md:NameIDFormat>urn:oasis:names:tc:SAML:2.0:nameid-format:transient</md:NameIDFormat>
<md:SingleSignOnService Binding="urn:oasis:names:tc:SAML:2.0:bindings:HTTP-Redirect" Location="path_to_url"/>
</md:IDPSSODescriptor>
</md:EntityDescriptor>
``` | /content/code_sandbox/testdata/authentication/saml2_sso_metadata.xml | xml | 2016-04-13T07:00:08 | 2024-08-16T10:10:44 | impala | apache/impala | 1,115 | 990 |
```xml
<EnclaveConfiguration>
<ProdID>0</ProdID>
<ISVSVN>0</ISVSVN>
<StackMaxSize>0x40000</StackMaxSize>
<HeapMaxSize>0x100000</HeapMaxSize>
<TCSNum>10</TCSNum>
<TCSPolicy>1</TCSPolicy>
<DisableDebug>0</DisableDebug>
<MiscSelect>0</MiscSelect>
<MiscMask>0xFFFFFFFF</MiscMask>
</EnclaveConfiguration>
``` | /content/code_sandbox/SampleCode/Switchless/Enclave/Enclave.config.xml | xml | 2016-02-23T23:41:25 | 2024-08-15T10:13:48 | linux-sgx | intel/linux-sgx | 1,313 | 120 |
```xml
export * from './CalendarPicker.types';
export * from './useCalendarPickerStyles.styles';
``` | /content/code_sandbox/packages/react-components/react-calendar-compat/library/src/components/CalendarPicker/index.ts | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 19 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="path_to_url">
<item android:top="0dp" android:left="0dp" android:bottom="0dp" android:right="0dp">
<shape android:shape="rectangle">
<solid android:color="@color/traffic_yellow"/>
<corners android:radius="10dp" />
</shape>
</item>
<item android:top="4dp" android:left="4dp" android:bottom="4dp" android:right="4dp">
<shape android:shape="rectangle">
<solid android:color="@color/traffic_yellow"/>
<stroke
android:color="@color/traffic_black"
android:width="4dp"/>
<corners android:radius="4dp" />
<padding
android:bottom="12dp"
android:left="16dp"
android:right="16dp"
android:top="12dp" />
</shape>
</item>
</layer-list>
``` | /content/code_sandbox/app/src/main/res/drawable/background_rectangular_sign_yellow.xml | xml | 2016-07-02T10:44:04 | 2024-08-16T18:55:54 | StreetComplete | streetcomplete/StreetComplete | 3,781 | 227 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="path_to_url" xmlns:xsi="path_to_url" xsi:schemaLocation="path_to_url path_to_url">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-java</artifactId>
<version>0.64.8</version>
</parent>
<artifactId>flexmark-ext-gfm-users</artifactId>
<name>flexmark-java extension for GitHub user syntax</name>
<description>flexmark-java extension for GitHub user syntax</description>
<dependencies>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-util</artifactId>
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark</artifactId>
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-test-util</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.vladsch.flexmark</groupId>
<artifactId>flexmark-core-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>
``` | /content/code_sandbox/flexmark-ext-gfm-users/pom.xml | xml | 2016-01-23T15:29:29 | 2024-08-15T04:04:18 | flexmark-java | vsch/flexmark-java | 2,239 | 312 |
```xml
import * as ActionHelpers from 'shared/utils/redux/actions';
import {
makeCommunicationReducerFromEnum,
makeCommunicationReducerByIdFromEnum,
CommunicationActionsToObj,
} from 'shared/utils/redux/communication';
import { combineReducers } from 'redux';
import * as actions from '../actions';
import {
IDatasetsState,
loadDatasetsActionTypes,
deleteDatasetActionTypes,
IDeleteDatasetActions,
loadDatasetActionTypes,
deleteDatasetsActionTypes,
ILoadDatasetActions,
} from '../types';
export default combineReducers<IDatasetsState['communications']>({
loadingDatasets: makeCommunicationReducerFromEnum(loadDatasetsActionTypes),
deletingDataset: makeCommunicationReducerByIdFromEnum<
CommunicationActionsToObj<
IDeleteDatasetActions,
typeof deleteDatasetActionTypes
>,
string
>(deleteDatasetActionTypes, {
request: ({ id }) => id,
success: ({ id }) => id,
failure: ({ id }) => id,
}),
loadingDataset: makeCommunicationReducerByIdFromEnum<
CommunicationActionsToObj<
ILoadDatasetActions,
typeof loadDatasetActionTypes
>,
string
>(loadDatasetActionTypes, {
request: ({ id }) => id,
success: ({ dataset: { id } }) => id,
failure: ({ id }) => id,
}),
deletingDatasets: makeCommunicationReducerFromEnum(deleteDatasetsActionTypes),
creatingDataset: ActionHelpers.makeCommunicationReducerFromResetableAsyncAction(
actions.createDataset
),
});
``` | /content/code_sandbox/webapp/client/src/features/datasets/store/reducer/communications.ts | xml | 2016-10-19T01:07:26 | 2024-08-14T03:53:55 | modeldb | VertaAI/modeldb | 1,689 | 318 |
```xml
import { describe, expect, it } from "vitest";
import { Formatter } from "@export/formatter";
import { CompatibilitySetting } from "./compatibility-setting";
describe("CompatibilitySetting", () => {
describe("#constructor", () => {
it("creates an initially empty property object", () => {
const compatibilitySetting = new CompatibilitySetting(15);
const tree = new Formatter().format(compatibilitySetting);
expect(tree).to.deep.equal({
"w:compatSetting": {
_attr: {
"w:name": "compatibilityMode",
"w:uri": "path_to_url",
"w:val": 15,
},
},
});
});
});
});
``` | /content/code_sandbox/src/file/settings/compatibility-setting/compatibility-setting.spec.ts | xml | 2016-03-26T23:43:56 | 2024-08-16T13:02:47 | docx | dolanmiu/docx | 4,139 | 149 |
```xml
import { getTheme } from '@fluentui/react/lib/Styling';
import { IStyleFunction } from '@fluentui/react/lib/Utilities';
import { IPropertiesTableSetStyleProps, IPropertiesTableSetStyles } from './PropertiesTableSet.types';
export const getStyles: IStyleFunction<IPropertiesTableSetStyleProps, IPropertiesTableSetStyles> = props => {
const { theme = getTheme() } = props;
return {
tableRoot: [
{
marginBottom: 20,
overflowX: 'auto',
overflowY: 'inherit',
},
'PropertiesTable',
],
tableHeader: theme.fonts.mediumPlus,
};
};
``` | /content/code_sandbox/packages/react-docsite-components/src/components/PropertiesTable/PropertiesTableSet.styles.ts | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 143 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="path_to_url"
xmlns:app="path_to_url"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/player_ui_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" >
<com.pierfrancescosoffritti.androidyoutubeplayer.core.player.views.YouTubePlayerView
android:id="@+id/youtube_player_view"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<Button
android:id="@+id/next_video_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="26dp"
android:backgroundTint="@android:color/white"
android:text="Play Next Video" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/playback_speed_text_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="Playback speed" />
<Button
android:id="@+id/playback_speed_0_25"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:backgroundTint="@android:color/white"
android:text="0.25" />
<Button
android:id="@+id/playback_speed_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:backgroundTint="@android:color/white"
android:text="1" />
<Button
android:id="@+id/playback_speed_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:backgroundTint="@android:color/white"
android:text="2" />
</LinearLayout>
</LinearLayout>
<FrameLayout
android:id="@+id/full_screen_view_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
``` | /content/code_sandbox/core-sample-app/src/main/res/layout/activity_complete_example.xml | xml | 2016-08-29T12:04:03 | 2024-08-16T13:03:46 | android-youtube-player | PierfrancescoSoffritti/android-youtube-player | 3,391 | 623 |
```xml
/*
* Wire
*
* This program is free software: you can redistribute it and/or modify
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
*
* along with this program. If not, see path_to_url
*
*/
export enum AssetType {
BUTTON = 'Button',
FILE = 'File',
IMAGE = 'Image',
LOCATION = 'Location',
TEXT = 'Text',
}
``` | /content/code_sandbox/src/script/assets/AssetType.ts | xml | 2016-07-21T15:34:05 | 2024-08-16T11:40:13 | wire-webapp | wireapp/wire-webapp | 1,125 | 124 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<!--
path_to_url
Unless required by applicable law or agreed to in writing, software
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<manifest xmlns:android="path_to_url"
package="com.google.android.material.testapp.custom">
<application/>
</manifest>
``` | /content/code_sandbox/testing/java/com/google/android/material/testapp/custom/AndroidManifest.xml | xml | 2016-12-05T16:11:29 | 2024-08-16T17:51:42 | material-components-android | material-components/material-components-android | 16,176 | 79 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE language SYSTEM "language.dtd">
<language name="REXX" version="3" kateversion="2.2" section="Scripts" extensions="*.rex;*.rx;*.rexx" mimetype="">
<highlighting>
<list name="keywords">
<item>ADDRESS</item>
<item>ARG</item>
<item>CALL</item>
<item>DROP</item>
<item>EXIT</item>
<item>INTERPRET</item>
<item>NOP</item>
<item>NUMERIC</item>
<item>OPTIONS</item>
<item>PARSE</item>
<item>PROCEDURE</item>
<item>PULL</item>
<item>PUSH</item>
<item>QUEUE</item>
<item>RETURN</item>
<item>SAY</item>
<item>SYNTAX</item>
<item>TRACE</item>
<item>UPPER</item>
<item>RC</item>
<item>RESULT</item>
<item>SIGL</item>
</list>
<list name="subkeywords">
<item>VALUE</item>
<item>WITH</item>
<item>RESULT</item>
<item>DIGITS</item>
<item>SCIENTIFIC</item>
<item>ENGINEERING</item>
<item>FORM</item>
<item>FUZZ</item>
<item>ALL</item>
<item>COMMANDS</item>
<item>ERROR</item>
<item>FAILURE</item>
<item>Intermediates</item>
<item>LABELS</item>
<item>NORMAL</item>
<item>OFF</item>
<item>RESULTS</item>
</list>
<list name="loops">
<item>do</item>
<item>to</item>
<item>by</item>
<item>for</item>
<item>while</item>
<item>until</item>
<item>leave</item>
<item>iterate</item>
<item>forever</item>
</list>
<list name="control">
<item>select</item>
<item>when</item>
<item>then</item>
<item>otherwise</item>
<item>do</item>
<item>if</item>
<item>else</item>
<item>end</item>
</list>
<list name="builtin">
<item>ABBREV</item>
<item>ABS</item>
<item>ADDRESS</item>
<item>ARG</item>
<item>B2X</item>
<item>BITAND</item>
<item>BITOR</item>
<item>BITXOR</item>
<item>C2D</item>
<item>C2X</item>
<item>CHARS</item>
<item>CHARIN</item>
<item>CHARSIN</item>
<item>CENTER</item>
<item>CENTRE</item>
<item>COMPARE</item>
<item>CONDITION</item>
<item>COPIES</item>
<item>D2C</item>
<item>D2X</item>
<item>DATATYPE</item>
<item>DATE</item>
<item>DBCS</item>
<item>DELSTR</item>
<item>DELWORD</item>
<item>DIGITS</item>
<item>ERRORTEXT</item>
<item>EXTERNALS</item>
<item>FIND</item>
<item>FORM</item>
<item>FORMAT</item>
<item>FUZZ</item>
<item>GETMSG</item>
<item>INDEX</item>
<item>INSERT</item>
<item>JUSTIFY</item>
<item>LASTPOS</item>
<item>LEFT</item>
<item>LENGTH</item>
<item>LINEIN</item>
<item>LINEOUT</item>
<item>LINESIZE</item>
<item>LISTDSI</item>
<item>MAX</item>
<item>MIN</item>
<item>MSG</item>
<item>MVSVAR</item>
<item>OUTTRAP</item>
<item>OVERLAY</item>
<item>POS</item>
<item>PROMPT</item>
<item>QUEUED</item>
<item>RANDOM</item>
<item>REVERSE</item>
<item>RIGHT</item>
<item>SETLANG</item>
<item>SIGN</item>
<item>SOURCELINE</item>
<item>SPACE</item>
<item>STORAGE</item>
<item>STRIP</item>
<item>STREAM</item>
<item>SUBSTR</item>
<item>SUBWORD</item>
<item>SYMBOL</item>
<item>SYSCPUS</item>
<item>SYSDSN</item>
<item>SYSVAR</item>
<item>TIME</item>
<item>TRACE</item>
<item>TRANSLATE</item>
<item>TRUNC</item>
<item>USERID</item>
<item>VALUE</item>
<item>VERIFY</item>
<item>WORD</item>
<item>WORDINDEX</item>
<item>WORDLENGTH</item>
<item>WORDPOS</item>
<item>WORDS</item>
<item>X2B</item>
<item>X2C</item>
<item>X2D</item>
<item>XRANGE</item>
</list>
<contexts>
<context attribute="Normal Text" lineEndContext="#stay" name="Normal">
<keyword attribute="Instructions" context="#stay" String="keywords" />
<keyword attribute="Instructions" context="#stay" String="subkeywords" />
<keyword attribute="Control" context="#stay" String="loops" />
<keyword attribute="Control" context="#stay" String="control" />
<keyword attribute="Built In" context="#stay" String="builtin" />
<RegExpr attribute="Instructions" context="#stay" insensitive="true" String="\bsignal([\s]*(on|off)[\s]*(error|failure|halt|notready|novalue|syntax|lostdigits))*"/>
<RegExpr attribute="Instructions" context="#stay" insensitive="true" String="\bcall([\s]*(on|off)[\s]*(error|failure|halt|notready))*"/>
<RegExpr attribute="Instructions" context="#stay" insensitive="true" String="\b(trace|address)\s*[_\w\d]"/>
<RegExpr attribute="Instructions" context="#stay" insensitive="true" String="\bprocedure([\s]*expose)?"/>
<RegExpr attribute="Instructions" context="#stay" insensitive="true" String="\bdo([\s]*forever)?"/>
<DetectChar attribute="String" context="String" char="'"/>
<Detect2Chars attribute="Comment" context="Commentar 1" char="/" char1="*" beginRegion="Comment"/>
<AnyChar attribute="Symbol" context="#stay" String=":!%&()+,-/.*<=>?[]{|}~^;"/>
<RegExpr attribute="Function" context="#stay" String="\b[_\w][_\w\d]*(?=[\s]*[(:])" />
</context>
<context attribute="String" lineEndContext="#pop" name="String">
<LineContinue attribute="String" context="#stay"/>
<DetectChar attribute="String" context="#pop" char="'"/>
</context>
<context attribute="Comment" lineEndContext="#stay" name="Commentar 1">
<RegExpr attribute="Alert" context="#stay" String="(FIXME|TODO)" />
<Detect2Chars attribute="Comment" context="#pop" char="*" char1="/" endRegion="Comment"/>
</context>
</contexts>
<itemDatas>
<itemData name="Normal Text" defStyleNum="dsNormal"/>
<itemData name="Instructions" defStyleNum="dsKeyword"/>
<itemData name="Built In" defStyleNum="dsFunction" />
<itemData name="Control" defStyleNum="dsControlFlow" />
<itemData name="Function" defStyleNum="dsFunction" />
<itemData name="String" defStyleNum="dsString"/>
<itemData name="Comment" defStyleNum="dsComment"/>
<itemData name="Symbol" defStyleNum="dsVariable"/>
<itemData name="Alert" defStyleNum="dsAlert" />
</itemDatas>
</highlighting>
<general>
<comments>
<comment name="multiLine" start="/*" end="*/" />
</comments>
<keywords casesensitive="0" />
</general>
</language>
``` | /content/code_sandbox/src/data/extra/syntax-highlighting/syntax/rexx.xml | xml | 2016-10-05T07:24:54 | 2024-08-16T05:03:40 | vnote | vnotex/vnote | 11,687 | 2,047 |
```xml
import fetch from 'node-fetch';
import * as moment from 'moment';
import { IEbarimt, IEbarimtFull } from './definitions/putResponses';
import { IEbarimtConfig } from './definitions/configs';
import { IProductDocument } from './definitions/products';
export interface IDoc {
contentType: string;
contentId: string;
number: string;
date?: Date;
type: string;
customerCode?: string;
customerTin?: string;
customerName?: string;
consumerNo?: string;
details?: {
recId: string;
product: IProductDocument;
barcode?: string;
quantity: number;
unitPrice: number;
totalDiscount?: number;
totalAmount: number;
}[];
nonCashAmounts: { amount: number }[];
inactiveId?: string;
invoiceId?: string;
}
export interface IPutDataArgs {
config: IEbarimtConfig;
doc: IDoc
}
const isValidBarcode = (barcode: string): boolean => {
// check length
if (
barcode.length < 8 ||
barcode.length > 18 ||
(barcode.length != 8 &&
barcode.length != 12 &&
barcode.length != 13 &&
barcode.length != 14 &&
barcode.length != 18)
) {
return false;
}
const lastDigit = Number(barcode.substring(barcode.length - 1));
let checkSum = 0;
if (isNaN(lastDigit)) {
return false;
} // not a valid upc/ean
const arr: any = barcode
.substring(0, barcode.length - 1)
.split('')
.reverse();
let oddTotal = 0,
evenTotal = 0;
for (let i = 0; i < arr.length; i++) {
if (isNaN(arr[i])) {
return false;
} // can't be a valid upc/ean we're checking for
if (i % 2 == 0) {
oddTotal += Number(arr[i]) * 3;
} else {
evenTotal += Number(arr[i]);
}
}
checkSum = (10 - ((evenTotal + oddTotal) % 10)) % 10;
// true if they are equal
return checkSum == lastDigit;
};
const getCustomerInfo = async (type: string, config: IEbarimtConfig, doc: IDoc) => {
if (type === 'B2B_RECEIPT') {
const tinre = /(^\d{11}$)|(^\d{12}$)/;
if (tinre.test(doc.customerTin || '')) {
return { customerTin: doc.customerTin, customerName: doc.customerName }
}
const resp = await getCompanyInfo({
checkTaxpayerUrl: config.checkTaxpayerUrl,
no: doc.customerTin || doc.customerCode || '',
});
if (resp.status !== 'checked') {
return { msg: 'wrong tin number or rd or billType' }
}
return { customerTin: resp.tin, customerName: resp.result?.data?.name };
};
const re = /^\d{8}$/gui;
if (doc.consumerNo && re.test(doc.consumerNo)) {
return { consumerNo: doc.consumerNo };
};
return {};
}
const genStock = (detail, product, config) => {
const barCode = detail.barcode ?? (product.barcodes || [])[0] ?? '';
const barCodeType = isValidBarcode(barCode) ? 'GS1' : 'UNDEFINED'
return {
recId: detail.recId,
name: product.shortName || `${product.code} - ${product.name}`,
barCode,
barCodeType,
classificationCode: config.defaultGSCode,
taxProductCode: product.taxCode,
measureUnit: product.uom ?? '',
qty: detail.quantity,
unitPrice: detail.unitPrice,
totalBonus: detail.totalDiscount,
totalAmount: detail.totalAmount,
totalVAT: 0,
totalCityTax: 0,
data: {},
productId: product._id,
};
}
const getArrangeProducts = async (config: IEbarimtConfig, doc: IDoc) => {
const details: any[] = [];
const detailsFree: any[] = [];
const details0: any[] = [];
const detailsInner: any[] = [];
let ableAmount = 0;
let freeAmount = 0;
let zeroAmount = 0;
let innerAmount = 0;
let ableVATAmount = 0;
let ableCityTaxAmount = 0;
const vatPercent =
(config.hasVat && Number(config.vatPercent)) || 0;
const cityTaxPercent =
(config.hasCitytax && Number(config.cityTaxPercent)) || 0;
const totalPercent = vatPercent + cityTaxPercent + 100
for (const detail of (doc.details || []).filter(d => d.product)) {
const { product } = detail;
const stock = genStock(detail, product, config);
if (product.taxType === '2') {
detailsFree.push({ ...stock });
freeAmount += detail.totalAmount;
} else if (product.taxType === '3') {
details0.push({ ...stock });
zeroAmount += detail.totalAmount;
} else if (product.taxType === '5') {
detailsInner.push({ ...stock });
innerAmount += detail.totalAmount;
} else {
const totalVAT = detail.totalAmount / totalPercent * vatPercent;
const totalCityTax = detail.totalAmount / totalPercent * cityTaxPercent;
ableAmount += detail.totalAmount;
ableVATAmount += totalVAT;
ableCityTaxAmount += totalCityTax;
details.push({ ...stock, totalVAT, totalCityTax });
}
}
return {
details,
detailsFree,
details0,
detailsInner,
ableAmount,
freeAmount,
zeroAmount,
innerAmount,
ableVATAmount,
ableCityTaxAmount,
}
}
export const getEbarimtData = async (params: IPutDataArgs) => {
const { config, doc } = params;
const type = doc.type || 'B2C_RECEIPT';
const { customerTin, consumerNo, msg, customerName } = await getCustomerInfo(type, config, doc);
if (msg) {
return { status: 'err', msg }
}
let reportMonth: string | undefined = undefined;
if (doc.date && doc.date.getMonth() !== (new Date()).getMonth()) {
reportMonth = moment(doc.date).format('YYYY-MM-DD')
}
const {
details,
detailsFree,
details0,
detailsInner,
ableAmount,
freeAmount,
zeroAmount,
innerAmount,
ableVATAmount,
ableCityTaxAmount,
} = await getArrangeProducts(config, doc);
let innerData: IEbarimtFull | undefined = undefined;
let mainData: IEbarimt | undefined = undefined;
const commonOderInfo = {
merchantTin: config.merchantTin,
totalVAT: 0,
totalCityTax: 0,
data: {},
}
if (details.length || details0.length || detailsFree.length) {
mainData = {
number: doc.number,
contentType: doc.contentType,
contentId: doc.contentId,
totalAmount: ableAmount + freeAmount + zeroAmount,
totalVAT: ableVATAmount,
totalCityTax: ableCityTaxAmount,
districtCode: config.districtCode,
branchNo: config.branchNo,
merchantTin: config.merchantTin,
posNo: config.posNo,
type: doc.type,
reportMonth,
data: {},
customerTin,
customerName,
consumerNo,
receipts: [],
payments: []
};
if (detailsFree.length) {
mainData.receipts?.push({
...commonOderInfo,
totalAmount: freeAmount,
taxType: 'VAT_FREE',
items: detailsFree,
});
}
if (details0.length) {
mainData.receipts?.push({
...commonOderInfo,
totalAmount: zeroAmount,
taxType: 'VAT_ZERO',
items: details0,
});
}
if (details.length) {
mainData.receipts?.push({
...commonOderInfo,
totalAmount: ableAmount,
totalVAT: ableVATAmount,
totalCityTax: ableCityTaxAmount,
taxType: 'VAT_ABLE',
items: details,
});
}
// payments
let cashAmount = mainData.totalAmount ?? 0;
for (const payment of doc.nonCashAmounts) {
mainData.payments?.push({
code: 'PAYMENT_CARD',
exchangeCode: '',
status: 'PAID',
paidAmount: payment.amount,
});
cashAmount -= payment.amount;
}
if (cashAmount) {
mainData.payments?.push({
code: 'CASH',
exchangeCode: '',
status: 'PAID',
paidAmount: cashAmount,
});
}
}
if (detailsInner.length) {
innerData = {
_id: 'tempBill',
id: 'tempBIll',
date: moment(new Date).format('"yyyy-MM-DD HH:mm:ss'),
createdAt: new Date,
modifiedAt: new Date,
status: 'SUCCESS',
message: '',
posId: 0,
number: doc.number,
contentType: doc.contentType,
contentId: doc.contentId,
totalAmount: innerAmount,
totalVAT: 0,
totalCityTax: 0,
districtCode: config.districtCode,
branchNo: config.branchNo,
merchantTin: config.merchantTin,
posNo: config.posNo,
type: doc.type,
reportMonth,
data: {},
customerTin,
consumerNo,
receipts: [{
...commonOderInfo,
totalAmount: innerAmount,
taxType: 'NOT_SEND',
items: detailsInner,
}],
payments: [{
code: 'CASH',
exchangeCode: '',
status: 'PAID',
paidAmount: innerAmount,
}]
};
}
return { status: 'ok', data: mainData, innerData };
}
export const getCompanyInfo = async ({ checkTaxpayerUrl, no }: { checkTaxpayerUrl: string, no: string }) => {
const tinre = /(^\d{11}$)|(^\d{12}$)/;
if (tinre.test(no)) {
const result = await fetch(
// `path_to_url{tinNo}`
`${checkTaxpayerUrl}/getInfo?tin=${no}`
).then((r) => r.json());
return { status: 'checked', result, tin: no };
}
const re = /(^[-]{2}\d{8}$)|(^\d{7}$)/gui;
if (!re.test(no)) {
return { status: 'notValid' };
}
const info = await fetch(
// `path_to_url{rd}`
`${checkTaxpayerUrl}/getTinInfo?regNo=${no}`
).then((r) => r.json());
if (info.status !== 200) {
return { status: 'notValid' };
}
const tinNo = info.data;
const result = await fetch(
// `path_to_url{tinNo}`
`${checkTaxpayerUrl}/getInfo?tin=${tinNo}`
).then((r) => r.json());
return { status: 'checked', result, tin: tinNo };
};
``` | /content/code_sandbox/packages/plugin-posclient-api/src/models/PutData.ts | xml | 2016-11-11T06:54:50 | 2024-08-16T10:26:06 | erxes | erxes/erxes | 3,479 | 2,584 |
```xml
import { ARIAButtonResultProps, ARIAButtonType } from '@fluentui/react-aria';
import type { TriggerProps } from '@fluentui/react-utilities';
import * as React from 'react';
export type MenuTriggerProps = TriggerProps<MenuTriggerChildProps> & {
/**
* Disables internal trigger mechanism that ensures a child provided will be a compliant ARIA button.
* @default false
*/
disableButtonEnhancement?: boolean;
};
/**
* Props that are passed to the child of the MenuTrigger when cloned to ensure correct behaviour for the Menu
*/
export type MenuTriggerChildProps<Type extends ARIAButtonType = ARIAButtonType, Props = {}> = ARIAButtonResultProps<
Type,
Props & {
'aria-haspopup'?: 'menu';
'aria-expanded'?: boolean;
id: string;
ref: React.Ref<never>;
/* eslint-disable @nx/workspace-consistent-callback-type -- can't change type of existing callback */
onMouseEnter: React.MouseEventHandler<HTMLButtonElement & HTMLAnchorElement & HTMLDivElement>;
onMouseLeave: React.MouseEventHandler<HTMLButtonElement & HTMLAnchorElement & HTMLDivElement>;
onMouseMove: React.MouseEventHandler<HTMLButtonElement & HTMLAnchorElement & HTMLDivElement>;
onContextMenu: React.MouseEventHandler<HTMLButtonElement & HTMLAnchorElement & HTMLDivElement>;
/* eslint-enable @nx/workspace-consistent-callback-type */
}
>;
export type MenuTriggerState = {
children: React.ReactElement | null;
isSubmenu: boolean;
};
``` | /content/code_sandbox/packages/react-components/react-menu/library/src/components/MenuTrigger/MenuTrigger.types.ts | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 316 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="el">
<context>
<name>AboutDialog</name>
<message>
<source>About </source>
<translation> </translation>
</message>
<message>
<source>About</source>
<translation></translation>
</message>
<message>
<source>Version</source>
<translation></translation>
</message>
<message>
<source>Author</source>
<translation></translation>
</message>
<message>
<source>Close</source>
<translation></translation>
</message>
<message>
<source>Donate</source>
<translation></translation>
</message>
<message>
<source>Contact</source>
<translation></translation>
</message>
</context>
<context>
<name>AboutTab</name>
<message>
<translation> : </translation>
</message>
<message>
<source>Screenshot and Annotation Tool</source>
<translation> </translation>
</message>
</context>
<context>
<name>ActionSettingTab</name>
<message>
<source>Name</source>
<translation></translation>
</message>
<message>
<source>Shortcut</source>
<translation></translation>
</message>
<message>
<source>Clear</source>
<translation></translation>
</message>
<message>
<source>Take Capture</source>
<translation></translation>
</message>
<message>
<source>Include Cursor</source>
<translation> </translation>
</message>
<message>
<source>Delay</source>
<translation></translation>
</message>
<message>
<source>s</source>
<extracomment>The small letter s stands for seconds.</extracomment>
<translation></translation>
</message>
<message>
<source>Capture Mode</source>
<translation> </translation>
</message>
<message>
<source>Show image in Pin Window</source>
<translation> </translation>
</message>
<message>
<source>Copy image to Clipboard</source>
<translation> </translation>
</message>
<message>
<source>Upload image</source>
<translation> </translation>
</message>
<message>
<source>Open image parent directory</source>
<translation> </translation>
</message>
<message>
<source>Save image</source>
<translation> </translation>
</message>
<message>
<source>Hide Main Window</source>
<translation> </translation>
</message>
<message>
<source>Global</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>When enabled will make the shortcut
available even when ksnip has no focus.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ActionsSettings</name>
<message>
<source>Add</source>
<translation></translation>
</message>
<message>
<source>Actions Settings</source>
<translation> </translation>
</message>
<message>
<source>Action</source>
<translation></translation>
</message>
</context>
<context>
<name>AddWatermarkOperation</name>
<message>
<source>Watermark Image Required</source>
<translation> </translation>
</message>
<message>
<source>Please add a Watermark Image via Options > Settings > Annotator > Update</source>
<translation> > > > </translation>
</message>
</context>
<context>
<name>AnnotationSettings</name>
<message>
<source>Smooth Painter Paths</source>
<translation> </translation>
</message>
<message>
<source>When enabled smooths out pen and
marker paths after finished drawing.</source>
<translation> ,
.</translation>
</message>
<message>
<source>Smooth Factor</source>
<translation> </translation>
</message>
<message>
<source>Increasing the smooth factor will decrease
precision for pen and marker but will
make them more smooth.</source>
<translation>
.</translation>
</message>
<message>
<source>Annotator Settings</source>
<translation> </translation>
</message>
<message>
<source>Remember annotation tool selection and load on startup</source>
<translation> </translation>
</message>
<message>
<source>Switch to Select Tool after drawing Item</source>
<translation> </translation>
</message>
<message>
<source>Number Tool Seed change updates all Number Items</source>
<translation> </translation>
</message>
<message>
<source>Disabling this option causes changes of the number tool
seed to affect only new items but not existing items.
Disabling this option allows having duplicate numbers.</source>
<translation> ,
.
.</translation>
</message>
<message>
<source>Canvas Color</source>
<translation> </translation>
</message>
<message>
<source>Default Canvas background color for annotation area.
Changing color affects only new annotation areas.</source>
<translation> .
.</translation>
</message>
<message>
<source>Select Item after drawing</source>
<translation> </translation>
</message>
<message>
<source>With this option enabled the item gets selected after
being created, allowing changing settings.</source>
<translation> ,
.</translation>
</message>
<message>
<source>Show Controls Widget</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>The Controls Widget contains the Undo/Redo,
Crop, Scale, Rotate and Modify Canvas buttons.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ApplicationSettings</name>
<message>
<source>Capture screenshot at startup with default mode</source>
<translation> </translation>
</message>
<message>
<source>Application Style</source>
<translation> </translation>
</message>
<message>
<source>Sets the application style which defines the look and feel of the GUI.
Change requires ksnip restart to take effect.</source>
<translation> .
, ksnip.</translation>
</message>
<message>
<source>Application Settings</source>
<translation> </translation>
</message>
<message>
<source>Automatically copy new captures to clipboard</source>
<translation> </translation>
</message>
<message>
<source>Use Tabs</source>
<translation> </translation>
</message>
<message>
<source>Change requires restart.</source>
<translation> .</translation>
</message>
<message>
<source>Run ksnip as single instance</source>
<translation> ksnip</translation>
</message>
<message>
<source>Hide Tabbar when only one Tab is used.</source>
<translation> .</translation>
</message>
<message>
<source>Enabling this option will allow only one ksnip instance to run,
all other instances started after the first will pass its
arguments to the first and close. Changing this option requires
a new start of all instances.</source>
<translation> ksnip,
.
.</translation>
</message>
<message>
<source>Remember Main Window position on move and load on startup</source>
<translation> </translation>
</message>
<message>
<source>Auto hide Tabs</source>
<translation> </translation>
</message>
<message>
<source>Auto hide Docks</source>
<translation> </translation>
</message>
<message>
<source>On startup hide Toolbar and Annotation Settings.
Docks visibility can be toggled with the Tab Key.</source>
<translation> .
Tab .</translation>
</message>
<message>
<source>Auto resize to content</source>
<translation> </translation>
</message>
<message>
<source>Automatically resize Main Window to fit content image.</source>
<translation> .</translation>
</message>
<message>
<source>Enable Debugging</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Enables debug output written to the console.
Change requires ksnip restart to take effect.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Resizing to content is delay to allow the Window Manager to receive
the new content. In case that the Main Windows is not adjusted correctly
to the new content, increasing this delay might improve the behavior.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Resize delay</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Temp Directory</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Temp directory used for storing temporary images that are
going to be deleted after ksnip closes.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Browse</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>AuthorTab</name>
<message>
<source>Contributors:</source>
<translation> :</translation>
</message>
<message>
<source>Spanish Translation</source>
<translation> </translation>
</message>
<message>
<source>Dutch Translation</source>
<translation> </translation>
</message>
<message>
<source>Russian Translation</source>
<translation> </translation>
</message>
<message>
<source>Norwegian Bokml Translation</source>
<translation> (Bokml)</translation>
</message>
<message>
<source>French Translation</source>
<translation> </translation>
</message>
<message>
<source>Polish Translation</source>
<translation> </translation>
</message>
<message>
<source>Snap & Flatpak Support</source>
<translation> Snap & Flatpak</translation>
</message>
<message>
<source>The Authors:</source>
<translation> :</translation>
</message>
</context>
<context>
<name>CanDiscardOperation</name>
<message>
<source>Warning - </source>
<translation> - </translation>
</message>
<message>
<source>The capture %1%2%3 has been modified.
Do you want to save it?</source>
<translation> %1%2%3 .
;</translation>
</message>
</context>
<context>
<name>CaptureModePicker</name>
<message>
<source>New</source>
<translation></translation>
</message>
<message>
<source>Draw a rectangular area with your mouse</source>
<translation> </translation>
</message>
<message>
<source>Capture full screen including all monitors</source>
<translation> </translation>
</message>
<message>
<source>Capture screen where the mouse is located</source>
<translation> </translation>
</message>
<message>
<source>Capture window that currently has focus</source>
<translation> </translation>
</message>
<message>
<source>Capture that is currently under the mouse cursor</source>
<translation> </translation>
</message>
<message>
<source>Capture a screenshot of the last selected rectangular area</source>
<translation> </translation>
</message>
<message>
<source>Uses the screenshot Portal for taking screenshot</source>
<translation> </translation>
</message>
</context>
<context>
<name>ContactTab</name>
<message>
<source>Community</source>
<translation></translation>
</message>
<message>
<source>Bug Reports</source>
<translation> </translation>
</message>
<message>
<source>If you have general questions, ideas or just want to talk about ksnip,<br/>please join our %1 or our %2 server.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Please use %1 to report bugs.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>CopyAsDataUriOperation</name>
<message>
<source>Failed to copy to clipboard</source>
<translation> </translation>
</message>
<message>
<source>Failed to copy to clipboard as base64 encoded image.</source>
<translation> base64.</translation>
</message>
<message>
<source>Copied to clipboard</source>
<translation> </translation>
</message>
<message>
<source>Copied to clipboard as base64 encoded image.</source>
<translation> base64.</translation>
</message>
</context>
<context>
<name>DeleteImageOperation</name>
<message>
<source>Delete Image</source>
<translation> </translation>
</message>
<message>
<source>The item '%1' will be deleted.
Do you want to continue?</source>
<translation> %1 .
;</translation>
</message>
</context>
<context>
<name>DonateTab</name>
<message>
<source>Donations are always welcome</source>
<translation> </translation>
</message>
<message>
<source>Donation</source>
<translation></translation>
</message>
<message>
<source>ksnip is a non-profitable copyleft libre software project, and<br/>still has some costs that need to be covered,<br/>like domain costs or hardware costs for cross-platform support.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>If you want to help or just want to appreciate the work being done<br/>by treating developers to a beer or coffee, you can do that %1here%2.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Become a GitHub Sponsor?</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Also possible, %1here%2.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>EmptyActionSettingTab</name>
<message>
<source>Add new actions by pressing the 'Add' tab button.</source>
<translation> "" .</translation>
</message>
</context>
<context>
<name>EnumTranslator</name>
<message>
<source>Rectangular Area</source>
<translation> </translation>
</message>
<message>
<source>Last Rectangular Area</source>
<translation> </translation>
</message>
<message>
<source>Full Screen (All Monitors)</source>
<translation> ( )</translation>
</message>
<message>
<source>Current Screen</source>
<translation> </translation>
</message>
<message>
<source>Active Window</source>
<translation> </translation>
</message>
<message>
<source>Window Under Cursor</source>
<translation> </translation>
</message>
<message>
<source>Screenshot Portal</source>
<translation> </translation>
</message>
</context>
<context>
<name>FtpUploaderSettings</name>
<message>
<source>Force anonymous upload.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Url</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Username</source>
<translation type="unfinished"> </translation>
</message>
<message>
<source>Password</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>FTP Uploader</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HandleUploadResultOperation</name>
<message>
<source>Upload Successful</source>
<translation> </translation>
</message>
<message>
<source>Unable to save temporary image for upload.</source>
<translation> .</translation>
</message>
<message>
<source>Unable to start process, check path and permissions.</source>
<translation> .</translation>
</message>
<message>
<source>Process crashed</source>
<translation> </translation>
</message>
<message>
<source>Process timed out.</source>
<translation> .</translation>
</message>
<message>
<source>Process read error.</source>
<translation> .</translation>
</message>
<message>
<source>Process write error.</source>
<translation> .</translation>
</message>
<message>
<source>Web error, check console output.</source>
<translation> , .</translation>
</message>
<message>
<source>Upload Failed</source>
<translation> </translation>
</message>
<message>
<source>Script wrote to StdErr.</source>
<translation> StdErr.</translation>
</message>
<message>
<source>FTP Upload finished successfully.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Unknown error.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Connection Error.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Permission Error.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Upload script %1 finished successfully.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Uploaded to %1</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>HotKeySettings</name>
<message>
<source>Enable Global HotKeys</source>
<translation> </translation>
</message>
<message>
<source>Capture Rect Area</source>
<translation> </translation>
</message>
<message>
<source>Capture Full Screen</source>
<translation> </translation>
</message>
<message>
<source>Capture current Screen</source>
<translation> </translation>
</message>
<message>
<source>Capture active Window</source>
<translation> </translation>
</message>
<message>
<source>Capture Window under Cursor</source>
<translation> </translation>
</message>
<message>
<source>Global HotKeys</source>
<translation> </translation>
</message>
<message>
<source>Capture Last Rect Area</source>
<translation> </translation>
</message>
<message>
<source>Clear</source>
<translation></translation>
</message>
<message>
<source>Capture using Portal</source>
<translation> </translation>
</message>
<message>
<source>HotKeys are currently supported only for Windows and X11.
Disabling this option makes also the action shortcuts ksnip only.</source>
<translation> Windows X11.
ksnip.</translation>
</message>
</context>
<context>
<name>ImageGrabberSettings</name>
<message>
<source>Capture mouse cursor on screenshot</source>
<translation> </translation>
</message>
<message>
<source>Should mouse cursor be visible on
screenshots.</source>
<translation>
.</translation>
</message>
<message>
<source>Image Grabber</source>
<translation> </translation>
</message>
<message>
<source>Generic Wayland implementations that use
XDG-DESKTOP-PORTAL handle screen scaling
differently. Enabling this option will
determine the current screen scaling and
apply that to the screenshot in ksnip.</source>
<translation> Wayland
XDG-DESKTOP-PORTAL
.
ksnip.</translation>
</message>
<message>
<source>GNOME and KDE Plasma support their own Wayland
and the Generic XDG-DESKTOP-PORTAL screenshots.
Enabling this option will force KDE Plasma and
GNOME to use the XDG-DESKTOP-PORTAL screenshots.
Change in this option require a ksnip restart.</source>
<translation> GNOME KDE Plasma Wayland
XDG-DESKTOP-PORTAL .
KDE Plasma GNOME
XDG-DESKTOP-PORTAL.
ksnip.</translation>
</message>
<message>
<source>Show Main Window after capturing screenshot</source>
<translation> </translation>
</message>
<message>
<source>Hide Main Window during screenshot</source>
<translation> </translation>
</message>
<message>
<source>Hide Main Window when capturing a new screenshot.</source>
<translation> .</translation>
</message>
<message>
<source>Show Main Window after capturing a new screenshot
when the Main Window was hidden or minimize.</source>
<translation>
.</translation>
</message>
<message>
<source>Force Generic Wayland (xdg-desktop-portal) Screenshot</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Scale Generic Wayland (xdg-desktop-portal) Screenshots</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Implicit capture delay</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>This delay is used when no delay was selected in
the UI, it allows ksnip to hide before taking
a screenshot. This value is not applied when
ksnip was already minimized. Reducing this value
can have the effect that ksnip's main window is
visible on the screenshot.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ImgurHistoryDialog</name>
<message>
<source>Imgur History</source>
<translation> Imgur</translation>
</message>
<message>
<source>Close</source>
<translation></translation>
</message>
<message>
<source>Time Stamp</source>
<translation></translation>
</message>
<message>
<source>Link</source>
<translation></translation>
</message>
<message>
<source>Delete Link</source>
<translation> </translation>
</message>
</context>
<context>
<name>ImgurUploader</name>
<message>
<source>Upload to imgur.com finished!</source>
<translation> Imgur !</translation>
</message>
<message>
<source>Received new token, trying upload again</source>
<translation> , </translation>
</message>
<message>
<source>Imgur token has expired, requesting new token</source>
<translation> Imgur , </translation>
</message>
</context>
<context>
<name>ImgurUploaderSettings</name>
<message>
<source>Force anonymous upload</source>
<translation> </translation>
</message>
<message>
<source>Always copy Imgur link to clipboard</source>
<translation> Imgur </translation>
</message>
<message>
<source>Client ID</source>
<translation> </translation>
</message>
<message>
<source>Client Secret</source>
<translation> </translation>
</message>
<message>
<source>PIN</source>
<translation>PIN</translation>
</message>
<message>
<source>Enter imgur Pin which will be exchanged for a token.</source>
<translation> PIN Imgur .</translation>
</message>
<message>
<source>Get PIN</source>
<translation> PIN</translation>
</message>
<message>
<source>Get Token</source>
<translation> </translation>
</message>
<message>
<source>Imgur History</source>
<translation> Imgur</translation>
</message>
<message>
<source>Imgur Uploader</source>
<translation> Imgur</translation>
</message>
<message>
<source>Username</source>
<translation> </translation>
</message>
<message>
<source>Waiting for imgur.com</source>
<translation> imgur.com</translation>
</message>
<message>
<source>Imgur.com token successfully updated.</source>
<translation> imgur.com .</translation>
</message>
<message>
<source>Imgur.com token update error.</source>
<translation> imgur.com.</translation>
</message>
<message>
<source>After uploading open Imgur link in default browser</source>
<translation> Imgur </translation>
</message>
<message>
<source>Link directly to image</source>
<translation> </translation>
</message>
<message>
<source>Base Url:</source>
<translation> Url:</translation>
</message>
<message>
<source>Base url that will be used for communication with Imgur.
Changing requires restart.</source>
<translation> url Imgur.
.</translation>
</message>
<message>
<source>Clear Token</source>
<translation> </translation>
</message>
<message>
<source>Upload title:</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Upload description:</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>LoadImageFromFileOperation</name>
<message>
<source>Unable to open image</source>
<translation> </translation>
</message>
<message>
<source>Unable to open image from path %1</source>
<translation> %1</translation>
</message>
</context>
<context>
<name>MainToolBar</name>
<message>
<source>New</source>
<translation></translation>
</message>
<message>
<source>Delay in seconds between triggering
and capturing screenshot.</source>
<translation>
.</translation>
</message>
<message>
<source>s</source>
<extracomment>The small letter s stands for seconds.</extracomment>
<translation></translation>
</message>
<message>
<source>Save</source>
<translation></translation>
</message>
<message>
<source>Save Screen Capture to file system</source>
<translation> </translation>
</message>
<message>
<source>Copy</source>
<translation></translation>
</message>
<message>
<source>Copy Screen Capture to clipboard</source>
<translation> </translation>
</message>
<message>
<source>Tools</source>
<translation></translation>
</message>
<message>
<source>Undo</source>
<translation></translation>
</message>
<message>
<source>Redo</source>
<translation></translation>
</message>
<message>
<source>Crop</source>
<translation></translation>
</message>
<message>
<source>Crop Screen Capture</source>
<translation> </translation>
</message>
</context>
<context>
<name>MainWindow</name>
<message>
<source>Unsaved</source>
<translation> </translation>
</message>
<message>
<source>Upload</source>
<translation></translation>
</message>
<message>
<source>Print</source>
<translation></translation>
</message>
<message>
<source>Opens printer dialog and provide option to print image</source>
<translation> </translation>
</message>
<message>
<source>Print Preview</source>
<translation> </translation>
</message>
<message>
<source>Opens Print Preview dialog where the image orientation can be changed</source>
<translation> </translation>
</message>
<message>
<source>Scale</source>
<translation></translation>
</message>
<message>
<source>Quit</source>
<translation></translation>
</message>
<message>
<source>Settings</source>
<translation></translation>
</message>
<message>
<source>&About</source>
<translation>&</translation>
</message>
<message>
<source>Open</source>
<translation></translation>
</message>
<message>
<source>&Edit</source>
<translation>&</translation>
</message>
<message>
<source>&Options</source>
<translation>&</translation>
</message>
<message>
<source>&Help</source>
<translation>&</translation>
</message>
<message>
<source>Add Watermark</source>
<translation> </translation>
</message>
<message>
<source>Add Watermark to captured image. Multiple watermarks can be added.</source>
<translation> . .</translation>
</message>
<message>
<source>&File</source>
<translation>&</translation>
</message>
<message>
<source>Unable to show image</source>
<translation> </translation>
</message>
<message>
<source>Save As...</source>
<translation> ...</translation>
</message>
<message>
<source>Paste</source>
<translation></translation>
</message>
<message>
<source>Paste Embedded</source>
<translation> </translation>
</message>
<message>
<source>Pin</source>
<translation></translation>
</message>
<message>
<source>Pin screenshot to foreground in frameless window</source>
<translation> </translation>
</message>
<message>
<source>No image provided but one was expected.</source>
<translation> .</translation>
</message>
<message>
<source>Copy Path</source>
<translation> </translation>
</message>
<message>
<source>Open Directory</source>
<translation> </translation>
</message>
<message>
<source>&View</source>
<translation>&</translation>
</message>
<message>
<source>Delete</source>
<translation></translation>
</message>
<message>
<source>Rename</source>
<translation></translation>
</message>
<message>
<source>Open Images</source>
<translation> </translation>
</message>
<message>
<source>Show Docks</source>
<translation> </translation>
</message>
<message>
<source>Hide Docks</source>
<translation> </translation>
</message>
<message>
<source>Copy as data URI</source>
<translation> URI </translation>
</message>
<message>
<source>Open &Recent</source>
<translation> &</translation>
</message>
<message>
<source>Modify Canvas</source>
<translation> </translation>
</message>
<message>
<source>Upload triggerCapture to external source</source>
<translation> </translation>
</message>
<message>
<source>Copy triggerCapture to system clipboard</source>
<translation> </translation>
</message>
<message>
<source>Scale Image</source>
<translation> </translation>
</message>
<message>
<source>Rotate</source>
<translation></translation>
</message>
<message>
<source>Rotate Image</source>
<translation> </translation>
</message>
<message>
<source>Actions</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Image Files</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Save All</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Close Window</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Cut</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>OCR</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>MultiCaptureHandler</name>
<message>
<source>Save</source>
<translation></translation>
</message>
<message>
<source>Save As</source>
<translation> </translation>
</message>
<message>
<source>Open Directory</source>
<translation> </translation>
</message>
<message>
<source>Copy</source>
<translation></translation>
</message>
<message>
<source>Copy Path</source>
<translation> </translation>
</message>
<message>
<source>Delete</source>
<translation></translation>
</message>
<message>
<source>Rename</source>
<translation></translation>
</message>
<message>
<source>Save All</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>NewCaptureNameProvider</name>
<message>
<source>Capture</source>
<translation></translation>
</message>
</context>
<context>
<name>OcrWindowCreator</name>
<message>
<source>OCR Window %1</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>PinWindow</name>
<message>
<source>Close</source>
<translation></translation>
</message>
<message>
<source>Close Other</source>
<translation> </translation>
</message>
<message>
<source>Close All</source>
<translation> </translation>
</message>
</context>
<context>
<name>PinWindowCreator</name>
<message>
<source>OCR Window %1</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>PluginsSettings</name>
<message>
<source>Search Path</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Default</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>The directory where the plugins are located.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Browse</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Name</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Version</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Detect</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Plugin Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Plugin location</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ProcessIndicator</name>
<message>
<source>Processing</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>RenameOperation</name>
<message>
<source>Image Renamed</source>
<translation> </translation>
</message>
<message>
<source>Image Rename Failed</source>
<translation> </translation>
</message>
<message>
<source>Rename image</source>
<translation> </translation>
</message>
<message>
<source>New filename:</source>
<translation> :</translation>
</message>
<message>
<source>Successfully renamed image to %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Failed to rename image to %1</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>SaveOperation</name>
<message>
<source>Save As</source>
<translation> </translation>
</message>
<message>
<source>All Files</source>
<translation> </translation>
</message>
<message>
<source>Image Saved</source>
<translation> </translation>
</message>
<message>
<source>Saving Image Failed</source>
<translation> </translation>
</message>
<message>
<source>Image Files</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Saved to %1</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Failed to save image to %1</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>SaverSettings</name>
<message>
<source>Automatically save new captures to default location</source>
<translation> </translation>
</message>
<message>
<source>Prompt to save before discarding unsaved changes</source>
<translation> </translation>
</message>
<message>
<source>Remember last Save Directory</source>
<translation> </translation>
</message>
<message>
<source>When enabled will overwrite the save directory stored in settings
with the latest save directory, for every save.</source>
<translation>
.</translation>
</message>
<message>
<source>Capture save location and filename</source>
<translation> </translation>
</message>
<message>
<source>Supported Formats are JPG, PNG and BMP. If no format provided, PNG will be used as default.
Filename can contain following wildcards:
- $Y, $M, $D for date, $h, $m, $s for time, or $T for time in hhmmss format.
- Multiple consecutive # for counter. #### will result in 0001, next capture would be 0002.</source>
<translation> JPG, PNG BMP. PNG.
:
- $Y, $M, $D , $h, $m, $s , $T hhmmss.
- # . #### 0001, 0002.</translation>
</message>
<message>
<source>Browse</source>
<translation></translation>
</message>
<message>
<source>Saver Settings</source>
<translation> </translation>
</message>
<message>
<source>Capture save location</source>
<translation> </translation>
</message>
<message>
<source>Default</source>
<translation></translation>
</message>
<message>
<source>Factor</source>
<translation></translation>
</message>
<message>
<source>Save Quality</source>
<translation> </translation>
</message>
<message>
<source>Specify 0 to obtain small compressed files, 100 for large uncompressed files.
Not all image formats support the full range, JPEG does.</source>
<translation> 0 , 100 .
JPEG .</translation>
</message>
<message>
<source>Overwrite file with same name</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ScriptUploaderSettings</name>
<message>
<source>Copy script output to clipboard</source>
<translation> </translation>
</message>
<message>
<source>Script:</source>
<translation>:</translation>
</message>
<message>
<source>Path to script that will be called for uploading. During upload the script will be called
with the path to a temporary png file as a single argument.</source>
<translation> .
png.</translation>
</message>
<message>
<source>Browse</source>
<translation></translation>
</message>
<message>
<source>Script Uploader</source>
<translation> </translation>
</message>
<message>
<source>Select Upload Script</source>
<translation> </translation>
</message>
<message>
<source>Stop when upload script writes to StdErr</source>
<translation> StdErr</translation>
</message>
<message>
<source>Marks the upload as failed when script writes to StdErr.
Without this setting errors in the script will be unnoticed.</source>
<translation> StdErr.
.</translation>
</message>
<message>
<source>Filter:</source>
<translation>:</translation>
</message>
<message>
<source>RegEx Expression. Only copy to clipboard what matches the RegEx Expression.
When omitted, everything is copied.</source>
<translation> . , .
.</translation>
</message>
</context>
<context>
<name>SettingsDialog</name>
<message>
<source>Settings</source>
<translation></translation>
</message>
<message>
<source>OK</source>
<translation></translation>
</message>
<message>
<source>Cancel</source>
<translation></translation>
</message>
<message>
<source>Image Grabber</source>
<translation> </translation>
</message>
<message>
<source>Imgur Uploader</source>
<translation> Imgur</translation>
</message>
<message>
<source>Application</source>
<translation></translation>
</message>
<message>
<source>Annotator</source>
<translation></translation>
</message>
<message>
<source>HotKeys</source>
<translation> </translation>
</message>
<message>
<source>Uploader</source>
<translation></translation>
</message>
<message>
<source>Script Uploader</source>
<translation> </translation>
</message>
<message>
<source>Saver</source>
<translation></translation>
</message>
<message>
<source>Stickers</source>
<translation></translation>
</message>
<message>
<source>Snipping Area</source>
<translation> </translation>
</message>
<message>
<source>Tray Icon</source>
<translation> </translation>
</message>
<message>
<source>Watermark</source>
<translation></translation>
</message>
<message>
<source>Actions</source>
<translation></translation>
</message>
<message>
<source>FTP Uploader</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Plugins</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Search Settings...</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>SnippingAreaResizerInfoText</name>
<message>
<source>Resize selected rect using the handles or move it by dragging the selection.</source>
<translation> .</translation>
</message>
<message>
<source>Use arrow keys to move the selection.</source>
<translation> .</translation>
</message>
<message>
<source>Use arrow keys while pressing CTRL to move top left handle.</source>
<translation> CTRL .</translation>
</message>
<message>
<source>Use arrow keys while pressing ALT to move bottom right handle.</source>
<translation> ALT .</translation>
</message>
<message>
<source>This message can be disabled via settings.</source>
<translation> .</translation>
</message>
<message>
<source>Confirm selection by pressing ENTER/RETURN or mouse double-click anywhere.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Abort by pressing ESC.</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>SnippingAreaSelectorInfoText</name>
<message>
<source>Click and Drag to select a rectangular area or press ESC to quit.</source>
<translation> ESC .</translation>
</message>
<message>
<source>Hold CTRL pressed to resize selection after selecting.</source>
<translation> , CTRL .</translation>
</message>
<message>
<source>Hold CTRL pressed to prevent resizing after selecting.</source>
<translation> , CTRL .</translation>
</message>
<message>
<source>Operation will be canceled after 60 sec when no selection made.</source>
<translation> 60 . .</translation>
</message>
<message>
<source>This message can be disabled via settings.</source>
<translation> .</translation>
</message>
</context>
<context>
<name>SnippingAreaSettings</name>
<message>
<source>Freeze Image while snipping</source>
<translation> </translation>
</message>
<message>
<source>When enabled will freeze the background while
selecting a rectangular region. It also changes
the behavior of delayed screenshots, with this
option enabled the delay happens before the
snipping area is shown and with the option disabled
the delay happens after the snipping area is shown.
This feature is always disabled for Wayland and always
enabled for MacOs.</source>
<translation> ,
.
:
.
Wayland
MacOs.</translation>
</message>
<message>
<source>Show magnifying glass on snipping area</source>
<translation> </translation>
</message>
<message>
<source>Show a magnifying glass which zooms into
the background image. This option only works
with 'Freeze Image while snipping' enabled.</source>
<translation>
.
" " .</translation>
</message>
<message>
<source>Show Snipping Area rulers</source>
<translation> </translation>
</message>
<message>
<source>Horizontal and vertical lines going from
desktop edges to cursor on snipping area.</source>
<translation>
.</translation>
</message>
<message>
<source>Show Snipping Area position and size info</source>
<translation> </translation>
</message>
<message>
<source>When left mouse button is not pressed the position
is shown, when the mouse button is pressed,
the size of the select area is shown left
and above from the captured area.</source>
<translation> , .
,
.</translation>
</message>
<message>
<source>Allow resizing rect area selection by default</source>
<translation> </translation>
</message>
<message>
<source>When enabled will, after selecting a rect
area, allow resizing the selection. When
done resizing the selection can be confirmed
by pressing return.</source>
<translation>
, .
Enter.</translation>
</message>
<message>
<source>Show Snipping Area info text</source>
<translation> </translation>
</message>
<message>
<source>Snipping Area cursor color</source>
<translation> </translation>
</message>
<message>
<source>Sets the color of the snipping area cursor.</source>
<translation> .</translation>
</message>
<message>
<source>Snipping Area cursor thickness</source>
<translation> </translation>
</message>
<message>
<source>Sets the thickness of the snipping area cursor.</source>
<translation> .</translation>
</message>
<message>
<source>Snipping Area</source>
<translation> </translation>
</message>
<message>
<source>Snipping Area adorner color</source>
<translation> </translation>
</message>
<message>
<source>Sets the color of all adorner elements
on the snipping area.</source>
<translation>
.</translation>
</message>
<message>
<source>Snipping Area Transparency</source>
<translation> </translation>
</message>
<message>
<source>Alpha for not selected region on snipping area.
Smaller number is more transparent.</source>
<translation> .
.</translation>
</message>
<message>
<source>Enable Snipping Area offset</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>When enabled will apply the configured
offset to the Snipping Area position which
is required when the position is not
correctly calculated. This is sometimes
required with screen scaling enabled.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>X</source>
<translation type="unfinished"></translation>
</message>
<message>
<source>Y</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>StickerSettings</name>
<message>
<source>Up</source>
<translation></translation>
</message>
<message>
<source>Down</source>
<translation></translation>
</message>
<message>
<source>Use Default Stickers</source>
<translation> </translation>
</message>
<message>
<source>Sticker Settings</source>
<translation> </translation>
</message>
<message>
<source>Vector Image Files (*.svg)</source>
<translation> (*.svg)</translation>
</message>
<message>
<source>Add</source>
<translation></translation>
</message>
<message>
<source>Remove</source>
<translation></translation>
</message>
<message>
<source>Add Stickers</source>
<translation> </translation>
</message>
</context>
<context>
<name>TrayIcon</name>
<message>
<source>Show Editor</source>
<translation> </translation>
</message>
</context>
<context>
<name>TrayIconSettings</name>
<message>
<source>Use Tray Icon</source>
<translation> </translation>
</message>
<message>
<source>When enabled will add a Tray Icon to the TaskBar if the OS Window Manager supports it.
Change requires restart.</source>
<translation>
. , .</translation>
</message>
<message>
<source>Minimize to Tray</source>
<translation> </translation>
</message>
<message>
<source>Start Minimized to Tray</source>
<translation> </translation>
</message>
<message>
<source>Close to Tray</source>
<translation> </translation>
</message>
<message>
<source>Show Editor</source>
<translation> </translation>
</message>
<message>
<source>Capture</source>
<translation></translation>
</message>
<message>
<source>Default Tray Icon action</source>
<translation> </translation>
</message>
<message>
<source>Default Action that is triggered by left clicking the tray icon.</source>
<translation> .</translation>
</message>
<message>
<source>Tray Icon Settings</source>
<translation> </translation>
</message>
<message>
<source>Use platform specific notification service</source>
<translation> </translation>
</message>
<message>
<source>When enabled will use try to use platform specific notification
service when such exists. Change requires restart to take effect.</source>
<translation> , ,
. .</translation>
</message>
<message>
<source>Display Tray Icon notifications</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>UpdateWatermarkOperation</name>
<message>
<source>Select Image</source>
<translation> </translation>
</message>
<message>
<source>Image Files</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>UploadOperation</name>
<message>
<source>Upload Script Required</source>
<translation> </translation>
</message>
<message>
<source>Please add an upload script via Options > Settings > Upload Script</source>
<translation> > > </translation>
</message>
<message>
<source>Capture Upload</source>
<translation> </translation>
</message>
<message>
<source>You are about to upload the image to an external destination, do you want to proceed?</source>
<translation> . ;</translation>
</message>
</context>
<context>
<name>UploaderSettings</name>
<message>
<source>Ask for confirmation before uploading</source>
<translation> </translation>
</message>
<message>
<source>Uploader Type:</source>
<translation> :</translation>
</message>
<message>
<source>Imgur</source>
<translation>Imgur</translation>
</message>
<message>
<source>Script</source>
<translation></translation>
</message>
<message>
<source>Uploader</source>
<translation></translation>
</message>
<message>
<source>FTP</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>VersionTab</name>
<message>
<source>Version</source>
<translation></translation>
</message>
<message>
<source>Build</source>
<translation></translation>
</message>
<message>
<source>Using:</source>
<translation> :</translation>
</message>
</context>
<context>
<name>WatermarkSettings</name>
<message>
<source>Watermark Image</source>
<translation> </translation>
</message>
<message>
<source>Update</source>
<translation></translation>
</message>
<message>
<source>Rotate Watermark</source>
<translation> </translation>
</message>
<message>
<source>When enabled, Watermark will be added with a rotation of 45</source>
<translation> , 45</translation>
</message>
<message>
<source>Watermark Settings</source>
<translation> </translation>
</message>
</context>
</TS>
``` | /content/code_sandbox/translations/ksnip_el.ts | xml | 2016-07-31T17:51:28 | 2024-08-15T08:22:58 | ksnip | ksnip/ksnip | 1,976 | 12,823 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="path_to_url"
xmlns:app="path_to_url"
xmlns:tools="path_to_url"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/item_toolbar" />
<com.google.android.exoplayer2.ui.PlayerView
android:id="@+id/video_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black"
android:gravity="center"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<ProgressBar
android:id="@+id/loading_progress_bar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:indeterminate="true"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:visibility="visible" />
<!--ERROR PANEL-->
<include
android:id="@+id/error_panel"
layout="@layout/error_retry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:visibility="visible" />
<include
android:id="@+id/empty_state_view"
layout="@layout/view_song_empty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="4dp"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:visibility="visible" />
</androidx.constraintlayout.widget.ConstraintLayout>
``` | /content/code_sandbox/app/src/main/res/layout/activity_video.xml | xml | 2016-04-09T15:47:45 | 2024-08-14T04:30:04 | MusicLake | caiyonglong/MusicLake | 2,654 | 652 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Einfelt ljodavspelar</string>
<string name="app_launcher_name">Ljodavspelar</string>
<string name="playlist_empty">Spelelista di er tom</string>
<string name="rename_song">Dyp om lta</string>
<string name="rename_song_error">Kunne ikkje dypa om lta</string>
<string name="rename_song_empty">Fyll ut alle omrda</string>
<string name="repeat_off">Gjentek ikkje</string>
<string name="repeat_song">Gjentak noverande lt</string>
<string name="repeat_playlist">Gjentak alt</string>
<string name="stop_playback_after_current_song">Stans avspeling etter noverande lt</string>
<string name="enable_shuffle">Sl p blanding</string>
<string name="disable_shuffle">Sl av blanding</string>
<string name="shuffle_enabled">Blandar</string>
<string name="shuffle_disabled">Blandar ikkje</string>
<string name="volume">Ljodstyrk</string>
<string name="playback_speed">Avspelingssnggleiken</string>
<string name="loading_files">Leitar fram filer </string>
<!-- Playlists -->
<string name="add_file_to_playlist">Legg til ei fil i spelelista</string>
<string name="add_folder_to_playlist">Legg til ei mappe i spelelista</string>
<string name="manage_playlists">Handsam spelelister</string>
<string name="playlists">Spelelister</string>
<string name="create_new_playlist">Lag ei ny speleliste</string>
<string name="rename_playlist">Dyp om spelelista</string>
<string name="playlist_name_exists">Ei anna speleliste har det namnet</string>
<string name="remove_playlist">Slett spelelista</string>
<string name="remove_playlist_description">Berre dei valde spelelistene vert sletta. Filene/ltene i dei vert ikkje sletta.</string>
<string name="remove_playlist_description_placeholder">Berre %s-spelelista vert sletta. Filene/ltene vert ikkje sletta.</string>
<string name="remove_from_playlist">Tak bort ifr spelelista</string>
<string name="remove_from_playlist_description">This will only remove the items from playlist \"%s\". The actual files will not be deleted.</string>
<string name="delete_the_files_too">Slett filene au</string>
<string name="open_playlist">Opne spelelista</string>
<string name="all_songs_cannot_be_deleted">Kan ikkje slette Alle lter-spelelista</string>
<string name="empty_playlist">Noverande speleliste er tom</string>
<string name="fetching_songs">Hentar lter </string>
<string name="all_songs">Alle lter</string>
<string name="create_playlist_from_folder">Lag ei ny speleliste ifr ei mappe</string>
<string name="folder_contains_no_audio">Den valde mappa har ingen ljodfiler</string>
<string name="delete_current_song">Slett noverande lt</string>
<string name="delete_song_warning">Merk: dette vil slette dei valde filene ifr eininga.</string>
<string name="remove_current_song">Tak bort noverande lt ifr spelelista</string>
<string name="show_filename">Vis filnamn som ltnamn</string>
<string name="title_is_not_available">Om namn ikkje er tilgjengeleg</string>
<string name="show_album_cover">Vis albumsomslag p hovudskjermen</string>
<string name="all_tracks">Alle lter</string>
<string name="add_to_playlist">Legg til i ei speleliste</string>
<string name="create_playlist_label">Du kan lage ei ny speleliste ved velja artistar, album eller lter, og trykkja p Meny Legg til i ei speleliste.</string>
<string name="export_playlist">Fr ut spelelista</string>
<string name="import_playlist">Fr inn ei speleliste</string>
<string name="filename_without_m3u">Filnamn (utan .m3u)</string>
<!-- Sorting -->
<string name="track_count">Mengd lter</string>
<string name="album_count">Mengd album</string>
<string name="artist_name">Artistnamn</string>
<string name="year">r</string>
<string name="track_number">Ltnummer</string>
<string name="use_for_this_playlist">Berre i denne spelelista</string>
<string name="use_for_this_album">Berre i dette albumet</string>
<!-- Artists -->
<string name="artists">Artistar</string>
<string name="folders">Mapper</string>
<string name="genres">Genres</string>
<string name="albums">Album</string>
<plurals name="albums_plural">
<item quantity="one">%d album</item>
<item quantity="other">%d album</item>
</plurals>
<string name="tracks">Lter</string>
<plurals name="tracks_plural">
<item quantity="one">%d lt</item>
<item quantity="other">%d lter</item>
</plurals>
<!-- Queue -->
<string name="next_track">Neste:</string>
<string name="track_queue">K</string>
<string name="add_to_queue">Legg til i ken</string>
<string name="play_next">Play next</string>
<string name="remove_from_queue">Tak bort ifr ken</string>
<string name="create_playlist_from_queue">Lag ei speleliste med ken</string>
<!-- Settings -->
<string name="equalizer">Tonejamnar</string>
<string name="swap_prev_next">Byt om p hyretelefonknappane for frre/neste</string>
<string name="exclude_folder_description">Steng ut ei mappa for hindre hennar ljodfiler ifr verta viste. Filer lagde til i spelelister for hand, vert ikkje pverka.</string>
<string name="gapless_playback">Gapless playback</string>
<string name="rescan_media">Rescan media</string>
<!-- FAQ -->
<string name="faq_1_title">Brigde av snggleiken til lter</string>
<string name="faq_1_text">Trykk p noverande tid eller fulltid under framgangslina for hoppe framover eller bakover i lta.</string>
<!--
Haven't found some strings? There's more at
path_to_url
-->
</resources>
``` | /content/code_sandbox/app/src/main/res/values-nn/strings.xml | xml | 2016-01-10T12:21:23 | 2024-08-16T13:03:46 | Simple-Music-Player | SimpleMobileTools/Simple-Music-Player | 1,277 | 1,632 |
```xml
export interface Modal {
id: string;
content: JSX.Element | undefined;
isClosing: boolean;
}
export interface ModalManager {
createModal: (content?: JSX.Element, id?: string) => string;
hideModal: (id: string) => void;
removeModal: (id: string) => void;
getModal: (id: string) => Modal | undefined;
modals: Modal[];
}
``` | /content/code_sandbox/packages/components/containers/modals/interface.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 92 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<!--
path_to_url
Unless required by applicable law or agreed to in writing, software
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<!-- The main content view -->
<RelativeLayout
xmlns:android="path_to_url"
android:id="@+id/ptr_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout android:id="@+id/spinner"
android:orientation="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:gravity="center" >
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@style/Widget.AppCompat.ProgressBar"
android:indeterminateOnly="true" />
<com.klinker.android.twitter_l.views.widgets.text.FontPrefTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/loading_tweets"
android:textColor="?textColor"
android:layout_marginTop="5dp"
android:textSize="15dp"/>
</LinearLayout>
<LinearLayout android:id="@+id/no_content"
android:orientation="vertical"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:visibility="gone"
android:gravity="center" >
<ImageView android:layout_width="100dp"
android:layout_height="100dp"
android:src="@drawable/ic_biker"
android:id="@+id/picture"
android:scaleType="fitCenter"/>
<TextView
android:id="@+id/no_content_title"
android:layout_width="275dp"
android:layout_height="wrap_content"
android:text="@string/no_content_home"
android:textColor="?textColor"
android:gravity="center"
android:textSize="25dp"
android:fontFamily="sans-serif"
android:layout_marginBottom="30dp"/>
<TextView
android:id="@+id/no_content_summary"
android:layout_width="275dp"
android:layout_height="wrap_content"
android:text="@string/no_content_home_summary"
android:textColor="?textColor"
android:gravity="center"
android:fontFamily="sans-serif-light"
android:textSize="14dp"/>
</LinearLayout>
<com.klinker.android.twitter_l.views.widgets.swipe_refresh_layout.material.MaterialSwipeRefreshLayout
android:id="@+id/swipe_refresh_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
xmlns:android="path_to_url"
android:id="@+id/listView"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:divider="?drawerDividerColor"
android:dividerHeight="1dp"
android:scrollbars="vertical"
android:background="@android:color/transparent"
android:listSelector="@android:color/transparent"
android:visibility="gone"
/>
</com.klinker.android.twitter_l.views.widgets.swipe_refresh_layout.material.MaterialSwipeRefreshLayout>
<LinearLayout android:id="@+id/toastBar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone"
android:layout_alignParentBottom="true"
android:layout_marginBottom="65dp"
android:textDirection="ltr"
android:gravity="bottom|left">
<LinearLayout
android:id="@+id/toast_background"
android:layout_width="@dimen/snack_bar_size"
android:layout_height="wrap_content"
android:background="@drawable/snack_bar_light"
android:baselineAligned="true"
android:layout_marginLeft="20dp"
android:orientation="horizontal"
android:elevation="3dp">
<TextView
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:gravity="left"
android:id="@+id/toastDescription"
android:singleLine="true"
android:textSize="14sp"
android:textColor="@android:color/white"
android:paddingLeft="16dp"
android:paddingTop="18dp"
android:paddingBottom="18dp"
android:textAllCaps="true"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/toastButton"
android:background="@drawable/ripple_dark_borderless"
android:gravity="center"
android:textSize="14sp"
android:textColor="@color/accent_ligher"
android:textAllCaps="true"
android:paddingLeft="16dp"
android:paddingRight="16dp"/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>
``` | /content/code_sandbox/app/src/main/res/layout/main_fragments.xml | xml | 2016-07-08T03:18:40 | 2024-08-14T02:54:51 | talon-for-twitter-android | klinker24/talon-for-twitter-android | 1,189 | 1,054 |
```xml
import React, { useRef } from 'react'
import { View } from 'react-native'
import { darkThemesArr, isNight, lightThemesArr, Theme } from '@devhub/core'
import { useReduxAction } from '../../hooks/use-redux-action'
import { useReduxState } from '../../hooks/use-redux-state'
import { Appearance } from '../../libs/appearence'
import * as actions from '../../redux/actions'
import * as selectors from '../../redux/selectors'
import { sharedStyles } from '../../styles/shared'
import { contentPadding } from '../../styles/variables'
import { vibrateHapticFeedback } from '../../utils/helpers/shared'
import { Checkbox } from '../common/Checkbox'
import { H3 } from '../common/H3'
import { Spacer } from '../common/Spacer'
import { SubHeader } from '../common/SubHeader'
import { Switch } from '../common/Switch'
import { useTheme } from '../context/ThemeContext'
export const ThemePreference = React.memo(() => {
const appTheme = useTheme()
const lastThemeId = useRef(appTheme.id)
if (appTheme.id !== 'auto') lastThemeId.current = appTheme.id
const currentThemeId = useReduxState(selectors.themePairSelector).id
const preferredDarkTheme = useReduxState(
selectors.preferredDarkThemePairSelector,
)
const preferredLightTheme = useReduxState(
selectors.preferredLightThemePairSelector,
)
const setTheme = useReduxAction(actions.setTheme)
const setPreferrableTheme = useReduxAction(actions.setPreferrableTheme)
const preferredDarkThemeId = preferredDarkTheme && preferredDarkTheme.id
const preferredLightThemeId = preferredLightTheme && preferredLightTheme.id
const renderThemeButton = (theme: Theme) => {
const selected =
currentThemeId === theme.id ||
(currentThemeId === 'auto' &&
(theme.isDark
? theme.id === preferredDarkThemeId
: theme.id === preferredLightThemeId))
return (
<Checkbox
key={`theme-item-checkbox-${theme.id}`}
checked={selected ? (currentThemeId === 'auto' ? null : true) : false}
circle
containerStyle={{
marginBottom: contentPadding / 2,
}}
enableIndeterminateState={currentThemeId === 'auto'}
label={theme.displayName}
onChange={(checked) => {
if (
typeof checked === 'boolean' ||
(currentThemeId === 'auto' && checked === null)
) {
if (
currentThemeId === 'auto' &&
theme.isDark ===
(Appearance.getColorScheme() === 'dark' ||
(Appearance.getColorScheme() !== 'light' && isNight()))
) {
setPreferrableTheme({
id: theme.id,
color: theme.backgroundColor,
})
return
}
vibrateHapticFeedback()
setTheme({
id: theme.id,
color: theme.backgroundColor,
})
}
}}
/>
)
}
return (
<View>
<SubHeader title="Theme" />
<View style={{ paddingHorizontal: contentPadding }}>
<View style={sharedStyles.horizontal}>
<View style={sharedStyles.flex}>
<H3 withMargin>Light Theme</H3>
{lightThemesArr.map((t) => renderThemeButton(t))}
</View>
<View style={sharedStyles.flex}>
<H3 withMargin>Dark Theme</H3>
{darkThemesArr.map((t) => renderThemeButton(t))}
</View>
</View>
<Spacer height={contentPadding} />
<View
style={[
sharedStyles.horizontal,
sharedStyles.alignItemsCenter,
sharedStyles.justifyContentSpaceBetween,
]}
>
<H3>Auto detect system preference</H3>
<Switch
analyticsLabel="auto_theme"
onValueChange={(enableAutoTheme) =>
setTheme({
id: enableAutoTheme ? 'auto' : lastThemeId.current,
})
}
value={currentThemeId === 'auto'}
/>
</View>
</View>
</View>
)
})
ThemePreference.displayName = 'ThemePreference'
``` | /content/code_sandbox/packages/components/src/components/widgets/ThemePreference.tsx | xml | 2016-11-30T23:24:21 | 2024-08-16T00:24:59 | devhub | devhubapp/devhub | 9,652 | 898 |
```xml
import {CollectionOf, ForwardGroups, getJsonSchema, Name, Required} from "../../src/index.js";
class TeamModel {
@Required()
@Name("teamName")
name: string;
}
class TeamsModel {
@Required()
@CollectionOf(TeamModel)
@ForwardGroups()
teams: TeamModel[];
}
describe("Nested list schema", () => {
it("should generated schema with alias", () => {
expect(getJsonSchema(TeamsModel, {useAlias: true})).toEqual({
definitions: {
TeamModel: {
properties: {
teamName: {
minLength: 1,
type: "string"
}
},
required: ["teamName"],
type: "object"
}
},
properties: {
teams: {
items: {
$ref: "#/definitions/TeamModel"
},
type: "array"
}
},
required: ["teams"],
type: "object"
});
});
});
``` | /content/code_sandbox/packages/specs/schema/test/integrations/nested-list.integration.spec.ts | xml | 2016-02-21T18:38:47 | 2024-08-14T21:19:48 | tsed | tsedio/tsed | 2,817 | 215 |
```xml
export type LocalData = {
lastUsedDate?: number;
lastLaunched?: number;
};
``` | /content/code_sandbox/libs/common/src/vault/models/data/local.data.ts | xml | 2016-03-09T23:14:01 | 2024-08-16T15:07:51 | clients | bitwarden/clients | 8,877 | 22 |
```xml
/* eslint-disable no-underscore-dangle */
import type { Component } from '../../types';
import { str } from './string';
export function hasDocgen<T = any>(
component: Component
): component is object & { __docgenInfo: T } {
return !!component.__docgenInfo;
}
export function isValidDocgenSection(docgenSection: any) {
return docgenSection != null && Object.keys(docgenSection).length > 0;
}
export function getDocgenSection(component: Component, section: string): any {
return hasDocgen(component) ? component.__docgenInfo[section] : null;
}
export function getDocgenDescription(component: Component): string {
return hasDocgen(component) ? str(component.__docgenInfo.description) : '';
}
``` | /content/code_sandbox/code/core/src/docs-tools/argTypes/docgen/utils/docgenInfo.ts | xml | 2016-03-18T04:23:44 | 2024-08-16T19:22:08 | storybook | storybookjs/storybook | 83,755 | 164 |
```xml
// See LICENSE.txt for license information.
import React, {useCallback, useMemo} from 'react';
import {View} from 'react-native';
import AutocompleteSelector from '@components/autocomplete_selector';
import Markdown from '@components/markdown';
import BoolSetting from '@components/settings/bool_setting';
import TextSetting from '@components/settings/text_setting';
import {View as ViewConstants} from '@constants';
import {AppFieldTypes, SelectableAppFieldTypes} from '@constants/apps';
import {useTheme} from '@context/theme';
import {selectKeyboardType} from '@utils/integrations';
import {getMarkdownBlockStyles, getMarkdownTextStyles} from '@utils/markdown';
import {makeStyleSheetFromTheme} from '@utils/theme';
const TEXT_DEFAULT_MAX_LENGTH = 150;
const TEXTAREA_DEFAULT_MAX_LENGTH = 3000;
export type Props = {
field: AppField;
name: string;
errorText?: string;
value: AppFormValue;
onChange: (name: string, value: AppFormValue) => void;
performLookup: (name: string, userInput: string) => Promise<AppSelectOption[]>;
}
const dialogOptionToAppSelectOption = (option: DialogOption): AppSelectOption => ({
label: option.text,
value: option.value,
});
const appSelectOptionToDialogOption = (option: AppSelectOption): DialogOption => ({
text: option.label,
value: option.value,
});
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => {
return {
markdownFieldContainer: {
marginTop: 15,
marginBottom: 10,
marginLeft: 15,
},
markdownFieldText: {
fontSize: 14,
color: theme.centerChannelColor,
},
};
});
function selectDataSource(fieldType: string): string {
switch (fieldType) {
case AppFieldTypes.USER:
return ViewConstants.DATA_SOURCE_USERS;
case AppFieldTypes.CHANNEL:
return ViewConstants.DATA_SOURCE_CHANNELS;
case AppFieldTypes.DYNAMIC_SELECT:
return ViewConstants.DATA_SOURCE_DYNAMIC;
default:
return '';
}
}
function AppsFormField({
field,
name,
errorText,
value,
onChange,
performLookup,
}: Props) {
const theme = useTheme();
const style = getStyleSheet(theme);
const testID = `AppFormElement.${name}`;
const placeholder = field.hint || '';
const displayName = field.modal_label || field.label || '';
const handleChange = useCallback((newValue: string | boolean) => {
onChange(name, newValue);
}, [name]);
const handleSelect = useCallback((newValue: SelectedDialogOption) => {
if (!newValue) {
const emptyValue = field.multiselect ? [] : null;
onChange(name, emptyValue);
return;
}
if (Array.isArray(newValue)) {
const selectedOptions = newValue.map(dialogOptionToAppSelectOption);
onChange(name, selectedOptions);
return;
}
onChange(name, dialogOptionToAppSelectOption(newValue));
}, [onChange, field, name]);
const getDynamicOptions = useCallback(async (userInput = ''): Promise<DialogOption[]> => {
const options = await performLookup(field.name, userInput);
return options.map(appSelectOptionToDialogOption);
}, [performLookup, field]);
const options = useMemo(() => {
if (field.type === AppFieldTypes.STATIC_SELECT) {
return field.options?.map(appSelectOptionToDialogOption);
}
if (field.type === AppFieldTypes.DYNAMIC_SELECT) {
if (!value) {
return undefined;
}
if (Array.isArray(value)) {
return value.map(appSelectOptionToDialogOption);
}
const selectedOption = value as AppSelectOption;
return [appSelectOptionToDialogOption(selectedOption)];
}
return undefined;
}, [field, value]);
const selectedValue = useMemo(() => {
if (!value || !SelectableAppFieldTypes.includes(field.type)) {
return undefined;
}
if (!value) {
return undefined;
}
if (Array.isArray(value)) {
return value.map((v) => v.value);
}
return value as string;
}, [field, value]);
switch (field.type) {
case AppFieldTypes.TEXT: {
return (
<TextSetting
label={displayName}
maxLength={field.max_length || (field.subtype === 'textarea' ? TEXTAREA_DEFAULT_MAX_LENGTH : TEXT_DEFAULT_MAX_LENGTH)}
value={value as string}
placeholder={placeholder}
helpText={field.description}
errorText={errorText}
onChange={handleChange}
optional={!field.is_required}
multiline={field.subtype === 'textarea'}
keyboardType={selectKeyboardType(field.subtype)}
secureTextEntry={field.subtype === 'password'}
disabled={Boolean(field.readonly)}
testID={testID}
/>
);
}
case AppFieldTypes.USER:
case AppFieldTypes.CHANNEL:
case AppFieldTypes.STATIC_SELECT:
case AppFieldTypes.DYNAMIC_SELECT: {
return (
<AutocompleteSelector
label={displayName}
dataSource={selectDataSource(field.type)}
options={options}
optional={!field.is_required}
onSelected={handleSelect}
getDynamicOptions={field.type === AppFieldTypes.DYNAMIC_SELECT ? getDynamicOptions : undefined}
helpText={field.description}
errorText={errorText}
placeholder={placeholder}
showRequiredAsterisk={true}
selected={selectedValue}
roundedBorders={false}
disabled={field.readonly}
isMultiselect={field.multiselect}
testID={testID}
/>
);
}
case AppFieldTypes.BOOL: {
return (
<BoolSetting
label={displayName}
value={value as boolean}
placeholder={placeholder}
helpText={field.description}
errorText={errorText}
optional={!field.is_required}
onChange={handleChange}
disabled={field.readonly}
testID={testID}
/>
);
}
case AppFieldTypes.MARKDOWN: {
if (!field.description) {
return null;
}
return (
<View
style={style.markdownFieldContainer}
>
<Markdown
value={field.description}
mentionKeys={[]}
disableAtMentions={true}
location=''
blockStyles={getMarkdownBlockStyles(theme)}
textStyles={getMarkdownTextStyles(theme)}
baseTextStyle={style.markdownFieldText}
theme={theme}
/>
</View>
);
}
}
return null;
}
export default AppsFormField;
``` | /content/code_sandbox/app/screens/apps_form/apps_form_field.tsx | xml | 2016-10-07T16:52:32 | 2024-08-16T12:08:38 | mattermost-mobile | mattermost/mattermost-mobile | 2,155 | 1,412 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="path_to_url"
xmlns:app="path_to_url"
xmlns:tools="path_to_url"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#E0E0E0">
<FrameLayout
android:id="@+id/filterBarContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimary"
android:paddingLeft="12dp"
android:paddingRight="12dp"
android:paddingBottom="12dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<androidx.cardview.widget.CardView
android:id="@+id/filterBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:elevation="12dp"
android:foreground="?attr/selectableItemBackground">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="8dp"
android:paddingBottom="8dp">
<ImageView
android:id="@+id/buttonFilter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_filter_list_white_24px"
app:tint="@color/greySecondary" />
<TextView
android:id="@+id/textCurrentSearch"
style="@style/AppTheme.Body1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="16dp"
android:layout_marginLeft="16dp"
android:text="@string/all_restaurants"
android:textColor="@color/greySecondary"
app:layout_constraintStart_toEndOf="@+id/buttonFilter"
app:layout_constraintTop_toTopOf="parent"
tools:text="Filter" />
<TextView
android:id="@+id/textCurrentSortBy"
style="@style/AppTheme.Caption"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/sorted_by_rating"
android:textColor="@color/greyDisabled"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="@+id/textCurrentSearch"
app:layout_constraintTop_toBottomOf="@+id/textCurrentSearch" />
<ImageView
android:id="@+id/buttonClearFilter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:padding="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:srcCompat="@drawable/ic_close_white_24px"
app:tint="@color/greySecondary" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>
</FrameLayout>
<!-- Main Restaurants recycler -->
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerRestaurants"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@android:color/white"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/filterBarContainer"
tools:listitem="@layout/item_restaurant" />
<!-- Shadow below toolbar -->
<View
android:id="@+id/view"
android:layout_width="match_parent"
android:layout_height="4dp"
android:background="@drawable/bg_shadow"
app:layout_constraintTop_toBottomOf="@+id/filterBarContainer"
/>
<!-- Empty list (pizza guy) view -->
<LinearLayout
android:id="@+id/viewEmpty"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="parent"
tools:ignore="UseCompoundDrawables"
tools:visibility="gone">
<ImageView
style="@style/AppTheme.PizzaGuy"
android:src="@drawable/pizza_monster" />
<TextView
style="@style/AppTheme.Body1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/message_no_results"
android:textColor="@color/greyDisabled" />
</LinearLayout>
<ProgressBar
android:id="@+id/progressLoading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="@+id/recyclerRestaurants"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/recyclerRestaurants"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
``` | /content/code_sandbox/firestore/app/src/main/res/layout/fragment_main.xml | xml | 2016-04-26T17:13:27 | 2024-08-16T18:37:58 | quickstart-android | firebase/quickstart-android | 8,797 | 1,292 |
```xml
import $ from 'jquery';
const fomanticModalFn = $.fn.modal;
// use our own `$.fn.modal` to patch Fomantic's modal module
export function initAriaModalPatch() {
if ($.fn.modal === ariaModalFn) throw new Error('initAriaModalPatch could only be called once');
$.fn.modal = ariaModalFn;
ariaModalFn.settings = fomanticModalFn.settings;
}
// the patched `$.fn.modal` modal function
// * it does the one-time attaching on the first call
function ariaModalFn(...args) {
const ret = fomanticModalFn.apply(this, args);
if (args[0] === 'show' || args[0]?.autoShow) {
for (const el of this) {
// If there is a form in the modal, there might be a "cancel" button before "ok" button (all buttons are "type=submit" by default).
// In such case, the "Enter" key will trigger the "cancel" button instead of "ok" button, then the dialog will be closed.
// It breaks the user experience - the "Enter" key should confirm the dialog and submit the form.
// So, all "cancel" buttons without "[type]" must be marked as "type=button".
for (const button of el.querySelectorAll('form button.cancel:not([type])')) {
button.setAttribute('type', 'button');
}
}
}
return ret;
}
``` | /content/code_sandbox/web_src/js/modules/fomantic/modal.ts | xml | 2016-11-01T02:13:26 | 2024-08-16T19:51:49 | gitea | go-gitea/gitea | 43,694 | 318 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="path_to_url">
<ItemGroup>
<Filter Include="Source Files">
<UniqueIdentifier>{6e26db48-0502-4e89-80bd-2da496b8b307}</UniqueIdentifier>
<Extensions>cpp;c;cxx;rc;def;r;odl;idl;hpj;bat</Extensions>
</Filter>
<Filter Include="Header Files">
<UniqueIdentifier>{f7880664-df5b-4361-8df7-0832b58be3db}</UniqueIdentifier>
<Extensions>h;hpp;hxx;hm;inl</Extensions>
</Filter>
<Filter Include="Resource Files">
<UniqueIdentifier>{e3c02581-b5db-444d-85b4-d4e869e9e192}</UniqueIdentifier>
<Extensions>ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\..\gen\examples\intlbld.c">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
</Project>
``` | /content/code_sandbox/builds/win32/msvc15/intlbuild.vcxproj.filters | xml | 2016-03-16T06:10:37 | 2024-08-16T14:13:51 | firebird | FirebirdSQL/firebird | 1,223 | 292 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<!--
~
~
~ path_to_url
~
~ Unless required by applicable law or agreed to in writing, software
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<resources>
<string name="mtrl_picker_range_header_title">Vlasszon dtumtartomnyt</string>
<string name="mtrl_picker_date_header_title">Vlasszon dtumot</string>
<string name="mtrl_picker_range_header_unselected">Kezds dtuma Befejezs dtuma</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s Befejezs dtuma</string>
<string name="mtrl_picker_range_header_only_end_selected">Kezds dtuma %1$s</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_date_header_unselected">Kivlasztott dtum</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_cancel">Mgse</string>
<string name="mtrl_picker_text_input_date_hint">Dtum</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Kezds dtuma</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Befejezs dtuma</string>
<string name="mtrl_picker_text_input_year_abbr"></string>
<string name="mtrl_picker_text_input_month_abbr">H</string>
<string name="mtrl_picker_text_input_day_abbr">N</string>
<string name="mtrl_picker_save">Ments</string>
<string name="mtrl_picker_invalid_range">rvnytelen tartomny.</string>
<string name="mtrl_picker_out_of_range">Tartomnyon kvl: %1$s</string>
<string name="mtrl_picker_invalid_format">rvnytelen formtum.</string>
<string name="mtrl_picker_invalid_format_use">Hasznlja ezt: %1$s</string>
<string name="mtrl_picker_invalid_format_example">Plda: %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Vlts naptrbeviteli mdra</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Vlts szvegbeviteli mdra</string>
<string name="mtrl_picker_a11y_prev_month">Vlts az elz hnapra</string>
<string name="mtrl_picker_a11y_next_month">Vlts a kvetkez hnapra</string>
<string name="mtrl_picker_toggle_to_year_selection">Koppintson az ves nzetre val vltshoz</string>
<string name="mtrl_picker_toggle_to_day_selection">Koppintson a naptrnzetre val vltshoz</string>
<string name="mtrl_picker_day_of_week_column_header">%1$s</string>
<string name="mtrl_picker_announce_current_selection">Jelenleg kivlasztva: %1$s</string>
<string name="mtrl_picker_announce_current_range_selection">Kivlasztott kezd dtum: %1$s Kivlasztott befejez dtum: %2$s</string>
<string name="mtrl_picker_announce_current_selection_none">egyik sem</string>
<string name="mtrl_picker_navigate_to_year_description">Ugrs ehhez az vhez: %1$d</string>
<string name="mtrl_picker_navigate_to_current_year_description">Ugrs az aktulis vre %1$d</string>
<string name="mtrl_picker_today_description">Ma %1$s</string>
<string name="mtrl_picker_start_date_description">Kezds dtuma: %1$s</string>
<string name="mtrl_picker_end_date_description">Befejezs dtuma: %1$s</string>
</resources>
``` | /content/code_sandbox/lib/java/com/google/android/material/datepicker/res/values-hu/strings.xml | xml | 2016-12-05T16:11:29 | 2024-08-16T17:51:42 | material-components-android | material-components/material-components-android | 16,176 | 940 |
```xml
import {Module} from "../../../decorators/module.js";
import {M2Ctrl} from "./controllers/M2Ctrl.js";
@Module({
mount: {
"/mod2": [M2Ctrl]
},
imports: []
})
export class Module2 {}
``` | /content/code_sandbox/packages/di/src/common/utils/__mock__/module2/Module2.ts | xml | 2016-02-21T18:38:47 | 2024-08-14T21:19:48 | tsed | tsedio/tsed | 2,817 | 53 |
```xml
/**
* ExplorerStore.ts
*
* State management for the explorer split
*/
import * as capitalize from "lodash/capitalize"
import * as last from "lodash/last"
import * as omit from "lodash/omit"
import * as path from "path"
import { Reducer, Store } from "redux"
import { combineEpics, createEpicMiddleware, Epic } from "redux-observable"
import { forkJoin } from "rxjs/observable/forkJoin"
import { fromPromise } from "rxjs/observable/fromPromise"
import { timer } from "rxjs/observable/timer"
import * as Log from "oni-core-logging"
import { createStore as createReduxStore } from "./../../Redux"
import { configuration } from "./../Configuration"
import { EmptyNode, ExplorerNode } from "./ExplorerSelectors"
import { Notifications } from "./../../Services/Notifications"
import { NotificationLevel } from "./../../Services/Notifications/NotificationStore"
import { IFileSystem, OniFileSystem } from "./ExplorerFileSystem"
export interface IFolderState {
type: "folder"
fullPath: string
}
export const DefaultFolderState: IFolderState = {
type: "folder",
fullPath: null,
}
export const DefaultRegisterState: IRegisterState = {
yank: [],
undo: [],
paste: EmptyNode,
updated: null,
create: {
active: false,
name: null,
nodeType: null,
},
rename: {
active: false,
target: null,
},
}
export interface IFileState {
type: "file"
fullPath: string
}
export interface IRecentFile {
filePath: string
modified: boolean
}
export type FolderOrFile = IFolderState | IFileState
export interface ExpandedFolders {
[fullPath: string]: FolderOrFile[]
}
export interface OpenedFiles {
[fullPath: string]: any
}
export type RegisterAction =
| IPasteAction
| IDeleteSuccessAction
| IDeleteFailAction
| IDeleteAction
| IUndoAction
| IUndoSuccessAction
| IUndoFailAction
| IRenameSuccessAction
| IRenameFailAction
| ICreateNodeSuccessAction
| ICreateNodeFailAction
interface IRegisterState {
yank: ExplorerNode[]
paste: ExplorerNode
undo: RegisterAction[]
rename: {
active: boolean
target: ExplorerNode
}
updated: string[]
create: {
active: boolean
name: string
nodeType: "file" | "folder"
}
}
export interface IExplorerState {
// Open workspace
rootFolder: IFolderState
expandedFolders: ExpandedFolders
fileToSelect: string
hasFocus: boolean
register: IRegisterState
}
export const DefaultExplorerState: IExplorerState = {
rootFolder: null,
expandedFolders: {},
fileToSelect: null,
hasFocus: false,
register: DefaultRegisterState,
}
export interface IUndoAction {
type: "UNDO"
}
export interface IUndoSuccessAction {
type: "UNDO_SUCCESS"
}
export interface IUndoFailAction {
type: "UNDO_FAIL"
reason: string
}
export interface IYankAction {
type: "YANK"
path: string
target: ExplorerNode
}
export interface IPasteAction {
type: "PASTE"
target: ExplorerNode
pasted: ExplorerNode[]
sources: ExplorerNode[]
}
export interface IDeleteAction {
type: "DELETE"
target: ExplorerNode
persist: boolean
}
export interface IDeleteSuccessAction {
type: "DELETE_SUCCESS"
target: ExplorerNode
persist: boolean
}
export interface IDeleteFailAction {
type: "DELETE_FAIL"
reason: string
}
export interface IClearRegisterAction {
type: "CLEAR_REGISTER"
ids: string[]
}
export interface IExpandDirectoryAction {
type: "EXPAND_DIRECTORY"
directoryPath: string
}
export interface IRefreshAction {
type: "REFRESH"
}
export interface ISetRootDirectoryAction {
type: "SET_ROOT_DIRECTORY"
rootPath: string
}
export interface ICollapseDirectory {
type: "COLLAPSE_DIRECTORY"
directoryPath: string
}
export interface IExpandDirectoryResult {
type: "EXPAND_DIRECTORY_RESULT"
directoryPath: string
children: FolderOrFile[]
}
export interface ISelectFileAction {
type: "SELECT_FILE"
filePath: string
}
export interface ISelectFilePendingAction {
type: "SELECT_FILE_PENDING"
filePath: string
}
export interface ISelectFileSuccessAction {
type: "SELECT_FILE_SUCCESS"
}
export interface ISelectFileFailAction {
type: "SELECT_FILE_FAIL"
reason: string
}
export interface IEnterAction {
type: "ENTER"
}
export interface ILeaveAction {
type: "LEAVE"
}
export interface IPasteFailAction {
type: "PASTE_FAIL"
reason: string
}
export interface IClearUpdateAction {
type: "CLEAR_UPDATE"
}
export interface ICreateNodeStartAction {
type: "CREATE_NODE_START"
nodeType: "file" | "folder"
}
export interface ICreateNodeCancelAction {
type: "CREATE_NODE_CANCEL"
}
export interface ICreateNodeCommitAction {
type: "CREATE_NODE_COMMIT"
name: string
}
export interface ICreateNodeFailAction {
type: "CREATE_NODE_FAIL"
reason: string
}
export interface ICreateNodeSuccessAction {
type: "CREATE_NODE_SUCCESS"
nodeType: "file" | "folder"
name: string
}
export interface IPasteSuccessAction {
type: "PASTE_SUCCESS"
moved: IMovedNodes[]
}
export interface IRenameStartAction {
type: "RENAME_START"
target: ExplorerNode
active: boolean
}
export interface IRenameSuccessAction {
type: "RENAME_SUCCESS"
source: string
destination: string
targetType: string
}
export interface IRenameFailAction {
type: "RENAME_FAIL"
reason: string
}
export interface ICancelRenameAction {
type: "RENAME_CANCEL"
}
export interface IRenameCommitAction {
type: "RENAME_COMMIT"
target: ExplorerNode
newName: string
}
export interface INotificationSentAction {
type: "NOTIFICATION_SENT"
typeOfNotification: string
}
export interface IMovedNodes {
node: ExplorerNode
destination: string
}
export type ExplorerAction =
| IEnterAction
| ILeaveAction
| IExpandDirectoryResult
| ICollapseDirectory
| ISetRootDirectoryAction
| IExpandDirectoryAction
| IRenameStartAction
| IRenameSuccessAction
| IRenameFailAction
| IRenameCommitAction
| ICancelRenameAction
| IDeleteFailAction
| IRefreshAction
| IDeleteAction
| IDeleteSuccessAction
| IYankAction
| IPasteAction
| IPasteFailAction
| IPasteSuccessAction
| IClearUpdateAction
| IClearRegisterAction
| IUndoAction
| IUndoSuccessAction
| IUndoFailAction
| ICreateNodeStartAction
| ICreateNodeFailAction
| ICreateNodeCancelAction
| ICreateNodeCommitAction
| ICreateNodeSuccessAction
| INotificationSentAction
| ISelectFileAction
| ISelectFilePendingAction
| ISelectFileSuccessAction
| ISelectFileFailAction
// Helper functions for Updating state ========================================================
export const removePastedNode = (nodeArray: ExplorerNode[], ids: string[]): ExplorerNode[] =>
nodeArray.filter(node => !ids.includes(node.id))
export const removeUndoItem = (undoArray: RegisterAction[]): RegisterAction[] =>
undoArray.slice(0, undoArray.length - 1)
const getSourceAndDestPaths = (source: ExplorerNode, dest: ExplorerNode) => {
const sourcePath = getPathForNode(source)
const destPath = dest.type === "file" ? path.dirname(dest.filePath) : getPathForNode(dest)
const destination = path.join(destPath, path.basename(sourcePath))
return { source: sourcePath, destination }
}
// Do not add un-undoable action to the undo list
export const shouldAddDeletion = (action: IDeleteSuccessAction) => (action.persist ? [action] : [])
type Updates =
| IPasteSuccessAction
| IDeleteSuccessAction
| IUndoSuccessAction
| IRenameSuccessAction
| ICreateNodeSuccessAction
export const getUpdatedNode = (action: Updates, state?: IRegisterState): string[] => {
switch (action.type) {
case "PASTE_SUCCESS":
return action.moved.map(node => node.destination)
case "DELETE_SUCCESS":
return [getPathForNode(action.target)]
case "RENAME_SUCCESS":
return [action.destination]
case "CREATE_NODE_SUCCESS":
return [action.name]
case "UNDO_SUCCESS":
const lastAction = last(state.undo)
if (lastAction.type === "DELETE_SUCCESS") {
return [getPathForNode(lastAction.target)]
} else if (lastAction.type === "PASTE") {
return lastAction.pasted.map(node => getPathForNode(node))
} else if (lastAction.type === "RENAME_SUCCESS") {
return [lastAction.source]
}
return []
default:
return []
}
}
const shouldExpandDirectory = (targets: ExplorerNode[]): IExpandDirectoryAction[] =>
targets
.map(target => target.type !== "file" && Actions.expandDirectory(getPathForNode(target)))
.filter(Boolean)
export const getPathForNode = (node: ExplorerNode) => {
if (!node) {
return null
} else if (node.type === "file") {
return node.filePath
} else if (node.type === "folder") {
return node.folderPath
} else {
return node.name
}
}
// Strongly typed actions/action-creators to be used in multiple epics
const Actions = {
Null: { type: null } as ExplorerAction,
createNode: (args: { nodeType: "file" | "folder"; name: string }) =>
({ type: "CREATE_NODE_SUCCESS", ...args } as ICreateNodeSuccessAction),
createNodeFail: (reason: string) =>
({ type: "CREATE_NODE_FAIL", reason } as ICreateNodeFailAction),
pasteSuccess: (moved: IMovedNodes[]) =>
({ type: "PASTE_SUCCESS", moved } as IPasteSuccessAction),
pasteFail: (reason: string) => ({ type: "PASTE_FAIL", reason } as IPasteFailAction),
undoFail: (reason: string) => ({ type: "UNDO_FAIL", reason } as IUndoFailAction),
undoSuccess: { type: "UNDO_SUCCESS" } as IUndoSuccessAction,
renameSuccess: (args: {
source: string
destination: string
targetType: string
}): IRenameSuccessAction => ({
type: "RENAME_SUCCESS",
...args,
}),
renameFail: (reason: string) => ({ type: "RENAME_FAIL", reason } as IRenameFailAction),
paste: { type: "PASTE" } as IPasteAction,
refresh: { type: "REFRESH" } as IRefreshAction,
deleteFail: (reason: string) => ({ type: "DELETE_FAIL", reason } as IDeleteFailAction),
clearRegister: (ids: string[]) => ({ type: "CLEAR_REGISTER", ids } as IClearRegisterAction),
clearUpdate: { type: "CLEAR_UPDATE" } as IClearUpdateAction,
deleteSuccess: (target: ExplorerNode, persist: boolean): IDeleteSuccessAction => ({
type: "DELETE_SUCCESS",
target,
persist,
}),
notificationSent: (typeOfNotification: string): INotificationSentAction => ({
type: "NOTIFICATION_SENT",
typeOfNotification,
}),
expandDirectory: (directoryPath: string): IExpandDirectoryAction => ({
type: "EXPAND_DIRECTORY",
directoryPath,
}),
expandDirectoryResult: (
pathToExpand: string,
sortedFilesAndFolders: FolderOrFile[],
): ExplorerAction => {
return {
type: "EXPAND_DIRECTORY_RESULT",
directoryPath: pathToExpand,
children: sortedFilesAndFolders,
}
},
selectFile: (filePath: string): ISelectFileAction => ({
type: "SELECT_FILE",
filePath,
}),
}
// Yank, Paste Delete register =============================
// The undo register is essentially a list of past actions
// => [paste, delete, paste], when an action is carried out
// it is added to the back of the stack when an undo is triggered
// it is removed.
// The most recently actioned node(s) path(s) are set to the value of
// the updated field, this is used to animate updated fields,
// Updates are cleared shortly after to prevent re-animating
export const yankRegisterReducer: Reducer<IRegisterState> = (
state: IRegisterState = DefaultRegisterState,
action: ExplorerAction,
) => {
switch (action.type) {
case "CREATE_NODE_START":
return {
...state,
create: {
active: true,
name: null,
nodeType: action.nodeType,
},
}
case "CREATE_NODE_FAIL":
case "CREATE_NODE_CANCEL":
return {
...state,
create: {
active: false,
name: null,
nodeType: null,
},
}
case "CREATE_NODE_SUCCESS":
return {
...state,
create: {
active: false,
name: null,
nodeType: null,
},
updated: getUpdatedNode(action),
undo: [...state.undo, action],
}
case "RENAME_START":
return {
...state,
rename: {
active: true,
target: action.target,
},
}
case "RENAME_CANCEL":
return {
...state,
rename: {
active: false,
target: null,
},
}
case "RENAME_SUCCESS":
return {
...state,
undo: [...state.undo, action],
updated: getUpdatedNode(action),
rename: {
active: false,
target: null,
},
}
case "YANK":
return {
...state,
yank: [...state.yank, action.target],
}
case "PASTE":
return {
...state,
paste: action.target,
undo: [...state.undo, action],
}
case "PASTE_SUCCESS":
return {
...state,
updated: getUpdatedNode(action),
}
case "UNDO_SUCCESS":
return {
...state,
undo: removeUndoItem(state.undo),
updated: getUpdatedNode(action, state),
}
case "CLEAR_REGISTER":
return {
...state,
paste: EmptyNode,
yank: removePastedNode(state.yank, action.ids),
}
case "CLEAR_UPDATE":
return {
...state,
updated: null,
}
case "DELETE_SUCCESS":
return {
...state,
undo: [...state.undo, ...shouldAddDeletion(action)],
updated: getUpdatedNode(action),
}
case "LEAVE":
return { ...DefaultRegisterState, undo: state.undo }
case "DELETE_FAIL":
default:
return state
}
}
export const rootFolderReducer: Reducer<IFolderState> = (
state: IFolderState = DefaultFolderState,
action: ExplorerAction,
) => {
switch (action.type) {
case "SET_ROOT_DIRECTORY":
return {
...state,
type: "folder",
fullPath: action.rootPath,
}
default:
return state
}
}
export const expandedFolderReducer: Reducer<ExpandedFolders> = (
state: ExpandedFolders = {},
action: ExplorerAction,
) => {
switch (action.type) {
case "SET_ROOT_DIRECTORY":
return {}
case "COLLAPSE_DIRECTORY":
return omit(state, [action.directoryPath])
case "EXPAND_DIRECTORY_RESULT":
return {
...state,
[action.directoryPath]: action.children,
}
default:
return state
}
}
export const hasFocusReducer: Reducer<boolean> = (
state: boolean = false,
action: ExplorerAction,
) => {
switch (action.type) {
case "ENTER":
return true
case "LEAVE":
return false
default:
return state
}
}
export const selectFileReducer: Reducer<string> = (
state: string = null,
action: ExplorerAction,
) => {
switch (action.type) {
case "SELECT_FILE_PENDING":
return action.filePath
case "SELECT_FILE_SUCCESS":
return null
default:
return state
}
}
export const reducer: Reducer<IExplorerState> = (
state: IExplorerState = DefaultExplorerState,
action: ExplorerAction,
) => {
return {
...state,
hasFocus: hasFocusReducer(state.hasFocus, action),
rootFolder: rootFolderReducer(state.rootFolder, action),
expandedFolders: expandedFolderReducer(state.expandedFolders, action),
fileToSelect: selectFileReducer(state.fileToSelect, action),
register: yankRegisterReducer(state.register, action),
}
}
const setRootDirectoryEpic: Epic<ExplorerAction, IExplorerState> = (action$, store) =>
action$.ofType("SET_ROOT_DIRECTORY").map((action: ISetRootDirectoryAction) => {
if (!action.rootPath) {
return Actions.Null
}
return Actions.expandDirectory(action.rootPath)
})
const sortFilesAndFoldersFunc = (a: FolderOrFile, b: FolderOrFile) => {
if (a.type < b.type) {
return 1
} else if (a.type > b.type) {
return -1
} else {
if (a.fullPath < b.fullPath) {
return -1
} else {
return 1
}
}
}
// Send Notifications ==================================================
interface INotificationDetails {
title: string
details: string
level?: NotificationLevel
}
const sendExplorerNotification = (
{ title, details, level = "success" }: INotificationDetails,
notifications: Notifications,
) => {
const notification = notifications.createItem()
notification.setContents(title, details)
notification.setLevel(level)
notification.setExpiration(5_000)
notification.show()
}
interface MoveNotificationArgs {
type: string
name: string
destination: string
notifications: Notifications
}
const moveNotification = ({ type, name, destination, notifications }: MoveNotificationArgs) =>
sendExplorerNotification(
{
title: `${capitalize(type)} Moved`,
details: `Successfully moved ${name} to ${destination}`,
},
notifications,
)
interface SendNotificationArgs {
name: string
type: string
notifications: Notifications
}
const deletionNotification = ({ type, name, notifications }: SendNotificationArgs): void =>
sendExplorerNotification(
{
title: `${capitalize(type)} deleted`,
details: `${path.basename(name)} was deleted successfully`,
},
notifications,
)
interface RenameNotificationArgs {
type: string
source: string
destination: string
notifications: Notifications
}
const renameNotification = ({
notifications,
type,
source,
destination,
}: RenameNotificationArgs): void =>
sendExplorerNotification(
{
title: `${capitalize(type)} renamed successfully`,
details: `${path.basename(source)} renamed to ${path.basename(destination)}`,
},
notifications,
)
interface CreationNotificationArgs {
notifications: Notifications
type: "file" | "folder"
name: string
}
const creationNotification = ({ notifications, type, name }: CreationNotificationArgs): void =>
sendExplorerNotification(
{
title: `${capitalize(type)} created successfully`,
details: `${name} created`,
},
notifications,
)
interface ErrorNotificationArgs {
type: string
reason: string
notifications: Notifications
}
const errorNotification = ({ type, reason, notifications }: ErrorNotificationArgs): void =>
sendExplorerNotification(
{
title: `${capitalize(type)} Failed`,
details: reason,
level: "warn",
},
notifications,
)
interface Dependencies {
fileSystem: IFileSystem
notifications: Notifications
}
// EPICS =============================================================
type ExplorerEpic = Epic<ExplorerAction, IExplorerState, Dependencies>
export const pasteEpic: ExplorerEpic = (action$, store, { fileSystem }) =>
action$.ofType("PASTE").mergeMap(({ target, pasted }: IPasteAction) => {
const ids = pasted.map(item => item.id)
const clearRegister = Actions.clearRegister(ids)
return forkJoin(
pasted.map(async yankedItem => {
const { source, destination } = getSourceAndDestPaths(yankedItem, target)
await fileSystem.move(source, destination)
return { node: yankedItem, destination }
}),
)
.flatMap(moved => {
return [
clearRegister,
...shouldExpandDirectory([target]),
Actions.refresh,
Actions.pasteSuccess(moved),
]
})
.catch(error => {
Log.warn(error)
return [clearRegister, Actions.pasteFail(error.message)]
})
})
const successActions = (maybeDirsNodes: ExplorerNode[] = []) => [
Actions.undoSuccess,
...shouldExpandDirectory(maybeDirsNodes),
Actions.refresh,
]
const persistOrDeleteNode = async (
filepath: string,
fileSystem: IFileSystem,
persist = true,
): Promise<void> => {
const maxSize = configuration.getValue("explorer.maxUndoFileSizeInBytes")
const persistEnabled = configuration.getValue("explorer.persistDeletedFiles")
const canPersistNode = await fileSystem.canPersistNode(filepath, maxSize)
persistEnabled && persist && canPersistNode
? await fileSystem.persistNode(filepath)
: await fileSystem.deleteNode(filepath)
}
export const undoEpic: ExplorerEpic = (action$, store, { fileSystem }) =>
action$.ofType("UNDO").mergeMap(action => {
const {
register: { undo },
} = store.getState()
const lastAction = last(undo)
switch (lastAction.type) {
case "PASTE":
const { pasted, target: dir, sources } = lastAction
const filesAndFolders = pasted.map(file => getSourceAndDestPaths(file, dir))
return fromPromise(fileSystem.moveNodesBack(filesAndFolders))
.flatMap(() => successActions(sources))
.catch(error => {
Log.warn(error)
return [Actions.undoFail("Sorry we can't undo the laste paste action")]
})
case "DELETE_SUCCESS":
const { target } = lastAction
return lastAction.persist
? fromPromise(fileSystem.restoreNode(getPathForNode(target)))
.flatMap(() => successActions([target]))
.catch(error => {
Log.warn(error)
return [Actions.undoFail("The last deletion cannot be undone, sorry")]
})
: [Actions.undoFail("The last deletion cannot be undone, sorry")]
case "RENAME_SUCCESS":
const { source, destination } = lastAction
return fromPromise(fileSystem.move(destination, source))
.flatMap(() => successActions())
.catch(error => {
Log.warn(error)
return [Actions.undoFail("The last rename could not be undone, sorry")]
})
case "CREATE_NODE_SUCCESS":
return fromPromise(persistOrDeleteNode(lastAction.name, fileSystem))
.flatMap(() => successActions())
.catch(error => {
Log.warn(error)
return [
Actions.undoFail(
"The last file/folder creation could not be undone, sorry",
),
]
})
default:
return [Actions.undoFail("Sorry we can't undo the last action")]
}
})
export const deleteEpic: ExplorerEpic = (action$, store, { fileSystem }) =>
action$.ofType("DELETE").mergeMap((action: IDeleteAction) => {
const { target, persist } = action
const filepath = getPathForNode(target)
return fromPromise(persistOrDeleteNode(filepath, fileSystem, persist))
.flatMap(() => [Actions.deleteSuccess(target, persist), Actions.refresh])
.catch(error => {
Log.warn(error)
return [Actions.deleteFail(error.message)]
})
})
export const renameEpic: ExplorerEpic = (action$, store, { fileSystem }) =>
action$.ofType("RENAME_COMMIT").mergeMap(({ newName, target }: IRenameCommitAction) => {
const source = getPathForNode(target)
const destination = path.join(path.dirname(source), newName)
return fromPromise(fileSystem.move(source, destination))
.flatMap(() => [
Actions.renameSuccess({ source, destination, targetType: target.type }),
Actions.refresh,
])
.catch(error => {
Log.warn(error)
return [Actions.renameFail(error.message)]
})
})
export const clearYankRegisterEpic: ExplorerEpic = (action$, store) =>
action$.ofType("YANK").mergeMap((action: IYankAction) => {
const oneMinute = 60_000
return timer(oneMinute).mapTo(Actions.clearRegister([action.target.id]))
})
export const clearUpdateEpic: ExplorerEpic = (action$, store) =>
action$
.ofType("PASTE_SUCCESS", "UNDO_SUCCESS", "DELETE_SUCCESS")
.mergeMap(() => timer(2_000).mapTo(Actions.clearUpdate))
const refreshEpic: ExplorerEpic = (action$, store) =>
action$
.ofType("REFRESH")
.auditTime(300)
.mergeMap(() => {
const state = store.getState()
return Object.keys(state.expandedFolders).map(p => {
return Actions.expandDirectory(p)
})
})
const expandDirectoryEpic: ExplorerEpic = (action$, store, { fileSystem }) =>
action$.ofType("EXPAND_DIRECTORY").flatMap(async (action: ExplorerAction) => {
if (action.type !== "EXPAND_DIRECTORY") {
return Actions.Null
}
const pathToExpand = action.directoryPath
const filesAndFolders = await fileSystem.readdir(pathToExpand)
const sortedFilesAndFolders = filesAndFolders.sort(sortFilesAndFoldersFunc)
return Actions.expandDirectoryResult(pathToExpand, sortedFilesAndFolders)
})
export const selectFileEpic: ExplorerEpic = (action$, store, { fileSystem }) =>
action$.ofType("SELECT_FILE").mergeMap(({ filePath }: ISelectFileAction) => {
const rootPath = store.getState().rootFolder.fullPath
// We need to resolve any symlinks, since the buffer and workspace path can otherwise
// appear to be unrelated (at least on OSX).
return fromPromise(
Promise.all([fileSystem.realpath(rootPath), fileSystem.realpath(filePath)]),
).flatMap(([realRootPath, realFilePath]): ExplorerAction[] => {
const relPath = path.relative(realRootPath, realFilePath)
// Can only select files in the workspace.
if (relPath.startsWith("..") || path.isAbsolute(relPath)) {
const failure: ISelectFileFailAction = {
type: "SELECT_FILE_FAIL",
reason: `File is not in workspace: ${filePath}`,
}
return [failure]
}
// Get the list of directories to expand in the Explorer.
const relDirectoryPath = path.relative(realRootPath, path.dirname(realFilePath))
const directories = relDirectoryPath.split(path.sep)
const actions = []
// Expand each directory in turn from the project root down to the file we want.
for (let dirNum = 1; dirNum <= directories.length; dirNum++) {
const relParentDirectoryPath = directories.slice(0, dirNum).join(path.sep)
const parentDirectoryPath = path.join(rootPath, relParentDirectoryPath)
actions.push(Actions.expandDirectory(parentDirectoryPath))
}
// Update the state with the file path we want the VimNaviator to select.
const pending: ISelectFilePendingAction = {
type: "SELECT_FILE_PENDING",
filePath: realFilePath,
}
actions.push(pending)
return actions
})
})
export const createNodeEpic: ExplorerEpic = (action$, store, { fileSystem }) =>
action$.ofType("CREATE_NODE_COMMIT").mergeMap(({ name }: ICreateNodeCommitAction) => {
const {
register: {
create: { nodeType },
},
} = store.getState()
const createFileOrFolder =
nodeType === "file" ? fileSystem.writeFile(name) : fileSystem.mkdir(name)
return fromPromise(createFileOrFolder)
.flatMap(() => [Actions.createNode({ nodeType, name }), Actions.selectFile(name)])
.catch(error => [Actions.createNodeFail(error.message)])
})
export const notificationEpic: ExplorerEpic = (action$, store, { notifications }) =>
action$
.ofType(
"PASTE_SUCCESS",
"DELETE_SUCCESS",
"RENAME_SUCCESS",
"CREATE_NODE_SUCCESS",
"RENAME_FAIL",
"PASTE_FAIL",
"DELETE_FAIL",
"CREATE_NODE_FAIL",
"SELECT_FILE_FAIL",
)
.map(action => {
switch (action.type) {
case "PASTE_SUCCESS":
action.moved.map(item =>
moveNotification({
notifications,
type: item.node.type,
name: item.node.name,
destination: item.destination,
}),
)
return Actions.notificationSent(action.type)
case "DELETE_SUCCESS":
deletionNotification({
notifications,
type: action.target.type,
name: action.target.name,
})
return Actions.notificationSent(action.type)
case "RENAME_SUCCESS":
renameNotification({
notifications,
type: action.targetType,
source: action.source,
destination: action.destination,
})
return Actions.notificationSent(action.type)
case "CREATE_NODE_SUCCESS":
creationNotification({
notifications,
type: action.nodeType,
name: action.name,
})
return Actions.notificationSent(action.type)
case "PASTE_FAIL":
case "DELETE_FAIL":
case "RENAME_FAIL":
case "CREATE_NODE_FAIL":
case "SELECT_FILE_FAIL":
const [type] = action.type.split("_")
errorNotification({
type,
notifications,
reason: action.reason,
})
return Actions.notificationSent(action.type)
default:
return Actions.Null
}
})
interface ICreateStore {
fileSystem?: IFileSystem
notifications: Notifications
}
export const createStore = ({
fileSystem = OniFileSystem,
notifications,
}: ICreateStore): Store<IExplorerState> => {
return createReduxStore("Explorer", reducer, DefaultExplorerState, [
createEpicMiddleware<ExplorerAction, IExplorerState, Dependencies>(
combineEpics(
refreshEpic,
setRootDirectoryEpic,
createNodeEpic,
clearUpdateEpic,
clearYankRegisterEpic,
renameEpic,
pasteEpic,
undoEpic,
deleteEpic,
expandDirectoryEpic,
selectFileEpic,
notificationEpic,
),
{ dependencies: { fileSystem, notifications } },
),
])
}
``` | /content/code_sandbox/browser/src/Services/Explorer/ExplorerStore.ts | xml | 2016-11-16T14:42:55 | 2024-08-14T11:48:05 | oni | onivim/oni | 11,355 | 6,845 |
```xml
interface Base {
x: {
a?: string; b: string;
}
}
interface Base2 {
x: {
b: string; c?: number;
}
}
interface Derived extends Base, Base2 {
x: { b: string }
}
interface Derived2 extends Base, Base2 {
x: { a: number; b: string }
}
interface Derived3 extends Base, Base2 {
x: { a: string; b: string }
}
``` | /content/code_sandbox/tests/format/typescript/conformance/interfaces/interfaceDeclarations/interfaceWithMultipleBaseTypes2.ts | xml | 2016-11-29T17:13:37 | 2024-08-16T17:29:57 | prettier | prettier/prettier | 48,913 | 101 |
```xml
import * as React from 'react';
import createSvgIcon from '../utils/createSvgIcon';
const AnalyticsQueryIcon = createSvgIcon({
svg: ({ classes }) => (
<svg xmlns="path_to_url" viewBox="0 0 2048 2048" className={classes.svg} focusable="false">
<path d="M2048 your_sha256_hash4 0-238 32t-213 90-182 141-140 181-91 214-32 238q0 124 32 238t90 213 141 182 181 140 214 91 238 32v128q-142 0-272-36t-245-103-207-160-160-208-103-245-37-272q0-141 36-272t103-245 160-207 208-160T752 37t272-37q141 0 272 36t245 103 207 160 160 208 103 245 37 272zM1024 384q133 0 249 50t204 137 137 203 50 250h-128q0-106-40-199t-110-162-163-110-199-41q-106 0-199 40T663 662 553 825t-41 199q0 103 38 196t112 166l-91 91q-91-91-139-208t-48-245q0-133 50-249t137-204 203-137 250-50zm0 384q53 0 99 20t82 55 55 81 20 100q0 53-20 99t-55 82-81 55-100 20q-53 0-99-20t-82-55-55-81-20-100q0-53 20-99t55-82 81-55 100-20zm0 384q27 0 50-10t40-27 28-41 10-50q0-27-10-50t-27-40-41-28-50-10q-27 0-50 10t-40 27-28 41-10 50q0 27 10 50t27 40 41 28 50 10z" />
</svg>
),
displayName: 'AnalyticsQueryIcon',
});
export default AnalyticsQueryIcon;
``` | /content/code_sandbox/packages/react-icons-mdl2/src/components/AnalyticsQueryIcon.tsx | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 544 |
```xml
import * as React from 'react';
import { useTooltip_unstable } from './useTooltip';
import { renderTooltip_unstable } from './renderTooltip';
import { useCustomStyleHook_unstable } from '@fluentui/react-shared-contexts';
import { useTooltipStyles_unstable } from './useTooltipStyles.styles';
import type { TooltipProps } from './Tooltip.types';
import type { FluentTriggerComponent } from '@fluentui/react-utilities';
/**
* A tooltip provides light weight contextual information on top of its target element.
*/
export const Tooltip: React.FC<TooltipProps> = props => {
const state = useTooltip_unstable(props);
useTooltipStyles_unstable(state);
useCustomStyleHook_unstable('useTooltipStyles_unstable')(state);
return renderTooltip_unstable(state);
};
Tooltip.displayName = 'Tooltip';
// type casting here is required to ensure internal type FluentTriggerComponent is not leaked
(Tooltip as FluentTriggerComponent).isFluentTriggerComponent = true;
``` | /content/code_sandbox/packages/react-components/react-tooltip/library/src/components/Tooltip/Tooltip.tsx | xml | 2016-06-06T15:03:44 | 2024-08-16T18:49:29 | fluentui | microsoft/fluentui | 18,221 | 206 |
```xml
<manifest package="com.airbnb.epoxy.paging3"
xmlns:android="path_to_url" />
``` | /content/code_sandbox/epoxy-paging3/src/main/AndroidManifest.xml | xml | 2016-08-08T23:05:11 | 2024-08-16T16:11:07 | epoxy | airbnb/epoxy | 8,486 | 23 |
```xml
import { useCallback, useMemo, useRef } from 'react';
import { useActiveBreakpoint } from '@proton/components';
import useNavigate from '../../../hooks/drive/useNavigate';
import type { useDevicesView } from '../../../store';
import FileBrowser, { Cells, useItemContextMenu, useSelection } from '../../FileBrowser';
import type { BrowserItemId, FileBrowserBaseItem, ListViewHeaderItem } from '../../FileBrowser/interface';
import { GridViewItemDevice } from '../FileBrowser/GridViewItemDevice';
import { DeviceNameCell } from '../FileBrowser/contentCells';
import headerCellsCommon from '../FileBrowser/headerCells';
import { DevicesItemContextMenu } from './ContextMenu/DevicesContextMenu';
import EmptyDevices from './EmptyDevices';
import { getSelectedItems } from './Toolbar/DevicesToolbar';
import { getDevicesSectionName } from './constants';
import headerCells from './headerCells';
export interface DeviceItem extends FileBrowserBaseItem {
modificationTime: number;
name: string;
}
interface Props {
view: ReturnType<typeof useDevicesView>;
}
const { ContextMenuCell } = Cells;
const largeScreenCells: React.FC<{ item: DeviceItem }>[] = [DeviceNameCell, ContextMenuCell];
const smallScreenCells = [DeviceNameCell, ContextMenuCell];
const headerItemsLargeScreen: ListViewHeaderItem[] = [headerCells.name, headerCellsCommon.placeholder];
const headerItemsSmallScreen: ListViewHeaderItem[] = [headerCells.name, headerCellsCommon.placeholder];
function Devices({ view }: Props) {
const contextMenuAnchorRef = useRef<HTMLDivElement>(null);
const { navigateToLink } = useNavigate();
const browserItemContextMenu = useItemContextMenu();
const selectionControls = useSelection();
const { viewportWidth } = useActiveBreakpoint();
const { layout, items: browserItems, isLoading } = view;
const sectionTitle = getDevicesSectionName();
const selectedItems = useMemo(
() => getSelectedItems(browserItems, selectionControls!.selectedItemIds),
[browserItems, selectionControls!.selectedItemIds]
);
const handleClick = useCallback(
(id: BrowserItemId) => {
const item = browserItems.find((item) => item.id === id);
if (!item) {
return;
}
document.getSelection()?.removeAllRanges();
navigateToLink(item.shareId, item.linkId, false);
},
[navigateToLink, browserItems]
);
/* eslint-disable react/display-name */
const GridHeaderComponent = useMemo(
() => () => {
return null;
},
[isLoading]
);
if (!browserItems.length && !isLoading) {
return <EmptyDevices />;
}
const Cells = viewportWidth['>=large'] ? largeScreenCells : smallScreenCells;
const headerItems = viewportWidth['>=large'] ? headerItemsLargeScreen : headerItemsSmallScreen;
return (
<>
<DevicesItemContextMenu
selectedDevices={selectedItems}
anchorRef={contextMenuAnchorRef}
close={browserItemContextMenu.close}
isOpen={browserItemContextMenu.isOpen}
open={browserItemContextMenu.open}
position={browserItemContextMenu.position}
/>
<FileBrowser
isMultiSelectionDisabled={true}
caption={sectionTitle}
items={browserItems}
headerItems={headerItems}
layout={layout}
loading={isLoading}
Cells={Cells}
GridHeaderComponent={GridHeaderComponent}
GridViewItem={GridViewItemDevice}
onItemOpen={handleClick}
contextMenuAnchorRef={contextMenuAnchorRef}
onItemContextMenu={browserItemContextMenu.handleContextMenu}
/>
</>
);
}
export default Devices;
``` | /content/code_sandbox/applications/drive/src/app/components/sections/Devices/Devices.tsx | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 765 |
```xml
export * from './prod.js';
``` | /content/code_sandbox/packages/jsx-runtime/src/index.ts | xml | 2016-11-03T06:59:15 | 2024-08-16T10:11:29 | ice | alibaba/ice | 17,815 | 8 |
```xml
<DescribeDBInstancesResponse xmlns="path_to_url">
<DescribeDBInstancesResult>
<DBInstances>
<DBInstance>
<AllocatedStorage>5</AllocatedStorage>
<AssociatedRoles/>
<DBParameterGroups>
<DBParameterGroup>
<DBParameterGroupName>doc-example-parameter-group</DBParameterGroupName>
<ParameterApplyStatus>in-sync</ParameterApplyStatus>
</DBParameterGroup>
</DBParameterGroups>
<AvailabilityZone>us-east-1a</AvailabilityZone>
<DBSecurityGroups/>
<EngineVersion>5.7.33</EngineVersion>
<MasterUsername>foo</MasterUsername>
<CertificateDetails>
<ValidTill>2024-08-22T17:08:50Z</ValidTill>
<CAIdentifier>rds-ca-2019</CAIdentifier>
</CertificateDetails>
<InstanceCreateTime>2023-02-13T14:50:12.138Z</InstanceCreateTime>
<DBInstanceClass>db.t2.micro</DBInstanceClass>
<StorageThroughput>0</StorageThroughput>
<HttpEndpointEnabled>false</HttpEndpointEnabled>
<ReadReplicaDBInstanceIdentifiers/>
<CustomerOwnedIpEnabled>false</CustomerOwnedIpEnabled>
<MonitoringInterval>0</MonitoringInterval>
<DBInstanceStatus>available</DBInstanceStatus>
<BackupRetentionPeriod>1</BackupRetentionPeriod>
<OptionGroupMemberships>
<OptionGroupMembership>
<OptionGroupName>default:mysql-5-7</OptionGroupName>
<Status>in-sync</Status>
</OptionGroupMembership>
</OptionGroupMemberships>
<LatestRestorableTime>2023-02-13T14:51:50.159Z</LatestRestorableTime>
<BackupTarget>region</BackupTarget>
<CACertificateIdentifier>rds-ca-2019</CACertificateIdentifier>
<DbInstancePort>0</DbInstancePort>
<DbiResourceId>db-CKGCM6BVK67HH7GSPRBYWX5DSU</DbiResourceId>
<PreferredBackupWindow>03:30-04:00</PreferredBackupWindow>
<DeletionProtection>false</DeletionProtection>
<DBInstanceIdentifier>doc-example-instance</DBInstanceIdentifier>
<DBInstanceArn>arn:aws:rds:us-east-1:123456789:db:doc-example-instance</DBInstanceArn>
<Endpoint>
<HostedZoneId>Z2R2ITUGPM61AM</HostedZoneId>
<Address>doc-example-instance.cdx7lk6twjmf.us-east-1.rds.amazonaws.com</Address>
<Port>3306</Port>
</Endpoint>
<Engine>mysql</Engine>
<PubliclyAccessible>true</PubliclyAccessible>
<IAMDatabaseAuthenticationEnabled>false</IAMDatabaseAuthenticationEnabled>
<NetworkType>IPV4</NetworkType>
<ActivityStreamStatus>stopped</ActivityStreamStatus>
<PerformanceInsightsEnabled>false</PerformanceInsightsEnabled>
<DBName>docexampledb</DBName>
<MultiAZ>false</MultiAZ>
<DomainMemberships/>
<StorageEncrypted>false</StorageEncrypted>
<DBSubnetGroup>
<VpcId>vpc-0d533261ecd9c2d4b</VpcId>
<Subnets>
<Subnet>
<SubnetIdentifier>subnet-0d4097e69bda55551</SubnetIdentifier>
<SubnetStatus>Active</SubnetStatus>
<SubnetOutpost/>
<SubnetAvailabilityZone>
<Name>us-east-1e</Name>
</SubnetAvailabilityZone>
</Subnet>
<Subnet>
<SubnetIdentifier>subnet-0113d608cb7592443</SubnetIdentifier>
<SubnetStatus>Active</SubnetStatus>
<SubnetOutpost/>
<SubnetAvailabilityZone>
<Name>us-east-1a</Name>
</SubnetAvailabilityZone>
</Subnet>
<Subnet>
<SubnetIdentifier>subnet-0835b5ece729e4152</SubnetIdentifier>
<SubnetStatus>Active</SubnetStatus>
<SubnetOutpost/>
<SubnetAvailabilityZone>
<Name>us-east-1b</Name>
</SubnetAvailabilityZone>
</Subnet>
<Subnet>
<SubnetIdentifier>subnet-09a9558a8b495f5ff</SubnetIdentifier>
<SubnetStatus>Active</SubnetStatus>
<SubnetOutpost/>
<SubnetAvailabilityZone>
<Name>us-east-1d</Name>
</SubnetAvailabilityZone>
</Subnet>
<Subnet>
<SubnetIdentifier>subnet-0dd1dd362104c4f40</SubnetIdentifier>
<SubnetStatus>Active</SubnetStatus>
<SubnetOutpost/>
<SubnetAvailabilityZone>
<Name>us-east-1c</Name>
</SubnetAvailabilityZone>
</Subnet>
<Subnet>
<SubnetIdentifier>subnet-0195fb838a854432f</SubnetIdentifier>
<SubnetStatus>Active</SubnetStatus>
<SubnetOutpost/>
<SubnetAvailabilityZone>
<Name>us-east-1f</Name>
</SubnetAvailabilityZone>
</Subnet>
</Subnets>
<SubnetGroupStatus>Complete</SubnetGroupStatus>
<DBSubnetGroupDescription>default</DBSubnetGroupDescription>
<DBSubnetGroupName>default</DBSubnetGroupName>
</DBSubnetGroup>
<VpcSecurityGroups>
<VpcSecurityGroupMembership>
<VpcSecurityGroupId>sg-0b26bb6c3347555e2</VpcSecurityGroupId>
<Status>active</Status>
</VpcSecurityGroupMembership>
</VpcSecurityGroups>
<TagList/>
<PendingModifiedValues/>
<PreferredMaintenanceWindow>sun:05:42-sun:06:12</PreferredMaintenanceWindow>
<StorageType>standard</StorageType>
<AutoMinorVersionUpgrade>true</AutoMinorVersionUpgrade>
<CopyTagsToSnapshot>false</CopyTagsToSnapshot>
</DBInstance>
</DBInstances>
</DescribeDBInstancesResult>
<ResponseMetadata>
<RequestId>b4b7a79c-b4e4-4afc-9cb0-c5bedaed4677</RequestId>
</ResponseMetadata>
</DescribeDBInstancesResponse>
``` | /content/code_sandbox/cpp/example_code/rds/tests/mock_input/457-DescribeDBInstances.xml | xml | 2016-08-18T19:06:57 | 2024-08-16T18:59:44 | aws-doc-sdk-examples | awsdocs/aws-doc-sdk-examples | 9,298 | 1,453 |
```xml
import { ConfirmTransaction } from '@components';
import { ITxConfig, ITxType } from '@types';
interface Props {
txConfig: ITxConfig;
goToNextStep(): void;
}
export default function DeployConfirm(props: Props) {
const { goToNextStep, txConfig } = props;
return (
<ConfirmTransaction
onComplete={goToNextStep}
resetFlow={goToNextStep}
txConfig={txConfig}
txType={ITxType.DEPLOY_CONTRACT}
/>
);
}
``` | /content/code_sandbox/src/features/DeployContracts/components/DeployConfirm.tsx | xml | 2016-12-04T01:35:27 | 2024-08-14T21:41:58 | MyCrypto | MyCryptoHQ/MyCrypto | 1,347 | 116 |
```xml
import Vue, {VNode, CreateElement} from 'vue';
module.exports = function (props = {'visible.sync': true}) {
return Vue.extend({
data() {
return {
visible: true
}
},
methods: {
close(data: any) {
},
cancel(data: any) {
}
},
render(): VNode {
return (
<el-dialog visible={this.visible} onClose={this.close} onCancel={this.cancel} {...props} />
)
}
})
};
``` | /content/code_sandbox/House-Map.UI/src/components/dialog.tsx | xml | 2016-08-07T02:49:01 | 2024-08-12T19:24:12 | HouseSearch | liguobao/HouseSearch | 1,341 | 113 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="path_to_url"
xmlns:tools="path_to_url"
package="com.journaldev.androidalarmbroadcastservice">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:ignore="GoogleAppIndexingWarning">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name=".MyBroadCastReceiver"
android:directBootAware="true"
android:enabled="true"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service
android:name="com.journaldev.androidalarmbroadcastservice.MyService"
android:enabled="true"
android:exported="false"
android:process=":remote" />
</application>
</manifest>
``` | /content/code_sandbox/Android/AndroidAlarmBroadcastService/app/src/main/AndroidManifest.xml | xml | 2016-05-02T05:43:21 | 2024-08-16T06:51:39 | journaldev | WebJournal/journaldev | 1,314 | 315 |
```xml
import { c } from 'ttag';
import { BRAND_NAME, CALENDAR_SHORT_APP_NAME, DRIVE_SHORT_APP_NAME, MAIL_APP_NAME } from '@proton/shared/lib/constants';
import type { Parameters } from './interface';
const data = (): Parameters => ({
title: c('Metadata title').t`Find your ${BRAND_NAME} Account username`,
description: c('Metadata title')
.t`Forgot your ${BRAND_NAME} Account username? Find it using your recovery email or phone number and regain access to your ${MAIL_APP_NAME}, ${DRIVE_SHORT_APP_NAME}, ${CALENDAR_SHORT_APP_NAME}, and more.`,
});
export default data;
``` | /content/code_sandbox/applications/account/src/pages/forgot-username.ts | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 138 |
```xml
import { c } from 'ttag';
import type { IconName } from '@proton/components/components';
import { PassLogo } from '@proton/components/components';
import { getPassKeys, getPassMonitor } from '@proton/components/containers/payments/features/highlights';
import type { PlanCardFeatureDefinition } from '@proton/components/containers/payments/features/interface';
import {
FREE_VAULTS,
PAID_VAULTS,
get2FAAuthenticator,
get2FAAuthenticatorText,
getDevices,
getDevicesAndAliases,
getLoginsAndNotes,
getSecureSharingTextEmpty,
getSecureVaultSharing,
getUnlimitedVaultSharingText,
getVaultSharing,
} from '@proton/components/containers/payments/features/pass';
import {
getPassBusinessSignupPlan,
getPassEssentialsSignupPlan,
} from '@proton/components/containers/payments/features/plan';
import {
getAdvancedVPNCustomizations,
getNetShield,
getProtectDevices,
getVPNSpeed,
} from '@proton/components/containers/payments/features/vpn';
import { PlanCardFeatureList } from '@proton/components/containers/payments/subscription/PlanCardFeatures';
import {
APPS,
CYCLE,
PASS_APP_NAME,
PASS_SHORT_APP_NAME,
PLANS,
PLAN_NAMES,
SSO_PATHS,
VPN_APP_NAME,
VPN_CONNECTIONS,
} from '@proton/shared/lib/constants';
import type { PlansMap, VPNServersCountData } from '@proton/shared/lib/interfaces';
import { Audience } from '@proton/shared/lib/interfaces';
import onboardingFamilyPlan from '@proton/styles/assets/img/onboarding/familyPlan.svg';
import clsx from '@proton/utils/clsx';
import isTruthy from '@proton/utils/isTruthy';
import noop from '@proton/utils/noop';
import { SignupType } from '../../signup/interfaces';
import type { BenefitItem } from '../Benefits';
import Benefits from '../Benefits';
import BundlePlanSubSection from '../BundlePlanSubSection';
import FeatureListPlanCardSubSection from '../FeatureListPlanCardSubSection';
import LetsTalkSubsection from '../LetsTalkSubsection';
import { planCardFeatureProps } from '../PlanCardSelector';
import { getBasedString, getBenefits, getGenericFeatures, getJoinString } from '../configuration/helper';
import type { SignupConfiguration } from '../interface';
import { SignupMode } from '../interface';
import setupAccount from '../mail/account-setup.svg';
import CustomStep from './CustomStep';
import { getInfo } from './InstallExtensionStep';
import recoveryKit from './recovery-kit.svg';
export const getPassB2BBenefits = (isPaidPass: boolean): BenefitItem[] => {
return [
{
key: 1,
text: c('pass_signup_2023: Info').t`Open source and audited`,
icon: {
name: 'magnifier' as const,
},
},
...(isPaidPass
? [
{
key: 2,
text: getUnlimitedVaultSharingText(),
icon: {
name: 'vault' as const,
},
},
{
key: 3,
text: getBasedString(),
icon: {
name: 'shield' as const,
},
},
]
: [
{
key: 4,
text: c('pass_signup_2023: Info').t`End-to-end encrypted notes`,
icon: {
name: 'lock' as const,
},
},
]),
{
key: 5,
text: c('pass_signup_2023: Info').t`From the team that knows encryption`,
icon: {
name: 'lock' as const,
},
},
].filter(isTruthy);
};
export const getPassBenefits = (isPaidPass: boolean): BenefitItem[] => {
return [
{
key: 1,
text: c('pass_signup_2023: Info').t`Works on all devices`,
icon: {
name: 'mobile' as const,
},
},
{
key: 2,
text: c('pass_signup_2023: Info').t`Aliases for email protection from breaches`,
icon: {
name: 'alias' as const,
},
},
...(isPaidPass
? [
{
key: 3,
text: getSecureSharingTextEmpty(true),
icon: {
name: 'arrow-up-from-square' as const,
},
},
{
key: 4,
text: get2FAAuthenticatorText(),
icon: {
name: 'key' as const,
},
},
{
key: 5,
text: c('pass_signup_2023: Info').t`Alerts for compromised emails and vulnerable passwords`,
icon: {
name: 'shield' as const,
},
},
]
: [
{
key: 3,
text: getSecureSharingTextEmpty(false),
icon: {
name: 'arrow-up-from-square' as const,
},
},
{
key: 4,
text: c('pass_signup_2023: Info').t`Alerts for vulnerable passwords`,
icon: {
name: 'shield' as const,
},
},
]),
{
key: 20,
text: c('pass_signup_2023: Info').t`Passkeys supported on all devices`,
icon: {
name: 'pass-passkey' as const,
},
},
{
key: 21,
text: c('pass_signup_2023: Info').t`Secured by end-to-end encryption`,
icon: {
name: 'lock' as const,
},
},
].filter(isTruthy);
};
export const getFreePassFeatures = () => {
return [getLoginsAndNotes('free'), getDevices(), getPassKeys(true), getSecureVaultSharing(FREE_VAULTS)];
};
export const getCustomPassFeatures = () => {
return [
getLoginsAndNotes('paid'),
getDevicesAndAliases(),
getPassKeys(true),
getSecureVaultSharing(PAID_VAULTS, true),
getPassMonitor(true),
get2FAAuthenticator(true),
];
};
export const getPassConfiguration = ({
mode,
audience,
hideFreePlan,
isLargeViewport,
vpnServersCountData,
isPaidPass,
isPaidPassVPNBundle,
plansMap,
}: {
mode: SignupMode;
audience: Audience.B2B | Audience.B2C;
hideFreePlan: boolean;
isLargeViewport: boolean;
vpnServersCountData: VPNServersCountData;
isPaidPass: boolean;
isPaidPassVPNBundle: boolean;
plansMap?: PlansMap;
}): SignupConfiguration => {
const logo = <PassLogo />;
const title = c('pass_signup_2023: Info').t`Encrypted password manager that also protects your identity`;
const b2bTitle = c('pass_signup_2023: Info').t`Get the security and features your business needs`;
const inviteTitle = c('pass_signup_2023: Info').t`You have been invited to join ${PASS_APP_NAME}`;
const onboardingTitle = c('pass_signup_2023: Info').t`Unlock ${PASS_APP_NAME} premium features by upgrading`;
const features = getGenericFeatures(isLargeViewport);
const planTitle = plansMap?.[PLANS.PASS_PRO]?.Title || PLAN_NAMES[PLANS.PASS_PRO];
const planCards: SignupConfiguration['planCards'] = {
[Audience.B2B]: [
{
plan: PLANS.PASS_PRO,
subsection: (
<FeatureListPlanCardSubSection
description={c('pass_signup_2023: Info')
.t`Essential protection and secure collaboration for unlimited users`}
features={
<PlanCardFeatureList
{...planCardFeatureProps}
features={getPassEssentialsSignupPlan(plansMap?.[PLANS.PASS_PRO]).features}
/>
}
/>
),
type: 'standard' as const,
guarantee: false,
},
{
plan: PLANS.PASS_BUSINESS,
subsection: (
<FeatureListPlanCardSubSection
description={c('pass_signup_2023: Info')
.t`Advanced protection that goes beyond industry standards`}
features={
<div>
<div
className={clsx(
planCardFeatureProps.className,
planCardFeatureProps.itemClassName,
'text-left'
)}
>
{c('pass_signup_2023: Info').t`Everything from ${planTitle}, plus...`}
</div>
<PlanCardFeatureList
{...planCardFeatureProps}
tooltip={true}
features={getPassBusinessSignupPlan(plansMap?.[PLANS.PASS_PRO]).features}
/>
</div>
}
/>
),
type: 'best' as const,
guarantee: true,
},
{
plan: PLANS.ENTERPRISE,
subsection: <LetsTalkSubsection vpnServersCountData={vpnServersCountData} />,
type: 'standard' as const,
guarantee: true,
interactive: false,
},
],
[Audience.B2C]: [
!hideFreePlan && {
plan: PLANS.FREE,
subsection: <PlanCardFeatureList {...planCardFeatureProps} features={getFreePassFeatures()} />,
type: 'standard' as const,
guarantee: false,
},
{
plan: PLANS.PASS,
subsection: <PlanCardFeatureList {...planCardFeatureProps} features={getCustomPassFeatures()} />,
type: 'best' as const,
guarantee: true,
},
{
plan: PLANS.BUNDLE,
subsection: <BundlePlanSubSection vpnServersCountData={vpnServersCountData} />,
type: 'standard' as const,
guarantee: true,
},
].filter(isTruthy),
};
const benefits = (() => {
if (isPaidPassVPNBundle) {
const getBenefitItems = (items: PlanCardFeatureDefinition[]) => {
return items.map(
(item, i): BenefitItem => ({
...item,
key: i,
icon: { name: item.icon as IconName },
})
);
};
return (
<div>
<div className="text-lg text-semibold">{getBenefits(PASS_APP_NAME)}</div>
<Benefits
className="mt-5 mb-5"
features={getBenefitItems([
getLoginsAndNotes('paid'),
getDevicesAndAliases(),
get2FAAuthenticator(true),
getVaultSharing(10),
])}
/>
<div className="text-lg text-semibold">{getBenefits(VPN_APP_NAME)}</div>
<Benefits
className="mt-5 mb-5"
features={getBenefitItems([
getVPNSpeed('highest'),
getProtectDevices(VPN_CONNECTIONS),
getNetShield(true),
getAdvancedVPNCustomizations(true),
])}
/>
<div>{getJoinString()}</div>
</div>
);
}
const benefitItems = audience === Audience.B2B ? getPassB2BBenefits(isPaidPass) : getPassBenefits(isPaidPass);
return (
benefitItems && (
<div>
<div className="text-lg text-semibold">{getBenefits(PASS_APP_NAME)}</div>
<Benefits className="mt-5 mb-5" features={benefitItems} />
<div>{getJoinString(audience)}</div>
</div>
)
);
})();
return {
logo,
title: {
[SignupMode.Default]: audience === Audience.B2B ? b2bTitle : title,
[SignupMode.Onboarding]: onboardingTitle,
[SignupMode.Invite]: inviteTitle,
[SignupMode.MailReferral]: title,
}[mode],
features,
benefits,
planCards,
audience,
audiences: [
{
value: Audience.B2C,
locationDescriptor: { pathname: SSO_PATHS.PASS_SIGNUP },
title: c('pass_signup_2023: title').t`For individuals`,
defaultPlan: PLANS.PASS,
},
{
value: Audience.B2B,
locationDescriptor: { pathname: SSO_PATHS.PASS_SIGNUP_B2B },
title: c('pass_signup_2023: title').t`For businesses`,
defaultPlan: PLANS.PASS_BUSINESS,
},
],
signupTypes: [SignupType.Email, SignupType.Username],
generateMnemonic: true,
defaults: {
plan: (() => {
if (mode === SignupMode.Invite) {
return PLANS.FREE;
}
if (audience === Audience.B2B) {
return PLANS.PASS_BUSINESS;
}
return PLANS.PASS;
})(),
cycle: CYCLE.YEARLY,
},
onboarding: {
user: true,
signup: true,
},
product: APPS.PROTONPASS,
shortProductAppName: PASS_SHORT_APP_NAME,
productAppName: PASS_APP_NAME,
setupImg: <img src={setupAccount} alt="" />,
preload: (
<>
<link rel="prefetch" href={recoveryKit} as="image" />
<link rel="prefetch" href={setupAccount} as="image" />
{audience === Audience.B2B && <link rel="prefetch" href={onboardingFamilyPlan} as="image" />}
{getInfo(null, noop).preload}
</>
),
CustomStep,
cycles: [CYCLE.MONTHLY, CYCLE.YEARLY],
};
};
``` | /content/code_sandbox/applications/account/src/app/single-signup-v2/pass/configuration.tsx | xml | 2016-06-08T11:16:51 | 2024-08-16T14:14:27 | WebClients | ProtonMail/WebClients | 4,300 | 2,991 |
```xml
<?xml version="1.0" encoding="utf-8"?>
<!--
~
~
~ path_to_url
~
~ Unless required by applicable law or agreed to in writing, software
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-->
<resources>
<string name="material_slider_range_start">Incio do intervalo</string>
<string name="material_slider_range_end">Fim do intervalo</string>
<string name="material_slider_value">Valor</string>
</resources>
``` | /content/code_sandbox/lib/java/com/google/android/material/slider/res/values-pt-rBR/strings.xml | xml | 2016-12-05T16:11:29 | 2024-08-16T17:51:42 | material-components-android | material-components/material-components-android | 16,176 | 118 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="15505" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<device id="retina6_1" orientation="portrait" appearance="light"/>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="15509"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<scenes>
<!--View Controller-->
<scene sceneID="EHf-IW-A2E">
<objects>
<viewController id="01J-lp-oVM" sceneMemberID="viewController">
<layoutGuides>
<viewControllerLayoutGuide type="top" id="Kb8-vW-93H"/>
<viewControllerLayoutGuide type="bottom" id="baA-sZ-cyH"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="Ze5-6b-2t3">
<rect key="frame" x="0.0" y="0.0" width="414" height="896"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
</view>
</viewController>
<placeholder placeholderIdentifier="IBFirstResponder" id="iYj-Kq-Ea1" userLabel="First Responder" sceneMemberID="firstResponder"/>
</objects>
<point key="canvasLocation" x="53" y="375"/>
</scene>
</scenes>
</document>
``` | /content/code_sandbox/JsonDemo/Supporting Files/Base.lproj/LaunchScreen.storyboard | xml | 2016-03-15T05:44:49 | 2024-08-12T19:21:54 | SwiftTheme | wxxsw/SwiftTheme | 2,514 | 437 |
```xml
<project xmlns="path_to_url" xmlns:xsi="path_to_url"
xsi:schemaLocation="path_to_url path_to_url">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-samples</artifactId>
<version>7.1.0-SNAPSHOT</version>
</parent>
<artifactId>flowable-spring-boot-sample-jpa-all</artifactId>
<dependencies>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
</dependencies>
</project>
``` | /content/code_sandbox/modules/flowable-spring-boot/flowable-spring-boot-samples/flowable-spring-boot-sample-jpa-all/pom.xml | xml | 2016-10-13T07:21:43 | 2024-08-16T15:23:14 | flowable-engine | flowable/flowable-engine | 7,715 | 190 |
```xml
import {Type} from "@tsed/core";
import {Strategy} from "passport";
export interface ProtocolOptions<Settings = any> {
name: string;
useStrategy: Type<Strategy>;
settings: Settings;
}
``` | /content/code_sandbox/packages/security/passport/src/interfaces/ProtocolOptions.ts | xml | 2016-02-21T18:38:47 | 2024-08-14T21:19:48 | tsed | tsedio/tsed | 2,817 | 48 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="path_to_url" xmlns:xsi="path_to_url"
xsi:schemaLocation="path_to_url path_to_url">
<modelVersion>4.0.0</modelVersion>
<groupId>com.fuzzer</groupId>
<artifactId>project-parent</artifactId>
<version>0.1.0</version>
<packaging>pom</packaging>
<modules>
<module>qdox</module>
<module>fuzz-targets</module>
</modules>
</project>
``` | /content/code_sandbox/projects/qdox/project-parent/pom.xml | xml | 2016-07-20T19:39:50 | 2024-08-16T10:54:09 | oss-fuzz | google/oss-fuzz | 10,251 | 132 |
```xml
import React from 'react'
import IconBase from 'react-icon-base'
export default class IconCircle extends React.Component {
render() {
return (
<IconBase viewBox="0 0 20 20" {...this.props}>
<path transform="translate(2 2)" d="M7.5,0C11.6422,0,15,3.3578,15,7.5S11.6422,15,7.5,15 S0,11.6422,0,7.5S3.3578,0,7.5,0z M7.5,1.6666c-3.2217,0-5.8333,2.6117-5.8333,5.8334S4.2783,13.3334,7.5,13.3334 s5.8333-2.6117,5.8333-5.8334S10.7217,1.6666,7.5,1.6666z"></path>
</IconBase>
)
}
}
``` | /content/code_sandbox/src/components/IconCircle.tsx | xml | 2016-09-08T17:52:22 | 2024-08-16T12:54:23 | maputnik | maplibre/maputnik | 2,046 | 238 |
```xml
export * from './iconimports';
export * from './labicon';
export * from './widgets';
``` | /content/code_sandbox/packages/ui-components/src/icon/index.ts | xml | 2016-06-03T20:09:17 | 2024-08-16T19:12:44 | jupyterlab | jupyterlab/jupyterlab | 14,019 | 22 |
```xml
const loadReCaptcha = () => {
const script = document.createElement('script');
script.async = true;
script.defer = true;
script.src = 'path_to_url
document.body.appendChild(script);
};
export default loadReCaptcha;
``` | /content/code_sandbox/src/Unosquare.PassCore.Web/ClientApp/Components/GoogleReCaptcha/loadReCaptcha.ts | xml | 2016-01-07T21:36:00 | 2024-08-16T09:03:42 | passcore | unosquare/passcore | 1,030 | 54 |
```xml
import { type JestConfigWithTsJest, TS_TRANSFORM_PATTERN } from 'ts-jest'
export default {
displayName: 'transformer-in-ts-transpiler-esm',
extensionsToTreatAsEsm: ['.ts'],
transform: {
[TS_TRANSFORM_PATTERN]: [
'ts-jest',
{
tsconfig: '<rootDir>/../tsconfig-esm.spec.json',
astTransformers: {
before: [
{
path: '<rootDir>/../../src/transformers/hoist-jest.ts',
},
],
},
isolatedModules: true,
useESM: true,
},
],
},
} satisfies JestConfigWithTsJest
``` | /content/code_sandbox/e2e/transformer-in-ts/jest-transpiler-esm.config.ts | xml | 2016-08-30T13:47:17 | 2024-08-16T15:05:40 | ts-jest | kulshekhar/ts-jest | 6,902 | 149 |
```xml
<!--
***********************************************************************************************
Sdk.targets
WARNING: DO NOT MODIFY this file unless you are knowledgeable about MSBuild and have
created a backup copy. Incorrect changes to this file will make it
impossible to load or build your projects from the command-line or the IDE.
***********************************************************************************************
-->
<Project ToolsVersion="14.0">
<Import Sdk="Microsoft.NET.Sdk" Project="Sdk.targets" Condition="'$(_RazorSdkImportsMicrosoftNetSdk)' == 'true'" />
<Import Sdk="Microsoft.NET.Sdk.StaticWebAssets" Project="Sdk.targets" Condition="'$(_RazorSdkImportsMicrosoftNetSdkStaticWebAssets)' == 'true'" />
<PropertyGroup Condition="'$(RazorSdkCurrentVersionTargets)' == ''">
<RazorSdkCurrentVersionTargets>$(MSBuildThisFileDirectory)..\targets\Sdk.Razor.CurrentVersion.targets</RazorSdkCurrentVersionTargets>
</PropertyGroup>
<Import Project="$(RazorSdkCurrentVersionTargets)" />
</Project>
``` | /content/code_sandbox/src/RazorSdk/Sdk/Sdk.targets | xml | 2016-07-22T21:26:02 | 2024-08-16T17:23:58 | sdk | dotnet/sdk | 2,627 | 211 |
```xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "path_to_url">
<plist version="1.0">
<dict>
<key>BuildMachineOSBuild</key>
<string>17F70a</string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>AppleALC</string>
<key>CFBundleIdentifier</key>
<string>as.vit9696.AppleALC</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>AppleALC</string>
<key>CFBundlePackageType</key>
<string>KEXT</string>
<key>CFBundleShortVersionString</key>
<string>1.2.7</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>MacOSX</string>
</array>
<key>CFBundleVersion</key>
<string>1.2.7</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
<string>9E145</string>
<key>DTPlatformVersion</key>
<string>GM</string>
<key>DTSDKBuild</key>
<string>17E189</string>
<key>DTSDKName</key>
<string>macosx10.13</string>
<key>DTXcode</key>
<string>0930</string>
<key>DTXcodeBuild</key>
<string>9E145</string>
<key>IOKitPersonalities</key>
<dict>
<key>HDA Hardware Config Resource</key>
<dict>
<key>CFBundleIdentifier</key>
<string>com.apple.driver.AppleHDAHardwareConfigDriver</string>
<key>HDAConfigDefault</key>
<array>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Creative CA0132, default</string>
<key>CodecID</key>
<integer>285343761</integer>
<key>ConfigData</key>
<data>
ABcWHwAXFx4BVwoBAVcXDQFXGCQAtwwAANcc
8ADXHQAA1x4AANcfQAEXBwQBJx+QATceAAE3
H0ABhx4AAYcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>0</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Creative CA0132, Alienware 15 R2</string>
<key>CodecID</key>
<integer>285343761</integer>
<key>ConfigData</key>
<data>
AVcKAQFnAwAAtxwQALcdQQC3HhAAtx+QANcc
8ADXHQAA1x4AANcfQAD3HCABFxxAARcegQEn
HDABJx+Q
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>1</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Creative CA0132, 2.0 + front HP</string>
<key>CodecID</key>
<integer>285343761</integer>
<key>ConfigData</key>
<data>
ABcXHgAXFRABVwoBAScIgQFnCIABVxcNAVcY
JADXHPAA1x0AANceAADXH0ABBx4hAScfkAE3
HPABNx0AATceAAE3H0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>2</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Creative CA0132, 2.0 + rear line-out</string>
<key>CodecID</key>
<integer>285343761</integer>
<key>ConfigData</key>
<data>
ABcXHgAXFRQBVwoBAScIgQFnCIABVxcNAVcY
JADXHPAA1x0AANceAADXH0AA5xzwAOcdAADn
HgAA5x9AAQceAQEnH5A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Creative CA0132, 5.1 with C/Sub</string>
<key>CodecID</key>
<integer>285343761</integer>
<key>ConfigData</key>
<data>
ABcWHwAXFx4AFxUUAVcKAQEnCIEBZwiAAVcX
DQFXGCQA1xzwANcdAADXHgAA1x9AAOcc8ADn
HQAA5x4AAOcfQAEHHgEBJx+QATcc8AE3HQAB
Nx4AATcfQAGHHPABhx0AAYceAAGHH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>4</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Creative CA0132, 2.0 front HP + Mic </string>
<key>CodecID</key>
<integer>285343761</integer>
<key>ConfigData</key>
<data>
ABcXHgAXFRIBVwoBAScIgQFnCIABVxcNAVcY
IQC3HiEA1xzwANcdAADXHgAA1x9AAQceAQEX
BwQBJx+Q
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Creative CA0132, 5.1 with front HP</string>
<key>CodecID</key>
<integer>285343761</integer>
<key>ConfigData</key>
<data>
ABcXHgAXFRABVwoBAScIgQFnCIABVxcNAVcY
JADXHPAA1x0AANceAADXH0ABBx4hAScfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>6</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Creative CA0132 by Andres ZeroCross</string>
<key>CodecID</key>
<integer>285343761</integer>
<key>ConfigData</key>
<data>
IVcKAQC3HBAAtx1AALceAQC3HwEAxxwgAMcd
gADHHkUAxx8BANccIADXHUAA1x4BANcfAQD3
HDAA9x1AAPceIQD3HwEBBxxAAQcdQAEHHiEB
Bx8CARccUAEXHUABFx4BARcfAQEnHFABJx2Q
AScepwEnH5A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>9</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Creative CA0132 by Andres ZeroCross</string>
<key>CodecID</key>
<integer>285343761</integer>
<key>ConfigData</key>
<data>
AVcKAQAXFRQBJwiBAWcIgAFXFw0BVxgkIQce
AQEnH5A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>10</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom Creative CA0132 5.1 channel</string>
<key>CodecID</key>
<integer>285343761</integer>
<key>ConfigData</key>
<data>
IVcD8CFXFw0hVxgkIVcPgCC3HCAgtx1AILce
ASC3HwEgxxxgIMcdICDHHkUgxx8BINcc8CDX
HQAg1x4AINcfQCDnHPAg5x0AIOceACDnH0Ag
9xwvIPcdQCD3HiEg9x8BIQccMCEHHUAhBx4h
IQcfASEXHEAhFx0QIRceASEXHwEhJxwQIScd
kSEnHqEhJx+QITcc8CE3HQAhNx4AITcfQCGH
HFAhhx1gIYceASGHHwE=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom Creative CA0132</string>
<key>CodecID</key>
<integer>285343761</integer>
<key>ConfigData</key>
<data>
AVcKAQAXFx8AFxUQAScIgQFnCIABVxcNAVcY
JAEnH5A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Cirrus Logic CS4210</string>
<key>CodecID</key>
<integer>269697552</integer>
<key>ConfigData</key>
<data>
AFccEABXHUAAVx4hAFcfAABnHCAAZx0AAGce
FwBnH5AAdxwwAHcdkAB3HoEAdx8AAJccQACX
HQAAlx6gAJcfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Cirrus Logic -CS4213</string>
<key>CodecID</key>
<integer>269697555</integer>
<key>ConfigData</key>
<data>
AEccEABHHRAARx4hAEcfAABXHCAAVx0AAFce
FwBXH5AAZxwwAGcdEABnHoEAZx8AAHccQAB3
HQAAdx6gAHcfkABXDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - AD1984 - for_IBM_Lenovo_ThinkPad_T61</string>
<key>CodecID</key>
<integer>299112836</integer>
<key>ConfigData</key>
<data>
ARccEAEXHUABFx4hARcfAgFHHCABRx1QAUce
gQFHHwIBJxwwAScdAAEnHhcBJx+QAScMAgFX
HEABVx0AAVcepwFXH5ABtxygAbcdEAG3HkQB
tx8h
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - AD1984A</string>
<key>CodecID</key>
<integer>299112778</integer>
<key>ConfigData</key>
<data>
ISccECEnHUAhJx4BIScfASFHHCAhRx2QIUce
oSFHHwIhVxwwIVcdMCFXHoEhVx8BIRccQCEX
HUAhFx4hIRcfAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - AD1984A - Version2</string>
<key>CodecID</key>
<integer>299112778</integer>
<key>ConfigData</key>
<data>
ISccECEnHUAhJx4RIScfkCFHHCAhRx2QIUce
oSFHHwIhVxwwIVcdMCFXHoEhVx8BIRccQCEX
HUAhFx4hIRcfAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - ADI-1988B</string>
<key>CodecID</key>
<integer>299112843</integer>
<key>ConfigData</key>
<data>
ARccEAEXHUABFx4hARcfAQEnHCABJx1AASce
AQEnHwEBRxxAAUcdkAFHHqEBRx8BAVccUAFX
HTABVx6BAVcfAQF3HHABdx2QAXceoQF3HwEB
txzwAbcd8QG3HkUBtx8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - ADI-1988B</string>
<key>CodecID</key>
<integer>299112843</integer>
<key>ConfigData</key>
<data>
ARccEAEXHUABFx4hARcfAQEnHCABJx1AASce
EQEnHwEBRxwwAUcdkAFHHqABRx+QAWccQAFn
HRABZx4BAWcfAQF3HFABdx2QAXcegQF3HwEB
txxgAbcd8QG3HkUBtx8BAccccAHHHfEBxx7F
AccfAQHXHIAB1x3xAdceVgHXHxgCRxyQAkcd
YAJHHgECRx8BAlcckAJXHSACVx4BAlcfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>0x11d4198b</string>
<key>CodecID</key>
<integer>299112843</integer>
<key>Comment</key>
<string>Custom AD1988B by Rodion</string>
<key>ConfigData</key>
<data>
AXccIAF3HZABdx6gAXcfkQFHHCEBRx2QAUce
gQFHHwIBJxwQAScdQAEnHhEBJx8BAkccEQJH
HWACRx4RAkcfAQFnHBIBZx0QAWceEQFnHwEC
VxwUAlcdIAJXHhECVx8BAccc8AHHHQABxx4A
AccfQAE3HPABNx0AATceAAE3H0ABpxzwAacd
AAGnHgABpx9AAYcc8AGHHQABhx4AAYcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - ADI-2000B</string>
<key>CodecID</key>
<integer>299145371</integer>
<key>ConfigData</key>
<data>
ARccEAEXHUABFx4hARcfAQEnHCABJx1AASce
AQEnHwEBRxxAAUcdkAFHHqEBRx8BAVccUAFX
HTABVx6BAVcfAQF3HHABdx2QAXceoQF3HwEB
txzwAbcd8QG3HkUBtx8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - ADI-2000B</string>
<key>CodecID</key>
<integer>299145371</integer>
<key>ConfigData</key>
<data>
ARccMAEXHUABFx4hARcfAQEnHBABJx1AASce
EQEnHwEBRxxAAUcdkAFHHqABRx+QAWccUAFn
HRABZx4BAWcfAQF3HCABdx2QAXcegQF3HwEB
txygAbcd8QG3HkUBtx8BAcccYAHHHfEBxx7F
AccfAQHXHLAB1x3xAdceVgHXHxgCRxxwAkcd
YAJHHgECRx8BAlccgAJXHSACVx4BAlcfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Goldfish64 - ALC221 for HP Compaq Pro 4300/Pro 6300/Elite 8300</string>
<key>CodecID</key>
<integer>283902497</integer>
<key>ConfigData</key>
<data>
AUccIAFHHUABRx4BAUcfAQFHDAIBdxwQAXcd
AQF3HhcBdx+QAXcMAgGnHEABpx0QAacegQGn
HwIBtxwwAbcdMAG3HoEBtx8BAhccUAIXHRAC
Fx4hAhcfAgIXDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC225/ALC3253 on dell 7579 by ChalesYu</string>
<key>CodecID</key>
<integer>283902501</integer>
<key>ConfigData</key>
<data>
ASccUAEnHQEBJx6mAScftwE3HAABNx0AATce
AAE3H0ABRxywAUcdAQFHHhcBRx+QAWcc8AFn
HREBZx4RAWcfQQF3HPABdx0RAXceEQF3H0EB
hxzwAYcdEQGHHhEBhx9BAZccQAGXHRABlx6B
AZcfAQGnHPABpx0RAaceEQGnH0EBtxzwAbcd
EQG3HhEBtx9BAdccAQHXHQAB1x5gAdcfQAHn
HPAB5x0RAeceEQHnH0ECFxwgAhcdEAIXHiEC
Fx8EAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom ALC225/ALC3253 by ChalesYu</string>
<key>CodecID</key>
<integer>283902501</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6mAScfmQG3HCABtx0AAbce
FwG3H5kBlxwwAZcdEAGXHoEBlx8CAhccQAIX
HRACFx4hAhcfAgG3DAIBRwwCAhcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>33</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC233</string>
<key>CodecID</key>
<integer>283902515</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4XAUcfkAGXHCABlx0QAZce
qwGXHwMBpxwwAacdAAGnHqABpx+QAhccQAIX
HRACFx4rAhcfAwFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom Realtek ALC233 (3236)</string>
<key>CodecID</key>
<integer>283902515</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4XAUcfkAG3HCABtx0AAbce
oAG3H5ACFxwwAhcdEAIXHiECFx8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>4</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC233/ALC3236</string>
<key>CodecID</key>
<integer>283902515</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4XAUcfkAGXHCABlx2QAZce
iwGXHwIBtxwwAbcdkAG3HqABtx+QAhccQAIX
HUACFx4rAhcfAgFHDAIBtwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC233 for Asus X550LC</string>
<key>CodecID</key>
<integer>283902515</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4XAUcfmQIXHCACFx0QAhce
IQIXHwMBpxwwAacdAQGnHqABpx+ZAZccQAGX
HRABlx6BAZcfAw==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom for Realtek ALC233 for SONY VAIO Fit 14E(SVF14316SCW) by SquallATF</string>
<key>CodecID</key>
<integer>283902515</integer>
<key>ConfigData</key>
<data>
ASccQAEnHQEBJx6mAScfkAGnHDABpx1QAace
gQGnHwMBRxwQAUcdAQFHHhcBRx+QAUcMAgIX
HCACFx0QAhceIQIXHwMCFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>27</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom for Realtek ALC3236 for Asus TP500LN by Mohamed Khairy</string>
<key>CodecID</key>
<integer>283902515</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx4AAScfQAFHHCABRx0AAUce
EwFHH5ABtxxAAbcdAAG3HqABtx+QAdccUAHX
HZAB1x5FAdcfQAIXHDACFx0QAhceIQIXHwAB
RwwCAhcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom by Mirone - Realtek ALC233 (ALC3236) for Asus X550LDV</string>
<key>CodecID</key>
<integer>283902515</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQEBRx4TAUcfmQGXHEABlx0QAZce
gQGXHwABpxwwAacdAQGnHqABpx+ZAhccIAIX
HRACFx4hAhcfAAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>29</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - ALC233 (ALC3236) for ASUS VIVOBOOK S451LA </string>
<key>CodecID</key>
<integer>283902515</integer>
<key>ConfigData</key>
<data>
AhccIAIXHRACFx4hAhcfAAIXDAIBtxwwAbcd
AAG3HqcBtx+QAZccQAGXHRABlx6BAZcfAAFH
HFABRx0AAUceFwFHH5ABRwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>33</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC235</string>
<key>CodecID</key>
<integer>283902517</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfkAFHHCABRx0AAUce
FwFHH5ABdxwwAXcdAAF3HgABdx9AAZccQAGX
HRABlx6LAZcfAAHXHFAB1x2QAdce9wHXH0AC
FxxgAhcdEAIXHisCFx8BAUcMAgIXDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Realtek ALC235 for Ienovo by soto2080</string>
<key>CodecID</key>
<integer>283902517</integer>
<key>ConfigData</key>
<data>
ASccEAEnHAEBJxygAScckAFHHAABRxwBAUcc
EAFHHJABlxwwAZccEAGXHIEBlxwCAhccIAIX
HBACFxwhAhccAgF3HPABdx0AAXceAAF3H0AB
hxzwAYcdAAGHHgABhx9AAacc8AGnHQABpx4A
AacfQAG3HPABtx0AAbceAAG3H0AB1xzwAdcd
AAHXHgAB1x9AAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>vusun123 - Realtek ALC235 for Lenovo Legion Y520</string>
<key>CodecID</key>
<integer>283902517</integer>
<key>ConfigData</key>
<data>
ASccQAEnHQABJx6gAScfsAFHHBABRx0AAUce
FwFHH5ABRwwCAZccMAGXHRABlx6BAZcfAAIX
HGACFx0QAhceIQIXHwA=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC236</string>
<key>CodecID</key>
<integer>283902518</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6mAScfkAFHHCABRx0AAUce
FwFHH5ABlxwwAZcdEAGXHoEBlx8EAhccQAIX
HRACFx4hAhcfBAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Jake Lo - Realtek ALC236</string>
<key>CodecID</key>
<integer>283902518</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6gAScfkAE3HPABNx0AATce
AAE3H0ABRxwwAUcdAQFHHhABRx+QAUcMAgGH
HPABhx0AAYceAAGHH0ABlxwgAZcdMAGXHosB
lx8BAacc8AGnHQABpx4AAacfQAG3HPABtx0A
AbceAAG3H0AB1xzwAdcdAAHXHgAB1x9AAecc
8AHnHQAB5x4AAecfQAIXHEACFx1AAhceKwIX
HwECFwwCABcgAAAXIXIAFyJrABcjEA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom - Realtek ALC236 for Lenovi Air 13 Pro by rexx0520</string>
<key>CodecID</key>
<integer>283902518</integer>
<key>ConfigData</key>
<data>
ASccAAEnHQEBJx6mAScfkAFHHBABRx0BAUce
EAFHH5ABdxzwAXcdAAF3HgABdx9AAYcc8AGH
HQABhx4AAYcfQAGXHCABlx2QAZceqwGXHwAB
pxzwAacdAAGnHgABpx9AAbcc8AG3HQABtx4A
AbcfQAHXHPAB1x0AAdceAAHXH0AB5xzwAecd
AAHnHgAB5x9AAhccMAIXHUACFx4rAhcfAAFH
DAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - ALC236 for Lenovo Ideapad 500-15ISK</string>
<key>CodecID</key>
<integer>283902518</integer>
<key>ConfigData</key>
<data>
ASccAAEnHQEBJx6mAScfkAFHHBABRx0BAUce
EAFHH5ABRwwCAZccIAGXHRABlx6LAZcfAAIX
HDACFx0QAhceKwIXHwACFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>15</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC255</string>
<key>CodecID</key>
<integer>283902549</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6mAScfkAFHHCABRx0AAUce
FwFHH5ABlxwwAZcdEAGXHosBlx8AAhccUAIX
HRACFx4rAhcfAgFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC255_v1</string>
<key>CodecID</key>
<integer>283902549</integer>
<key>ConfigData</key>
<data>
AbccIAG3HQABtx6gAbcfkAFHHDABRx0AAUce
FwFHH5ACFxxQAhcdEAIXHiECFx8AAUcMAgIX
DAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC255_v2</string>
<key>CodecID</key>
<integer>283902549</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6mAScfkAFHHCABRx0AAUce
FwFHH5ABdxwwAXcdAAF3HgABdx9AAdccQAHX
HQAB1x5wAdcfQAIXHFACFx0QAhceIQIXHwIB
RwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>17</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>DuNe - Realtek ALC255 for Aorus X5V7</string>
<key>CodecID</key>
<integer>283902549</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6mAScfkAFHHCABRx0AAUce
FwFHH5ABtxwhAbcdAAG3HhcBtx+QAXccMAF3
HQABdx4AAXcfQAHXHEAB1x0AAdcecAHXH0AC
FxxQAhcdEAIXHiECFx8CAaccYAGnHRABpx6B
AacfAgHnHHAB5x0QAeceRQHnHwIBRwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>18</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC255 for Asus X556UA m-dudarev</string>
<key>CodecID</key>
<integer>283902549</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQEBRx4XAUcfkAGXHCABlx0QAZce
gQGXHwQCFxwgAhcdEAIXHiECFx8EAbccMAG3
HQEBtx6gAbcfkAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>27</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Realtek ALC255 for Lenovo B470 - vusun123</string>
<key>CodecID</key>
<integer>283902549</integer>
<key>ConfigData</key>
<data>
ASccYAEnHQABJx6gAScfkAFHHCABRx0AAUce
FwFHH5ABRwwCAhccMAIXHRACFx4hAhcfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>DalianSky - Realtek ALC255 (3246) for XiaoMi Air</string>
<key>CodecID</key>
<integer>283902549</integer>
<key>ConfigData</key>
<data>
ASccIAEnHQEBJx6mAScfkAE3HPABNx0AATce
AAE3H0ABRxxAAUcdAQFHHhcBRx+QAUcMAgF3
HPABdx0AAXceAAF3H0ABhxzwAYcdAAGHHgAB
hx9AAZccEAGXHRABlx6LAZcfAgGnHPABpx0A
AaceAAGnH0ABtxzwAbcdAAG3HgABtx9AAdcc
8AHXHQAB1x4AAdcfQAHnHPAB5x0AAeceAAHn
H0ACFxwwAhcdEAIXHisCFx8CAhcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>99</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Insanelydeepak - Realtek ALC256 (3246) for Dell Series</string>
<key>CodecID</key>
<integer>283902550</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6mAScfkAFHHCABRx0AAUce
FwFHH5ABlxwwAZcdEAGXHosBlx8CAhccUAIX
HRACFx4rAhcfAgFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902550</integer>
<key>Comment</key>
<string>vusun123 - ALC256 for Asus X555UJ</string>
<key>ConfigData</key>
<data>
AUccUAFHHQABRx4XAUcfkAFHDAIBpxwwAacd
AAGnHqABpx+QAhccIAIXHRACFx4hAhcfAA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>DalianSky - Realtek ALC256 (3246) for Dell 7000 Series</string>
<key>CodecID</key>
<integer>283902550</integer>
<key>ConfigData</key>
<data>
ASccMAEnHQEBJx6mAScfkAE3HPABNx0AATce
AAE3H0ABRxwQAUcdAQFHHhcBRx+QAUcMAgGH
HPABhx0AAYceAAGHH0ABlxxAAZcdEAGXHoEB
lx8CAacc8AGnHQABpx4AAacfQAG3HPABtx0A
AbceAAG3H0AB1xzwAdcdAAHXHgAB1x9AAecc
8AHnHQAB5x4AAecfQAIXHCACFx0QAhceIQIX
HwICFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>56</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet ALC260 for Fujitsu Celsius M 450</string>
<key>CodecID</key>
<integer>283902560</integer>
<key>ConfigData</key>
<data>
IPccECD3HUAg9x4RIPcfASD3DAIhhxwgIYcd
YCGHHkQhhx8BITccQCE3HZAhNx6hITcfmSFH
HFAhRx0wIUcegSFHHwEhVxxgIVcdQCFXHiEh
Vx8C
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom ALC260</string>
<key>CodecID</key>
<integer>283902560</integer>
<key>ConfigData</key>
<data>
AQccAAEHHUABBx4hAQcfAQEnHBABJx2QASce
oQEnH5kBNxwgATcdMAE3HoEBNx8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - ALC262</string>
<key>CodecID</key>
<integer>283902562</integer>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4BIUcfASHnHCAh5x1gIece
RSHnHwAhhxwwIYcdkCGHHqEhhx+RIZccQCGX
HZAhlx6hIZcfkiGnHFAhpx0wIacegSGnHwEh
txxgIbcdQCG3HiEhtx8C
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Goldfish64 - ALC262 for HP Compaq dc7700 SFF</string>
<key>CodecID</key>
<integer>283902562</integer>
<key>ConfigData</key>
<data>
AbccEAG3HUABtx4BAbcfAQFXHCABVx0QAVce
IQFXHwIBZxwwAWcdAQFnHhMBZx+QAZccQAGX
HTABlx6BAZcfAQGnHFABpx0QAacegQGnHwI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - ALC262 for Fujitsu Celsius H270</string>
<key>CodecID</key>
<integer>283902562</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4TAUcfkAFXHCABVx0QAVce
IQFXHwIBhxwwAYcdEAGHHoEBhx8CAZccQAGX
HQABlx6jAZcfkAGnHFABpx0QAacegQGnHwE=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - ALC262 for HP Z800-Z600 series</string>
<key>CodecID</key>
<integer>283902562</integer>
<key>ConfigData</key>
<data>
AZccAAGXHREBlx6gAZcfkgGnHBABpx0xAace
gAGnH5EBVxwgAVcdQQFXHhABVx+RAWccMAFn
HQEBZx4AAWcfKQGHHEABhx2QAYceoAGHH5EB
txxQAbcdEAG3HisBtx8C
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC268</string>
<key>CodecID</key>
<integer>283902568</integer>
<key>ConfigData</key>
<data>
AUccEAFHHRABRx4hAUcfAQGHHEABhx2QAYce
gQGHHwEBVxxQAVcdAAFXHhMBVx+QAZccYAGX
HQABlx6jAZcfkAFXDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone Laptop patch ALC269 Asus N53J</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
AYccIAGHHRABhx6BAYcfBAGXHBABlx0BAZce
oAGXH5kBtxxAAbcdAQG3HhMBtx+ZAhccUAIX
HRACFx4hAhcfBAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>1</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC269-VB v1</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
AUccQAFHHQEBRx4TAUcfmQGHHCABhx0QAYce
gQGHHwMBlxwQAZcdAQGXHqABlx+ZAhccUAIX
HRACFx4hAhcfAwFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>2</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC269</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>Comment</key>
<string>Mirone - Realtek ALC269 for Asus K53SJ, Asus G73s</string>
<key>ConfigData</key>
<data>
AScc8AEnHQABJx4AAScfQAFHHBABRx0BAUce
EwFHH5ABdxxQAXcdAQF3HhMBdx+QAYccIAGH
HZABhx6BAYcfAwGXHDABlx0BAZceoAGXH5AB
pxzwAacdAAGnHgABpx9AAbcc8AG3HQABtx4A
AbcfQAHXHPAB1x0AAdceAAHXH0AB5xzwAecd
AAHnHgAB5x9AAhccQAIXHRACFx4hAhcfAwFH
DAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC269-VB v2</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4TAUcfkAGHHCABhx2QAYce
gQGHHwIBtxwwAbcdEAG3HqABtx+QAhccQAIX
HRACFx4hAhcfAgFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>4</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC269-VB v3</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfkAFHHCABRx0AAUce
EwFHH5ABhxwwAYcdEAGHHoEBhx8AAhccUAIX
HRACFx4hAhcfAAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC269-VC v1</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4TAUcfkAGHHDABhx0QAYce
gQGHHwABJxxAAScdAAEnHqABJx+QAVccUAFX
HRABVx4hAVcfAAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>6</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC269-VC v2</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6mAScfkAFXHCABVx0QAVce
IQFXHwABhxwwAYcdEAGHHoEBhx8CAbccQAG3
HQABtx4XAbcfkAG3DAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC269VC-v3</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6mAScfkAFHHCABRx0AAUce
FwFHH5ABVxwwAVcdEAFXHiEBVx8AAYccQAGH
HZABhx6BAYcfAgFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>8</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC269VB v4</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfkAFHHCABRx0AAUce
EwFHH5ABhxwwAYcdEAGHHoEBhx8AAhccUAIX
HRACFx4hAhcfAAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>9</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902569</integer>
<key>Comment</key>
<string>Toleda ALC269 patch for Brix</string>
<key>ConfigData</key>
<data>
IUcc8CFHHQAhRx4AIUcfQCFXHHAhVx1AIVce
ISFXHwIhZxzwIWcdACFnHgAhZx9AIXcc8CF3
HQAhdx4AIXcfQCGHHPAhhx0AIYceACGHH0Ah
lxzwIZcdACGXHgAhlx9AIacc8CGnHQAhpx4A
IacfQCG3HPAhtx0AIbceACG3H0Ah5xyQIecd
YSHnHksh5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>10</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mosser - ALC269VB Dell Precision Workstation T1600</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
AbccIAG3HUABtx4BAbcfAQGHHDABhx2YAYce
gQGHHwIBlxxAAZcdmAGXHoEBlx8BAhccUAIX
HUACFx4hAhcfAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC269VC for Samsung NP350V5C-S08IT</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
AZccEAGXHQABlx6nAZcfmQFXHCABVx0QAVce
IQFXHwIBhxwwAYcdEAGHHoEBhx8CAUccQAFH
HQABRx4XAUcfmQFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902569</integer>
<key>Comment</key>
<string>Custom ALC269VC for Samsung NT550P7C-S65 with subwoofer 2.1ch by Rockjesus</string>
<key>ConfigData</key>
<data>
AVccEAFXHRABVx4hAVcfAQGHHCABhx0QAYce
gQGHHwEBlxwwAZcdAQGXHqcBlx+QAbccQAG3
HQEBtx4XAbcfkAF3HEEBdx0BAXceFwF3H5AB
JxzwAScdAAEnHgABJx9AAUcc8AFHHQABRx4A
AUcfQAGnHPABpx0AAaceAAGnH0AB1xzwAdcd
AAHXHgAB1x9AAecc8AHnHQAB5x4AAecfQAG3
DAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>14</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - ALC269VB for Dell Optiplex 790</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
AbccIAG3HUABtx4BAbcfAQGHHDABhx2QAYce
gQGHHwIBlxxAAZcdkAGXHoEBlx8BAhccUAIX
HUACFx4hAhcfAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>15</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - ALC269VB for Dell Optiplex 790 Version2</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
AbccIAG3HUABtx4RAbcfkAGHHDABhx2QAYce
oQGHH5ABlxxAAZcdkAGXHoEBlx8BAhccUAIX
HUACFx4hAhcfAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>16</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Hypereitan - ALC269VC for Thinkpad X230 i7</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6gAScfkAFHHEABRx0BAUce
EAFHH5ABVxxQAVcdEAFXHiEBVx8BAYcccAGH
HRABhx6hAYcfAQFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>18</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Asus Vivobook S300CA - Realtek ALC269VB</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6mAScfkAFHHCABRx0BAUce
FwFHH5AB1xwwAdcdkAHXHgcB1x9AAhccQAIX
HRACFx4hAhcfBAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>19</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC269</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>Comment</key>
<string>Custom ALC269 Sony Vaio VPCEB3M1R by Rodion</string>
<key>ConfigData</key>
<data>
AVccQAFXHRABVx4hAVcfAwGHHCABhx0QAYce
gQGHHwMBlxwwAZcdAQGXHqABlx+QAbccEAG3
HQEBtx4XAbcfkAFXDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>20</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC269</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>Comment</key>
<string>Custom ALC269 for Acer Aspire by Andrey1970</string>
<key>ConfigData</key>
<data>
AUccAAFHHUEBRx4XAUcfmQGHHBABhx2QAYce
gQGHHwEBtxwgAbcdkQG3HqcBtx+ZAhccMAIX
HUACFx4hAhcfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>27</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC269VC</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>Comment</key>
<string>ALC269VC for Lenovo Z580, John</string>
<key>ConfigData</key>
<data>
AVccQAFXHRABVx4hAVcfAwGHHCABhx0QAYce
gQGHHwMBlxwwAZcdAQGXHqABlx+QAbccEAG3
HQEBtx4XAbcfkAFXDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902569</integer>
<key>Comment</key>
<string>ALC269VC for Lenovo V580, ar4er</string>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6mAScfkAFHHCABRx0AAUce
FwFHH5ABVxwwAVcdEAFXHiEBVx8AAYccQAGH
HZABhx6BAYcfAgFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>29</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902569</integer>
<key>Comment</key>
<string>Custom ALC269 Samsung np880z5e-x01ru by Constanta</string>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6mAScfkAG3HCABtx0AAbce
FwG3H5ABVxwwAVcdEAFXHiEBVx8AAYccQAGH
HZABhx6BAYcfAgG3DAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>32</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902569</integer>
<key>Comment</key>
<string>Custom ALC269VC for Samsung NP530U3C-A0F by BblDE3HAP</string>
<key>ConfigData</key>
<data>
AUccEAFHHQEBRx4XAUcfkAFHDAIBVxxAAVcd
EAFXHiEBVx8DAVcMAgGHHCABhx0QAYcegQGH
HwMBlxwwAZcdAQGXHqABlx+Q
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>33</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC269VC - Samsung NP350V5C-S0URU</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4XAUcfkAGHHCABhx0QAYce
gQGHHwIBVxwwAVcdEAFXHiEBVx8CAZccQAGX
HQABlx6gAZcfkAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>35</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>vusun123 - Realtek ALC269VC for Lenovo W530</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
ASccQAEnHQABJx6gAScfkAFHHBABRx0AAUce
FwFHH5ABRwwCAVccIAFXHRABVx4hAVcfAAGH
HDABhx0QAYcegQGHHwA=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>40</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC269VC for Clevo N155RD by DalianSky</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6mAScfkAFHHDABRx0BAUce
FwFHH5ABVxwgAVcdEAFXHiEBVx8CAXcc8AF3
HQABdx4AAXcfQAGHHAABhx0QAYcegQGHHwIB
lxzwAZcdAAGXHgABlx9AAacc8AGnHQABpx4A
AacfQAG3HPABtx0AAbceAAG3H0AB5xxwAecd
EQHnHkQB5x8CAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>66</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom ALC269VB for ENZ C16B by jimmy19990</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQEBRx4TAUcfkAGHHCABhx0QAYce
gQGHHwEBlxwgAZcdAQGXHqABlx+QAhccEAIX
HRACFx4hAhcfAQFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>76</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC269</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>Comment</key>
<string>ALC269 Asus K53SJ, Asus G73s Mod by Andrey1970 (No input boost - no noise in Siri)</string>
<key>ConfigData</key>
<data>
AScc8AEnHQABJx4AAScfQAFHHBABRx0BAUce
EwFHH5ABdxxQAXcdAQF3HhMBdx+QAYccIAGH
HZABhx6BAYcfAwGXHDABlx0BAZceoAGXH5AB
pxzwAacdAAGnHgABpx9AAbcc8AG3HQABtx4A
AbcfQAHXHPAB1x0AAdceAAHXH0AB5xzwAecd
AAHnHgAB5x9AAhccQAIXHRACFx4hAhcfAwFH
DAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>93</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC269-VB v4 Mod by Andrey1970 (No input boost - no noise in Siri)</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfkAFHHCABRx0AAUce
EwFHH5ABhxwwAYcdEAGHHoEBhx8AAhccUAIX
HRACFx4hAhcfAAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>99</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC269</string>
<key>CodecID</key>
<integer>283902569</integer>
<key>Comment</key>
<string>Custom ALC269 Acer Aspire by Andrey1970 (No input boost - no noise in Siri)</string>
<key>ConfigData</key>
<data>
AUccAAFHHUEBRx4XAUcfmQGHHBABhx2QAYce
gQGHHwEBtxwgAbcdkQG3HqcBtx+ZAhccMAIX
HUACFx4hAhcfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>127</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC270 v1</string>
<key>CodecID</key>
<integer>283902576</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4TAUcfkAGXHCABlx0AAZce
oAGXH5ACFxwwAhcdEAIXHiECFx8AAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC270 v2</string>
<key>CodecID</key>
<integer>283902576</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfkAFHHCABRx0AAUce
EwFHH5ACFxwwAhcdEAIXHiECFx8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>4</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC270</string>
<key>CodecID</key>
<integer>283902576</integer>
<key>Comment</key>
<string>ALC270 for Asus Laptop with alternative microphone</string>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6mAScfkAFHHCABRx0BAUce
EwFHH5ABdxzwAXcdAAF3HgABdx9AAYccMAGH
HRABhx6BAYcfAgGXHPABlx0AAZceAAGXH0AB
pxzwAacdAAGnHgABpx9AAbcc8AG3HQABtx4A
AbcfQAHXHPAB1x0AAdceAAHXH0AB5xzwAecd
AAHnHgAB5x9AAhccQAIXHRACFx4hAhcfAgFH
DAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>27</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC270</string>
<key>CodecID</key>
<integer>283902576</integer>
<key>Comment</key>
<string>ALC270 for Asus Laptop</string>
<key>ConfigData</key>
<data>
AScc8AEnHQABJx4AAScfQAFHHBABRx0BAUce
FwFHH5ABdxzwAXcdAAF3HgABdx9AAYccIAGH
HRABhx6BAYcfBAGXHDABlx0BAZceoAGXH5AB
pxzwAacdAAGnHgABpx9AAbcc8AG3HQABtx4A
AbcfQAHXHPAB1x0AAdceAAHXH0AB5xzwAecd
AAHnHgAB5x9AAhccIAIXHRACFx4hAhcfBAFH
DAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902569</integer>
<key>Comment</key>
<string>Custom ALC271x Acer Aspire s3-951</string>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfkAFHHCABRx0AAUce
EwFHH5ABhxwwAYcdkAGHHoEBhx8AAdccQAHX
HZAB1x4XAdcfQAHnHFAB5x0QAeceRQHnHwAC
FxxgAhcdEAIXHiECFx8AAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>31</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC272</string>
<key>CodecID</key>
<integer>283902578</integer>
<key>ConfigData</key>
<data>
AYccMAGHHZABhx6BAYcfAAGXHCABlx0AAZce
owGXH5ABRxwQAUcdAAFHHhMBRx+QAhccUAIX
HUACFx4hAhcfAAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC 272 - Lenovo B470 - Sam Chen</string>
<key>CodecID</key>
<integer>283902578</integer>
<key>ConfigData</key>
<data>
ASccMAEnHQABJx6jAScfkAFHHBABRx0AAUce
EwFHH5ABhxwgAYcdEAGHHoEBhx8AAhccUAIX
HRACFx4hAhcfAAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC275</string>
<key>CodecID</key>
<integer>283902581</integer>
<key>ConfigData</key>
<data>
ASccAAEnHQABJx6gAScfkAFHHBABRx0BAUce
FwFHH5ABVxwgAVcdEAFXHiEBVx8DAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC275</string>
<key>CodecID</key>
<integer>283902581</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQEBRx4XAUcfkAFXHCABVx0QAVce
IQFXHwMBJxwwAScdAAEnHqABJx+QAYccQAGH
HVABhx6BAYcfAAHnHFAB5x0QAeceRQHnHwAB
RwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom ALC275 for Sony Vaio - vusun123</string>
<key>CodecID</key>
<integer>283902581</integer>
<key>ConfigData</key>
<data>
ASccQAEnHQABJx6gAScfkAFXHBABVx0QAVce
IQFXHwABhxwwAYcdUAGHHoEBhx8AAaccUAGn
HQABpx4XAacfkAGnDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC280</string>
<key>CodecID</key>
<integer>283902592</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4TAUcfkAFXHCABVx0QAVce
IQFXHwEBJxwwAScdAAEnHqABJx+QAaccQAGn
HRABpx6BAacfAgFHDAIBVwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC280 - ComboJack</string>
<key>CodecID</key>
<integer>283902592</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfkAFHHCABRx0AAUce
FwFHH5ABVxwwAVcdEAFXHiEBVx8CAaccQAGn
HRABpx6BAacfAgFHDAIBVwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>4</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Alienware alpha - Realtek ALC280</string>
<key>CodecID</key>
<integer>283902592</integer>
<key>ConfigData</key>
<data>
IUcc8CFHHQAhRx4AIUcfQCFXHPAhVx0AIVce
ACFXH0AhZxzwIWcdACFnHgAhZx9AIXcc8CF3
HQAhdx4AIXcfQCGHHPAhhx0AIYceACGHH0Ah
lxzwIZcdACGXHgAhlx9AIacc8CGnHQAhpx4A
IacfQCG3HPAhtx0AIbceACG3H0Ah5xwQIecd
4SHnHkUh5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - Realtek ALC280 - Dell T20 - Version1 - ManualMode</string>
<key>CodecID</key>
<integer>283902592</integer>
<key>ConfigData</key>
<data>
AbccIAG3HUABtx4BAbcfAQGnHDABpx2QAace
gQGnHwIBhxxAAYcdMAGHHoEBhx8BAVccYAFX
HUABVx4hAVcfAgFXDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - Realtek ALC280 - Dell T20 - Version2 - SwitchMode</string>
<key>CodecID</key>
<integer>283902592</integer>
<key>ConfigData</key>
<data>
AbccIAG3HUABtx4RAbcfkAGnHDABpx2QAace
gQGnHwIBhxxAAYcdMAGHHoEBhx8BAVccYAFX
HUABVx4hAVcfAgFXDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>15</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC282_v1</string>
<key>CodecID</key>
<integer>283902594</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfmQFHHCABRx0AAUce
EwGXHDABlx0QAZceiwGXHwABRx+ZAhccUAIX
HRACFx4rAhcfAQFHDAICFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC282_v2</string>
<key>CodecID</key>
<integer>283902594</integer>
<key>ConfigData</key>
<data>
ASccQAEnHQABJx6gAScfkAFHHBABRx0AAUce
FwFHH5ABhxwwAYcdEAGHHoEBhx8AAeccIAHn
HRAB5x5EAecfAAIXHFACFx0QAhceIQIXHwAB
RwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>4</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC282</string>
<key>CodecID</key>
<integer>283902594</integer>
<key>ConfigData</key>
<data>
ASccQAEnHQABJx6gAScfkAFHHBABRx0AAUce
FwFHH5ABhxwwAYcdEAGHHoEBhx8AAeccIAHn
HRAB5x5EAecfAAIXHFACFx0QAhceIQIXHwAB
RwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902594</integer>
<key>Comment</key>
<string>Skvo ALC282 Acer Aspire on IvyBridge by Andrey1970</string>
<key>ConfigData</key>
<data>
ASccMAEnHQABJx6gAScfkAFHHBABRx0AAUce
FwFHH5ABdxzwAXcdAAF3HgABdx9AAYcc8AGH
HQABhx4AAYcfQAGXHPABlx0AAZceAAGXH0AB
pxzwAacdAAGnHgABpx9AAbcc8AG3HQABtx4A
AbcfQAHnHPAB5x0AAeceAAHnH0ACFxwgAhcd
EAIXHiECFx8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>27</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902594</integer>
<key>Comment</key>
<string>Custom ALC282 Acer Aspire E1-572G</string>
<key>ConfigData</key>
<data>
AScc8AEnHQABJx4AAScfQAFHHBABRx0AAUce
FwFHH5ABdxzwAXcdAAF3HgABdx9AAYcc8AGH
HQABhx4AAYcfQAGXHPABlx0AAZceAAGXH0AB
pxzwAacdAAGnHgABpx9AAbccMAG3HQEBtx6g
AbcfkAHnHPAB5x0AAeceAAHnH0ACFxwgAhcd
EAIXHiECFx8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902594</integer>
<key>Comment</key>
<string>Custom ALC282 Dell Inspirion 3521 by Generation88</string>
<key>ConfigData</key>
<data>
ASccQAEnHQEBJx6gAScfkAFHHBABRx0BAUce
FwFHH5ABlxwwAZcdEAGXHoEBlx8BAhccIAIX
HRACFx4hAhcfAQFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>29</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom ALC282 Hasee K580C by YM2008</string>
<key>CodecID</key>
<integer>283902594</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6mAScfkAFHHCABRx1AAUce
EQFHHwEBdxzwAXcdAAF3HgABdx9AAYccIAGH
HRABhx6BAYcfAQGXHPABlx0AAZceAQGXH0AB
pxzwAacdAAGnHgEBpx9AAdcc8AG3HQABtx4B
AbcfQAHXHPUB1x0AAdceBQHXH0AB5xzwAecd
AAHnHgEB5x9AAhccQAIXHXACFx4hAhcfAQFH
DAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>76</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902594</integer>
<key>Comment</key>
<string>Custom ALC282 for Asus x200la</string>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6BAScfAAFHHCABRx0BAUce
EAFHH5kBdxzwAXcdAAF3HgABdx9AAYcc8AGH
HQABhx4AAYcfQAGXHDABlx0BAZcepgGXH5kB
pxzwAacdAAGnHgABpx9AAbcc8AG3HQABtx4A
AbcfQAHXHPAB1x0AAdceAAHXH0AB5xzwAecd
AAHnHgAB5x9AAhccUAIXHUACFx4rAhcfAAFH
DAICFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>86</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902594</integer>
<key>Comment</key>
<string>No input boost ALC282 Acer Aspire on IvyBridge by Andrey1970</string>
<key>ConfigData</key>
<data>
ASccMAEnHQABJx6gAScfkAFHHBABRx0AAUce
FwFHH5ABdxzwAXcdAAF3HgABdx9AAYcc8AGH
HQABhx4AAYcfQAGXHPABlx0AAZceAAGXH0AB
pxzwAacdAAGnHgABpx9AAbcc8AG3HQABtx4A
AbcfQAHnHPAB5x0AAeceAAHnH0ACFxwgAhcd
EAIXHiECFx8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>127</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Toleda NUC/BRIX patch ALC283</string>
<key>CodecID</key>
<integer>283902595</integer>
<key>ConfigData</key>
<data>
AScc8AEnHQABJx4AAScfQAFHHPABRx0AAUce
AAFHH0ABdxzwAXcdAAF3HgABdx9AAYcc8AGH
HQABhx4AAYcfQAGXHGABlx0wAZceiwGXHwEB
pxzwAacdAAGnHgABpx9AAbcc8AG3HQABtx4A
AbcfQAHXHPAB1x0AAdceAAHXH0AB5xzwAecd
AAHnHgAB5x9AAhcccAIXHUACFx4rAhcfAQGX
DAICFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>1</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC283</string>
<key>CodecID</key>
<integer>283902595</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6gAScfkAFHHCABRx0BAUce
FwFHH5ABlxwwAZcdAAGXHosBlx8AAhccQAIX
HRACFx4rAhcfAQFHDAICFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom by Slbomber ALC283 (V3-371)</string>
<key>CodecID</key>
<integer>283902595</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6gAScfkAFHHEABRx0BAUce
FwFHH5ABdxzwAXcdAAF3HgABdx9AAYcc8AGH
HQABhx4AAYcfQAGXHPABlx0AAZceAAGXH0AB
pxzwAacdAAGnHgABpx8AAbcc8AG3HQABtx4A
AbcfQAHXHPAB1x0AAdceAAHXH0AB5xzwAecd
AAHnHgAB5x9AAhccUAIXHRACFx4hAhcfAwFH
DAICFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ASRock DeskMini 110(H110M-STX) ALC283 by licheedev</string>
<key>CodecID</key>
<integer>283902595</integer>
<key>ConfigData</key>
<data>
ASccgAEnHQABJx4AAScfQAFHHEABRx0BAUce
EwFHH5ABpxwgAacdkAGnHoEBpx8BAdccYAHX
HZAB1x5VAdcfQAIXHFACFx0QAhceIQIXHwEB
RwwCAhcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>66</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC284</string>
<key>CodecID</key>
<integer>283902596</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfkAE3HCABNx0AATce
AAE3H0ABRxwwAUcdAAFHHhcBRx+QAVccQAFX
HRABVx4hAVcfAAGHHFABhx0QAYcegQGHHwIB
1xxgAdcdgAHXHmYB1x9AAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Rover Realtek ALC285 for X1C6th</string>
<key>CodecID</key>
<integer>283902597</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6mAScfkAFHHDABRx0BAUce
FwFHH5ABlxwAAZcdEAGXHosBlx8BAhccIAIX
HRACFx4rAhcfAQHXHGAB1x2AAdceZgHXH0AB
RwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902598</integer>
<key>CodecName</key>
<string>Mirone - Realtek ALC286</string>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6mAScfsAFHHCABRx0AAUce
FwFHH5ABhxwwAYcdEAGHHosBhx8EAhccQAIX
HRACFx4rAhcfBAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC288</string>
<key>CodecID</key>
<integer>283902600</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfkAE3HCABNx0AATce
AAE3H0ABRxwwAUcdAAFHHhcBRx+QAYccQAGH
HRABhx6BAYcfAgHXHFAB1x2AAdceZQHXH0AC
FxxgAhcdEAIXHiECFx8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC288 for Dell XPS 9343</string>
<key>CodecID</key>
<integer>283902600</integer>
<key>ConfigData</key>
<data>
ASccIAEnHQABJx6gAScfkAFHHDABRx0AAUce
FwFHH5ABNxxAATcdEAE3HoEBNx8AAhccUAIX
HRACFx4hAhcfAAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC290</string>
<key>CodecID</key>
<integer>283902608</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4XAUcfkAFXHCABVx0QAVce
KwFXHwIBlxwwAZcdAAGXHqABlx+QAaccQAGn
HRABpx6LAacfAAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902608</integer>
<key>Comment</key>
<string>macpeetALC ALC290 aka ALC3241</string>
<key>ConfigData</key>
<data>
AaccIAGnHRABpx6BAacfAAEnHDABJx0AASce
owEnH5ABRxxAAUcdAAFHHhcBRx+QAVccUAFX
HRABVx4hAVcfAAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>4</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902608</integer>
<key>Comment</key>
<string>vusun123 - ALC 290 for Dell Vostro 5480</string>
<key>ConfigData</key>
<data>
ASccMAEnHQABJx6gAScfkAFHHBABRx0AAUce
FwFHH5ABRwwCAVccIAFXHRABVx4hAVcfAAGn
HEABpx0QAacegQGnHwA=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom ALC292</string>
<key>CodecID</key>
<integer>283902610</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfmQFHHCABRx0AAUce
FwFHH5kBVxwwAVcdQAFXHiEBVx8BAZccUAGX
HZABlx6BAZcfAQFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902610</integer>
<key>Comment</key>
<string>vanquybn - ALC 292 for Dell M4800</string>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4XAUcfkAGHHCABhx2QAYce
gQGHHwEBJxwwAScdAAEnHqYBJx+QAVccQAFX
HUABVx4hAVcfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>18</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283902610</integer>
<key>Comment</key>
<string>vusun123 - ALC 292 for Lenovo T440</string>
<key>ConfigData</key>
<data>
ASccMAEnHQABJx6gAScfkAFHHEABRx0AAUce
FwFHH5ABRwwCAVccUAFXHRABVx4hAVcfAAGn
HCABpx0QAacegQGnHwA=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Andres ALC293 Dell E7450</string>
<key>CodecID</key>
<integer>283902611</integer>
<key>ConfigData</key>
<data>
AScc8AEnHQABJx4AAScfQAE3HBABNx0BATce
oAE3H5ABRxwwAUcdAQFHHhcBRx+QAUcMAgFX
HEABVx1AAVceKwFXHwEBVwwCAWccUAFnHUAB
Zx4BAWcfAQFnDAIBhxzwAYcdAAGHHgABhx9A
AZcc8AGXHQABlx4AAZcfQAGnHCABpx0QAace
iwGnHwEBtxzwAbcdAAG3HgABtx9AAdcc8AHX
HQAB1x4AAdcfQAHnHPAB5x0AAeceAAHnH0AC
BQBFAgTUKQAXIAAAFyFyABciawAXIxA=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>tluck - ALC 293 for Lenovo T460/T560 - extra LineOut on Dock</string>
<key>CodecID</key>
<integer>283902611</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6mAScfkAE3HPABNx0AATce
AAE3H0ABRxwgAUcdAQFHHhcBRx+QAVccMAFX
HRABVx4hAVcfAwFnHPABZx0AAWceAAFnH0AB
hxzwAYcdAAGHHgABhx9AAZcc8AGXHQABlx4A
AZcfQAGnHEABpx0QAacegQGnHwMBtxzwAbcd
AAG3HgABtx9AAdcc8AHXHQAB1x4AAdcfQAHn
HPAB5x0AAeceAAHnH0ABRwwCAVcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>tluck - ALC 293 for Lenovo T460/T560</string>
<key>CodecID</key>
<integer>283902611</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6mAScfkAE3HPABNx0AATce
AAE3H0ABRxwgAUcdAQFHHhcBRx+QAVccMAFX
HRABVx4hAVcfAwFnHPABZx0AAWceAAFnH0AB
hxzwAYcdAAGHHgABhx9AAZcc8AGXHQABlx4A
AZcfQAGnHEABpx0QAacegQGnHwMBtxzwAbcd
AAG3HgABtx9AAdcc8AHXHQAB1x4AAdcfQAHn
HPAB5x0AAeceAAHnH0ABRwwCAVcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>29</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Rover - Realtek ALC294 for Asus FL8000U</string>
<key>CodecID</key>
<integer>283902612</integer>
<key>ConfigData</key>
<data>
AbccEAG3HQEBtx6nAbcfkAFHHCABRx0BAUce
FwFHH5ACFxwwAhcdEAIXHiECFx8BAUcMAgG3
DAICFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC294</string>
<key>CodecID</key>
<integer>283902612</integer>
<key>ConfigData</key>
<data>
AXccEAF3HQABdx4XAXcfkAEnHCABJx0AASce
oAEnH5ACFxwwAhcdEAIXHiECFx8A
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC295/ALC3254</string>
<key>CodecID</key>
<integer>283902613</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6mAScfmQF3HCABdx0AAXce
FwF3H5kBlxwwAZcdEAGXHoEBlx8CAhccQAIX
HRACFx4hAhcfAgF3DAIBRwwCAhcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>DalianSky - Realtek ALC295/ALC3254 Dell7570</string>
<key>CodecID</key>
<integer>283902613</integer>
<key>ConfigData</key>
<data>
ASccIAEnHQEBJx6mAScfkAE3HPABNx0AATce
AAE3H0ABRxxAAUcdAQFHHhcBRx+QAUcMAgFn
HPABZx0AAWceAAFnH0ABdxzwAXcdAAF3HgAB
dx9AAYcc8AGHHQABhx4AAYcfQAGXHBABlx0Q
AZcegQGXHwIBpxzwAacdAAGnHgABpx9AAbcc
8AG3HQABtx4AAbcfQAHXHPAB1x0AAdceAAHX
H0AB5xzwAecdAAHnHgAB5x9AAhccMAIXHRAC
Fx4hAhcfAgIXDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>vusun123 - ALC 295 for Skylake HP Pavilion</string>
<key>CodecID</key>
<integer>283902613</integer>
<key>ConfigData</key>
<data>
ASccMAEnHQABJx6gAScfuQFHHFABRx0AAUce
FwFHH5ABRwwCAZccQAGXHRABlx6BAZcfAAIX
HCACFx0QAhceIQIXHwA=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC298 SP4 - ComboJack</string>
<key>CodecID</key>
<integer>283902616</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfkAFHHCABRx0AAUce
FwFHH5ABhxwwAYcdEAGHHoEBhx8CAhccQAIX
HRACFx4hAhcfAgFHDAICFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Rockjesus - Realtek ALC298 for Alienware 17 ALC3266</string>
<key>CodecID</key>
<integer>283902616</integer>
<key>ConfigData</key>
<data>
ASccQAEnHQEBJx6mAScftwF3HBABdx0BAXce
FwF3H5ABpxwwAacdEAGnHqEBpx8DAhccIAIX
HRACFx4hAhcfAw==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC298</string>
<key>CodecID</key>
<integer>283902616</integer>
<key>ConfigData</key>
<data>
AXccEAF3HQABdx4XAXcfkAEnHCABJx0AASce
oAEnH5ACFxwwAhcdEAIXHiECFx8CAYccQAGH
HRABhx6BAYcfAgFHDAICFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>vusun123 - Realtek ALC298 for Dell XPS 9x50</string>
<key>CodecID</key>
<integer>283902616</integer>
<key>ConfigData</key>
<data>
ASccMAEnHQABJx6gAScfkAF3HEABdx0AAXce
FwF3H5ABdwwCAhccIAIXHRACFx4hAhcfAA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>vusun123 - Realtek ALC298 for Lenovo X270</string>
<key>CodecID</key>
<integer>283902616</integer>
<key>ConfigData</key>
<data>
AEcc8ABHHQAARx4AAEcfAABXHPAAVx0AAFce
AABXHwAAdxzwAHcdAAB3HgAAdx8AAOcc8ADn
HQAA5x4AAOcfAAD3HPAA9x0AAPceAAD3HwAB
BxzwAQcdAAEHHgABBx8AASccQAEnHQEBJx6g
AScfkAE3HPABNx0AATceAAE3HwABRxwQAUcd
AQFHHhcBRx+QAUcMAgFXHPABVx0AAVceAAFX
HwABZxzwAWcdAAFnHgABZx8AAXcc8AF3HQAB
dx4AAXcfAAGHHDABhx0QAYcegQGHHwMBlxzw
AZcdAAGXHgABlx8AAacc8AGnHQABpx4AAacf
AAG3HPABtx0AAbceAAG3HwABxxzwAccdAAHH
HgABxx8AAdcc8AHXHQAB1x4AAdcfAAHnHPAB
5x0AAeceAAHnHwAB9xzwAfcdAAH3HgAB9x8A
Agcc8AIHHQACBx4AAgcfAA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>29</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Daliansky - Realtek ALC298 ThinkPad T470p</string>
<key>CodecID</key>
<integer>283902616</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfkAFHHCABRx0AAUce
FwFHH5ABhxwwAYcdEAGHHoEBhx8CAhccQAIX
HRACFx4hAhcfAgFHDAICFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>47</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom - Realtek ALC298 for Dell XPS 9560 by KNNSpeed</string>
<key>CodecID</key>
<integer>283902616</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6mAScfkAF3HCABdx0BAXce
FwF3H5ABhxwwAYcdEAGHHqsBhx8DAaccQAGn
HRABpx6LAacfAwIXHFACFx0QAhceKwIXHwMB
RwwCAXcMAgGnDAICFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>72</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Daliansky - Realtek ALC298 XiaoMi Pro</string>
<key>CodecID</key>
<integer>283902616</integer>
<key>ConfigData</key>
<data>
ASccIAEnHQABJx6gAScfkAE3HPABNx0AATce
AAE3H0ABRxzwAUcdAAFHHgABRx9AAXccQAF3
HQABdx4XAXcfkAGHHBABhx0QAYcegQGHHwIB
lxzwAZcdAAGXHgABlx9AAacc8AGnHQABpx4A
AacfQAHXHPAB1x0AAdceAAHXH0AB5xzwAecd
AAHnHgAB5x9AAfcc8AH3HQAB9x4AAfcfQAIX
HDACFx0QAhceIQIXHwIBdwwCAhcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>99</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC662</string>
<key>CodecID</key>
<integer>283903586</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfkAGHHCABhx2QAYce
oAGHH5AB5xwwAecdYQHnHksB5x8BAaccQAGn
HTABpx6BAacfAQG3HFABtx1AAbceIQG3HwEB
lxxgAZcdkAGXHoEBlx8C
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC662</string>
<key>CodecID</key>
<integer>283903586</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQFXHCABVx0QAVce
AQFXHwEBZxwwAWcdYAFnHgEBZx8BAXccQAF3
HSABdx4BAXcfAQGHHFABhx2QAYceoAGHH5AB
lxxgAZcdkAGXHoEBlx8CAacccAGnHTABpx6B
AacfAQG3HIABtx1AAbceIQG3HwIB5xyQAecd
YAHnHkUB5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom ALC662 by Irving23 for Lenovo ThinkCentre M8400t-N000</string>
<key>CodecID</key>
<integer>283903586</integer>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfASGHHCAhhx2QIYce
oCGHH5AhlxxgIZcdkCGXHqEhlx8CIaccQCGn
HTAhpx6BIacfASG3HFAhtx1AIbceISG3HwIh
5xwwIecdYSHnHksh5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom ALC662 by stich86 for Lenovo ThinkCentre M800</string>
<key>CodecID</key>
<integer>283903586</integer>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfASGHHCAhhx2QIYce
oCGHH5AhlxxgIZcdkCGXHqEhlx8CIaccQCGn
HTAhpx6BIacfASG3HFAhtx1AIbceISG3HwIh
5xwwIecdYSHnHksh5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom ALC662 by Vandroiy for Asus X66Ic</string>
<key>CodecID</key>
<integer>283903586</integer>
<key>ConfigData</key>
<data>
AUccMAFHHQEBRx4QAUcfkAG3HEABtx0AAbce
IQG3HwEBlxwQAZcdAQGXHqABlx+QAYccIAGH
HQABhx6BAYcfAQFXHPABVx0AAVceAAFXH0AB
ZxzwAWcdAAFnHgABZx9AAacc8AGnHQABpx4A
AacfQAHHHPABxx0AAcceAAHHH0AB1xzwAdcd
AAHXHgAB1x9AAecc8AHnHQAB5x4AAecfQAFH
DAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC663</string>
<key>CodecID</key>
<integer>283903587</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfkAFHHCABRx0AAUce
EwFHH5ACFxwwAhcdEAIXHiECFx8CAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC663_V2</string>
<key>CodecID</key>
<integer>283903587</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4TAUcfkAGHHCABhx0QAYce
gQGHHwIBlxwwAZcdAAGXHqABlx+QAdccQAHX
HYAB1x4FAdcfQAHnHFAB5x0QAeceRQHnHwAC
FxxgAhcdEAIXHiECFx8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>4</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC663</string>
<key>CodecID</key>
<integer>283903587</integer>
<key>Comment</key>
<string>Custom ALC663 for Asus N56/76 by m-dudarev</string>
<key>ConfigData</key>
<data>
AZccEAGXHQABlx6gAZcfkAGHHCABhx0QAYce
gQGHHwIBRxwwAUcdAAFHHhABRx+QAUcMAgIX
HEACFx0QAhceIQIXHwIBFxzwARcdAAEXHgAB
Fx9AAecc8AHnHQAB5x4AAecfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC663</string>
<key>CodecID</key>
<integer>283903587</integer>
<key>Comment</key>
<string>Custom by alex1960 for ASUS N71J</string>
<key>ConfigData</key>
<data>
AUccAAFHHQEBRx4TAUcfmQA3HBAANx0AADce
VgA3HxgCFxwgAhcdQAIXHiECFx8BAbccMAG3
HUABtx4hAbcfAQHnHEAB5x0BAeceQwHnH5kB
hxxQAYcdCQGHHqMBhx+ZAZccYAGXHZwBlx6B
AZcfAQF3HPABdx0BAXceEwF3H5k=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>99</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC665</string>
<key>CodecID</key>
<integer>283903589</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6gAScfmQGnHCABpx0QAace
gQGnH5MBVxxAAVcdAQFXHhMBVx+ZAZccUAGX
HRABlx4hAZcfAwG3HGABtx0QAbceIQG3HwMB
5xxwAecdEAHnHkUB5x8D
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC665</string>
<key>CodecID</key>
<integer>283903589</integer>
<key>ConfigData</key>
<data>
ASccUAEnHQABJx6gAScfkAFXHBABVx0AAVce
EwFXH5ABVwwCAZccIAGXHRABlx4hAZcfAAGn
HEABpx0QAacegQGnHwABtxxgAbcdEAG3HiEB
tx8AAdcc8AHXHQAB1x6DAdcfUA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283903592</integer>
<key>Comment</key>
<string>ALC668 Mirone Laptop Patch</string>
<key>ConfigData</key>
<data>
ABJxwQAScdAAEnHqABJx+QAUccIAFHHQABRx
4XAUcfkAFXHDABVx0QAVceIQFXHwEBZxxAAW
cdAAFnHgABZx9AAbccUAG3HRABtx6BAbcfAg
HXHGAB1x0AAdcewAHXH0ABRwwA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283903592</integer>
<key>Comment</key>
<string>Custom ALC668 by lazzy for laptop ASUS G551JM</string>
<key>ConfigData</key>
<data>
ASccMAEnHQABJx6gAScfkAFHHBABRx0AAUce
FwFHH5ABVxwgAVcdEAFXHiEBVx8AAbccQAG3
HRABtx6BAbcfAAFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>20</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283903592</integer>
<key>Comment</key>
<string>ALC668 Mirone Laptop Patch (DELL Precision M3800)</string>
<key>ConfigData</key>
<data>
AUccAAFHHQEBRx4XAUcfmQFXHBABVx0QAVce
IQFXHwMBJxwgAScdAQEnHqYBJx+ZAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>27</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283903592</integer>
<key>Comment</key>
<string>ALC668 Mirone Laptop Patch (Asus N750Jk)</string>
<key>ConfigData</key>
<data>
ABJxwQAScdAAEnHqABJx+QAUccIAFHHQABRx
4XAUcfkAFXHDABVx0QAVceIQFXHwEBZxxAAW
cdAAFnHgABZx9AAbccUAG3HRABtx6BAbcfAg
HXHGAB1x0AAdcewAHXH0ABRwwA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283903592</integer>
<key>Comment</key>
<string>ALC668 Custom (Asus N750JV)</string>
<key>ConfigData</key>
<data>
ASccAAEnHQEBJx6mAScfkAFHHBABRx0BAUce
FwFHH5ABVxwfAVcdEAFXHiEBVx8DAWcc8AFn
HQABZx4AAWcfQAGHHPABhx0AAYceAAGHH0AB
lxzwAZcdAAGXHgABlx9AAacc8AGnHQABpx4A
AacfQAG3HDABtx0QAbcegQG3HwMB1xzwAdcd
AAHXHgAB1x9AAecc8AHnHQAB5x4AAecfQAH3
HPAB9x0AAfceAAH3H0ABRwwCAVcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>29</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283903600</integer>
<key>Comment</key>
<string>Custom ALC670 by Alex Auditore</string>
<key>ConfigData</key>
<data>
AbccQAG3HRABtx4rAbcfAQFXHDABVx0BAVce
EwFXH5ABJxwQAScdAQEnHqABJx+QAaccUAGn
HTEBpx6BAacfAQGXHCABlx2QAZcegQGXHwEB
5xxgAecdEQHnHksB5x8BARcc8AEXHQABFx4A
ARcfQAE3HPABNx0AATceAAE3H0ABRxzwAUcd
AAFHHgABRx9AAWcc8AFnHQABZx4AAWcfQAF3
HPABdx0AAXceAAF3H0ABhxzwAYcdAAGHHgAB
hx9AAdcc8AHXHQAB1x4AAdcfQAIXHPACFx0A
AhceAAIXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283903601</integer>
<key>Comment</key>
<string>MacPeet - ALC671 for Fujitsu-Siemens D3433-S (Q170 chip)</string>
<key>ConfigData</key>
<data>
AYccIAGHHTABhx6BAYcfAQIXHDACFx1AAhce
AQIXHwECFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC882</string>
<key>CodecID</key>
<integer>283904130</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQGHHFABhx2QAYce
oAGHH5ABlxxgAZcdkAGXHoEBlx8CAacccAGn
HTABpx6BAacfAQG3HIABtx1AAbceIQG3HwEB
5xyQAecd4AHnHkUB5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC882</string>
<key>CodecID</key>
<integer>283904130</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQFXHCABVx0QAVce
AQFXHwEBZxwwAWcdYAFnHgEBZx8BAXccQAF3
HSABdx4BAXcfAQGHHFABhx2QAYceoAGHH5AB
lxxgAZcdkAGXHoEBlx8CAacccAGnHTABpx6B
AacfAQG3HIABtx1AAbceIQG3HwIB5xyQAecd
YAHnHkUB5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC883</string>
<key>CodecID</key>
<integer>283904131</integer>
<key>Comment</key>
<string>Mirone - Realtek ALC883 by Andrey1970</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQFXHCABVx0QAVce
AQFXHwEBZxwwAWcdYAFnHgEBZx8BAXccQAF3
HSABdx4BAXcfAQGHHFABhx2QAYceoAGHH5AB
lxxgAZcdkAGXHoEBlx8CAacccAGnHTABpx6B
AacfAQG3HIABtx1AAbceIQG3HwIB5xyQAecd
YAHnHkUB5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904133</integer>
<key>Comment</key>
<string>toleda ALC885</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfASFXHCAhVx0QIVce
ASFXHwEhZxwwIWcdYCFnHgEhZx8BIXcc8CF3
HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5Ah
lxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6B
IacfASG3HHAhtx1AIbceISG3HwIh5xyQIecd
YSHnHksh5x8BIfccoCH3HQEh9x7LIfcfASEX
HPAhFx0AIRceACEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>1</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC885</string>
<key>CodecID</key>
<integer>283904133</integer>
<key>Comment</key>
<string>Custom ALC885 by alex1960</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfASFXHCAhVx0QIVce
ASFXHwEhZxwwIWcdYCFnHgEhZx8BIXcc8CF3
HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5Ah
lxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6B
IacfASG3HHAhtx1AIbceISG3HwIh5xyQIecd
YSHnHksh5x8BIfccoCH3HQEh9x7LIfcfASEX
HPAhFx0AIRceACEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904135</integer>
<key>Comment</key>
<string>Toleda ALC887</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVce
ASFXHwEhZxwwIWcdYCFnHgEhZx8BIXcc8CF3
HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5Ah
lxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6B
IacfASG3HHAhtx1AIbceISG3HwIh5xyQIecd
YSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEX
HPAhFx0AIRceACEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>1</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904135</integer>
<key>Comment</key>
<string>Toleda ALC887</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFXHPAhVx0AIVce
ACFXH0AhZxzwIWcdACFnHgAhZx9AIXcc8CF3
HQAhdx4AIXcfQCGHHEAhhx1gIYceASGHHwEh
lxxgIZcdkCGXHqAhlx+QIaccUCGnHRAhpx4B
IacfASG3HHAhtx1AIbceISG3HwIh5xyQIecd
YSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEX
HPAhFx0AIRceACEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>2</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904135</integer>
<key>Comment</key>
<string>Toleda ALC887</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVce
ASFXHwEhZxzwIWcdACFnHgAhZx9AIXcc8CF3
HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5Ah
lxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6B
IacfASG3HHAhtx1AIbceISG3HwIh5xyQIecd
YSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEX
HPAhFx0AIRceACEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC887-VD</string>
<key>CodecID</key>
<integer>283904135</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQGHHFABhx2QAYce
oAGHH5ABlxxgAZcdkAGXHoEBlx8CAacccAGn
HTABpx6BAacfAQG3HIABtx1AAbceIQG3HwIB
5xyQAecdYAHnHkUB5x8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC887-VD</string>
<key>CodecID</key>
<integer>283904135</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQFXHCABVx0QAVce
AQFXHwEBZxwwAWcdYAFnHgEBZx8BAXccQAF3
HSABdx4BAXcfAQGHHFABhx2QAYceoAGHH5AB
lxxgAZcdkAGXHoEBlx8CAacccAGnHTABpx6B
AacfAQG3HIABtx1AAbceIQG3HwIB5xyQAecd
YAHnHkUB5x8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC887-VD</string>
<key>CodecID</key>
<integer>283904135</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfkQFHDAIBtxwgAbcd
QAG3HiEBtx8CAbcMAgGHHDABhx2QAYceoQGH
H5EBlxxAAZcdkQGXHoEBlx+SAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC887-VD</string>
<key>CodecID</key>
<integer>283904135</integer>
<key>ConfigData</key>
<data>
AbccAAG3HUABtx4hAbcfAQGHHBABhx2QAYce
oAGHH5EBlxwgAZcdkAGXHoEBlx8BAUccMAFH
HUABRx4RAUcfkQGnHEABpx0wAacegQGnHwEB
5xxQAecdYQHnHksB5x8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC887-VD</string>
<key>CodecID</key>
<integer>283904135</integer>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVce
ASFXHwEhhxxAIYcdkCGHHqAhhx+QIaccUCGn
HTAhpx6BIacfASGXHGAhlx2QIZcegSGXHwIh
txxwIbcdQCG3HiEhtx8CIecckCHnHWEh5x5L
IecfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>17</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC887-VD</string>
<key>CodecID</key>
<integer>283904135</integer>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkSFHDAIhhxxAIYcd
YCGHHgEhhx8BIaccUCGnHRAhpx4BIacfASGX
HGAhlx2QIZceoSGXH5EhtxxwIbcdQCG3HiEh
tx8CIecckCHnHWEh5x5LIecfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>18</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904135</integer>
<key>Comment</key>
<string>Custom by klblk ALC887 for GA-Q87TN</string>
<key>ConfigData</key>
<data>
IRcc8CEXHQAhFx4AIRcfQCEnHPAhJx0AISce
ACEnH0AhRxzwIUcdACFHHgAhRx9AIVcc8CFX
HQAhVx4AIVcfQCFnHPAhZx0AIWceACFnH0Ah
dxzwIXcdACF3HgAhdx9AIYcccCGHHZAhhx6B
IYcfASGXHPAhlx0AIZceACGXH0AhpxwgIacd
QCGnHgEhpx8BIbcc8CG3HQAhtx4AIbcfQCHH
HPAhxx0AIcceACHHH0Ah1xzwIdcdACHXHgAh
1x9AIecc8CHnHQAh5x4AIecfQCH3HPAh9x0A
IfceACH3H0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>33</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom Realtek ALC887-VD by Constanta</string>
<key>CodecID</key>
<integer>283904135</integer>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfASGHHFAhhx2QIYce
oCGHH5AhlxxgIZcdkCGXHoEhlx8CIacccCGn
HTAhpx6BIacfASG3HIAhtx1AIbceISG3HwIh
5xyQIecdYCHnHkUh5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>99</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904136</integer>
<key>Comment</key>
<string>toleda ALC888</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVce
ASFXHwEhZxwwIWcdYCFnHgEhZx8BIXcc8CF3
HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5Ah
lxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6B
IacfASG3HHAhtx1AIbceISG3HwIh5xyQIecd
YSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEX
HPAhFx0AIRceACEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>1</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904136</integer>
<key>Comment</key>
<string>toleda ALC888</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFXHPAhVx0AIVce
ACFXH0AhZxzwIWcdACFnHgAhZx9AIXcc8CF3
HQAhdx4AIXcfQCGHHEAhhx1gIYceASGHHwEh
lxxgIZcdkCGXHqAhlx+QIaccUCGnHRAhpx4B
IacfASG3HHAhtx1AIbceISG3HwIh5xyQIecd
YSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEX
HPAhFx0AIRceACEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>2</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904136</integer>
<key>Comment</key>
<string>toleda ALC888</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVce
ASFXHwEhZxzwIWcdACFnHgAhZx9AIXcc8CF3
HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5Ah
lxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6B
IacfASG3HHAhtx1AIbceISG3HwIh5xyQIecd
YSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEX
HPAhFx0AIRceACEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC888 for Laptop</string>
<key>CodecID</key>
<integer>283904136</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQABJx6gAScfmQFHHCABRx1AAUce
IQFHHwEBtxwwAbcdAQG3HhMBtx+ZAXccQAF3
HSABdx4BAXcfAQGHHFABhx2QAYcegQGHHwEB
pxxgAacdMAGnHoEBpx8BAecccAHnHUAB5x5F
AecfAQFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>4</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC888 3 ports (Pink, Green, Blue)</string>
<key>CodecID</key>
<integer>283904136</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQGHHFABhx2QAYce
oAGHH5ABlxxgAZcdkAGXHoEBlx8CAacccAGn
HTABpx6BAacfAQG3HIABtx1AAbceIQG3HwEB
5xyQAecd4AHnHkUB5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC888 5/6 ports (Gray, Black, Orange, Pink, Green, Blue)</string>
<key>CodecID</key>
<integer>283904136</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQFXHCABVx0QAVce
AQFXHwEBZxwwAWcdYAFnHgEBZx8BAXccQAF3
HSABdx4BAXcfAQGHHFABhx2QAYceoAGHH5AB
lxxgAZcdkAGXHoEBlx8CAacccAGnHTABpx6B
AacfAQG3HIABtx1AAbceIQG3HwIB5xyQAecd
YAHnHkUB5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC888S-VD Version1 for MedionP9614 by MacPeet</string>
<key>CodecID</key>
<integer>283904136</integer>
<key>ConfigData</key>
<data>
AUccEAFHHRABRx4hAUcfAQFHDAIBhxwwAYcd
EAGHHqEBhx8BASccQAEnHQABJx6jAScfkAF3
HFABdx0AAXceEwF3H5ABpxxgAacdEAGnHoEB
px8BAecccAHnHRAB5x5FAecfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC888 for Acer Aspire 7738G by MacPeet</string>
<key>CodecID</key>
<integer>283904136</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4TAUcfkAFHDAIBJxxAAScd
AAEnHqMBJx+QAVccUAFXHRABVx4hAVcfAAFX
DAIBpxxgAacdMAGnHoEBpx8AAecccAHnHRAB
5x5FAecfAA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>27</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC888S-VD Version2 for MedionE7216 by MacPeet</string>
<key>CodecID</key>
<integer>283904136</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4TAUcfkAFHDAIBdxwgAXcd
AAF3HhMBdx+QAeccMAHnHRAB5x5EAecfAAGH
HEABhx0QAYceoQGHHwABJxxQAScdAAEnHqMB
Jx+QAaccYAGnHRABpx6BAacfAAG3HHABtx0Q
AbceIQG3HwA=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ALC888S-VD Version3 for MedionP8610 by MacPeet</string>
<key>CodecID</key>
<integer>283904136</integer>
<key>ConfigData</key>
<data>
AUccEAFHHQABRx4TAUcfkAFHDAIBdxwgAXcd
EAF3HhMBdx+QAeccMAHnHRAB5x5FAecfAAGX
HEABlx0AAZceowGXH5ABhxxQAYcdEAGHHoEB
hx8AAVccYAFXHRABVx4hAVcfAAFXDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>29</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904137</integer>
<key>Comment</key>
<string>ALC889, Toleda</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVce
ASFXHwEhZxwwIWcdYCFnHgEhZx8BIXcc8CF3
HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5Ah
lxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6B
IacfASG3HHAhtx1AIbceISG3HwIh5xyQIecd
YSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEX
HPAhFx0AIRceACEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>1</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904137</integer>
<key>Comment</key>
<string>MacPeet ALC889 Medion P4020 D</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4hAUcfAQFHDAIBtxwgAbcd
AAG3HhMBtx+QAeccMAHnHWAB5x5EAecfAQGX
HFABlx0AAZceowGXH5ABpxxgAacdMAGnHoEB
px8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904137</integer>
<key>Comment</key>
<string>alc889, Custom by Sergey_Galan</string>
<key>ConfigData</key>
<data>
IRcc8CEXHQAhFx4AIRcfQCEnHPAhJx0AISce
ACEnH0AhRxwwIUcdQSFHHhEhRx8BIVcc8CFX
HQAhVx4AIVcfQCFnHPAhZx0AIWceACFnH0Ah
dxzwIXcdACF3HgAhdx9AIYccECGHHZEhhx6g
IYcfkCGXHCAhlx2QIZcegSGXHwEhpxzwIacd
ACGnHgAhpx9AIbccgCG3HUAhtx4hIbcfASHH
HPAhxx0AIcceACHHH0Ah1xzwIdcdACHXHgAh
1x9AIecckCHnHSEh5x5LIecfASH3HPAh9x0A
IfceACH3H0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - ALC891 for HP Pavilion Power 580-030ng</string>
<key>CodecID</key>
<integer>283904103</integer>
<key>ConfigData</key>
<data>
AXccIAF3HRABdx4hAXcfAgGHHDABhx2QAYce
gQGHHwEBtxxAAbcdMAG3HoEBtx8BAhccYAIX
HQACFx4RAhcfAAIXDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC891</string>
<key>CodecID</key>
<integer>283904103</integer>
<key>ConfigData</key>
<data>
AXccEAF3HUABdx4hAXcfAQFnHDABZx0wAWce
gQFnHwEBhxxAAYcdkAGHHqEBhx+RAaccYAGn
HZABpx6BAacfAgHnHHAB5x0AAeceRgHnH5AC
FxyAAhcdQAIXHhECFx8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904146</integer>
<key>Comment</key>
<string>ALC892, Toleda</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFHDAIhVxwgIVcd
ECFXHgEhVx8BIWccMCFnHWAhZx4BIWcfASF3
HPAhdx0AIXceACF3H0AhhxxAIYcdkCGHHqAh
hx+QIZccYCGXHZAhlx6BIZcfAiGnHFAhpx0w
IacegSGnHwEhtxxwIbcdQCG3HiEhtx8CIbcM
AiHnHJAh5x1hIeceSyHnHwEh9xzwIfcdACH3
HgAh9x9AIRcc8CEXHQAhFx4AIRcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>1</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904146</integer>
<key>Comment</key>
<string>ALC892, Toleda</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFHDAIhVxzwIVcd
ACFXHgAhVx9AIWcc8CFnHQAhZx4AIWcfQCF3
HPAhdx0AIXceACF3H0AhhxxAIYcdYCGHHgEh
hx8BIZccYCGXHZAhlx6gIZcfkCGnHFAhpx0Q
IaceASGnHwEhtxxwIbcdQCG3HiEhtx8CIbcM
AiHnHJAh5x1hIeceSyHnHwEh9xzwIfcdACH3
HgAh9x9AIRcc8CEXHQAhFx4AIRcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>2</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904146</integer>
<key>Comment</key>
<string>ALC892, Toleda</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVce
ASFXHwEhZxzwIWcdACFnHgAhZx9AIXcc8CF3
HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5Ah
lxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6B
IacfASG3HHAhtx1AIbceISG3HwIh5xyQIecd
YSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEX
HPAhFx0AIRceACEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC892 for Laptop</string>
<key>CodecID</key>
<integer>283904146</integer>
<key>ConfigData</key>
<data>
ASccEAEnHZABJx6gAScfmQFHHCABRx1AAUce
IQFHHwEBdxwwAXcdEAF3HgEBdx8BAYccQAGH
HZABhx6BAYcfAQGnHFABpx0wAacegQGnHwEB
txxgAbcdQAG3HhMBtx+ZAecccAHnHWAB5x5F
AecfAQG3DAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>4</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904146</integer>
<key>Comment</key>
<string>ALC892, Mirone</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQGHHFABhx2QAYce
oAGHH5ABlxxgAZcdkAGXHoEBlx8CAacccAGn
HTABpx6BAacfAQG3HIABtx1AAbceIQG3HwEB
5xyQAecd4AHnHkUB5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904146</integer>
<key>Comment</key>
<string>ALC892, Mirone</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQFXHCABVx0QAVce
AQFXHwEBZxwwAWcdYAFnHgEBZx8BAXccQAF3
HSABdx4BAXcfAQGHHFABhx2QAYceoAGHH5AB
lxxgAZcdkAGXHoEBlx8CAacccAGnHTABpx6B
AacfAQG3HIABtx1AAbceIQG3HwIB5xyQAecd
YAHnHkUB5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904146</integer>
<key>Comment</key>
<string>ALC892 for Clevo P751DMG by Cryse Hillmes</string>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6mAScfkAFHHEABRx0BAUce
FwFHH5ABdxxgAXcdEAF3HgEBdx8BAYccgAGH
HRABhx6BAYcfAQGnHCABpx0QAacegQGnHwEB
txxQAbcdEAG3HiEBtx8BAecccAHnHRAB5x5F
AecfAQFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904146</integer>
<key>Comment</key>
<string>ALC892 for Clevo P65xSE/SA by Derek Zhu</string>
<key>ConfigData</key>
<data>
ASccEAEnHZEBJx6mAScfkAGHHCABhx1gAYce
gQGHHwEBRxwwAUcdAQFHHhcBRx+QAbccQAG3
HTABtx4hAbcfAQF3HFABdx1AAXceAQF3HwEB
5xxgAecdYQHnHkUB5x8BALcccAC3HREAtx4W
ALcfkAFXHPABVx0AAVceAAFXHwQBZxzwAWcd
AAFnHgABZx8EAZcc8AGXHQABlx4AAZcfBAGn
HPABpx0AAaceAAGnHwQBxxzwAccdAAHHHgAB
xx8EAdcc8AHXHQAB1x4AAdcfBAH3HPAB9x0A
AfceAAH3HwQBRwwCAbcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>31</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904146</integer>
<key>Comment</key>
<string>Custom ALC892 for GA-Z87-HD3 by BIM167</string>
<key>ConfigData</key>
<data>
IRccUCEXHXEhFx5EIRcfASEnHPAhJx0AISce
ACEnH0AhRxwQIUcdQCFHHhEhRx+QIVccICFX
HRAhVx4BIVcfASFnHDAhZx1gIWceASFnHwEh
dxzwIXcdACF3HgAhdx9AIYccYCGHHZAhhx6g
IYcfkCGXHIAhlx2QIZcegSGXHwIhpxxwIacd
MCGnHoEhpx8BIbccQCG3HUAhtx4hIbcfAiHH
HPAhxx0AIcceACHHH0Ah5xzwIecdACHnHgAh
5x9AIfcckCH3HXEh9x7EIfcfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>92</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904146</integer>
<key>Comment</key>
<string>ALC892 with working SPDIF</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQGHHFABhx2QAYce
oAGHH5ABlxxgAZcdkAGXHoEBlx8CAacccAGn
HTABpx6BAacfAQG3HIABtx1AAbceIQG3HwEB
5xyQAecd4AHnHkUB5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>98</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904146</integer>
<key>Comment</key>
<string>Custom ALC892 DNS P150EM by Constanta</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQGHHHABhx2QAYce
gQGHHwEBlxxgAZcdAQGXHqABlx+QAaccgAGn
HTABpx6BAacfAQG3HCABtx1AAbceIQG3HwEB
5xyQAecd4AHnHkUB5x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>99</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904153</integer>
<key>Comment</key>
<string>ALC898, Toleda</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFHDAIhVxwgIVcd
ECFXHgEhVx8BIWccMCFnHWAhZx4BIWcfASF3
HPAhdx0AIXceACF3H0AhhxxAIYcdkCGHHqAh
hx+QIZccYCGXHZAhlx6BIZcfAiGnHFAhpx0w
IacegSGnHwEhtxxwIbcdQCG3HiEhtx8CIbcM
AiHnHJAh5x1hIeceSyHnHwEh9xzwIfcdACH3
HgAh9x9AIRcc8CEXHQAhFx4AIRcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>1</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904153</integer>
<key>Comment</key>
<string>ALC898, Toleda</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFHDAIhVxzwIVcd
ACFXHgAhVx9AIWcc8CFnHQAhZx4AIWcfQCF3
HPAhdx0AIXceACF3H0AhhxxAIYcdYCGHHgEh
hx8BIZccYCGXHZAhlx6gIZcfkCGnHFAhpx0Q
IaceASGnHwEhtxxwIbcdQCG3HiEhtx8CIbcM
AiHnHJAh5x1hIeceSyHnHwEh9xzwIfcdACH3
HgAh9x9AIRcc8CEXHQAhFx4AIRcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>2</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904153</integer>
<key>Comment</key>
<string>ALC898, Toleda</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVce
ASFXHwEhZxzwIWcdACFnHgAhZx9AIXcc8CF3
HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5Ah
lxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6B
IacfASG3HHAhtx1AIbceISG3HwIh5xyQIecd
YSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEX
HPAhFx0AIRceACEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC898</string>
<key>CodecID</key>
<integer>283904153</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQGHHFABhx2QAYce
oAGHH5ABlxxgAZcdkAGXHoEBlx8CAacccAGn
HTABpx6BAacfAQG3HIABtx1AAbceIQG3HwEB
5xyQAecd4AHnHkUB5x8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC898</string>
<key>CodecID</key>
<integer>283904153</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQFXHCABVx0QAVce
AQFXHwEBZxwwAWcdYAFnHgEBZx8BAXccQAF3
HSABdx4BAXcfAQGHHFABhx2QAYceoAGHH5AB
lxxgAZcdkAGXHoEBlx8CAacccAGnHTABpx6B
AacfAQG3HIABtx1AAbceIQG3HwIB5xyQAecd
YAHnHkUB5x8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904153</integer>
<key>Comment</key>
<string>Custom ALC898 by Irving23 for MSI GT72S 6QF-065CN</string>
<key>ConfigData</key>
<data>
ARcc8AEXHQABFx4AARcfQAEnHBABJx0BASce
oAEnH5ABRxzwAUcdAAFHHgABRx9AAVcc8AFX
HQABVx4AAVcfQAFnHPABZx0AAWceAAFnH0AB
dxxgAXcdEAF3HgEBdx8BAYccEAGHHRABhx6h
AYcfAQGXHEABlx0BAZceFwGXH5ABpxwgAacd
EAGnHoEBpx8BAbccQAG3HQEBtx4XAbcfkAHH
HPABxx0AAcceAAHHH0AB1xzwAdcdAAHXHgAB
1x9AAecccAHnHREB5x5FAecfAQH3HPAB9x0A
AfceAAH3H0ABRwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Realtek ALC898 for MSI GS40</string>
<key>CodecID</key>
<integer>283904153</integer>
<key>ConfigData</key>
<data>
AaccEAGnHQABpx4XAacfkAHnHCAB5x0QAece
RgHnHwEBhxwwAYcdEAGHHoEBhx8BASccQAEn
HQABJx6gAScfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904153</integer>
<key>Comment</key>
<string>ALC898, Toleda</string>
<key>ConfigData</key>
<data>
IUccECFHHUAhRx4RIUcfkCFXHCAhVx0QIVce
ASFXHwEhZxzwIWcdACFnHgAhZx9AIXcc8CF3
HQAhdx4AIXcfQCGHHEAhhx2QIYceoCGHH5Ah
lxxgIZcdkCGXHoEhlx8CIaccUCGnHTAhpx6B
IacfASG3HHAhtx1AIbceISG3HwIh5xyQIecd
YSHnHksh5x8BIfcc8CH3HQAh9x4AIfcfQCEX
HPAhFx0AIRceACEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Realtek ALC898 for CLEVO P65xRS(-G) by datasone</string>
<key>CodecID</key>
<integer>283904153</integer>
<key>ConfigData</key>
<data>
ARcc8AEXHQABFx4AARcfQAEnHFABJx0BASce
pgEnH5ABRxwQAUcdAQFHHhcBRx+QAXccIAF3
HRABdx4BAXcfAQGHHEABhx0QAYcegQGHHwEB
1xzwAdcdAAHXHgAB1x9AAeccMAHnHREB5x5E
AecfAQFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>65</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Realtek ALC898 for MSI GE62 7RE Apache Pro by spectra</string>
<key>CodecID</key>
<integer>283904153</integer>
<key>ConfigData</key>
<data>
ASccEAEnHQEBJx6gAScfmQGHHCABhx0QAYce
gQGHHwIBVxwwAVcdAQFXHhMBVx+ZAaccMQGn
HQEBpx4TAacfmQG3HDIBtx0BAbceEwG3H5kB
twwCAUccQAFHHRABRx4hAUcfAgFHDAIB5xxQ
AecdEQHnHkUB5x8C
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>98</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Realtek ALC898 for MSI GP62-6QG Leopard Pro</string>
<key>CodecID</key>
<integer>283904153</integer>
<key>ConfigData</key>
<data>
ARcc8AEXHQABFx4AARcfQAEnHBABJx0BASce
oAEnH5ABRxxQAUcdQAFHHiEBRx8BAUcMAgFX
HEABVx0BAVceEAFXH5ABZxzwAWcdAAFnHgAB
Zx9AAXcc8AF3HQABdx4AAXcfQAGHHCABhx2Q
AYcegQGHHwEBlxzwAZcdAAGXHgABlx9AAacc
8AGnHQABpx4AAacfQAG3HPABtx0AAbceAAG3
H0ABxxzwAccdAAHHHgABxx9AAdcc8AHXHQAB
1x4AAdcfQAHnHHAB5x1BAeceRQHnHwEB9xzw
AfcdAAH3HgAB9x9A
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>99</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904153</integer>
<key>Comment</key>
<string>ALC898, 4 Line Out by Andrey1970</string>
<key>ConfigData</key>
<data>
AUccAAFHHUABRx4RAUcfkAFXHBABVx0QAVce
AQFXHwEBZxwgAWcdYAFnHgEBZx8BAYccMAGH
HZABhx6gAYcfkAGnHEABpx0wAacegQGnHwEB
lxxQAZcdkAGXHoEBlx8CAbccYAG3HUABtx4h
AbcfAgHnHHAB5x1hAeceSwHnHwEBdxyAAXcd
IAF3HgEBdx8BAfcc8AH3HQAB9x4AAfcfSQEX
HPABFx0AARceAAEXH0k=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>101</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904256</integer>
<key>Comment</key>
<string>toleda - ALC1150 </string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfkAFHDAIBVxwgAVcd
EAFXHgEBVx8BAWccMAFnHWABZx4BAWcfAQF3
HPABdx0AAXceAAF3H0ABhxxAAYcdkAGHHqAB
hx+QAZccYAGXHZABlx6BAZcfAgGnHFABpx0w
AacegQGnHwEBtxxwAbcdQAG3HiEBtx8CAbcM
AgHnHJAB5x1hAeceSwHnHwEB9xzwAfcdAAH3
HgAB9x9AARcc8AEXHQABFx4AARcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>1</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904256</integer>
<key>Comment</key>
<string>toleda - ALC1150 </string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfkAFHDAIBVxzwAVcd
AAFXHgABVx9AAWcc8AFnHQABZx4AAWcfQAF3
HPABdx0AAXceAAF3H0ABhxxAAYcdYAGHHgEB
hx8BAZccYAGXHZABlx6gAZcfkAGnHFABpx0Q
AaceAQGnHwEBtxxwAbcdQAG3HiEBtx8CAbcM
AgHnHJAB5x1hAeceSwHnHwEB9xzwAfcdAAH3
HgAB9x9AARcc8AEXHQABFx4AARcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>2</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283904256</integer>
<key>Comment</key>
<string>toleda - ALC1150 </string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfkAFXHCABVx0QAVce
AQFXHwEBZxzwAWcdAAFnHgABZx9AAXcc8AF3
HQABdx4AAXcfQAGHHEABhx2QAYceoAGHH5AB
lxxgAZcdkAGXHoEBlx8CAaccUAGnHTABpx6B
AacfAQG3HHABtx1AAbceIQG3HwIB5xyQAecd
YQHnHksB5x8BAfcc8AH3HQAB9x4AAfcfQAEX
HPABFx0AARceAAEXH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC1150</string>
<key>CodecID</key>
<integer>283904256</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQGHHFABhx2QAYce
oAGHH5ABlxxgAZcdkAGXHoEBlx8CAacccAGn
HTABpx6BAacfAQG3HIABtx1AAbceIQG3HwEB
5xyQAecd4AHnHkUB5x8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC1150</string>
<key>CodecID</key>
<integer>283904256</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQFXHCABVx0QAVce
AQFXHwEBZxwwAWcdYAFnHgEBZx8BAXccQAF3
HSABdx4BAXcfAQGHHFABhx2QAYceoAGHH5AB
lxxgAZcdkAGXHoEBlx8CAacccAGnHTABpx6B
AacfAQG3HIABtx1AAbceIQG3HwIB5xyQAecd
YAHnHkUB5x8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Realtek ALC1150 (mic boost)</string>
<key>CodecID</key>
<integer>283904256</integer>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQFXHCABVx0QAVce
AQFXHwEBZxwwAWcdYAFnHgEBZx8BAXccQAF3
HSABdx4BAXcfAQGHHFABhx2QAYceoAGHH5AB
lxxgAZcdkAGXHoEBlx8CAacccAGnHTABpx6B
AacfAQG3HIABtx1AAbceIQG3HwIB5xyQAecd
YAHnHkUB5x8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283906592</integer>
<key>CodecName</key>
<string>Toleda - Realtek ALC1220</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfkAFHDAIBVxwgAVcd
EAFXHgEBVx8BAWccMAFnHWABZx4BAWcfAQGH
HEABhx2QAYceoAGHH5ABlxxgAZcdkAGXHoEB
lx8CAaccUAGnHTABpx6BAacfAQG3HHABtx1A
AbceIQG3HwIBtwwCAecckAHnHWEB5x5LAecf
AQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>1</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283906592</integer>
<key>CodecName</key>
<string>Toleda - Realtek ALC1220</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfkAFHDAIBVxzwAVcd
AAFXHgABVx9AAWcc8AFnHQABZx4AAWcfQAGH
HEABhx1gAYceAQGHHwEBlxxgAZcdkAGXHqAB
lx+QAaccUAGnHRABpx4BAacfAQG3HHABtx1A
AbceIQG3HwIBtwwCAecckAHnHWEB5x5LAecf
AQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>2</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283906592</integer>
<key>CodecName</key>
<string>Mirone - Realtek ALC1220</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQGHHFABhx2QAYce
oAGHH5ABlxxgAZcdkAGXHoEBlx8CAacccAGn
HTABpx6BAacfAQG3HIABtx1AAbceIQG3HwEB
5xyQAecd4AHnHkUB5x8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283906592</integer>
<key>CodecName</key>
<string>Mirone - Realtek ALC1220</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQFXHCABVx0QAVce
AQFXHwEBZxwwAWcdYAFnHgEBZx8BAXccQAF3
HSABdx4BAXcfAQGHHFABhx2QAYceoAGHH5AB
lxxgAZcdkAGXHoEBlx8CAacccAGnHTABpx6B
AacfAQG3HIABtx1AAbceIQG3HwIB5xyQAecd
YAHnHkUB5x8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283906592</integer>
<key>CodecName</key>
<string>Custom Realtek ALC1220 by truesoldier</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfkAG3HCABtx1AAbce
IQG3HwIB5xwwAecdIAHnHksB5x8BAYccQAGH
HZABhx6gAYcfkAGXHFABlx2QAZcegQGXHwIB
VxxwAVcdEAFXHgEBVx8BAWccgAFnHWABZx4B
AWcfAQGnHKABpx0wAacegQGnHwE=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283906592</integer>
<key>CodecName</key>
<string>MacPeet - ALC1220 for Clevo P950HR</string>
<key>ConfigData</key>
<data>
AUccEAFHHRABRx4hAUcfAQFHDAIBJxwwAScd
AAEnHqYBJx+ZAYccQAGHHRABhx6BAYcfAQG3
HGABtx0AAbceFwG3H5kBtwwCAecccAHnHRAB
5x5EAecfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283906408</integer>
<key>CodecName</key>
<string>Toleda - Realtek ALC S1220A</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfkAFHDAIBVxwgAVcd
EAFXHgEBVx8BAWccMAFnHWABZx4BAWcfAQF3
HPABdx0AAXceAAF3H0ABhxxAAYcdkAGHHqAB
hx+QAZccYAGXHZABlx6BAZcfAgGnHFABpx0w
AacegQGnHwEBtxxwAbcdQAG3HiEBtx8CAbcM
AgHnHJAB5x1hAeceSwHnHwEB9xzwAfcdAAH3
HgAB9x9AARcc8AEXHQABFx4AARcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>1</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283906408</integer>
<key>CodecName</key>
<string>Toleda - Realtek ALC S1220A</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfkAFHDAIBVxzwAVcd
AAFXHgABVx9AAWcc8AFnHQABZx4AAWcfQAF3
HPABdx0AAXceAAF3H0ABhxxAAYcdYAGHHgEB
hx8BAZccYAGXHZABlx6gAZcfkAGnHFABpx0Q
AaceAQGnHwEBtxxwAbcdQAG3HiEBtx8CAbcM
AgHnHJAB5x1hAeceSwHnHwEB9xzwAfcdAAH3
HgAB9x9AARcc8AEXHQABFx4AARcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>2</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283906408</integer>
<key>CodecName</key>
<string>Mirone - Realtek ALC S1220A</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQGHHFABhx2QAYce
oAGHH5ABlxxgAZcdkAGXHoEBlx8CAacccAGn
HTABpx6BAacfAQG3HIABtx1AAbceIQG3HwEB
5xyQAecd4AHnHkUB5x8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>283906408</integer>
<key>CodecName</key>
<string>Mirone - Realtek ALC S1220A</string>
<key>ConfigData</key>
<data>
AUccEAFHHUABRx4RAUcfAQFXHCABVx0QAVce
AQFXHwEBZxwwAWcdYAFnHgEBZx8BAXccQAF3
HSABdx4BAXcfAQGHHFABhx2QAYceoAGHH5AB
lxxgAZcdkAGXHoEBlx8CAacccAGnHTABpx6B
AacfAQG3HIABtx1AAbceIQG3HwIB5xyQAecd
YAHnHkUB5x8BAUcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
<key>WakeConfigData</key>
<data>
AUcMAg==
</data>
<key>WakeVerbReinit</key>
<true/>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX8050</string>
<key>CodecID</key>
<integer>351346546</integer>
<key>ConfigData</key>
<data>
AXccEAF3HQABdx4XAXcfkAGnHCABpx0AAace
oAGnH5ABlxwwAZcdEAGXHosBlx8BAWccQAFn
HRABZx4rAWcfAQF3DAIBZwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX8200</string>
<key>CodecID</key>
<integer>351346696</integer>
<key>ConfigData</key>
<data>
AXccEAF3HQABdx4XAXcfkAGnHCABpx0AAace
oAGnH5ABlxwwAZcdEAGXHosBlx8BAWccQAFn
HRABZx4rAWcfAQF3DAIBZwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Conexant CX20561</string>
<key>CodecID</key>
<integer>351359057</integer>
<key>ConfigData</key>
<data>
AWccQAFnHUABZx4hAWcfAQF3HPABdx0AAXce
AAF3H0ABhxwwAYcdMAGHHoEBhx8BAZcc8AGX
HQABlx4AAZcfQAGnHBABpx0BAaceFwGnH5AB
txzwAbcdAAG3HgABtx9AAccc8AHHHQABxx4A
AccfQAHXHCAB1x0BAdceoAHXH5A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX20583</string>
<key>CodecID</key>
<integer>351359079</integer>
<key>ConfigData</key>
<data>
AZcc8AGXHUABlx4hAZcfBAGnHPABpx2QAace
oQGnHwQBtxzwAbcdAQG3HgABtx9AAccc8AHH
HQEBxx4AAccfQAHXHPAB1x0BAdceAAHXH0AB
5xzwAecdAQHnHqcB5x+VAfcc8AH3HQEB9x4X
AfcfkgIHHPACBx0RAgceRQIHHwQCJxzwAicd
AQInHgACJx9AAjcc8AI3HQECNx4AAjcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX20585</string>
<key>CodecID</key>
<integer>351359081</integer>
<key>ConfigData</key>
<data>
AZccEAGXHRABlx4gAZcfAAGnHCABpx0AAace
AAGnH0ABtxwwAbcdEAG3HoABtx8AAcccUAHH
HQABxx4AAccfQAHXHGAB1x0AAdceAAHXH0AB
5xxgAecdAAHnHgAB5x9AAfcccAH3HQAB9x4Q
AfcfkAIHHIACBx0AAgceAAIHH0ACJxyAAicd
AAInHgACJx9AAjcckAI3HQACNx6gAjcfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Constanta custom for Toshiba L755-16R - Conexant CX20585</string>
<key>CodecID</key>
<integer>351359081</integer>
<key>ConfigData</key>
<data>
AZccEAGXHRABlx4gAZcfAAGnHCABpx0wAace
gQGnHwEBtxwwAbcdAAG3HgABtx9AAcccUAHH
HQABxx4AAccfQAHXHGAB1x0AAdceAAHXH0AB
5xxgAecdAAHnHgAB5x9AAfcccAH3HQAB9x4Q
AfcfkAIHHIACBx0AAgceAAIHH0ACJxyAAicd
AAInHgACJx9AAjcckAI3HQECNx6gAjcfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX20588</string>
<key>CodecID</key>
<integer>351359084</integer>
<key>ConfigData</key>
<data>
AZccQAGXHRABlx4hAZcfAgG3HDABtx0QAbce
owG3H5kCNxxQAjcdAQI3HqECNx+SAfccEAH3
HQEB9x4TAfcfmQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX20590</string>
<key>CodecID</key>
<integer>351359086</integer>
<key>ConfigData</key>
<data>
AZccQAGXHRABlx4hAZcfAAGnHDABpx0QAace
gQGnHwABtxwgAbcdAAG3HqcBtx+QAfccEAH3
HQAB9x4XAfcfkQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>351359086</integer>
<key>Comment</key>
<string>CX20590 Custom for Lenovo Yoga 13 by usr-sse2</string>
<key>ConfigData</key>
<data>
AZccMAGXHUABlx4rAZcfDgH3HCAB9x0BAfce
EAH3H5ACNxwQAjcdAQI3HqACNx+QAaccQAGn
HRABpx6BAacfAQG3HPABtx0AAbceAAG3H0AB
xxzwAccdAAHHHgABxx9AAdcc8AHXHQAB1x4A
AdcfQAHnHPAB5x0AAeceAAHnH0ACBxzwAgcd
AAIHHgACBx9AAicc8AInHQACJx4AAicfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>351359137</integer>
<key>Comment</key>
<string>CX20641 - MacPeet - Dell OptiPlex 3010 - ManualMode</string>
<key>ConfigData</key>
<data>
IcccECHHHUAhxx4BIccfASGnHCAhpx2QIace
gSGnHwIhtxwwIbcdMCG3HoEhtx8BIZccQCGX
HUAhlx4hIZcfAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>351359137</integer>
<key>Comment</key>
<string>CX20641 - MacPeet - Dell OptiPlex 3010 - SwitchMode</string>
<key>ConfigData</key>
<data>
IcccECHHHUAhxx4RIccfkCGnHCAhpx2QIace
gSGnHwIhtxwwIbcdMCG3HoEhtx8BIZccQCGX
HUAhlx4hIZcfAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>351359138</integer>
<key>Comment</key>
<string>CX20642 - MacPeet - Fujitsu ESPRIMO E910 E90+ Desktop - ManualMode</string>
<key>ConfigData</key>
<data>
IcccECHHHUAhxx4BIccfASGnHCAhpx0QIace
gSGnHwIhlxxAIZcdECGXHiEhlx8CIdccUCHX
HTAh1x6BIdcfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>351359138</integer>
<key>Comment</key>
<string>CX20642 - MacPeet - Fujitsu ESPRIMO E910 E90+ Desktop - SwitchMode</string>
<key>ConfigData</key>
<data>
IcccECHHHUAhxx4RIccfkCGnHCAhpx0QIace
oSGnH5IhlxxAIZcdECGXHiEhlx8CIdccUCHX
HTAh1x6BIdcfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>CodecID</key>
<integer>351359086</integer>
<key>Comment</key>
<string>Custom for Dell Vostro 3x60 by vusun123</string>
<key>ConfigData</key>
<data>
AfccEAH3HQAB9x4XAfcfkQGnHDABpx0QAace
gQGnHwkBlxxAAZcdEAGXHiEBlx8AAjccIAI3
HQECNx6nAjcfkAG3DAIB1wwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX20722</string>
<key>CodecID</key>
<integer>351359218</integer>
<key>ConfigData</key>
<data>
AXccEAF3HQABdx4WAXcfkQGnHCABpx0AAace
pgGnH5ABlxwwAZcdEAGXHoEBlx8CAWccQAFn
HRABZx4hAWcfAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX20724</string>
<key>CodecID</key>
<integer>351359220</integer>
<key>ConfigData</key>
<data>
AWccEAFnHRABZx4hAWcfAgF3HCABdx0AAXce
FwF3H5EBlxwwAZcdEAGXHoEBlx8CAaccQAGn
HQABpx6mAacfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Conexant CX20724</string>
<key>CodecID</key>
<integer>351359220</integer>
<key>ConfigData</key>
<data>
AXccEAF3HQEBdx4XAXcfkQGnHCABpx0BAace
oAGnH5UBlxwwAZcdEAGXHosBlx8EAdccQAHX
HRAB1x4rAdcfBA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX20752</string>
<key>CodecID</key>
<integer>351359247</integer>
<key>ConfigData</key>
<data>
AWccEAFnHUABZx4hAWcfAQF3HCABdx0AAXce
FwF3H5ABhxwwAYcdkAGHHoEBhx8BAaccQAGn
HQABpx6gAacfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>Codec</key>
<string>Conexant - CX20751/2 by RehabMan</string>
<key>CodecID</key>
<integer>351359247</integer>
<key>ConfigData</key>
<data>
AWccQAFnHRABZx4hAWcfBAF3HBABdx0BAXce
FwF3H5ABlxwwAZcdEAGXHoEBlx8EAaccIAGn
HQEBpx6gAacfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX20753/4</string>
<key>CodecID</key>
<integer>351359249</integer>
<key>ConfigData</key>
<data>
AWccEAFnHUABZx4hAWcfAgF3HCABdx0AAXce
FwF3H5ABlxwwAZcdkAGXHoEBlx8CAaccQAGn
HQABpx6gAacfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX20755</string>
<key>CodecID</key>
<integer>351359251</integer>
<key>ConfigData</key>
<data>
AXccEAF3HQABdx4XAXcfkAGnHCABpx0AAace
pgGnH5UBhxwwAYcdkAGHHosBhx8CAWccQAFn
HUABZx4rAWcfAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AQAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX20756</string>
<key>CodecID</key>
<integer>351359252</integer>
<key>ConfigData</key>
<data>
AWccEAFnHUABZx4hAWcfAQF3HCABdx0AAXce
EwF3H5ABhxwwAYcdkAGHHqEBhx8CAaccQAGn
HQABpx6mAacfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - Conexant CX20756</string>
<key>CodecID</key>
<integer>351359247</integer>
<key>ConfigData</key>
<data>
AXccEAF3HQEBdx4XAXcfkAGnHCABpx0BAace
oAGnH5ABlxwwAZcdEAGXHosBlx8CAWccQAFn
HRABZx4rAWcfAgGHHPABhx0AAYceAAGHH0A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AQAAAA==
</data>
<key>Codec</key>
<string>Mirone - Conexant CX20757</string>
<key>CodecID</key>
<integer>351359253</integer>
<key>ConfigData</key>
<data>
AWccEAFnHQABZx4hAWcfAQF3HCABdx0AAXce
EwF3H5ABhxwwAYcdAAGHHoEBhx8CAaccUAGn
HQABpx6gAacfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom IDT 92HD87B1/3 by RehabMan</string>
<key>CodecID</key>
<integer>287143633</integer>
<key>ConfigData</key>
<data>
AMcegQDHHwM=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>InsanelyDeepak - IDT92HD87B1/3</string>
<key>CodecID</key>
<integer>287143633</integer>
<key>ConfigData</key>
<data>
ANccAADXHQAA1x4XANcfmQEXHCABFx0AARce
oAEXH5kAtxwwALcdQAC3HiEAtx8BAMccQADH
HRAAxx6AAMcfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom IDT92HD87B2/4 by RehabMan</string>
<key>CodecID</key>
<integer>287143641</integer>
<key>ConfigData</key>
<data>
AMcegQDHHwMBFx6gARcfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom IDT92HD95 by RehabMan</string>
<key>CodecID</key>
<integer>287143573</integer>
<key>ConfigData</key>
<data>
AKccEACnHRAApx4hAKcfAgCnDAIAtxwgALcd
EAC3HqEAtx8CALcMAgDXHDAA1x0BANceFwDX
H5AA1wwCAOccQADnHQEA5x6gAOcfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - IDT 92HD66C3/65</string>
<key>CodecID</key>
<integer>287143667</integer>
<key>ConfigData</key>
<data>
AKccEACnHUAApx4hAKcfAgC3HCAAtx1AALce
EwC3H5AAxxwwAMcdkADHHoEAxx8CAOccQADn
HZAA5x6gAOcfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - IDT 92HD71B7X</string>
<key>CodecID</key>
<integer>287143602</integer>
<key>ConfigData</key>
<data>
AKccEACnHRAApx4hAKcfAAC3HCAAtx0QALce
gQC3HwIAxxwwAMcdAADHHvAAxx9AANccQADX
HQAA1x4XANcfkADnHFAA5x0QAOceoQDnHyAB
RxxgAUcdAAFHHvABRx9AAYcccAGHHQABhx6g
AYcfkAGXHIABlx0AAZce8AGXH0AB5xyQAecd
EAHnHkYB5x8BAfccoAH3HQAB9x7wAfcfQAIH
HLACBx0AAgce8AIHH0ACdxzAAncdAAJ3HvAC
dx9A
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Dell Studio 1535 - IDT 92HD73C1X5 by chunnann</string>
<key>CodecID</key>
<integer>287143541</integer>
<key>ConfigData</key>
<data>
AKccEACnHRAApx4hAKcfAwDXHCAA1x0BANce
FwDXH5AA5xwwAOcdEADnHoEA5x8DAPccQAD3
HRAA9x4BAPcfAwE3HFABNx0BATceoAE3H5A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>19</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - IDT 92HD81B1C5</string>
<key>CodecID</key>
<integer>287143637</integer>
<key>ConfigData</key>
<data>
AKccIACnHRAApx6BAKcfAgC3HDAAtx0QALce
IQC3HwIA1xxAANcdAADXHhcA1x+QARccUAEX
HQABFx6gARcfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Goldfish64 - IDT 92HD81B1C5 for Dell Latitude E6410</string>
<key>CodecID</key>
<integer>287143637</integer>
<key>ConfigData</key>
<data>
AKccIACnHRAApx6BAKcfBACnDAIAtxwwALcd
EAC3HiEAtx8EALcMAgDHHPAAxx0AAMceAADH
H0AA1xxAANcdAQDXHhcA1x+QANcMAgDnHPAA
5x0AAOceAADnH0AA9xzwAPcdAAD3HgAA9x9A
AQcc8AEHHQABBx4AAQcfQAEXHFABFx0BARce
oAEXH5AB9xzwAfcdAAH3HgAB9x9AAgcc8AIH
HQACBx4AAgcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - IDT 92HD81B1X5</string>
<key>CodecID</key>
<integer>287143429</integer>
<key>ConfigData</key>
<data>
AKccIACnHRAApx6hAKcfAQC3HBAAtx0QALce
IQC3HwEA1xwwANcdAADXHhcA1x+QAOcc8ADn
HQAA5x4AAOcfQAD3HEAA9x0AAPceAAD3H0AB
BxxQAQcdAAEHHgABBx9AARccYAEXHQABFx6j
ARcf0AH3HHAB9x0AAfceAAH3H0ACBxyAAgcd
AAIHHgACBx9A
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom IDT 92HD81B1X5 by Andres ZeroCross</string>
<key>CodecID</key>
<integer>283902515</integer>
<key>ConfigData</key>
<data>
ASccEAEnHRABJx6BAScfBAFHHCABRx0BAUce
FwFHH5ABRwwCAXcc8AF3HQABdx4AAXcfQAGH
HPABhx0AAYceAAGHH0ABlxzwAZcdAAGXHgAB
lx9AAacc8AGnHQABpx4AAacfQAG3HDABtx0B
AbceoAG3H5AB1xzwAdcdAAHXHgAB1x9AAecc
8AHnHQAB5x4AAecfQAIXHEACFx0QAhceIQIX
HwMCFwwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>RehabMan - IDT 92HD81B1X5</string>
<key>CodecID</key>
<integer>287143429</integer>
<key>ConfigData</key>
<data>
AMcegQDHHwMBFx6gARcfkA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom IDT 92HD81B1X5 by Sergey_Galan for HP ProBook 4520s</string>
<key>CodecID</key>
<integer>287143429</integer>
<key>ConfigData</key>
<data>
AKccIACnHRAApx6BAKcfAQC3HFAAtx0QALce
IQC3HwEA1xwwANcdAQDXHhAA1x+QAOcc8ADn
HQAA5x4AAOcfQAD3HPAA9x0AAPceAAD3H0AB
BxzwAQcdAAEHHgABBx9AARccEAEXHQEBFx6g
ARcfkAH3HPAB9x0AAfceAAH3H0ACBxzwAgcd
AAIHHgACBx9AAMcc8ADHHQAAxx4AAMcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>20</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom IDT 92HD81B1X5 by Sergey_Galan for HP DV6-6169er</string>
<key>CodecID</key>
<integer>287143429</integer>
<key>ConfigData</key>
<data>
AMccIADHHRAAxx6BAMcfAQC3HFAAtx0QALce
IQC3HwEA9xwwAPcdAQD3HhAA9x+QAOcc8ADn
HQAA5x4AAOcfQADXHPAA1x0AANceAADXH0AB
BxzwAQcdAAEHHgABBx9AARccEAEXHQEBFx6g
ARcfkAH3HPAB9x0AAfceAAH3H0ACBxzwAgcd
AAIHHgACBx9AAKcc8ACnHQAApx4AAKcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>21</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom IDT 92HD81B1X5 by Gujiangjiang for HP Pavilion g4 1000 series</string>
<key>CodecID</key>
<integer>287143429</integer>
<key>ConfigData</key>
<data>
ARccAAEXHQEBFx6jARcfmQDHHBAAxx0QAMce
gQDHHwEA1xwgANcdAQDXHhMA1x+ZALccMAC3
HRAAtx4hALcfAQFHDAI=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>28</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - IDT 92HD75B2X5</string>
<key>CodecID</key>
<integer>287143432</integer>
<key>ConfigData</key>
<data>
AKccEACnHRAApx4hAKcfAQC3HCAAtx0QALce
gQC3HwEAxxwwAMcdEADHHqAAxx+QANccQADX
HQAA1x4RANcfkADnHFAA5x0AAOce8ADnH0AB
RxxgAUcdAAFHHvABRx9AAYcccAGHHQABhx7w
AYcfQAHnHIAB5x0AAece8AHnH0AB9xyQAfcd
AAH3HvAB9x9AAgccoAIHHQACBx7wAgcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - IDT 92HD75B3X5</string>
<key>CodecID</key>
<integer>287143427</integer>
<key>ConfigData</key>
<data>
ALccEAC3HRAAtx6gALcfkADXHCAA1x0AANce
FwDXH5AA9xwwAPcdQAD3HiEA9x8BAYccQAGH
HZABhx6BAYcfAQ==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - IDT 92HD75B3X5</string>
<key>CodecID</key>
<integer>287143427</integer>
<key>ConfigData</key>
<data>
ALccAAC3HQAAtx6nALcfmQDXHBAA1x0AANce
FwDXH5kA9xwgAPcdQAD3HiEA9x8B
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>11</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - IDT 92HD90BXX</string>
<key>CodecID</key>
<integer>287143655</integer>
<key>ConfigData</key>
<data>
ALccEAC3HRAAtx4hALcfAACnHCAApx0QAKce
gQCnHwABFxwwARcdkAEXHqABFx+QANccQADX
HQAA1x4XANcfkADnHFAA5x0QAOceAQDnHyAA
9xxgAPcdEAD3HqEA9x8gAQcc8AEHHQABBx4A
AQcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>vusun123 - IDT 92HD90BXX</string>
<key>CodecID</key>
<integer>287143655</integer>
<key>ConfigData</key>
<data>
AKccIACnHRAApx6BAKcfAAC3HBAAtx0QALce
IQC3HwAA1xxAANcdAADXHhcA1x+QARccMAEX
HQABFx6gARcf0A==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - IDT 92HD91BXX </string>
<key>CodecID</key>
<integer>287143648</integer>
<key>ConfigData</key>
<data>
AKccAACnHRAApx6BAKcfAQC3HBAAtx0QALce
IQC3HwMAxxwgAMcdAADHHgAAxx9JARccMAEX
HQABFx6gARcfmQDXHEAA1x0BANceFwDXH5kA
5xxQAOcdEADnHgEA5x8jAQccYAEHHQABBx4A
AQcfSQH3HHAB9x0AAfceAAH3H0kCBxyAAgcd
AAIHHgACBx9J
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>RehabMan - IDT 92HD91BXX for HP Envy</string>
<key>CodecID</key>
<integer>287143648</integer>
<key>ConfigData</key>
<data>
AKccAACnHRAApx6BAKcfAQC3HBAAtx0QALce
IQC3HwMAxxwgAMcdAADHHgAAxx9JARccMAEX
HQABFx6gARcfmQD3HEAA9x0BAPceFwD3H5kA
5xxQAOcdEADnHgEA5x8jAQccYAEHHQABBx4A
AQcfSQH3HHAB9x0AAfceAAH3H0kCBxyAAgcd
AAIHHgACBx9J
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>MacPeet - IDT92HD91BXX for HP Envy 6 1171-SG</string>
<key>CodecID</key>
<integer>287143648</integer>
<key>ConfigData</key>
<data>
ALccEAC3HRAAtx4hALcfAAC3DAIAxxwgAMcd
EADHHoEAxx8AARccMAEXHQABFx6jARcfmQDX
HEAA1x0AANceEADXH5AA1wwC
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>13</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>jl4c - IDT 92HD91BXX for HP Envy</string>
<key>CodecID</key>
<integer>287143648</integer>
<key>ConfigData</key>
<data>
ALccIAC3HRAAtx4hALcfAwD3HDIA9x0BAPce
FwD3H5ABFxwQARcdAQEXHqYBFx+XANcc8ADX
HQAA1x4AANcfQAEHHPABBx0AAQceAAEHH0AA
pxzwAKcdAACnHgAApx9AAMcc8ADHHQAAxx4A
AMcfQADnHPAA5x0AAOceAADnH0AB9xzwAfcd
AAH3HgAB9x9AAgcc8AIHHQACBx4AAgcfQA==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>33</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>macish - IDT 92HD91BXX for HP Elitebook G1</string>
<key>CodecID</key>
<integer>287143648</integer>
<key>ConfigData</key>
<data>
AKccAACnHRAApx6BAKcfAQC3HBAAtx0QALce
IQC3HwMAxxwgAMcdAADHHgAAxx9JARccMAEX
HQABFx6gARcfmQD3HEAA9x0BAPceFwD3H5kA
5xxQAOcdEADnHgEA5x8jAQccYAEHHQABBx4A
AQcfSQH3HHAB9x0AAfceAAH3H0kCBxyAAgcd
AAIHHgACBx9J
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>84</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Custom - IDT 92HD93BXX Dell Latitude E6430</string>
<key>CodecID</key>
<integer>287143647</integer>
<key>ConfigData</key>
<data>
AKccIACnHRAApx6BAKcfAACnDAIAtxwQALcd
EAC3HiEAtx8AALcMAgDXHEAA1x0BANceFwDX
H5AA1wwCAOccUADnHRAA5x4BAOcfIADnDAIA
9xxgAPcdEAD3HoEA9x8gAQcc8AEHHQABBx4A
AQcfQAEXHDABFx0BARceoAEXH5A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>12</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - IDT 92HD99BXX </string>
<key>CodecID</key>
<integer>287143653</integer>
<key>ConfigData</key>
<data>
AKccEACnHZAApx6BAKcfAgC3HCAAtx1AALce
IQC3HwIAxxwwAMcdAADHHvAAxx9AANccQADX
HQAA1x4TANcf0AD3HFAA9x0AAPce8AD3H0AB
FxxgARcdAAEXHqABFx+QANcMAg==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - IDT 92HD87B1</string>
<key>CodecID</key>
<integer>287143429</integer>
<key>ConfigData</key>
<data>
AKccIACnHRAApx6hAKcfAQC3HBAAtx0QALce
IQC3HwEA1xwwANcdAADXHhcA1x+QAOcc8ADn
HQAA5x4AAOcfQAD3HEAA9x0AAPceAAD3H0AB
BxxQAQcdAAEHHgABBx9AARccYAEXHQABFx6j
ARcf0AH3HHAB9x0AAfceAAH3H0ACBxyAAgcd
AAIHHgACBx9A
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - VIA VT1802</string>
<key>CodecID</key>
<integer>285639750</integer>
<key>ConfigData</key>
<data>
AkccEAJHHQACRx4TAkcfkAJXHCACVx1AAlce
IQJXHwEClxxAApcdAAKXHqAClx+QArccYAK3
HZACtx6BArcfAgLXHHAC1x0QAtceRALXHwAC
RwwCAlcMAw==
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>3</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>ChalesYu - VIA VT1802</string>
<key>CodecID</key>
<integer>285639750</integer>
<key>ConfigData</key>
<data>
AkccQAJHHQACRx4XAkcfkAJHDAICVxxQAlcd
EAJXHiECVx8CAlcMAgMHHBADBx0AAwceoAMH
H5A=
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>33</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - VIA VT2021</string>
<key>CodecID</key>
<integer>285606977</integer>
<key>ConfigData</key>
<data>
IkccECJHHUAiRx4BIkcfASKHHCAihx1AIoce
ISKHHwEilxwwIpcdkCKXHqEilx8CIqccQCKn
HTAipx6BIqcfASK3HFAitx2QIrcegSK3HwEi
5xxgIucdECLnHkUi5x8A
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>5</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>Mirone - VIA VT2021</string>
<key>CodecID</key>
<integer>285606977</integer>
<key>ConfigData</key>
<data>
IkccECJHHUAiRx4RIkcfASJXHCAiVx0QIlce
ASJXHwEiZxwwImcdYCJnHgEiZx8BInccQCJ3
HSAidx4BIncfASKHHFAihx1AIoceISKHHwEi
lxxgIpcdkCKXHqEilx8CIqcccCKnHTAipx6B
IqcfASK3HIAitx2QIrcegSK3HwEi5xygIucd
ECLnHkUi5x8A
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>7</integer>
</dict>
<dict>
<key>AFGLowPowerState</key>
<data>
AwAAAA==
</data>
<key>Codec</key>
<string>SonicBSV - VIA VT2020/2021</string>
<key>CodecID</key>
<integer>285606977</integer>
<key>ConfigData</key>
<data>
Ihcc8CIXHQAiFx4AIhcfQCJHHBAiRx1AIkce
ESJHHwEiRwwCIlcc8CJXHQAiVx4AIlcfQCJn
HPAiZx0AImceACJnH0AidxzwIncdACJ3HgAi
dx9AIoccICKHHUAihx4hIocfASKXHEAilx2Q
IpceoCKXH5AilwchIqccgCKnHTAipx6BIqcf
ASK3HPAitx0AIrceACK3H0AixxzwIscdACLH
HgAixx9AItcc8CLXHQAi1x4AItcfQCLnHJAi
5x1hIuceSyLnHwEi9xzwIvcdACL3HgAi9x9A
</data>
<key>FuncGroup</key>
<integer>1</integer>
<key>LayoutID</key>
<integer>9</integer>
</dict>
</array>
<key>IOClass</key>
<string>AppleHDAHardwareConfigDriver</string>
<key>IOMatchCategory</key>
<string>AppleHDAHardwareConfigDriver</string>
<key>IOProviderClass</key>
<string>AppleHDAHardwareConfigDriverLoader</string>
</dict>
<key>as.vit9696.AppleALC</key>
<dict>
<key>CFBundleIdentifier</key>
<string>as.vit9696.AppleALC</string>
<key>IOClass</key>
<string>AppleALC</string>
<key>IOMatchCategory</key>
<string>AppleALC</string>
<key>IOProviderClass</key>
<string>IOResources</string>
<key>IOResourceMatch</key>
<string>IOKit</string>
</dict>
<key>as.vit9696.AppleALCAudio</key>
<dict>
<key>CFBundleIdentifier</key>
<string>as.vit9696.AppleALC</string>
<key>IOClass</key>
<string>AppleALCAudio</string>
<key>IOMatchCategory</key>
<string>IOService</string>
<key>IOPCIClassMatch</key>
<string>0x04030000&0xffff0000</string>
<key>IOPCIMatch</key>
<string>0x00008086&0x0000ffff</string>
<key>IOProbeScore</key>
<integer>80000</integer>
<key>IOProviderClass</key>
<string>IOPCIDevice</string>
</dict>
</dict>
<key>OSBundleCompatibleVersion</key>
<string>1.0</string>
<key>OSBundleLibraries</key>
<dict>
<key>as.vit9696.Lilu</key>
<string>1.2.0</string>
<key>com.apple.iokit.IOPCIFamily</key>
<string>1.0.0b1</string>
<key>com.apple.kpi.bsd</key>
<string>12.0.0</string>
<key>com.apple.kpi.dsep</key>
<string>12.0.0</string>
<key>com.apple.kpi.iokit</key>
<string>12.0.0</string>
<key>com.apple.kpi.libkern</key>
<string>12.0.0</string>
<key>com.apple.kpi.mach</key>
<string>12.0.0</string>
<key>com.apple.kpi.unsupported</key>
<string>12.0.0</string>
</dict>
<key>OSBundleRequired</key>
<string>Root</string>
</dict>
</plist>
``` | /content/code_sandbox/Clover-Configs/Asus/FL5900/CLOVER/kexts/Other/AppleALC.kext/Contents/Info.plist | xml | 2016-11-05T04:22:54 | 2024-08-12T19:25:53 | Hackintosh-Installer-University | huangyz0918/Hackintosh-Installer-University | 3,937 | 77,544 |
```xml
import { RelationItem, ViewConfig } from './index';
export type Report<TData, TContext> = {
id: string;
name?: string;
compilation?: string | null;
relations?: RelationItem[];
data?: TData | (() => Promise<TData> | TData);
context?: TContext;
view: ViewConfig<TData, TContext>;
};
``` | /content/code_sandbox/packages/types/types/custom-report.d.ts | xml | 2016-11-30T14:09:21 | 2024-08-15T18:52:57 | statoscope | statoscope/statoscope | 1,423 | 81 |
```xml
import { boolean, object, SchemaOf, string } from 'yup';
import { validation as tunnelValidation } from '@/react/portainer/common/PortainerTunnelAddrField';
import { validation as urlValidation } from '@/react/portainer/common/PortainerUrlField';
import { isBE } from '@/react/portainer/feature-flags/feature-flags.service';
import { FormValues } from './types';
export function validationSchema(): SchemaOf<FormValues> {
return object()
.shape({
EnableEdgeComputeFeatures: boolean().required('This field is required.'),
EnforceEdgeID: boolean().required('This field is required.'),
})
.concat(
isBE
? object({
EdgePortainerUrl: urlValidation(),
Edge: object({
TunnelServerAddress: tunnelValidation(),
}),
})
: object({
EdgePortainerUrl: string().default(''),
Edge: object({
TunnelServerAddress: string().default(''),
}),
})
);
}
``` | /content/code_sandbox/app/react/portainer/settings/EdgeComputeView/EdgeComputeSettings/EdgeComputeSettings.validation.ts | xml | 2016-05-19T20:15:28 | 2024-08-16T19:15:14 | portainer | portainer/portainer | 30,083 | 212 |
```xml
<vector android:height="24dp" android:tint="@android:color/white"
android:viewportHeight="24" android:viewportWidth="24"
android:width="24dp" xmlns:android="path_to_url">
<path android:fillColor="@android:color/white" android:pathData="M19.43,12.98c0.04,-0.32 0.07,-0.64 0.07,-0.98 0,-0.34 -0.03,-0.66 -0.07,-0.98l2.11,-1.65c0.19,-0.15 0.24,-0.42 0.12,-0.64l-2,-3.46c-0.09,-0.16 -0.26,-0.25 -0.44,-0.25 -0.06,0 -0.12,0.01 -0.17,0.03l-2.49,1c-0.52,-0.4 -1.08,-0.73 -1.69,-0.98l-0.38,-2.65C14.46,2.18 14.25,2 14,2h-4c-0.25,0 -0.46,0.18 -0.49,0.42l-0.38,2.65c-0.61,0.25 -1.17,0.59 -1.69,0.98l-2.49,-1c-0.06,-0.02 -0.12,-0.03 -0.18,-0.03 -0.17,0 -0.34,0.09 -0.43,0.25l-2,3.46c-0.13,0.22 -0.07,0.49 0.12,0.64l2.11,1.65c-0.04,0.32 -0.07,0.65 -0.07,0.98 0,0.33 0.03,0.66 0.07,0.98l-2.11,1.65c-0.19,0.15 -0.24,0.42 -0.12,0.64l2,3.46c0.09,0.16 0.26,0.25 0.44,0.25 0.06,0 0.12,-0.01 0.17,-0.03l2.49,-1c0.52,0.4 1.08,0.73 1.69,0.98l0.38,2.65c0.03,0.24 0.24,0.42 0.49,0.42h4c0.25,0 0.46,-0.18 0.49,-0.42l0.38,-2.65c0.61,-0.25 1.17,-0.59 1.69,-0.98l2.49,1c0.06,0.02 0.12,0.03 0.18,0.03 0.17,0 0.34,-0.09 0.43,-0.25l2,-3.46c0.12,-0.22 0.07,-0.49 -0.12,-0.64l-2.11,-1.65zM17.45,11.27c0.04,0.31 0.05,0.52 0.05,0.73 0,0.21 -0.02,0.43 -0.05,0.73l-0.14,1.13 0.89,0.7 1.08,0.84 -0.7,1.21 -1.27,-0.51 -1.04,-0.42 -0.9,0.68c-0.43,0.32 -0.84,0.56 -1.25,0.73l-1.06,0.43 -0.16,1.13 -0.2,1.35h-1.4l-0.19,-1.35 -0.16,-1.13 -1.06,-0.43c-0.43,-0.18 -0.83,-0.41 -1.23,-0.71l-0.91,-0.7 -1.06,0.43 -1.27,0.51 -0.7,-1.21 1.08,-0.84 0.89,-0.7 -0.14,-1.13c-0.03,-0.31 -0.05,-0.54 -0.05,-0.74s0.02,-0.43 0.05,-0.73l0.14,-1.13 -0.89,-0.7 -1.08,-0.84 0.7,-1.21 1.27,0.51 1.04,0.42 0.9,-0.68c0.43,-0.32 0.84,-0.56 1.25,-0.73l1.06,-0.43 0.16,-1.13 0.2,-1.35h1.39l0.19,1.35 0.16,1.13 1.06,0.43c0.43,0.18 0.83,0.41 1.23,0.71l0.91,0.7 1.06,-0.43 1.27,-0.51 0.7,1.21 -1.07,0.85 -0.89,0.7 0.14,1.13zM12,8c-2.21,0 -4,1.79 -4,4s1.79,4 4,4 4,-1.79 4,-4 -1.79,-4 -4,-4zM12,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
</vector>
``` | /content/code_sandbox/app/src/main/res/drawable-night/ic_outline_settings_24.xml | xml | 2016-02-01T23:48:36 | 2024-08-15T03:35:42 | TagMo | HiddenRamblings/TagMo | 2,976 | 1,396 |
```xml
import React, { useState } from 'react';
import EmptyState from '@erxes/ui/src/components/EmptyState';
import ModalTrigger from '@erxes/ui/src/components/ModalTrigger';
import Select from 'react-select';
import { __ } from '@erxes/ui/src/utils';
import debounce from 'lodash/debounce';
type Props = {
object: any;
searchObject: (value: string, callback: (objects: any[]) => void) => void;
mergeForm: any;
generateOptions: (objects: any[]) => void;
onSave: (doc: { ids: string[]; data: any }) => void;
};
const TargetMergeModal: React.FC<Props> = ({
object,
searchObject,
mergeForm,
generateOptions,
onSave,
}) => {
const [objects, setObjects] = useState<any[]>([]);
const [selectedObject, setSelectedObject] = useState<any>({});
const handleSearch = (value: string) => {
debounce(() => {
searchObject(value, (objs) => setObjects(objs));
}, 1000)();
};
const onSelect = (option: any) => {
setSelectedObject(JSON.parse(option.value));
};
const renderMerger = ({ closeModal }: { closeModal: () => void }) => {
if (!selectedObject._id) {
return <EmptyState icon="search" text="Please select one to merge" />;
}
const MergeForm = mergeForm;
return (
<MergeForm
objects={[object, selectedObject]}
save={onSave}
closeModal={closeModal}
/>
);
};
const renderSelect = () => {
return (
<Select
placeholder="Search"
onInputChange={(value) => handleSearch(value)}
onFocus={() => handleSearch('')}
onChange={onSelect}
isClearable={true}
options={generateOptions(objects) as any}
/>
);
};
const modalContent = (props: { closeModal: () => void }) => {
return (
<React.Fragment>
{renderSelect()}
<br />
{renderMerger(props)}
</React.Fragment>
);
};
return (
<ModalTrigger
title={__('Merge')}
trigger={<a>{__('Merge')}</a>}
size="lg"
content={modalContent}
/>
);
};
export default TargetMergeModal;
``` | /content/code_sandbox/packages/ui-contacts/src/customers/components/common/TargetMerge.tsx | xml | 2016-11-11T06:54:50 | 2024-08-16T10:26:06 | erxes | erxes/erxes | 3,479 | 507 |
```xml
import Link from 'next/link'
export default function Layout({ children, modal, params }) {
return (
<>
<div>
<Link href="/feed">feed</Link>
</div>
<div>
Photos: <Link href="/photos/1">Photo 1</Link>{' '}
<Link href="/photos/2">Photo 2</Link>
</div>
<div>{params.lang}</div>
<div id="children">{children}</div>
<div id="modal">{modal}</div>
</>
)
}
``` | /content/code_sandbox/test/e2e/app-dir/interception-middleware-rewrite/app/[lang]/layout.tsx | xml | 2016-10-05T23:32:51 | 2024-08-16T19:44:30 | next.js | vercel/next.js | 124,056 | 122 |
```xml
import markdownStyles from "./markdown-styles.module.css";
export default function PostBody({ content }) {
return (
<div className="max-w-2xl mx-auto">
<div
className={markdownStyles["markdown"]}
dangerouslySetInnerHTML={{ __html: content }}
/>
</div>
);
}
``` | /content/code_sandbox/examples/cms-agilitycms/components/post-body.tsx | xml | 2016-10-05T23:32:51 | 2024-08-16T19:44:30 | next.js | vercel/next.js | 124,056 | 68 |
```xml
import { Observable } from '../Observable';
import { Operator } from '../Operator';
import { Subscriber } from '../Subscriber';
import { EmptyError } from '../util/EmptyError';
import { OperatorFunction } from '../../internal/types';
import { filter } from './filter';
import { take } from './take';
import { defaultIfEmpty } from './defaultIfEmpty';
import { throwIfEmpty } from './throwIfEmpty';
import { identity } from '../util/identity';
/* tslint:disable:max-line-length */
export function first<T, D = T>(
predicate?: null,
defaultValue?: D
): OperatorFunction<T, T | D>;
export function first<T, S extends T>(
predicate: (value: T, index: number, source: Observable<T>) => value is S,
defaultValue?: S
): OperatorFunction<T, S>;
export function first<T, D = T>(
predicate: (value: T, index: number, source: Observable<T>) => boolean,
defaultValue?: D
): OperatorFunction<T, T | D>;
/* tslint:enable:max-line-length */
/**
* Emits only the first value (or the first value that meets some condition)
* emitted by the source Observable.
*
* <span class="informal">Emits only the first value. Or emits only the first
* value that passes some test.</span>
*
* 
*
* If called with no arguments, `first` emits the first value of the source
* Observable, then completes. If called with a `predicate` function, `first`
* emits the first value of the source that matches the specified condition. It
* may also take a deprecated `resultSelector` function to produce the output
* value from the input value, and a `defaultValue` to emit in case the source
* completes before it is able to emit a valid value. Throws an error if
* `defaultValue` was not provided and a matching element is not found.
*
* ## Examples
* Emit only the first click that happens on the DOM
* ```javascript
* const clicks = fromEvent(document, 'click');
* const result = clicks.pipe(first());
* result.subscribe(x => console.log(x));
* ```
*
* Emits the first click that happens on a DIV
* ```javascript
* const clicks = fromEvent(document, 'click');
* const result = clicks.pipe(first(ev => ev.target.tagName === 'DIV'));
* result.subscribe(x => console.log(x));
* ```
*
* @see {@link filter}
* @see {@link find}
* @see {@link take}
*
* @throws {EmptyError} Delivers an EmptyError to the Observer's `error`
* callback if the Observable completes before any `next` notification was sent.
*
* @param {function(value: T, index: number, source: Observable<T>): boolean} [predicate]
* An optional function called with each item to test for condition matching.
* @param {R} [defaultValue] The default value emitted in case no valid value
* was found on the source.
* @return {Observable<T|R>} An Observable of the first item that matches the
* condition.
* @method first
* @owner Observable
*/
export function first<T, D>(
predicate?: ((value: T, index: number, source: Observable<T>) => boolean) | null,
defaultValue?: D
): OperatorFunction<T, T | D> {
const hasDefaultValue = arguments.length >= 2;
return (source: Observable<T>) => source.pipe(
predicate ? filter((v, i) => predicate(v, i, source)) : identity,
take(1),
hasDefaultValue ? defaultIfEmpty<T | D>(defaultValue) : throwIfEmpty(() => new EmptyError()),
);
}
``` | /content/code_sandbox/deps/node-10.15.3/tools/node_modules/eslint/node_modules/rxjs/src/internal/operators/first.ts | xml | 2016-09-05T10:18:44 | 2024-08-11T13:21:40 | LiquidCore | LiquidPlayer/LiquidCore | 1,010 | 787 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.