waha-shared 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.DS_Store +0 -0
- package/README.md +10 -0
- package/__init__.py +0 -0
- package/copy.ts +37 -0
- package/data/README.md +45 -0
- package/data/__init__.py +0 -0
- package/data/aslTimestamps.json +192788 -0
- package/data/bibleAudios.json +394 -0
- package/data/bibleAudios.ts +4 -0
- package/data/bibleResources/audioBibleLicenses.json +6235 -0
- package/data/bibleResources/bibleBooks.json +6071 -0
- package/data/bibleResources/bibleBooks.ts +4 -0
- package/data/bibleResources/bibleChaptersList.json +1191 -0
- package/data/bibleResources/bibleChaptersList.ts +4 -0
- package/data/bibleResources/textBibleLicenses.json +14603 -0
- package/data/bibleStatuses.json +9196 -0
- package/data/bibleStatuses.ts +4 -0
- package/data/bibleTexts.json +527 -0
- package/data/bibleTexts.ts +4 -0
- package/data/clones.json +13 -0
- package/data/countryResources/areas.json +74 -0
- package/data/countryResources/areas.ts +4 -0
- package/data/countryResources/countries.json +3362 -0
- package/data/countryResources/countries.ts +4 -0
- package/data/foundationsCurriculums.json +130 -0
- package/data/foundationsCurriculums.ts +4 -0
- package/data/languageResources/countriesAndLanguages.json +11718 -0
- package/data/languageResources/countriesAndLanguages.ts +16 -0
- package/data/languageResources/crowdinLanguages.json +2172 -0
- package/data/languageResources/iosVoiceOverLanguages.json +64 -0
- package/data/languageResources/iso6933LanguageCodes.json +7927 -0
- package/data/languageResources/mmsLanguages.json +28164 -0
- package/data/languageResources/phoneLanguages.json +1532 -0
- package/data/languageResources/phoneLanguages.ts +14 -0
- package/data/languages.json +7045 -0
- package/data/languages.ts +4 -0
- package/data/mediaDurations.json +32364 -0
- package/data/mediaDurations.ts +4 -0
- package/data/notification.json +69 -0
- package/data/notification.ts +4 -0
- package/data/numeralMaps.json +26 -0
- package/data/numeralMaps.ts +4 -0
- package/data/orphanedBibleTexts.json +2747 -0
- package/data/questions.json +317 -0
- package/data/questions.ts +4 -0
- package/data/questionsCurriculums.json +753 -0
- package/data/questionsCurriculums.ts +4 -0
- package/data/releaseNotes.json +2381 -0
- package/data/releaseNotes.ts +4 -0
- package/data/schemas/appTranslations.schema.json +802 -0
- package/data/schemas/areas.schema.json +76 -0
- package/data/schemas/aslTimestamps.schema.json +59 -0
- package/data/schemas/bibleAudios.schema.json +37 -0
- package/data/schemas/bibleBooks.schema.json +112 -0
- package/data/schemas/bibleChapters.schema.json +61 -0
- package/data/schemas/bibleStatuses.schema.json +41 -0
- package/data/schemas/bibleTexts.schema.json +60 -0
- package/data/schemas/clones.schema.json +63 -0
- package/data/schemas/countries.schema.json +84 -0
- package/data/schemas/foundationsCurriculums.schema.json +20 -0
- package/data/schemas/introductionTranslations.schema.json +101 -0
- package/data/schemas/languages.schema.json +365 -0
- package/data/schemas/mediaDurations.schema.json +41 -0
- package/data/schemas/notification.schema.json +111 -0
- package/data/schemas/numeralMaps.schema.json +57 -0
- package/data/schemas/questionTranslations.schema.json +20 -0
- package/data/schemas/questions.schema.json +29 -0
- package/data/schemas/questionsCurriculums.schema.json +34 -0
- package/data/schemas/releaseNotes.schema.json +21 -0
- package/data/schemas/screenshots.schema.json +23 -0
- package/data/schemas/setTranslations.schema.json +70 -0
- package/data/schemas/sets.schema.json +109 -0
- package/data/schemas/topicsCurriculums.schema.json +20 -0
- package/data/screenshots.json +17 -0
- package/data/screenshots.ts +4 -0
- package/data/sets.json +12258 -0
- package/data/sets.ts +4 -0
- package/data/specialIds.json +72 -0
- package/data/specialIds.ts +19 -0
- package/data/timings/som.json +9150 -0
- package/data/topicsCurriculums.json +131 -0
- package/data/topicsCurriculums.ts +4 -0
- package/data/typescript/appTranslations.ts +322 -0
- package/data/typescript/areas.ts +45 -0
- package/data/typescript/aslTimestamps.ts +36 -0
- package/data/typescript/bibleAudioAvailableChapters.ts +35 -0
- package/data/typescript/bibleAudios.ts +32 -0
- package/data/typescript/bibleBookNames.ts +97 -0
- package/data/typescript/bibleBooks.ts +63 -0
- package/data/typescript/bibleChapters.ts +40 -0
- package/data/typescript/bibleStatuses.ts +54 -0
- package/data/typescript/bibleTextAvailableChapters.ts +35 -0
- package/data/typescript/bibleTexts.ts +63 -0
- package/data/typescript/clones.ts +35 -0
- package/data/typescript/countries.ts +152 -0
- package/data/typescript/foundationsCurriculums.ts +15 -0
- package/data/typescript/introductionTranslations.ts +60 -0
- package/data/typescript/languages.ts +369 -0
- package/data/typescript/mediaDurations.ts +89 -0
- package/data/typescript/notification.ts +189 -0
- package/data/typescript/numeralMaps.ts +74 -0
- package/data/typescript/questionTranslations.ts +6 -0
- package/data/typescript/questions.ts +25 -0
- package/data/typescript/questionsCurriculums.ts +26 -0
- package/data/typescript/releaseNotes.ts +10 -0
- package/data/typescript/screenshots.ts +52 -0
- package/data/typescript/setTranslations.ts +39 -0
- package/data/typescript/sets.ts +105 -0
- package/data/typescript/topicsCurriculums.ts +15 -0
- package/data/youtube/playlists.json +28 -0
- package/data/youtube/videos.json +262 -0
- package/data/youtube/videos.ts +2 -0
- package/functions/activeCampaign.ts +127 -0
- package/functions/bibleChapterUtils.ts +241 -0
- package/functions/crowdin.ts +51 -0
- package/functions/languages.ts +284 -0
- package/functions/scripturePassages.ts +368 -0
- package/functions/sets.ts +495 -0
- package/package.json +10 -0
- package/translations/appTranslations.json +10239 -0
- package/translations/appTranslations.ts +4 -0
- package/translations/introductionTranslations.json +422 -0
- package/translations/introductionTranslations.ts +4 -0
- package/translations/questionTranslations.json +1472 -0
- package/translations/questionTranslations.ts +4 -0
- package/translations/setTranslations.json +30257 -0
- package/translations/setTranslations.ts +4 -0
- package/translations/spokenQuestionTranslations.json +1472 -0
- package/types/analytics.ts +147 -0
- package/types/completions.ts +9 -0
- package/types/feedback.ts +27 -0
- package/types/languages.ts +37 -0
- package/types/notifications.ts +37 -0
- package/types/sets.ts +84 -0
- package/types/users.ts +162 -0
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
|
|
3
|
+
export const numeralMaps = z
|
|
4
|
+
.record(
|
|
5
|
+
z.union([
|
|
6
|
+
z
|
|
7
|
+
.object({
|
|
8
|
+
'0': z.string().describe('Character representation of digit 0'),
|
|
9
|
+
'1': z.string().describe('Character representation of digit 1'),
|
|
10
|
+
'2': z.string().describe('Character representation of digit 2'),
|
|
11
|
+
'3': z.string().describe('Character representation of digit 3'),
|
|
12
|
+
'4': z.string().describe('Character representation of digit 4'),
|
|
13
|
+
'5': z.string().describe('Character representation of digit 5'),
|
|
14
|
+
'6': z.string().describe('Character representation of digit 6'),
|
|
15
|
+
'7': z.string().describe('Character representation of digit 7'),
|
|
16
|
+
'8': z.string().describe('Character representation of digit 8'),
|
|
17
|
+
'9': z.string().describe('Character representation of digit 9'),
|
|
18
|
+
})
|
|
19
|
+
.strict()
|
|
20
|
+
.describe('A numeral system mapping'),
|
|
21
|
+
z.never(),
|
|
22
|
+
])
|
|
23
|
+
)
|
|
24
|
+
.superRefine((value, ctx) => {
|
|
25
|
+
for (const key in value) {
|
|
26
|
+
let evaluated = false
|
|
27
|
+
if (key.match(new RegExp('^.*$'))) {
|
|
28
|
+
evaluated = true
|
|
29
|
+
const result = z
|
|
30
|
+
.object({
|
|
31
|
+
'0': z.string().describe('Character representation of digit 0'),
|
|
32
|
+
'1': z.string().describe('Character representation of digit 1'),
|
|
33
|
+
'2': z.string().describe('Character representation of digit 2'),
|
|
34
|
+
'3': z.string().describe('Character representation of digit 3'),
|
|
35
|
+
'4': z.string().describe('Character representation of digit 4'),
|
|
36
|
+
'5': z.string().describe('Character representation of digit 5'),
|
|
37
|
+
'6': z.string().describe('Character representation of digit 6'),
|
|
38
|
+
'7': z.string().describe('Character representation of digit 7'),
|
|
39
|
+
'8': z.string().describe('Character representation of digit 8'),
|
|
40
|
+
'9': z.string().describe('Character representation of digit 9'),
|
|
41
|
+
})
|
|
42
|
+
.strict()
|
|
43
|
+
.describe('A numeral system mapping')
|
|
44
|
+
.safeParse(value[key])
|
|
45
|
+
if (!result.success) {
|
|
46
|
+
ctx.addIssue({
|
|
47
|
+
path: [...ctx.path, key],
|
|
48
|
+
code: 'custom',
|
|
49
|
+
message: `Invalid input: Key matching regex /${key}/ must match schema`,
|
|
50
|
+
params: {
|
|
51
|
+
issues: result.error.issues,
|
|
52
|
+
},
|
|
53
|
+
})
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
if (!evaluated) {
|
|
57
|
+
const result = z.never().safeParse(value[key])
|
|
58
|
+
if (!result.success) {
|
|
59
|
+
ctx.addIssue({
|
|
60
|
+
path: [...ctx.path, key],
|
|
61
|
+
code: 'custom',
|
|
62
|
+
message: `Invalid input: must match catchall schema`,
|
|
63
|
+
params: {
|
|
64
|
+
issues: result.error.issues,
|
|
65
|
+
},
|
|
66
|
+
})
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
})
|
|
71
|
+
.describe(
|
|
72
|
+
'Maps of numeral systems with digits 0-9 to their corresponding characters'
|
|
73
|
+
)
|
|
74
|
+
export type NumeralMaps = z.infer<typeof numeralMaps>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
|
|
3
|
+
export const questions = z.array(
|
|
4
|
+
z.object({
|
|
5
|
+
questionId: z.string(),
|
|
6
|
+
name: z
|
|
7
|
+
.string()
|
|
8
|
+
.describe(
|
|
9
|
+
'A shorthand name for the question so the question can be identified more easily.'
|
|
10
|
+
),
|
|
11
|
+
comment: z.string(),
|
|
12
|
+
hasBeep: z
|
|
13
|
+
.boolean()
|
|
14
|
+
.describe(
|
|
15
|
+
'Whether or not the question should have a beep after, which indicates whether or not the group should pause and discuss.'
|
|
16
|
+
),
|
|
17
|
+
music: z
|
|
18
|
+
.enum(['outroLong', 'outroShort', 'intro'])
|
|
19
|
+
.describe(
|
|
20
|
+
'The type of music used for the question. All types use the same music file. This determines where the music will be in the question and for how long.'
|
|
21
|
+
)
|
|
22
|
+
.optional(),
|
|
23
|
+
})
|
|
24
|
+
)
|
|
25
|
+
export type Questions = z.infer<typeof questions>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
|
|
3
|
+
export const questionsCurriculums = z.array(
|
|
4
|
+
z
|
|
5
|
+
.object({
|
|
6
|
+
curriculumId: z.string(),
|
|
7
|
+
questionSets: z
|
|
8
|
+
.array(
|
|
9
|
+
z
|
|
10
|
+
.object({
|
|
11
|
+
questionSetId: z.string(),
|
|
12
|
+
questions: z
|
|
13
|
+
.array(z.string())
|
|
14
|
+
.describe(
|
|
15
|
+
'An array of question ids that make up this question set.'
|
|
16
|
+
),
|
|
17
|
+
})
|
|
18
|
+
.strict()
|
|
19
|
+
)
|
|
20
|
+
.describe(
|
|
21
|
+
'An array of question sets that make up this questions curriculum.'
|
|
22
|
+
),
|
|
23
|
+
})
|
|
24
|
+
.strict()
|
|
25
|
+
)
|
|
26
|
+
export type QuestionsCurriculums = z.infer<typeof questionsCurriculums>
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
|
|
3
|
+
export const screenshots = z
|
|
4
|
+
.object({
|
|
5
|
+
fakeLocales: z
|
|
6
|
+
.record(z.union([z.string().regex(new RegExp('^[A-Z]{2}$')), z.never()]))
|
|
7
|
+
.superRefine((value, ctx) => {
|
|
8
|
+
for (const key in value) {
|
|
9
|
+
let evaluated = false
|
|
10
|
+
if (key.match(new RegExp('^[a-z]{3}$'))) {
|
|
11
|
+
evaluated = true
|
|
12
|
+
const result = z
|
|
13
|
+
.string()
|
|
14
|
+
.regex(new RegExp('^[A-Z]{2}$'))
|
|
15
|
+
.safeParse(value[key])
|
|
16
|
+
if (!result.success) {
|
|
17
|
+
ctx.addIssue({
|
|
18
|
+
path: [...ctx.path, key],
|
|
19
|
+
code: 'custom',
|
|
20
|
+
message: `Invalid input: Key matching regex /${key}/ must match schema`,
|
|
21
|
+
params: {
|
|
22
|
+
issues: result.error.issues,
|
|
23
|
+
},
|
|
24
|
+
})
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
if (!evaluated) {
|
|
28
|
+
const result = z.never().safeParse(value[key])
|
|
29
|
+
if (!result.success) {
|
|
30
|
+
ctx.addIssue({
|
|
31
|
+
path: [...ctx.path, key],
|
|
32
|
+
code: 'custom',
|
|
33
|
+
message: `Invalid input: must match catchall schema`,
|
|
34
|
+
params: {
|
|
35
|
+
issues: result.error.issues,
|
|
36
|
+
},
|
|
37
|
+
})
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
})
|
|
42
|
+
.describe(
|
|
43
|
+
'A map of Waha language ids to country ids. This is used to show a realistic list of recommended languages when taking screenshots for a given language.'
|
|
44
|
+
),
|
|
45
|
+
screenshotMode: z
|
|
46
|
+
.boolean()
|
|
47
|
+
.describe(
|
|
48
|
+
'Whether or not to make the app in screenshot mode. This disables several parts of the app and sets it up to be remotely controlled via the leviathan/take_store_screenshots.py script.'
|
|
49
|
+
),
|
|
50
|
+
})
|
|
51
|
+
.strict()
|
|
52
|
+
export type Screenshots = z.infer<typeof screenshots>
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
|
|
3
|
+
export const setTranslations = z
|
|
4
|
+
.record(
|
|
5
|
+
z
|
|
6
|
+
.array(
|
|
7
|
+
z.object({
|
|
8
|
+
setId: z.string().min(1).describe('Identifier of the set.'),
|
|
9
|
+
setTitle: z.string().min(1).describe('Localized title for the set.'),
|
|
10
|
+
setDescription: z
|
|
11
|
+
.string()
|
|
12
|
+
.describe('Localized description for the set.')
|
|
13
|
+
.optional(),
|
|
14
|
+
setTag: z
|
|
15
|
+
.string()
|
|
16
|
+
.min(1)
|
|
17
|
+
.describe('Optional topical tag for the set.')
|
|
18
|
+
.optional(),
|
|
19
|
+
sectionBodies: z
|
|
20
|
+
.record(z.string().min(1))
|
|
21
|
+
.describe('Mapping of sectionId to localized section body text.')
|
|
22
|
+
.optional(),
|
|
23
|
+
sectionHeaders: z
|
|
24
|
+
.record(z.string().min(1))
|
|
25
|
+
.describe('Mapping of sectionId to localized section header text.')
|
|
26
|
+
.optional(),
|
|
27
|
+
lessonTitles: z
|
|
28
|
+
.record(z.string().min(1))
|
|
29
|
+
.describe('Mapping of lessonId to localized lesson title.'),
|
|
30
|
+
})
|
|
31
|
+
)
|
|
32
|
+
.describe(
|
|
33
|
+
'Array of translated sets for a given 3-letter language id (ISO-ish).'
|
|
34
|
+
)
|
|
35
|
+
)
|
|
36
|
+
.describe(
|
|
37
|
+
'Record of language ids to arrays of translated sets used by the app. Produced by scripts/prebuild/combine.ts (setTranslations.json). Each set item merges metadata translation fields (setTitle, setDescription, lessonTitles, etc.) under a setId.'
|
|
38
|
+
)
|
|
39
|
+
export type SetTranslations = z.infer<typeof setTranslations>
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
|
|
3
|
+
export const sets = z.array(
|
|
4
|
+
z.object({
|
|
5
|
+
setId: z
|
|
6
|
+
.string()
|
|
7
|
+
.regex(new RegExp('^[0-9]{2}\\.[0-9]{3}$'))
|
|
8
|
+
.describe(
|
|
9
|
+
'A unique identifier for this set. This is used to identify the set in the curriculum.'
|
|
10
|
+
),
|
|
11
|
+
name: z
|
|
12
|
+
.string()
|
|
13
|
+
.describe(
|
|
14
|
+
'The English name for the set. This is just for identifying the name in the backend but will not be used in the app.'
|
|
15
|
+
),
|
|
16
|
+
comment: z
|
|
17
|
+
.string()
|
|
18
|
+
.describe(
|
|
19
|
+
'A comment about the set. This is just for identifying the set in the backend but will not be used in the app.'
|
|
20
|
+
)
|
|
21
|
+
.optional(),
|
|
22
|
+
icon: z
|
|
23
|
+
.enum([
|
|
24
|
+
'bible',
|
|
25
|
+
'bricks',
|
|
26
|
+
'candle',
|
|
27
|
+
'city_light_hill',
|
|
28
|
+
'city',
|
|
29
|
+
'cross',
|
|
30
|
+
'dm_course',
|
|
31
|
+
'door',
|
|
32
|
+
'dove',
|
|
33
|
+
'fire',
|
|
34
|
+
'flower',
|
|
35
|
+
'fruit',
|
|
36
|
+
'globe_hand',
|
|
37
|
+
'globe',
|
|
38
|
+
'grapes',
|
|
39
|
+
'heart_person',
|
|
40
|
+
'heart_tear',
|
|
41
|
+
'heart',
|
|
42
|
+
'holding_hands',
|
|
43
|
+
'house',
|
|
44
|
+
'jug',
|
|
45
|
+
'man',
|
|
46
|
+
'money_hand',
|
|
47
|
+
'money',
|
|
48
|
+
'net',
|
|
49
|
+
'ocean',
|
|
50
|
+
'people_heart',
|
|
51
|
+
'people_holding_hands',
|
|
52
|
+
'people_multiplying',
|
|
53
|
+
'person_angry',
|
|
54
|
+
'person_crouching',
|
|
55
|
+
'person_crying',
|
|
56
|
+
'person_healed',
|
|
57
|
+
'person_heart',
|
|
58
|
+
'person_mountain',
|
|
59
|
+
'person_praying',
|
|
60
|
+
'person_rock',
|
|
61
|
+
'river',
|
|
62
|
+
'scale',
|
|
63
|
+
'sheep_goat',
|
|
64
|
+
'sprout',
|
|
65
|
+
'sun',
|
|
66
|
+
'three_wheat',
|
|
67
|
+
'tree',
|
|
68
|
+
'triangle',
|
|
69
|
+
'two_wheat',
|
|
70
|
+
'wave',
|
|
71
|
+
'woman',
|
|
72
|
+
])
|
|
73
|
+
.describe(
|
|
74
|
+
'The icon to use for this set. Icon SVGs are defined in the app.'
|
|
75
|
+
),
|
|
76
|
+
lessons: z.array(
|
|
77
|
+
z.object({
|
|
78
|
+
lessonId: z.string(),
|
|
79
|
+
a: z
|
|
80
|
+
.string()
|
|
81
|
+
.describe(
|
|
82
|
+
"The id for the question set to use for this lesson's application chapter. Must be defined in the questions curriculum."
|
|
83
|
+
)
|
|
84
|
+
.optional(),
|
|
85
|
+
f: z
|
|
86
|
+
.string()
|
|
87
|
+
.describe(
|
|
88
|
+
"The id for the question set to use for this lesson's fellowship chapter. Must be defined in the questions curriculum."
|
|
89
|
+
)
|
|
90
|
+
.optional(),
|
|
91
|
+
s: z
|
|
92
|
+
.array(z.string())
|
|
93
|
+
.describe('An array of scripture passages to use with this lesson.')
|
|
94
|
+
.optional(),
|
|
95
|
+
})
|
|
96
|
+
),
|
|
97
|
+
tag: z
|
|
98
|
+
.enum(['truth', 'challenge', 'money', 'people', 'god', 'jesus'])
|
|
99
|
+
.describe(
|
|
100
|
+
'If a topical set, the tag is a way to further categorize the set.'
|
|
101
|
+
)
|
|
102
|
+
.optional(),
|
|
103
|
+
})
|
|
104
|
+
)
|
|
105
|
+
export type Sets = z.infer<typeof sets>
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { z } from 'zod'
|
|
2
|
+
|
|
3
|
+
export const topicsCurriculums = z.array(
|
|
4
|
+
z
|
|
5
|
+
.object({
|
|
6
|
+
curriculumId: z.string(),
|
|
7
|
+
sets: z
|
|
8
|
+
.array(z.string())
|
|
9
|
+
.describe(
|
|
10
|
+
'An array of set ids that make up this topics curriculum. Set ids must be linked to valid sets present in data/sets.json.'
|
|
11
|
+
),
|
|
12
|
+
})
|
|
13
|
+
.strict()
|
|
14
|
+
)
|
|
15
|
+
export type TopicsCurriculums = z.infer<typeof topicsCurriculums>
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
{
|
|
2
|
+
"aeb.ara": "PLmYe5bjfx6-mrWWXnfPHJiLMXwyoEsQLE",
|
|
3
|
+
"afb.ara": "PLmYe5bjfx6-mn7j7vogH8qKCLO-fDi3Zx",
|
|
4
|
+
"ais.ara": "PLmYe5bjfx6-nNR0l7oyqDGvN2acajppLD",
|
|
5
|
+
"apa.ara": "PLmYe5bjfx6-k43JkGOT6eSCx0b4-F4JNf",
|
|
6
|
+
"apc.ara": "PLmYe5bjfx6-kigNUZ5b2xFf5GFnXnBgSk",
|
|
7
|
+
"ary.ary": "PLmYe5bjfx6-mA17_XOchYP7yXk8GbB4M4",
|
|
8
|
+
"arz.ara": "PLmYe5bjfx6-mDXeHj0z9PqSccF3w1buyB",
|
|
9
|
+
"ayl.ara": "PLmYe5bjfx6-mvIl81POPbi5A1QT2BmmRz",
|
|
10
|
+
"eng.eng": "PLmYe5bjfx6-mBdkOHuFGOQwLSSuEWGNDu",
|
|
11
|
+
"fra.fra": "PLmYe5bjfx6-k7iW8fj_OxQ2hQVPLzTmQw",
|
|
12
|
+
"hic.hin": "PLmYe5bjfx6-lB1PZvMDqr5sMlGMd4gc4i",
|
|
13
|
+
"hin.hin": "PLmYe5bjfx6-kfiKDmKGKFTKLcJZwMSGli",
|
|
14
|
+
"khm.khm": "PLmYe5bjfx6-lOW9LStbItCtRR_80b_05v",
|
|
15
|
+
"ron.ron": "PLmYe5bjfx6-llq2ZZK3mzSXMtlrynhQOU",
|
|
16
|
+
"shf.shi": "PLmYe5bjfx6-khtBs3D8-Cb6xRIACzUbjs",
|
|
17
|
+
"shi.shi": "PLmYe5bjfx6-llRWXEDdKPl0GywkyXhXD_",
|
|
18
|
+
"spa.spa": "PLmYe5bjfx6-mds-VoCpm3CnpkBUXvf828",
|
|
19
|
+
"swe.swe": "PLmYe5bjfx6-k_ZFdt2UTEbMg7ab7sMJa3",
|
|
20
|
+
"tur.tur": "PLmYe5bjfx6-lj0raTAbE4sK2tlZ5Fu5h2",
|
|
21
|
+
"tzm.ara": "PLmYe5bjfx6-k-DF91gl41HPIdtv8t_f_J",
|
|
22
|
+
"tzm.ary": "PLmYe5bjfx6-mrjheq_VhbzrCY7O2LFnbp",
|
|
23
|
+
"tzm.eng": "PLmYe5bjfx6-kYxIl9jdeqKGPu3ja_Pcu8",
|
|
24
|
+
"tzm.fra": "PLmYe5bjfx6-nWCdmWuxHfSMJ3Pc4FFlDQ",
|
|
25
|
+
"rus.rus": "PLmYe5bjfx6-mQHXPs0fcUGXKFFKJqnxg-",
|
|
26
|
+
"por.por": "PLmYe5bjfx6-nOv-vg-HnNd7cYWpT6Sv5e",
|
|
27
|
+
"mfe.fra": "PLmYe5bjfx6-m5s89uSdeaeTSWNQGU7JY5"
|
|
28
|
+
}
|
|
@@ -0,0 +1,262 @@
|
|
|
1
|
+
{
|
|
2
|
+
"aeb.ara.03.009.001.1080.mp4": "dFcK1eSjua4",
|
|
3
|
+
"aeb.ara.03.009.002.1080.mp4": "qlKJlh7Eoy4",
|
|
4
|
+
"aeb.ara.03.009.003.1080.mp4": "SzpgbF6ZBGo",
|
|
5
|
+
"aeb.ara.03.009.004.1080.mp4": "kcTTdkoXmLI",
|
|
6
|
+
"aeb.ara.03.009.005.1080.mp4": "S9JNjdBotTQ",
|
|
7
|
+
"aeb.ara.03.009.006.1080.mp4": "hvzAxL-sEu8",
|
|
8
|
+
"aeb.ara.03.009.007.1080.mp4": "janHbM6wNlg",
|
|
9
|
+
"aeb.ara.03.009.008.1080.mp4": "DaFDK-m9rcc",
|
|
10
|
+
"aeb.ara.03.009.009.1080.mp4": "GdFSLhQ5zjo",
|
|
11
|
+
"aeb.ara.03.009.010.1080.mp4": "dXEWeLg9ync",
|
|
12
|
+
"afb.ara.03.009.001.1080.mp4": "GciA3FqMMjo",
|
|
13
|
+
"afb.ara.03.009.002.1080.mp4": "5H736Ur4V9A",
|
|
14
|
+
"afb.ara.03.009.003.1080.mp4": "6Jrq8uS8LTE",
|
|
15
|
+
"afb.ara.03.009.004.1080.mp4": "hX4Ah0RaqXU",
|
|
16
|
+
"afb.ara.03.009.005.1080.mp4": "UUtWGBkkbe8",
|
|
17
|
+
"afb.ara.03.009.006.1080.mp4": "leILIB8giis",
|
|
18
|
+
"afb.ara.03.009.007.1080.mp4": "cqBWHj3frBM",
|
|
19
|
+
"afb.ara.03.009.008.1080.mp4": "iofXOtDSaDU",
|
|
20
|
+
"afb.ara.03.009.009.1080.mp4": "oae20bYMysI",
|
|
21
|
+
"afb.ara.03.009.010.1080.mp4": "3O8Ic7oMeWQ",
|
|
22
|
+
"ais.ara.03.009.001.1080.mp4": "vTCWxqU9Yg0",
|
|
23
|
+
"ais.ara.03.009.002.1080.mp4": "VRnAgKQt1ac",
|
|
24
|
+
"ais.ara.03.009.003.1080.mp4": "ppPOnHebMOY",
|
|
25
|
+
"ais.ara.03.009.004.1080.mp4": "KpKTibOcopE",
|
|
26
|
+
"ais.ara.03.009.005.1080.mp4": "5cWaSnxLTI8",
|
|
27
|
+
"ais.ara.03.009.006.1080.mp4": "hgtGel-VO08",
|
|
28
|
+
"ais.ara.03.009.007.1080.mp4": "mLsy0lb8H-w",
|
|
29
|
+
"ais.ara.03.009.008.1080.mp4": "jvsI90oe2ts",
|
|
30
|
+
"ais.ara.03.009.009.1080.mp4": "bHu5kV0eIjI",
|
|
31
|
+
"ais.ara.03.009.010.1080.mp4": "unspi08hu_I",
|
|
32
|
+
"apa.ara.03.009.001.1080.mp4": "qpN6eUUJTN4",
|
|
33
|
+
"apa.ara.03.009.002.1080.mp4": "23kTw6lX5Wo",
|
|
34
|
+
"apa.ara.03.009.003.1080.mp4": "HAUGlAbNt3I",
|
|
35
|
+
"apa.ara.03.009.004.1080.mp4": "WFEOwjqWaDk",
|
|
36
|
+
"apa.ara.03.009.005.1080.mp4": "qAHl7EOHkhk",
|
|
37
|
+
"apa.ara.03.009.006.1080.mp4": "Mq-Q8-jscns",
|
|
38
|
+
"apa.ara.03.009.007.1080.mp4": "uMmHltTcTKE",
|
|
39
|
+
"apa.ara.03.009.008.1080.mp4": "l9HkPme9ncU",
|
|
40
|
+
"apa.ara.03.009.009.1080.mp4": "rdz6VEMZNns",
|
|
41
|
+
"apa.ara.03.009.010.1080.mp4": "bgGaPVjukTQ",
|
|
42
|
+
"apc.ara.03.009.001.1080.mp4": "I9MW-tP5yLY",
|
|
43
|
+
"apc.ara.03.009.002.1080.mp4": "bnhVJqSPA1s",
|
|
44
|
+
"apc.ara.03.009.003.1080.mp4": "dpYicxrURiE",
|
|
45
|
+
"apc.ara.03.009.004.1080.mp4": "SyZkxQhLzZU",
|
|
46
|
+
"apc.ara.03.009.005.1080.mp4": "ftUpqYs5fRE",
|
|
47
|
+
"apc.ara.03.009.006.1080.mp4": "HIL6uiKI6Kg",
|
|
48
|
+
"apc.ara.03.009.007.1080.mp4": "m-6vizZ3zZg",
|
|
49
|
+
"apc.ara.03.009.008.1080.mp4": "pD8GVTzoKco",
|
|
50
|
+
"apc.ara.03.009.009.1080.mp4": "wsWOsX3DGj8",
|
|
51
|
+
"apc.ara.03.009.010.1080.mp4": "6mWFlwor92E",
|
|
52
|
+
"ary.ary.03.009.001.1080.mp4": "JXtaWsZkj_c",
|
|
53
|
+
"ary.ary.03.009.002.1080.mp4": "TEuT0OdtoKQ",
|
|
54
|
+
"ary.ary.03.009.003.1080.mp4": "CqWYpjKc7Qk",
|
|
55
|
+
"ary.ary.03.009.004.1080.mp4": "LOJs-htN90Y",
|
|
56
|
+
"ary.ary.03.009.005.1080.mp4": "EnLvEbGPYx4",
|
|
57
|
+
"ary.ary.03.009.006.1080.mp4": "iEg8RCJhcz4",
|
|
58
|
+
"ary.ary.03.009.007.1080.mp4": "Qn0A8Tmi2nc",
|
|
59
|
+
"ary.ary.03.009.008.1080.mp4": "I4YTJkkOaCk",
|
|
60
|
+
"ary.ary.03.009.009.1080.mp4": "s61BVTUW8Qs",
|
|
61
|
+
"ary.ary.03.009.010.1080.mp4": "g2GRAHuRmgA",
|
|
62
|
+
"arz.ara.03.009.001.1080.mp4": "WVyf0yfqoh8",
|
|
63
|
+
"arz.ara.03.009.002.1080.mp4": "jhfrzH0ZaXM",
|
|
64
|
+
"arz.ara.03.009.003.1080.mp4": "WWHt6WhRxRs",
|
|
65
|
+
"arz.ara.03.009.004.1080.mp4": "38-StdE7znM",
|
|
66
|
+
"arz.ara.03.009.005.1080.mp4": "O8Oep7I_sSQ",
|
|
67
|
+
"arz.ara.03.009.006.1080.mp4": "_wd9RaO0vFw",
|
|
68
|
+
"arz.ara.03.009.007.1080.mp4": "YnBQjlj6R2s",
|
|
69
|
+
"arz.ara.03.009.008.1080.mp4": "53FFgfW12pY",
|
|
70
|
+
"arz.ara.03.009.009.1080.mp4": "dBm53hNjkHU",
|
|
71
|
+
"arz.ara.03.009.010.1080.mp4": "sXqs6hCqXhI",
|
|
72
|
+
"ayl.ara.03.009.001.1080.mp4": "DNH3vg5aPRo",
|
|
73
|
+
"ayl.ara.03.009.002.1080.mp4": "0xvtpB9n-wU",
|
|
74
|
+
"ayl.ara.03.009.003.1080.mp4": "2vf0Kcnv_U4",
|
|
75
|
+
"ayl.ara.03.009.004.1080.mp4": "t0tgM6U2wSI",
|
|
76
|
+
"ayl.ara.03.009.005.1080.mp4": "J3rus-kc7Bk",
|
|
77
|
+
"ayl.ara.03.009.006.1080.mp4": "B_z5AbsKON0",
|
|
78
|
+
"ayl.ara.03.009.007.1080.mp4": "0xYcC44T_Tg",
|
|
79
|
+
"ayl.ara.03.009.008.1080.mp4": "Or79vluwpPU",
|
|
80
|
+
"ayl.ara.03.009.009.1080.mp4": "69T-0jNtndg",
|
|
81
|
+
"ayl.ara.03.009.010.1080.mp4": "TKg_-pNAnak",
|
|
82
|
+
"eng.eng.03.009.001.1080.mp4": "DxIexa7xMRk",
|
|
83
|
+
"eng.eng.03.009.002.1080.mp4": "zrxr62YMBW4",
|
|
84
|
+
"eng.eng.03.009.003.1080.mp4": "8faADr1p6lQ",
|
|
85
|
+
"eng.eng.03.009.004.1080.mp4": "9WEK4m6xpWM",
|
|
86
|
+
"eng.eng.03.009.005.1080.mp4": "Qm6acVzgBDc",
|
|
87
|
+
"eng.eng.03.009.006.1080.mp4": "YAn3pYcrE4E",
|
|
88
|
+
"eng.eng.03.009.007.1080.mp4": "DrvYVC1ERg0",
|
|
89
|
+
"eng.eng.03.009.008.1080.mp4": "MPnjSJ13JwA",
|
|
90
|
+
"eng.eng.03.009.009.1080.mp4": "tPiFeIfr-m8",
|
|
91
|
+
"eng.eng.03.009.010.1080.mp4": "MRTQ0gACv04",
|
|
92
|
+
"fra.fra.03.009.001.1080.mp4": "WUKOlWoOZ_c",
|
|
93
|
+
"fra.fra.03.009.002.1080.mp4": "MndcXkkwNmo",
|
|
94
|
+
"fra.fra.03.009.003.1080.mp4": "oMvtBpAx5es",
|
|
95
|
+
"fra.fra.03.009.004.1080.mp4": "JeKurCUNkno",
|
|
96
|
+
"fra.fra.03.009.005.1080.mp4": "AsJoyldBPzo",
|
|
97
|
+
"fra.fra.03.009.006.1080.mp4": "gjGpSTY0Tco",
|
|
98
|
+
"fra.fra.03.009.007.1080.mp4": "S7-i_1VuX1A",
|
|
99
|
+
"fra.fra.03.009.008.1080.mp4": "KXzZHgFoW08",
|
|
100
|
+
"fra.fra.03.009.009.1080.mp4": "_xa2t4MYEIM",
|
|
101
|
+
"fra.fra.03.009.010.1080.mp4": "HIp0nlk02RI",
|
|
102
|
+
"hic.hin.03.009.001.1080.mp4": "RRNaarmkFVE",
|
|
103
|
+
"hic.hin.03.009.002.1080.mp4": "EYPpbtejFY0",
|
|
104
|
+
"hic.hin.03.009.003.1080.mp4": "FpUspFzfn7o",
|
|
105
|
+
"hic.hin.03.009.004.1080.mp4": "gasN-4BNMUU",
|
|
106
|
+
"hic.hin.03.009.005.1080.mp4": "TYz9iUf3teQ",
|
|
107
|
+
"hic.hin.03.009.006.1080.mp4": "dNHjMnHXHrA",
|
|
108
|
+
"hic.hin.03.009.007.1080.mp4": "4aQHzQP4HQA",
|
|
109
|
+
"hic.hin.03.009.008.1080.mp4": "cw6v5Y-PBSE",
|
|
110
|
+
"hic.hin.03.009.009.1080.mp4": "gyLC_g4gcsw",
|
|
111
|
+
"hic.hin.03.009.010.1080.mp4": "1SfKZHh8bkQ",
|
|
112
|
+
"hin.hin.03.009.001.1080.mp4": "bBUidIjNRQ8",
|
|
113
|
+
"hin.hin.03.009.002.1080.mp4": "9YRT4F2Ui0Y",
|
|
114
|
+
"hin.hin.03.009.003.1080.mp4": "HrNfxSYkUvc",
|
|
115
|
+
"hin.hin.03.009.004.1080.mp4": "hwmyIgrRRiI",
|
|
116
|
+
"hin.hin.03.009.005.1080.mp4": "iIrpuFSZGag",
|
|
117
|
+
"hin.hin.03.009.006.1080.mp4": "MR7z2i65Clw",
|
|
118
|
+
"hin.hin.03.009.007.1080.mp4": "fa28wMUuycI",
|
|
119
|
+
"hin.hin.03.009.008.1080.mp4": "MB8Dkx7L4sE",
|
|
120
|
+
"hin.hin.03.009.009.1080.mp4": "PeZcYLX4qnI",
|
|
121
|
+
"hin.hin.03.009.010.1080.mp4": "RH65gD0SkIQ",
|
|
122
|
+
"khm.khm.03.009.001.1080.mp4": "MGwtvmJlty0",
|
|
123
|
+
"khm.khm.03.009.002.1080.mp4": "XX2HZteTsdc",
|
|
124
|
+
"khm.khm.03.009.003.1080.mp4": "AwiexkffmTM",
|
|
125
|
+
"khm.khm.03.009.004.1080.mp4": "6Xj537vv6is",
|
|
126
|
+
"khm.khm.03.009.005.1080.mp4": "MUkOlrW91iE",
|
|
127
|
+
"khm.khm.03.009.006.1080.mp4": "DdQtSTOwGss",
|
|
128
|
+
"khm.khm.03.009.007.1080.mp4": "OVIX828pqXM",
|
|
129
|
+
"khm.khm.03.009.008.1080.mp4": "2AscxJWsbgk",
|
|
130
|
+
"khm.khm.03.009.009.1080.mp4": "Py7KldSBX_A",
|
|
131
|
+
"khm.khm.03.009.010.1080.mp4": "eq5fiLpBXOk",
|
|
132
|
+
"ron.ron.03.009.001.1080.mp4": "S1LDE9Mr0I4",
|
|
133
|
+
"ron.ron.03.009.002.1080.mp4": "M5Q_N8U6BAs",
|
|
134
|
+
"ron.ron.03.009.003.1080.mp4": "7ZgTHaYnVeQ",
|
|
135
|
+
"ron.ron.03.009.004.1080.mp4": "g6gIGLE9dEA",
|
|
136
|
+
"ron.ron.03.009.005.1080.mp4": "zCgNgFiAcLI",
|
|
137
|
+
"ron.ron.03.009.006.1080.mp4": "scUeJJdulXs",
|
|
138
|
+
"ron.ron.03.009.007.1080.mp4": "zSZqiMMldRQ",
|
|
139
|
+
"ron.ron.03.009.008.1080.mp4": "Xvear1gXUKc",
|
|
140
|
+
"ron.ron.03.009.009.1080.mp4": "wvlWELhyYtE",
|
|
141
|
+
"ron.ron.03.009.010.1080.mp4": "-Nc1VJCuffU",
|
|
142
|
+
"shf.shi.03.009.001.1080.mp4": "h48SaQTm2zQ",
|
|
143
|
+
"shf.shi.03.009.002.1080.mp4": "qvtJYGNUCiQ",
|
|
144
|
+
"shf.shi.03.009.003.1080.mp4": "VRVTlD3Lxnc",
|
|
145
|
+
"shf.shi.03.009.004.1080.mp4": "tSXwf8FCYJw",
|
|
146
|
+
"shf.shi.03.009.005.1080.mp4": "F70e8ct-l9Y",
|
|
147
|
+
"shf.shi.03.009.006.1080.mp4": "jayFaqrGKuY",
|
|
148
|
+
"shf.shi.03.009.007.1080.mp4": "Ydx2sMftBws",
|
|
149
|
+
"shf.shi.03.009.008.1080.mp4": "kF--bNaq7lE",
|
|
150
|
+
"shf.shi.03.009.009.1080.mp4": "om8NoFX5Sss",
|
|
151
|
+
"shf.shi.03.009.010.1080.mp4": "vRUo_7bMNHo",
|
|
152
|
+
"shi.shi.03.009.001.1080.mp4": "LG2fIuUnbVc",
|
|
153
|
+
"shi.shi.03.009.002.1080.mp4": "6aotdbxjosE",
|
|
154
|
+
"shi.shi.03.009.003.1080.mp4": "UtGVARNrLbM",
|
|
155
|
+
"shi.shi.03.009.004.1080.mp4": "0JEIVZPwzfw",
|
|
156
|
+
"shi.shi.03.009.005.1080.mp4": "n1f4b-th6BM",
|
|
157
|
+
"shi.shi.03.009.006.1080.mp4": "uv_7KWR_rUI",
|
|
158
|
+
"shi.shi.03.009.007.1080.mp4": "NJ0400hMib8",
|
|
159
|
+
"shi.shi.03.009.008.1080.mp4": "Wa8-ud1eZ54",
|
|
160
|
+
"shi.shi.03.009.009.1080.mp4": "VgMKkO7uUVE",
|
|
161
|
+
"shi.shi.03.009.010.1080.mp4": "PVbE_Gh9ZSc",
|
|
162
|
+
"spa.spa.03.009.001.1080.mp4": "3Rg3Z4--emw",
|
|
163
|
+
"spa.spa.03.009.002.1080.mp4": "s5e9B8M-RzQ",
|
|
164
|
+
"spa.spa.03.009.003.1080.mp4": "IARwP6quJBM",
|
|
165
|
+
"spa.spa.03.009.004.1080.mp4": "jAdXX9jqcbA",
|
|
166
|
+
"spa.spa.03.009.005.1080.mp4": "WUrATEqlkR4",
|
|
167
|
+
"spa.spa.03.009.006.1080.mp4": "APZAwzfRr1I",
|
|
168
|
+
"spa.spa.03.009.007.1080.mp4": "V_SJ3GwtLRE",
|
|
169
|
+
"spa.spa.03.009.008.1080.mp4": "ZXfUhoeFLcU",
|
|
170
|
+
"spa.spa.03.009.009.1080.mp4": "MWxssi1eoqc",
|
|
171
|
+
"spa.spa.03.009.010.1080.mp4": "ynLBCcvx6ko",
|
|
172
|
+
"swe.swe.03.009.001.1080.mp4": "pin1kwuuQXg",
|
|
173
|
+
"swe.swe.03.009.002.1080.mp4": "t7kom6vhyP0",
|
|
174
|
+
"swe.swe.03.009.003.1080.mp4": "jV72mpv2Y48",
|
|
175
|
+
"swe.swe.03.009.004.1080.mp4": "XBao1xd5qDM",
|
|
176
|
+
"swe.swe.03.009.005.1080.mp4": "zdZO5Lde0wA",
|
|
177
|
+
"swe.swe.03.009.006.1080.mp4": "QzJshpukUwU",
|
|
178
|
+
"swe.swe.03.009.007.1080.mp4": "CsDFPrgfLNE",
|
|
179
|
+
"swe.swe.03.009.008.1080.mp4": "0KhjaqdDwvQ",
|
|
180
|
+
"swe.swe.03.009.009.1080.mp4": "B46fL-wvFYw",
|
|
181
|
+
"swe.swe.03.009.010.1080.mp4": "SZb4VAAX_WY",
|
|
182
|
+
"tur.tur.03.009.001.1080.mp4": "uZbm0PTY59I",
|
|
183
|
+
"tur.tur.03.009.002.1080.mp4": "tPUP9SJ-QwI",
|
|
184
|
+
"tur.tur.03.009.003.1080.mp4": "Q5cb6yaCUds",
|
|
185
|
+
"tur.tur.03.009.004.1080.mp4": "iP9y5mBQGxs",
|
|
186
|
+
"tur.tur.03.009.005.1080.mp4": "6f1rQFxdAKA",
|
|
187
|
+
"tur.tur.03.009.006.1080.mp4": "lYN3Gas1bCc",
|
|
188
|
+
"tur.tur.03.009.007.1080.mp4": "y55uum0oHBM",
|
|
189
|
+
"tur.tur.03.009.008.1080.mp4": "WI9kRE8aCOc",
|
|
190
|
+
"tur.tur.03.009.009.1080.mp4": "an59LRhUgaE",
|
|
191
|
+
"tur.tur.03.009.010.1080.mp4": "WN8pKrtyXGE",
|
|
192
|
+
"tzm.ara.03.009.001.1080.mp4": "mgxHzCJ0iHQ",
|
|
193
|
+
"tzm.ara.03.009.002.1080.mp4": "DLEeGAvEtec",
|
|
194
|
+
"tzm.ara.03.009.003.1080.mp4": "n8SVUGnzdSo",
|
|
195
|
+
"tzm.ara.03.009.004.1080.mp4": "8lCFrWH4AsQ",
|
|
196
|
+
"tzm.ara.03.009.005.1080.mp4": "U-YFTHg0CY0",
|
|
197
|
+
"tzm.ara.03.009.006.1080.mp4": "Os-IpNQ7MNM",
|
|
198
|
+
"tzm.ara.03.009.007.1080.mp4": "_vf4W2rrETk",
|
|
199
|
+
"tzm.ara.03.009.008.1080.mp4": "vMqkUTNjJ3s",
|
|
200
|
+
"tzm.ara.03.009.009.1080.mp4": "D0P-j9DlEEw",
|
|
201
|
+
"tzm.ara.03.009.010.1080.mp4": "WJ78izyn12w",
|
|
202
|
+
"tzm.ary.03.009.001.1080.mp4": "SGW0l5WwWzI",
|
|
203
|
+
"tzm.ary.03.009.002.1080.mp4": "AfzSpwDIqOM",
|
|
204
|
+
"tzm.ary.03.009.003.1080.mp4": "PZV-0ADfEA4",
|
|
205
|
+
"tzm.ary.03.009.004.1080.mp4": "E34gHf_qeSY",
|
|
206
|
+
"tzm.ary.03.009.005.1080.mp4": "rMWFMzuFrLA",
|
|
207
|
+
"tzm.ary.03.009.006.1080.mp4": "LURHJe-C-PY",
|
|
208
|
+
"tzm.ary.03.009.007.1080.mp4": "cid-RqyfR0o",
|
|
209
|
+
"tzm.ary.03.009.008.1080.mp4": "VKhlHTCsNoo",
|
|
210
|
+
"tzm.ary.03.009.009.1080.mp4": "v0UKTVK3xIc",
|
|
211
|
+
"tzm.ary.03.009.010.1080.mp4": "RdQn8LVJQ3A",
|
|
212
|
+
"tzm.eng.03.009.001.1080.mp4": "c0b-SpssbF4",
|
|
213
|
+
"tzm.eng.03.009.002.1080.mp4": "gAj65Zp-kmo",
|
|
214
|
+
"tzm.eng.03.009.003.1080.mp4": "y4DRad8u8Ps",
|
|
215
|
+
"tzm.eng.03.009.004.1080.mp4": "2bnrlBc9YPk",
|
|
216
|
+
"tzm.eng.03.009.005.1080.mp4": "ey79535FkSo",
|
|
217
|
+
"tzm.eng.03.009.006.1080.mp4": "s2bCJ9_nAIs",
|
|
218
|
+
"tzm.eng.03.009.007.1080.mp4": "CdRSIGf6jJc",
|
|
219
|
+
"tzm.eng.03.009.008.1080.mp4": "nqF_uwot-9Q",
|
|
220
|
+
"tzm.eng.03.009.009.1080.mp4": "9S0H15BYITY",
|
|
221
|
+
"tzm.eng.03.009.010.1080.mp4": "lhn0PvTX9nY",
|
|
222
|
+
"tzm.fra.03.009.001.1080.mp4": "8ATpaR3LZEY",
|
|
223
|
+
"tzm.fra.03.009.002.1080.mp4": "ZzPL4syuLyg",
|
|
224
|
+
"tzm.fra.03.009.003.1080.mp4": "fXpKxptysG8",
|
|
225
|
+
"tzm.fra.03.009.004.1080.mp4": "s8qJBlUZq1g",
|
|
226
|
+
"tzm.fra.03.009.005.1080.mp4": "a45bnUcVPBE",
|
|
227
|
+
"tzm.fra.03.009.006.1080.mp4": "X36T78A_Wz0",
|
|
228
|
+
"tzm.fra.03.009.007.1080.mp4": "50A9xSZJLsI",
|
|
229
|
+
"tzm.fra.03.009.008.1080.mp4": "HcA-dbBadoA",
|
|
230
|
+
"tzm.fra.03.009.009.1080.mp4": "wXisUXfthnU",
|
|
231
|
+
"tzm.fra.03.009.010.1080.mp4": "B3ndi20MbEU",
|
|
232
|
+
"rus.rus.03.009.001.1080.mp4": "H9cHu7c0xkU",
|
|
233
|
+
"rus.rus.03.009.002.1080.mp4": "VTH1NNET8w0",
|
|
234
|
+
"rus.rus.03.009.003.1080.mp4": "WO6MlCZ7lt4",
|
|
235
|
+
"rus.rus.03.009.004.1080.mp4": "PFN463wwzC0",
|
|
236
|
+
"rus.rus.03.009.005.1080.mp4": "dd7wfeLMBsU",
|
|
237
|
+
"rus.rus.03.009.006.1080.mp4": "vDvUbfWT34A",
|
|
238
|
+
"rus.rus.03.009.007.1080.mp4": "36Wb_WwV_F0",
|
|
239
|
+
"rus.rus.03.009.008.1080.mp4": "owe2aR1kvzw",
|
|
240
|
+
"rus.rus.03.009.009.1080.mp4": "gext84YEANs",
|
|
241
|
+
"rus.rus.03.009.010.1080.mp4": "hP9IysgcDI4",
|
|
242
|
+
"por.por.03.009.001.1080.mp4": "OEovxN59MEM",
|
|
243
|
+
"por.por.03.009.002.1080.mp4": "qNb_nBjdhbA",
|
|
244
|
+
"por.por.03.009.003.1080.mp4": "ocsSY_KWAWk",
|
|
245
|
+
"por.por.03.009.004.1080.mp4": "LFmGVVsZl6A",
|
|
246
|
+
"por.por.03.009.005.1080.mp4": "GDnpHPAxpOs",
|
|
247
|
+
"por.por.03.009.006.1080.mp4": "A0eJnewEkw0",
|
|
248
|
+
"por.por.03.009.007.1080.mp4": "BlP5BYPkRxY",
|
|
249
|
+
"por.por.03.009.008.1080.mp4": "OPDf7SkTxfo",
|
|
250
|
+
"por.por.03.009.009.1080.mp4": "t9gNQX6nYSM",
|
|
251
|
+
"por.por.03.009.010.1080.mp4": "fv83QTtZw8c",
|
|
252
|
+
"mfe.fra.03.009.001.1080.mp4": "ZoOXZPAfKNg",
|
|
253
|
+
"mfe.fra.03.009.002.1080.mp4": "OYlbIDAA1DE",
|
|
254
|
+
"mfe.fra.03.009.003.1080.mp4": "k-5LzA1a-5g",
|
|
255
|
+
"mfe.fra.03.009.004.1080.mp4": "PyRsVuhyB4I",
|
|
256
|
+
"mfe.fra.03.009.005.1080.mp4": "w3uvW1oIzq8",
|
|
257
|
+
"mfe.fra.03.009.006.1080.mp4": "8j7ispGTF-o",
|
|
258
|
+
"mfe.fra.03.009.007.1080.mp4": "VYiclt582T0",
|
|
259
|
+
"mfe.fra.03.009.008.1080.mp4": "DQo0kWNaMS4",
|
|
260
|
+
"mfe.fra.03.009.009.1080.mp4": "UlHwZEG5e3s",
|
|
261
|
+
"mfe.fra.03.009.010.1080.mp4": "cIrZhTwwPEc"
|
|
262
|
+
}
|