initial commit

This commit is contained in:
rendies 2022-10-27 19:12:38 +07:00
parent e2e2ebbaab
commit 488fb4bd5a
83 changed files with 7616 additions and 0 deletions

3
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

1
.idea/.name Normal file
View File

@ -0,0 +1 @@
Pose Classification PoC

6
.idea/compiler.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CompilerConfiguration">
<bytecodeTargetLevel target="11" />
</component>
</project>

19
.idea/gradle.xml Normal file
View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleMigrationSettings" migrationVersion="1" />
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="testRunner" value="GRADLE" />
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
</GradleProjectSettings>
</option>
</component>
</project>

23
.idea/misc.xml Normal file
View File

@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="DesignSurface">
<option name="filePathToZoomLevelMap">
<map>
<entry key="..\:/RENDI/REPO/PoseClassificationPoC/app/src/main/res/drawable-v24/ic_launcher_foreground.xml" value="0.1" />
<entry key="..\:/RENDI/REPO/PoseClassificationPoC/app/src/main/res/drawable/ic_switch_camera_white_48dp.xml" value="0.1" />
<entry key="..\:/RENDI/REPO/PoseClassificationPoC/app/src/main/res/layout/activity_main.xml" value="0.1" />
<entry key="..\:/RENDI/REPO/PoseClassificationPoC/app/src/main/res/layout/activity_settings.xml" value="0.1" />
<entry key="..\:/RENDI/REPO/PoseClassificationPoC/app/src/main/res/layout/settings_style.xml" value="0.1" />
<entry key="..\:/RENDI/REPO/PoseClassificationPoC/app/src/main/res/layout/spinner_style.xml" value="0.1" />
<entry key="..\:/RENDI/REPO/PoseClassificationPoC/app/src/main/res/layout/splash_screen.xml" value="0.1" />
<entry key="..\:/RENDI/REPO/PoseClassificationPoC/app/src/main/res/layout/toggle_style.xml" value="0.1" />
</map>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" default="true" project-jdk-name="Android Studio default JDK" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
<option name="id" value="Android" />
</component>
</project>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

1
app/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/build

62
app/build.gradle Normal file
View File

@ -0,0 +1,62 @@
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
compileSdk 32
defaultConfig {
applicationId "com.empatnusabangsa.poseclassificationpoc"
minSdk 28
targetSdk 32
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'com.google.mlkit:pose-detection:18.0.0-beta2'
implementation 'com.google.mlkit:pose-detection-accurate:18.0.0-beta2'
implementation 'com.google.mlkit:camera:16.0.0-beta3'
implementation "androidx.lifecycle:lifecycle-livedata:2.3.1"
implementation "androidx.lifecycle:lifecycle-viewmodel:2.3.1"
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.annotation:annotation:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'com.google.mlkit:segmentation-selfie:16.0.0-beta4'
// CameraX
implementation "androidx.camera:camera-camera2:1.0.0-SNAPSHOT"
implementation "androidx.camera:camera-lifecycle:1.0.0-SNAPSHOT"
implementation "androidx.camera:camera-view:1.0.0-SNAPSHOT"
}

21
app/proguard-rules.pro vendored Normal file
View File

@ -0,0 +1,21 @@
# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
# http://developer.android.com/guide/developing/tools/proguard.html
# If your project uses WebView with JS, uncomment the following
# and specify the fully qualified class name to the JavaScript interface
# class:
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable
# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

View File

@ -0,0 +1,24 @@
package com.empatnusabangsa.poseclassificationpoc
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.Assert.*
/**
* Instrumented test, which will execute on an Android device.
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
// Context of the app under test.
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("com.empatnusabangsa.poseclassificationpoc", appContext.packageName)
}
}

View File

@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.empatnusabangsa.poseclassificationpoc"
android:installLocation="auto">
<uses-sdk
tools:overrideLibrary="
androidx.camera.camera2, androidx.camera.core,
androidx.camera.view, androidx.camera.lifecycle" />
<uses-feature android:name="android.hardware.camera"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.CAMERA"/>
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.PoseClassificationPoC"
tools:targetApi="31">
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,476 @@
01338b3b-f73c-4e63-bc84-be6bdd40837f.jpeg,stand,389.7267,247.94125,-264.43634,406.27042,225.80411,-236.9401,416.62958,226.72127,-236.8483,427.2979,227.43481,-236.74728,378.55472,223.88675,-238.42633,367.77124,223.01537,-238.54451,356.99094,222.27875,-238.81108,440.0898,246.53671,-97.68469,343.8399,238.54362,-96.09021,407.5842,279.01675,-212.82106,368.42514,275.96442,-211.97318,498.71536,400.62344,-43.706997,264.8486,385.69046,-84.93724,521.41064,579.72876,-21.775429,238.99564,574.0299,-93.045586,526.9173,747.5886,-97.39348,238.07462,744.3348,-151.61134,539.2994,799.82776,-111.68041,227.18439,795.78394,-160.25676,519.44104,805.31866,-162.17755,247.85585,801.6729,-211.17049,503.40662,786.0217,-116.9125,266.5936,784.19977,-170.12921,439.11868,741.9931,14.44758,310.7089,737.21277,-14.055946,449.47382,975.891,47.365284,290.94458,964.8243,-26.88653,456.41232,1157.4519,181.32881,303.73703,1150.066,209.28322,440.12607,1179.4993,185.86288,324.34125,1175.8534,220.10696,503.46704,1252.9767,38.300613,248.24026,1243.3026,72.74212
03b4ec6a-b4db-4501-a41e-35756f2f3f77.jpeg,stand,365.67728,193.08655,-677.8226,384.37854,167.78903,-638.8231,396.25952,168.81172,-638.633,408.4464,169.64847,-638.68475,353.61508,165.62146,-635.9324,341.4739,164.50546,-635.731,329.29816,163.68729,-635.74695,424.44263,191.61484,-399.1728,315.99734,182.29538,-374.97556,387.36548,225.34271,-588.2703,341.90298,221.92242,-581.30835,492.62894,367.20505,-259.87485,239.77841,355.929,-255.4333,516.7384,561.37024,-197.69073,228.49408,556.25806,-185.9494,514.09314,738.00226,-442.6644,221.31967,738.66486,-381.59033,522.1214,796.344,-506.1171,209.18118,796.21326,-429.60684,501.2409,796.83594,-578.19214,230.03479,802.2818,-510.68988,484.78363,774.3037,-474.09717,250.67789,781.84265,-415.3512,433.88498,733.9658,-11.801481,302.7232,732.7235,12.975706,422.73254,962.54834,213.78822,304.07825,959.00415,157.55281,417.53635,1135.366,684.60895,315.71924,1128.3198,715.90485,407.10474,1149.1436,721.8095,327.53647,1143.4432,757.6398,434.98895,1254.4335,508.6994,298.3523,1247.4624,547.18414
04a9ce1f-52d5-4084-9b48-8ffc00dc54cd.jpeg,stand,374.33243,190.60677,-416.1696,389.95276,172.6405,-381.75543,399.42273,173.98816,-381.65942,409.1974,175.1519,-381.56787,364.61835,170.14865,-384.4192,354.80743,169.34822,-384.41995,344.9579,168.73975,-384.58972,421.73544,196.52443,-199.39957,333.2373,187.07019,-206.4797,390.8666,221.76155,-349.66882,354.19357,218.26587,-351.15356,480.87488,349.6436,-102.06991,263.53415,340.8748,-121.36439,511.54306,513.4498,-26.341213,250.52965,517.387,-87.39977,505.33508,663.2699,-134.40762,244.35504,674.3815,-190.40916,511.48096,710.96106,-165.21436,234.06773,720.8368,-210.48575,493.22134,714.2075,-219.5955,251.12549,724.88403,-273.0696,479.6411,697.6575,-155.15675,267.90677,709.4944,-214.94086,428.5153,681.3744,9.036524,307.82605,676.1079,-8.580687,440.81744,892.64124,131.50333,282.09036,885.19104,50.667347,437.31705,1047.1462,431.08505,292.86554,1049.592,395.2787,417.8409,1064.9128,450.4874,310.2457,1067.7814,416.89185,483.57056,1143.762,282.68195,249.59174,1152.1515,237.69936
105155b7-352e-456b-8a4d-b4ea75d691ef.jpeg,stand,381.76505,145.4672,-617.5876,398.21518,123.35911,-577.9756,408.3801,123.93467,-577.84955,418.86298,124.3182,-577.7515,370.23715,122.48661,-576.61383,359.70416,121.92516,-576.43805,349.1067,121.58516,-576.4865,433.1639,142.9496,-332.82477,336.59744,137.77245,-319.97174,400.41586,174.24171,-527.1284,361.29868,172.43893,-522.69495,496.93604,295.807,-197.40921,267.00763,292.16077,-186.16704,516.17035,477.4785,-115.68622,253.37732,482.3709,-145.91971,514.2199,650.654,-277.6981,251.45903,656.317,-308.40253,527.074,704.1753,-324.21545,239.02757,710.974,-360.2233,503.61234,709.2831,-392.72137,261.12604,714.483,-427.25235,488.7442,689.16986,-305.2838,276.70798,695.6804,-338.6826,445.7598,640.4951,-9.5422535,315.10428,639.9563,10.135519,442.9896,870.531,42.84861,294.18478,861.29004,-237.4802,421.16296,1058.4474,437.00452,324.3784,1069.2251,192.51102,408.44202,1074.3938,463.23737,335.03833,1085.678,220.83371,430.2053,1170.9497,212.3566,331.8566,1185.8844,-55.499863
10a327e6-5092-453a-bc83-95dae327d4f1.jpeg,stand,378.97498,215.5635,-349.3426,394.7228,192.68227,-318.4756,405.29825,193.43536,-318.3801,416.18515,193.99808,-318.32678,366.45538,191.31421,-322.26877,355.30826,190.68723,-322.2564,344.1567,190.2256,-322.40198,428.64365,213.9138,-147.5785,329.76938,207.84103,-156.73526,397.01492,247.09988,-285.2198,356.77386,244.85352,-287.48428,490.85416,376.26685,-68.13328,254.80269,361.30875,-109.37881,514.5121,562.3438,-23.753578,237.75067,549.7451,-98.637505,510.9137,740.4928,-137.65625,218.93015,724.0567,-198.03322,520.9251,797.8895,-157.71252,202.18684,777.4889,-204.10645,500.69766,801.8999,-217.30429,217.33098,785.2924,-275.84686,485.17517,780.64667,-159.84802,239.49792,768.99384,-224.8248,436.71762,728.7112,14.548225,303.4832,723.4562,-13.692798,438.3902,966.1427,31.005993,276.9282,958.92426,-53.525684,424.24988,1155.71,228.84824,294.5745,1149.0415,233.97942,405.66583,1176.4419,237.77664,314.2332,1171.7092,248.74852,462.6436,1262.2104,64.03453,248.33919,1254.3372,74.84657
16449016-d6b1-4186-9add-a3bfef6cadef.jpeg,stand,380.5319,188.21053,-523.2215,396.26605,167.93835,-484.87143,406.4656,168.41382,-484.73923,417.02615,168.70987,-484.52518,368.6379,167.75546,-485.32297,358.4302,167.7013,-485.13895,348.20218,167.81522,-485.11957,433.19797,188.96198,-274.2743,337.79416,186.53415,-270.21484,401.22934,217.48035,-446.95016,362.21872,216.62442,-445.65942,498.09015,345.5083,-141.82957,266.1065,337.85278,-193.54471,516.5654,515.2662,-54.55545,230.15363,511.98093,-174.35269,508.16583,679.8187,-259.34155,235.27068,684.0674,-332.06976,517.2051,735.1232,-321.03497,224.367,738.4569,-380.84857,491.64093,737.90515,-385.67017,255.26103,740.5694,-442.362,478.3579,717.4895,-286.7044,269.56622,720.3632,-357.63486,443.06128,671.0428,21.870045,312.0364,670.00354,-21.320774,439.08084,919.11224,39.360355,307.2989,921.63513,-37.412685,426.2686,1116.5282,304.07437,304.9659,1123.4348,308.43613,410.77112,1130.316,317.91574,310.56763,1137.6309,327.08856,444.1543,1235.2263,98.00633,311.90887,1247.918,83.493904
1ac79916-571a-4edc-9467-e324f56f5306.jpeg,stand,372.24963,183.74588,-413.07138,386.16327,160.33719,-376.15283,396.36728,160.36575,-376.13977,406.87097,160.2132,-376.1064,358.02896,160.71597,-383.10333,347.17188,160.73254,-382.9971,336.3033,160.91022,-383.04425,419.36417,178.42853,-165.68651,322.86844,178.48285,-191.51836,391.2902,212.98734,-333.6637,352.25937,213.24684,-340.96622,481.48682,333.00195,-39.06463,259.01086,339.6565,-103.615654,501.84818,516.7951,50.319736,253.32816,542.8075,-71.88688,521.98126,671.53986,-146.63167,245.03838,709.3487,-203.10886,538.4984,721.9653,-193.06032,234.31874,758.8098,-222.77264,523.0358,723.75903,-262.82565,250.21213,761.50214,-296.8991,505.04733,706.9555,-176.52075,268.1333,743.76807,-231.26558,452.23685,691.4892,21.374928,322.59845,695.33624,-20.740667,477.83658,937.33167,48.2458,295.30582,942.5277,-40.547417,468.43414,1133.5494,305.81784,301.43344,1144.9323,282.02567,445.09354,1160.988,319.18243,320.11386,1170.0151,298.85248,533.9328,1228.1436,130.9585,259.27585,1250.8329,90.87672
1aecd199-f46e-4ee5-be7a-418d09842d9e.jpeg,stand,380.5319,188.21053,-523.2215,396.26605,167.93835,-484.87143,406.4656,168.41382,-484.73923,417.02615,168.70987,-484.52518,368.6379,167.75546,-485.32297,358.4302,167.7013,-485.13895,348.20218,167.81522,-485.11957,433.19797,188.96198,-274.2743,337.79416,186.53415,-270.21484,401.22934,217.48035,-446.95016,362.21872,216.62442,-445.65942,498.09015,345.5083,-141.82957,266.1065,337.85278,-193.54471,516.5654,515.2662,-54.55545,230.15363,511.98093,-174.35269,508.16583,679.8187,-259.34155,235.27068,684.0674,-332.06976,517.2051,735.1232,-321.03497,224.367,738.4569,-380.84857,491.64093,737.90515,-385.67017,255.26103,740.5694,-442.362,478.3579,717.4895,-286.7044,269.56622,720.3632,-357.63486,443.06128,671.0428,21.870045,312.0364,670.00354,-21.320774,439.08084,919.11224,39.360355,307.2989,921.63513,-37.412685,426.2686,1116.5282,304.07437,304.9659,1123.4348,308.43613,410.77112,1130.316,317.91574,310.56763,1137.6309,327.08856,444.1543,1235.2263,98.00633,311.90887,1247.918,83.493904
1c3f7d61-46e0-44d5-a43b-6dbd575a5439.jpeg,stand,381.44162,137.4783,-610.7363,397.51038,113.18321,-573.4886,408.30872,113.74699,-573.4187,419.4163,114.102516,-573.3037,367.18845,111.94641,-581.5094,355.67358,111.19949,-581.38104,344.17844,110.62565,-581.4501,431.182,131.96658,-325.58328,327.33295,126.23951,-357.86554,399.63412,167.58934,-514.4801,358.1782,165.26065,-523.7148,500.51788,286.93127,-173.46155,246.91476,284.6658,-228.37592,542.5506,477.56403,-73.05144,228.02435,482.63867,-181.29254,557.53925,663.1455,-261.66388,219.97461,667.8271,-339.0916,571.0158,723.25793,-313.00552,208.0202,727.7587,-374.52585,549.4376,726.4857,-389.3861,229.47255,730.736,-457.64328,531.8245,705.8568,-293.53168,247.72801,709.40186,-371.52484,457.48663,661.0412,16.216253,314.9232,664.6027,-15.387465,464.61523,923.4376,50.700348,282.91998,933.58716,-49.814102,444.13898,1138.6753,356.95834,297.59262,1148.7954,314.03802,423.03384,1165.233,373.75793,319.20868,1174.799,333.60193,489.74887,1246.8895,153.64873,249.4179,1261.3657,95.83816
1e8f27a0-0277-4a99-9e3b-d7f3a29c6c77.jpeg,stand,361.7743,218.73634,-621.88855,377.22678,195.02296,-580.5153,387.7899,195.5175,-580.43195,398.66595,195.8244,-580.3755,348.6042,194.3175,-582.60187,337.46478,193.79623,-582.48175,326.27838,193.45825,-582.4952,411.80774,215.71907,-347.7278,312.83588,211.63821,-347.78888,381.2707,249.0931,-536.7344,340.2071,247.5661,-536.6008,472.70285,377.0319,-196.57109,241.69759,379.9924,-235.19673,501.12213,560.955,-139.72131,226.95604,575.0941,-189.13396,513.55585,735.08514,-362.21683,220.91931,738.56323,-384.6073,526.37854,788.346,-417.84073,210.63649,790.62964,-440.6017,509.9767,793.0393,-488.44846,233.46896,789.27826,-508.6441,493.98285,774.84064,-394.93655,249.74048,770.7044,-414.00064,426.12268,717.42487,9.687338,297.9811,724.3903,-8.97547,438.27155,957.56226,37.207626,320.1244,964.3285,7.6252203,426.15768,1140.1387,386.33035,334.89377,1142.2544,447.13638,408.00583,1154.1143,408.80856,340.78055,1156.55,475.83286,456.92596,1260.4877,180.1903,350.59088,1261.7537,239.3858
20e8c60b-fe49-4512-aa37-85b004ec1d8c.jpeg,stand,353.11963,154.18835,-526.8299,374.9694,128.70334,-493.03607,387.04898,130.71988,-493.01117,399.47534,132.50694,-493.03253,343.81094,123.59852,-494.687,331.71185,121.28189,-494.57986,319.56595,119.18762,-494.52856,416.15274,153.1472,-281.26984,305.65335,134.08124,-280.15308,373.08228,188.58902,-445.67987,328.20715,181.17184,-445.08743,487.13156,316.6496,-156.99583,212.25946,299.86493,-175.86702,531.4074,513.3789,-73.76863,168.8077,505.1281,-120.0341,539.2387,690.08496,-257.5497,149.01073,683.8492,-294.51633,550.1753,750.2396,-310.04504,133.85358,742.57623,-335.25107,526.19604,749.8925,-375.17828,160.1101,743.75525,-417.63736,507.9984,728.9099,-283.68137,182.5127,724.49426,-327.00107,426.84973,709.9164,7.532188,276.66074,709.55316,-6.534713,431.64224,958.512,39.517822,257.16885,956.54407,24.284414,420.94284,1133.8385,374.82745,254.88266,1132.4822,469.79285,401.7682,1151.0891,398.51913,271.6373,1153.6573,500.8363,458.32016,1256.2443,210.6998,209.75076,1250.2285,305.14343
2ee9a5ea-de3a-4696-82b3-bb13e253eb73.jpeg,stand,326.04813,117.09396,-525.2729,342.2222,94.21528,-481.5386,353.29837,94.86317,-481.37375,364.72845,95.30422,-481.29453,312.35458,93.71605,-482.63403,300.81525,93.543625,-482.5451,289.2164,93.5836,-482.64136,379.326,119.1972,-256.78653,276.0814,115.75863,-254.24155,347.3114,150.876,-445.2482,303.98798,149.78177,-443.93558,451.7491,294.7946,-144.78094,205.99582,296.70294,-163.77939,476.43445,487.9849,-73.06393,199.36324,502.46606,-137.5752,484.61746,678.5873,-234.69812,192.67896,691.8084,-271.88947,500.02188,739.4214,-279.15778,179.62224,750.00494,-300.75558,475.72488,746.52686,-349.13956,199.81625,756.9397,-374.77353,457.76398,724.5094,-263.43585,218.65904,737.50336,-302.57706,415.4532,667.1258,8.028597,277.48477,671.09814,-7.3779564,429.99792,914.6988,105.9589,263.04724,905.1016,-202.2809,417.33972,1104.7168,478.01248,310.20813,1103.5356,235.80229,400.77695,1116.1157,502.68094,324.86755,1113.7072,267.0361,438.89917,1237.3342,272.4107,317.1198,1238.9795,27.541353
328f83e0-3632-4a5b-a4af-3967ab9f69c8.jpeg,stand,355.4883,162.98938,-619.76355,370.24423,142.42703,-573.43634,380.59674,142.47174,-573.3449,391.30362,142.32266,-573.3067,340.91553,143.35442,-572.47974,330.3815,143.55682,-572.23224,319.7911,143.99284,-572.2133,407.84116,161.4434,-307.93085,308.23087,162.90443,-292.9763,377.00586,191.46497,-522.5829,337.30215,191.94485,-518.5996,487.07645,322.04932,-150.46562,238.9511,320.71823,-153.61095,513.08203,499.37537,-53.881626,223.75262,506.28403,-70.40352,515.9181,660.37024,-318.04962,214.65594,665.61163,-325.44617,526.26685,714.018,-377.08197,204.14674,718.10175,-383.74548,509.70764,718.1137,-460.61057,221.28354,718.67316,-474.7425,495.40167,699.6908,-352.70135,238.03073,701.1243,-364.88596,437.3441,686.9032,6.7416787,294.22217,688.95105,-5.8340955,445.39703,925.3972,41.84317,293.49655,938.79144,15.041781,432.64084,1117.4408,468.32202,300.15118,1143.0626,469.36575,416.0676,1135.944,495.9592,312.86334,1164.8713,497.05035,456.60458,1226.515,225.24736,281.53033,1254.6233,203.69496
3707ba7f-b225-46e3-bfa2-34be331ba1ec.jpeg,stand,390.03412,184.4352,-664.44366,405.34637,164.98802,-617.92377,415.40402,166.61389,-617.94147,425.70215,168.06313,-617.7794,377.83365,161.54971,-628.0771,367.26303,160.32275,-627.99164,356.63757,159.23419,-627.9267,434.81445,189.24603,-366.9344,340.26376,177.0261,-404.76907,406.05615,214.9277,-570.47125,366.02844,209.98825,-582.48926,483.7799,341.61566,-199.41348,256.49356,326.01202,-324.11633,516.34314,534.3473,-130.13142,228.2502,525.04565,-325.92896,449.59442,667.5115,-350.9134,304.46414,674.06683,-475.5035,434.51785,716.90497,-433.593,314.57684,728.5658,-553.29803,408.56235,703.5291,-470.33188,347.5493,715.5437,-583.65875,407.7077,683.499,-370.16415,346.3143,693.80457,-488.11594,435.63315,662.9226,34.751114,306.08688,660.96344,-33.75692,430.92734,928.9851,-26.86933,321.3207,925.01855,-65.85137,422.79044,1145.239,303.03677,333.31866,1138.4644,321.3215,414.19754,1164.0275,324.5952,334.0856,1161.248,344.35284,422.38605,1258.7395,93.00885,349.8999,1249.4722,79.86595
38972223-ce9f-4941-8905-59ce73678131.jpeg,stand,372.1585,143.13138,-489.41528,386.85452,120.58899,-441.32968,397.8475,120.41557,-441.36093,409.22086,120.06771,-441.3999,356.06046,122.29637,-440.87308,344.56894,122.9509,-440.6483,333.0076,123.82717,-440.65747,425.15295,142.31972,-215.50601,320.6985,146.29128,-200.0513,395.34225,176.24161,-409.0345,352.69485,177.89188,-404.86066,508.28455,331.91382,-106.270744,245.5878,332.30588,-124.478424,523.6927,528.811,-12.782409,225.39418,544.1915,-93.02354,533.1498,711.776,-251.9963,214.39032,720.7871,-298.77634,545.04425,772.87604,-309.74713,204.14667,779.4769,-348.31592,525.9442,775.7569,-395.69296,222.06686,781.182,-429.1808,509.8043,752.75793,-287.13226,242.06331,759.745,-334.38443,455.44394,723.0506,3.8162014,301.4658,722.8884,-2.3796887,446.7353,992.8345,24.438004,295.6257,997.91077,-23.889019,425.1051,1206.2245,431.30615,309.70917,1206.1914,463.52225,412.94397,1227.0431,457.02673,321.97128,1227.2146,495.7944,429.4223,1318.133,224.56146,300.81482,1320.1226,262.52994
38ab7055-5326-436c-a920-8436a87c6a33.jpeg,stand,404.4453,127.9401,-572.07794,421.13007,103.62785,-537.1293,432.08344,103.70098,-537.1545,443.37204,103.60222,-537.16095,391.45343,103.842354,-534.192,380.3134,103.694725,-534.05585,369.15353,103.7347,-534.00757,459.4337,121.849785,-324.36356,357.23584,120.368576,-295.30597,425.816,157.63995,-491.82794,384.50186,157.11899,-483.31073,530.62494,291.93207,-209.94032,283.6916,282.43005,-161.11234,552.2567,496.21783,-134.9441,274.0507,490.95868,-83.48136,542.3799,673.7545,-269.48795,254.70317,667.44293,-213.10202,549.31604,729.6769,-302.6491,243.56358,719.8724,-220.08563,528.1168,731.62604,-370.88785,252.5332,725.22485,-304.42682,512.29315,710.3586,-292.6772,272.78415,707.8881,-246.53041,451.9389,660.2276,-16.943089,314.4875,650.95764,17.392178,452.38138,925.88226,18.79783,299.61124,916.38135,45.485645,442.41034,1127.5455,344.31995,323.02115,1123.9491,410.9158,427.73587,1148.1366,364.01434,346.68896,1151.4265,433.94858,465.38614,1241.8843,145.79976,264.8155,1232.1088,219.69788
3a58a866-558f-4153-9738-8068eedf29e5.jpeg,stand,369.80835,206.63933,-458.36664,382.61026,188.33305,-424.16446,391.89172,188.2565,-424.06625,401.49072,187.99957,-423.9738,357.39832,189.83711,-424.27814,348.07053,190.46628,-424.21066,338.7324,191.26144,-424.37842,417.90002,206.84094,-239.93402,330.85583,210.36438,-235.69228,390.77612,234.24716,-391.89066,355.51556,235.77625,-390.03503,491.95667,357.87866,-127.077545,275.7432,360.18555,-167.44753,521.9874,522.7998,-54.646008,255.07,532.91797,-140.01047,532.2189,680.28674,-211.98563,250.24313,680.3523,-283.35916,545.89264,729.2634,-251.0339,240.10088,727.7972,-321.59677,527.88617,734.20013,-315.2149,261.54352,727.956,-386.32196,513.0069,717.3514,-238.39055,277.0128,711.4985,-309.8033,452.8403,674.9368,17.756298,330.73923,676.7926,-17.18436,449.72394,890.07935,66.62514,331.04587,894.2819,-8.440869,435.01532,1068.9358,316.78503,336.6886,1084.641,287.4552,417.87863,1089.5442,328.81378,345.40964,1104.6558,300.38446,469.77115,1159.4025,128.38535,334.03943,1182.3107,77.374695
3b8589b1-2512-4436-9f6f-d172c2e7b4f1.jpeg,stand,370.62643,123.2238,-648.6418,386.25397,99.19182,-597.592,397.94055,99.61319,-597.5149,409.94586,99.87141,-597.4826,355.30368,99.09847,-600.0766,342.92554,99.00421,-599.9523,330.46973,99.18087,-600.077,424.55167,124.49257,-337.67105,316.01816,122.632904,-339.43066,393.0478,158.05829,-555.7063,347.2866,157.49306,-556.13873,491.62137,316.7995,-184.44086,239.00148,308.8593,-225.40582,506.83575,527.32874,-113.55224,221.18646,525.1893,-177.97948,505.6291,711.25885,-355.73853,221.03325,715.5558,-379.92813,512.1426,769.93713,-420.118,211.24478,774.6762,-440.13617,497.28085,768.82385,-499.20016,233.97012,774.3415,-511.6824,481.17743,745.7862,-391.28317,251.68622,751.4944,-410.85507,425.2677,704.4313,9.824201,287.58206,699.806,-8.702945,423.94547,923.4203,262.45914,270.05112,928.6081,105.67311,404.71036,1095.4717,785.1126,298.97806,1099.346,709.5315,383.43057,1112.464,823.7281,316.41574,1115.3369,753.9465,444.56476,1212.7809,588.9155,272.13245,1222.9653,518.0771
3cc3b5eb-4698-4a74-be04-9b6fe3f0f719.jpeg,stand,391.12332,135.83153,-552.42615,404.20505,110.680084,-515.9846,414.41684,110.25993,-515.8767,424.94485,109.68128,-515.80634,375.4544,111.83895,-518.5226,364.3979,111.92867,-518.43854,353.30322,112.223816,-518.6331,437.16785,125.83443,-284.28275,339.33972,128.16364,-288.68466,410.70193,163.62613,-464.65353,371.2053,164.78177,-465.15878,510.71844,285.87827,-145.89545,272.92276,291.1668,-165.56993,532.4917,480.2201,-49.255745,269.231,498.57935,-102.85986,545.5049,667.13995,-199.73909,250.29733,670.09424,-227.02472,558.95654,722.4536,-233.15451,237.7535,721.00775,-246.34215,545.5482,728.61,-311.99423,245.5019,726.5436,-325.8621,528.5909,709.02704,-231.93886,264.442,709.6073,-259.55594,471.39542,652.98346,8.807428,334.2683,653.1994,-8.177152,471.92017,899.92255,106.967224,309.8348,897.718,-65.72919,444.89978,1074.6721,561.59985,332.6113,1095.9849,376.23526,424.46164,1093.3912,593.83594,344.79416,1114.4683,405.07874,479.01132,1176.1201,372.6407,328.16953,1207.669,155.76007
3febc4d9-31fc-4418-8e7d-9f11864aecae.jpeg,stand,378.51587,145.18318,-471.79712,395.8882,122.512436,-433.98978,406.60422,123.8702,-433.86032,417.70514,125.03075,-433.7835,367.1446,119.637985,-437.44547,356.06207,118.37788,-437.34204,344.96054,117.30835,-437.36636,430.83368,146.3245,-222.39021,331.45474,135.12581,-233.77429,397.09448,178.66138,-394.3199,355.8034,174.23846,-397.32288,502.1021,320.86307,-103.801605,245.39624,314.29913,-152.93452,542.8383,518.79663,-0.36310756,229.91486,535.96796,-124.35922,537.4849,690.31934,-189.54828,217.78868,709.936,-299.002,545.81055,747.7937,-246.91388,204.4321,764.39636,-340.29416,516.40546,749.35175,-309.34848,226.86708,765.2479,-414.04822,500.981,727.86,-214.14677,246.15936,745.58655,-328.58536,449.8968,695.5863,27.340609,304.82013,699.43494,-26.426264,452.50354,951.4592,64.18408,278.7937,974.0479,-44.992775,426.64075,1137.2325,385.15222,283.24487,1176.229,337.8028,404.57144,1152.8358,407.10175,291.42603,1189.1907,360.24942,465.4002,1260.1008,225.4977,289.08957,1314.6736,143.59647
450bcdd7-7c12-4216-a217-f6c01fa9bf99.jpeg,stand,387.70178,172.34314,-562.4622,402.6218,148.22388,-529.7919,413.4107,148.69118,-529.68677,424.52664,148.95825,-529.59235,374.40814,147.70602,-535.30206,363.05878,147.225,-535.35315,351.71057,146.93784,-535.49445,437.94232,168.98389,-332.1228,337.69678,164.96269,-347.08942,407.35062,202.74208,-487.71182,366.199,201.38092,-491.30618,504.5951,325.38925,-205.27753,266.0895,326.70532,-265.43555,533.3423,521.91125,-130.01802,255.51707,538.5312,-228.37799,523.46265,703.8865,-235.96663,241.23515,709.32043,-324.5877,531.8709,759.7783,-261.3515,228.48256,762.2665,-346.0096,509.0944,762.3526,-323.57553,244.04962,764.28357,-418.2846,494.1044,742.5015,-258.3506,264.0842,747.384,-351.67514,450.76627,687.2528,25.400768,320.01004,689.4508,-25.029484,455.1618,919.7027,103.60155,289.99292,921.56104,35.491447,450.01624,1099.308,341.60086,285.45108,1092.8547,402.06686,428.07962,1118.9857,355.88934,299.59634,1109.6753,425.5209,511.43784,1207.783,175.39494,249.81352,1206.7952,243.4582
4636085a-a4d4-49ac-8153-60e7cfd578c2.jpeg,stand,369.80835,206.63933,-458.36664,382.61026,188.33305,-424.16446,391.89172,188.2565,-424.06625,401.49072,187.99957,-423.9738,357.39832,189.83711,-424.27814,348.07053,190.46628,-424.21066,338.7324,191.26144,-424.37842,417.90002,206.84094,-239.93402,330.85583,210.36438,-235.69228,390.77612,234.24716,-391.89066,355.51556,235.77625,-390.03503,491.95667,357.87866,-127.077545,275.7432,360.18555,-167.44753,521.9874,522.7998,-54.646008,255.07,532.91797,-140.01047,532.2189,680.28674,-211.98563,250.24313,680.3523,-283.35916,545.89264,729.2634,-251.0339,240.10088,727.7972,-321.59677,527.88617,734.20013,-315.2149,261.54352,727.956,-386.32196,513.0069,717.3514,-238.39055,277.0128,711.4985,-309.8033,452.8403,674.9368,17.756298,330.73923,676.7926,-17.18436,449.72394,890.07935,66.62514,331.04587,894.2819,-8.440869,435.01532,1068.9358,316.78503,336.6886,1084.641,287.4552,417.87863,1089.5442,328.81378,345.40964,1104.6558,300.38446,469.77115,1159.4025,128.38535,334.03943,1182.3107,77.374695
49f91976-b336-446a-b5aa-487bdaec7c7b.jpeg,stand,385.96872,162.91306,-382.76248,405.65677,138.65811,-346.62793,417.53848,139.81186,-346.6009,429.78232,140.75839,-346.62643,374.68332,136.33975,-345.55008,362.87787,135.3318,-345.44122,351.0132,134.51663,-345.39426,447.48923,163.52039,-166.62944,339.4812,154.16135,-145.86017,408.40002,197.65582,-317.36572,363.52185,194.07428,-311.55786,519.35944,338.3219,-85.24983,255.85464,327.53726,-90.35191,557.87933,517.0727,-37.315178,218.16406,528.7362,-65.17488,570.906,685.80414,-197.14189,196.77312,698.2229,-210.51976,585.3351,744.1906,-241.43234,181.35849,752.8592,-232.74965,562.5829,747.52655,-303.2763,202.35623,757.8155,-310.33582,544.30096,726.72766,-222.89487,225.76343,740.2282,-241.37413,458.47617,721.14813,-2.4534042,310.0958,720.4468,3.7250166,479.86508,973.50275,-20.69719,299.521,973.6483,1.6793091,469.36914,1148.1532,296.09918,310.44382,1160.1697,377.43802,454.46265,1159.2649,319.07724,325.29584,1179.5071,403.66086,484.6755,1274.7539,155.33253,278.6114,1280.366,223.15222
4d57da70-cf56-49a6-9a16-b75e0af40b20.jpeg,stand,353.11963,154.18835,-526.8299,374.9694,128.70334,-493.03607,387.04898,130.71988,-493.01117,399.47534,132.50694,-493.03253,343.81094,123.59852,-494.687,331.71185,121.28189,-494.57986,319.56595,119.18762,-494.52856,416.15274,153.1472,-281.26984,305.65335,134.08124,-280.15308,373.08228,188.58902,-445.67987,328.20715,181.17184,-445.08743,487.13156,316.6496,-156.99583,212.25946,299.86493,-175.86702,531.4074,513.3789,-73.76863,168.8077,505.1281,-120.0341,539.2387,690.08496,-257.5497,149.01073,683.8492,-294.51633,550.1753,750.2396,-310.04504,133.85358,742.57623,-335.25107,526.19604,749.8925,-375.17828,160.1101,743.75525,-417.63736,507.9984,728.9099,-283.68137,182.5127,724.49426,-327.00107,426.84973,709.9164,7.532188,276.66074,709.55316,-6.534713,431.64224,958.512,39.517822,257.16885,956.54407,24.284414,420.94284,1133.8385,374.82745,254.88266,1132.4822,469.79285,401.7682,1151.0891,398.51913,271.6373,1153.6573,500.8363,458.32016,1256.2443,210.6998,209.75076,1250.2285,305.14343
50e0ba5a-c235-442e-8442-14d95865a33e.jpeg,stand,378.97498,215.5635,-349.3426,394.7228,192.68227,-318.4756,405.29825,193.43536,-318.3801,416.18515,193.99808,-318.32678,366.45538,191.31421,-322.26877,355.30826,190.68723,-322.2564,344.1567,190.2256,-322.40198,428.64365,213.9138,-147.5785,329.76938,207.84103,-156.73526,397.01492,247.09988,-285.2198,356.77386,244.85352,-287.48428,490.85416,376.26685,-68.13328,254.80269,361.30875,-109.37881,514.5121,562.3438,-23.753578,237.75067,549.7451,-98.637505,510.9137,740.4928,-137.65625,218.93015,724.0567,-198.03322,520.9251,797.8895,-157.71252,202.18684,777.4889,-204.10645,500.69766,801.8999,-217.30429,217.33098,785.2924,-275.84686,485.17517,780.64667,-159.84802,239.49792,768.99384,-224.8248,436.71762,728.7112,14.548225,303.4832,723.4562,-13.692798,438.3902,966.1427,31.005993,276.9282,958.92426,-53.525684,424.24988,1155.71,228.84824,294.5745,1149.0415,233.97942,405.66583,1176.4419,237.77664,314.2332,1171.7092,248.74852,462.6436,1262.2104,64.03453,248.33919,1254.3372,74.84657
51e1cbd6-cad5-4a80-a11c-5e50c7b1272c.jpeg,stand,404.4453,127.9401,-572.07794,421.13007,103.62785,-537.1293,432.08344,103.70098,-537.1545,443.37204,103.60222,-537.16095,391.45343,103.842354,-534.192,380.3134,103.694725,-534.05585,369.15353,103.7347,-534.00757,459.4337,121.849785,-324.36356,357.23584,120.368576,-295.30597,425.816,157.63995,-491.82794,384.50186,157.11899,-483.31073,530.62494,291.93207,-209.94032,283.6916,282.43005,-161.11234,552.2567,496.21783,-134.9441,274.0507,490.95868,-83.48136,542.3799,673.7545,-269.48795,254.70317,667.44293,-213.10202,549.31604,729.6769,-302.6491,243.56358,719.8724,-220.08563,528.1168,731.62604,-370.88785,252.5332,725.22485,-304.42682,512.29315,710.3586,-292.6772,272.78415,707.8881,-246.53041,451.9389,660.2276,-16.943089,314.4875,650.95764,17.392178,452.38138,925.88226,18.79783,299.61124,916.38135,45.485645,442.41034,1127.5455,344.31995,323.02115,1123.9491,410.9158,427.73587,1148.1366,364.01434,346.68896,1151.4265,433.94858,465.38614,1241.8843,145.79976,264.8155,1232.1088,219.69788
598a4566-b4a5-48fe-993d-685269dd8334.jpeg,stand,357.99945,241.93336,-699.693,369.80795,220.73444,-667.54425,378.4691,220.09549,-667.4093,387.3627,219.28607,-667.2056,346.11816,222.61993,-664.7232,337.26114,222.98795,-664.5868,328.39014,223.55156,-664.59607,401.2976,231.78497,-448.2197,320.0708,236.3104,-429.31476,376.94968,263.15448,-616.4931,344.20187,265.0134,-610.46246,467.21368,357.09225,-287.7918,264.56772,364.77917,-300.38647,497.65012,516.8527,-206.49835,239.75328,530.72546,-256.066,486.0918,665.693,-379.27972,260.6466,676.03156,-401.95563,490.913,712.25653,-438.9632,258.90356,724.4625,-454.92715,469.2094,712.2283,-498.29852,282.3514,721.0102,-507.22208,458.89584,694.0854,-404.8499,290.90152,700.86145,-425.21988,426.3754,663.5957,4.157757,315.158,665.6672,-3.8273292,423.2988,875.30365,91.168915,313.82068,879.87646,25.152723,411.51437,1045.7017,431.90845,322.93448,1053.7006,418.60336,398.01376,1066.6246,453.10266,333.65088,1074.4478,441.59567,439.15384,1128.3849,228.1741,310.97903,1142.946,201.91856
5bc3b6c7-e7cb-46b0-b9ba-0b720d4befc9.jpeg,stand,359.01294,179.01624,-728.103,374.16455,152.31793,-689.18994,385.91888,152.42856,-689.04767,397.98163,152.35542,-688.99817,343.1337,152.64793,-692.53235,330.7359,152.54242,-692.3917,318.3039,152.719,-692.4741,413.01624,173.72948,-448.8341,304.10422,173.3536,-455.34222,382.04288,211.39224,-637.6893,336.8233,211.45581,-639.0795,495.89795,354.27728,-293.23965,229.56744,357.88318,-332.92728,524.5202,560.78766,-197.294,223.2648,580.2703,-279.84525,537.8217,745.144,-423.7998,216.47523,754.32745,-498.6315,550.60175,803.9635,-484.3557,205.86143,809.187,-551.5637,533.3524,807.6217,-566.56995,222.5059,811.1945,-639.9706,514.8345,786.1594,-458.50098,243.79315,790.2835,-536.5008,457.06445,743.12384,17.794886,313.53372,752.09595,-16.7916,466.03592,969.4608,157.57158,304.42447,998.8545,56.70276,438.04886,1125.7974,653.8237,334.47214,1130.135,724.6533,416.62512,1141.8728,693.5356,347.19165,1137.2865,779.795,479.3506,1233.5427,512.24384,332.2175,1248.1227,615.7997
61e8c949-e446-4ef5-94dc-efca65b01fb1.jpeg,stand,381.44162,137.4783,-610.7363,397.51038,113.18321,-573.4886,408.30872,113.74699,-573.4187,419.4163,114.102516,-573.3037,367.18845,111.94641,-581.5094,355.67358,111.19949,-581.38104,344.17844,110.62565,-581.4501,431.182,131.96658,-325.58328,327.33295,126.23951,-357.86554,399.63412,167.58934,-514.4801,358.1782,165.26065,-523.7148,500.51788,286.93127,-173.46155,246.91476,284.6658,-228.37592,542.5506,477.56403,-73.05144,228.02435,482.63867,-181.29254,557.53925,663.1455,-261.66388,219.97461,667.8271,-339.0916,571.0158,723.25793,-313.00552,208.0202,727.7587,-374.52585,549.4376,726.4857,-389.3861,229.47255,730.736,-457.64328,531.8245,705.8568,-293.53168,247.72801,709.40186,-371.52484,457.48663,661.0412,16.216253,314.9232,664.6027,-15.387465,464.61523,923.4376,50.700348,282.91998,933.58716,-49.814102,444.13898,1138.6753,356.95834,297.59262,1148.7954,314.03802,423.03384,1165.233,373.75793,319.20868,1174.799,333.60193,489.74887,1246.8895,153.64873,249.4179,1261.3657,95.83816
63a1400a-12d1-4c24-96d2-ceb41b4e0347.jpeg,stand,332.6406,180.23415,-518.6097,345.73972,158.13968,-479.08527,356.4402,157.44244,-479.11176,367.39825,156.55942,-479.04022,317.73602,161.09485,-480.89917,307.1335,162.2863,-480.7967,296.47906,163.65036,-480.8723,385.90305,176.68343,-273.24857,288.0291,185.21545,-271.13278,357.92334,208.55472,-442.86597,316.70523,212.12585,-442.79868,463.80914,332.7029,-153.33023,231.05927,340.39767,-200.39449,477.0893,521.9101,-119.853584,209.07747,524.4861,-188.64655,385.8871,657.21344,-302.71857,299.10565,660.2002,-308.7481,369.32996,711.37177,-376.07626,314.31195,713.4186,-367.5077,342.40427,696.8988,-409.8835,347.1852,698.00446,-395.78577,343.39615,674.3248,-318.69043,345.35153,676.7999,-318.89575,422.5962,680.0549,8.151012,290.82846,683.2809,-7.668976,438.98026,933.62604,33.910263,283.50085,936.7994,5.003742,426.6733,1134.5582,312.75983,308.2062,1139.1254,348.94843,409.214,1157.293,328.28656,329.96304,1164.8557,368.22696,463.38913,1245.4213,126.76574,261.51517,1251.259,144.04271
647b3837-4948-4616-9a16-0d5c162cda10.jpeg,stand,365.21323,192.67563,-519.25415,380.79044,170.6052,-479.52756,391.13586,171.18248,-479.47058,401.79102,171.60092,-479.51733,351.9531,169.91977,-481.32816,341.0666,169.56311,-481.2033,330.1549,169.41937,-481.26065,414.862,192.23297,-251.6102,317.00006,188.41171,-254.66289,384.5453,223.99792,-434.79373,344.35562,222.66919,-435.538,481.11453,354.06183,-117.59383,244.10776,353.63202,-118.55698,510.06372,524.0011,-32.447933,218.0563,532.92834,-23.214136,519.79956,678.5432,-289.76385,209.4793,688.61743,-220.36804,530.04443,732.02875,-362.3694,199.01059,738.67883,-264.7112,510.45416,730.55853,-432.41202,217.84552,739.29297,-346.6424,496.33536,711.7545,-321.29398,234.39897,721.0186,-253.946,439.06976,703.0402,12.582499,303.83777,703.47546,-11.767031,450.78143,926.6089,86.81883,279.28384,931.3958,-100.82349,422.6317,1081.5394,561.34314,299.67145,1097.3926,393.25708,400.97607,1093.288,596.1149,309.92007,1107.6989,429.0456,451.21307,1191.7605,386.76068,303.82364,1215.1239,209.3664
67a5f36e-1714-46e3-ad74-4e8e74a89c97.jpeg,stand,390.22467,167.45471,-528.9127,403.46527,144.00017,-488.29086,413.73285,144.70044,-488.18835,424.33252,145.22662,-488.17612,374.7912,142.76608,-496.05032,363.20523,142.1997,-495.99234,351.56406,141.8292,-495.98166,432.1219,166.66003,-269.43814,333.3329,161.55185,-297.1535,407.00406,200.05704,-448.46616,365.50034,198.05382,-456.41116,493.50885,341.6476,-150.137,253.34431,338.44952,-214.38434,516.5269,537.3391,-67.78617,248.85046,545.8103,-182.31134,524.421,728.661,-237.60474,251.64648,726.7591,-307.17307,537.06305,790.2948,-281.72192,242.05347,785.0731,-343.15604,516.439,797.4628,-352.3898,264.82852,788.2232,-408.11273,499.0091,775.59644,-267.78503,281.671,767.06555,-333.85156,447.8228,708.32275,16.817722,310.987,711.71313,-16.03961,458.05164,960.8971,80.19294,308.84186,968.9877,-23.573542,444.43036,1148.945,432.7691,324.2232,1152.8282,402.93665,427.10843,1166.2135,456.14133,333.5794,1168.222,431.56064,471.96686,1265.9315,255.78047,323.24503,1272.4541,217.59135
68f21b09-8c0c-4be2-8209-a93a103fd85e.jpeg,stand,332.6406,180.23415,-518.6097,345.73972,158.13968,-479.08527,356.4402,157.44244,-479.11176,367.39825,156.55942,-479.04022,317.73602,161.09485,-480.89917,307.1335,162.2863,-480.7967,296.47906,163.65036,-480.8723,385.90305,176.68343,-273.24857,288.0291,185.21545,-271.13278,357.92334,208.55472,-442.86597,316.70523,212.12585,-442.79868,463.80914,332.7029,-153.33023,231.05927,340.39767,-200.39449,477.0893,521.9101,-119.853584,209.07747,524.4861,-188.64655,385.8871,657.21344,-302.71857,299.10565,660.2002,-308.7481,369.32996,711.37177,-376.07626,314.31195,713.4186,-367.5077,342.40427,696.8988,-409.8835,347.1852,698.00446,-395.78577,343.39615,674.3248,-318.69043,345.35153,676.7999,-318.89575,422.5962,680.0549,8.151012,290.82846,683.2809,-7.668976,438.98026,933.62604,33.910263,283.50085,936.7994,5.003742,426.6733,1134.5582,312.75983,308.2062,1139.1254,348.94843,409.214,1157.293,328.28656,329.96304,1164.8557,368.22696,463.38913,1245.4213,126.76574,261.51517,1251.259,144.04271
7694c496-bbe7-45ec-974a-5e1aa177c0d3.jpeg,stand,389.7267,247.94125,-264.43634,406.27042,225.80411,-236.9401,416.62958,226.72127,-236.8483,427.2979,227.43481,-236.74728,378.55472,223.88675,-238.42633,367.77124,223.01537,-238.54451,356.99094,222.27875,-238.81108,440.0898,246.53671,-97.68469,343.8399,238.54362,-96.09021,407.5842,279.01675,-212.82106,368.42514,275.96442,-211.97318,498.71536,400.62344,-43.706997,264.8486,385.69046,-84.93724,521.41064,579.72876,-21.775429,238.99564,574.0299,-93.045586,526.9173,747.5886,-97.39348,238.07462,744.3348,-151.61134,539.2994,799.82776,-111.68041,227.18439,795.78394,-160.25676,519.44104,805.31866,-162.17755,247.85585,801.6729,-211.17049,503.40662,786.0217,-116.9125,266.5936,784.19977,-170.12921,439.11868,741.9931,14.44758,310.7089,737.21277,-14.055946,449.47382,975.891,47.365284,290.94458,964.8243,-26.88653,456.41232,1157.4519,181.32881,303.73703,1150.066,209.28322,440.12607,1179.4993,185.86288,324.34125,1175.8534,220.10696,503.46704,1252.9767,38.300613,248.24026,1243.3026,72.74212
77bf888e-fff2-4e61-a167-350852d5ccc0.jpeg,stand,357.99945,241.93336,-699.693,369.80795,220.73444,-667.54425,378.4691,220.09549,-667.4093,387.3627,219.28607,-667.2056,346.11816,222.61993,-664.7232,337.26114,222.98795,-664.5868,328.39014,223.55156,-664.59607,401.2976,231.78497,-448.2197,320.0708,236.3104,-429.31476,376.94968,263.15448,-616.4931,344.20187,265.0134,-610.46246,467.21368,357.09225,-287.7918,264.56772,364.77917,-300.38647,497.65012,516.8527,-206.49835,239.75328,530.72546,-256.066,486.0918,665.693,-379.27972,260.6466,676.03156,-401.95563,490.913,712.25653,-438.9632,258.90356,724.4625,-454.92715,469.2094,712.2283,-498.29852,282.3514,721.0102,-507.22208,458.89584,694.0854,-404.8499,290.90152,700.86145,-425.21988,426.3754,663.5957,4.157757,315.158,665.6672,-3.8273292,423.2988,875.30365,91.168915,313.82068,879.87646,25.152723,411.51437,1045.7017,431.90845,322.93448,1053.7006,418.60336,398.01376,1066.6246,453.10266,333.65088,1074.4478,441.59567,439.15384,1128.3849,228.1741,310.97903,1142.946,201.91856
84e720bb-f9b1-451b-a331-116659d0af5c.jpeg,stand,395.24338,120.49957,-510.07407,409.66794,96.405334,-468.78555,421.0687,96.632996,-468.8655,432.76804,96.64562,-468.82446,380.27985,96.8964,-472.41064,368.36996,97.03602,-472.27243,356.37122,97.40662,-472.40717,447.97406,120.2026,-264.2242,342.44446,120.23781,-273.66888,418.35565,153.83644,-435.8874,373.10217,153.81447,-438.44217,522.2667,294.05502,-149.00648,262.98932,290.44055,-213.94666,555.4445,490.87573,-98.87927,211.35081,480.65628,-203.62747,477.82446,629.7515,-271.8894,300.6095,630.57007,-321.45624,463.47113,684.8684,-334.54007,320.70483,684.4657,-373.32898,435.66055,667.73804,-379.14148,348.94217,661.7699,-406.55234,432.76306,645.09094,-288.8178,347.67026,641.6542,-330.1555,455.7448,690.6221,17.157642,317.1008,689.9445,-16.397741,446.6441,934.3783,171.51373,298.77795,936.9251,87.29631,445.97922,1112.1233,442.1982,303.01996,1119.3259,460.24704,427.47894,1133.0247,459.00146,321.19208,1140.9154,483.39615,498.4961,1222.1683,282.8409,248.6338,1237.2,291.5015
86aa9e6d-bf2e-46dc-b435-72a3eb7b3f07.jpeg,stand,361.7743,218.73634,-621.88855,377.22678,195.02296,-580.5153,387.7899,195.5175,-580.43195,398.66595,195.8244,-580.3755,348.6042,194.3175,-582.60187,337.46478,193.79623,-582.48175,326.27838,193.45825,-582.4952,411.80774,215.71907,-347.7278,312.83588,211.63821,-347.78888,381.2707,249.0931,-536.7344,340.2071,247.5661,-536.6008,472.70285,377.0319,-196.57109,241.69759,379.9924,-235.19673,501.12213,560.955,-139.72131,226.95604,575.0941,-189.13396,513.55585,735.08514,-362.21683,220.91931,738.56323,-384.6073,526.37854,788.346,-417.84073,210.63649,790.62964,-440.6017,509.9767,793.0393,-488.44846,233.46896,789.27826,-508.6441,493.98285,774.84064,-394.93655,249.74048,770.7044,-414.00064,426.12268,717.42487,9.687338,297.9811,724.3903,-8.97547,438.27155,957.56226,37.207626,320.1244,964.3285,7.6252203,426.15768,1140.1387,386.33035,334.89377,1142.2544,447.13638,408.00583,1154.1143,408.80856,340.78055,1156.55,475.83286,456.92596,1260.4877,180.1903,350.59088,1261.7537,239.3858
8b856a0d-bc4d-40b7-81aa-1f9623c2c3b6.jpeg,stand,385.96872,162.91306,-382.76248,405.65677,138.65811,-346.62793,417.53848,139.81186,-346.6009,429.78232,140.75839,-346.62643,374.68332,136.33975,-345.55008,362.87787,135.3318,-345.44122,351.0132,134.51663,-345.39426,447.48923,163.52039,-166.62944,339.4812,154.16135,-145.86017,408.40002,197.65582,-317.36572,363.52185,194.07428,-311.55786,519.35944,338.3219,-85.24983,255.85464,327.53726,-90.35191,557.87933,517.0727,-37.315178,218.16406,528.7362,-65.17488,570.906,685.80414,-197.14189,196.77312,698.2229,-210.51976,585.3351,744.1906,-241.43234,181.35849,752.8592,-232.74965,562.5829,747.52655,-303.2763,202.35623,757.8155,-310.33582,544.30096,726.72766,-222.89487,225.76343,740.2282,-241.37413,458.47617,721.14813,-2.4534042,310.0958,720.4468,3.7250166,479.86508,973.50275,-20.69719,299.521,973.6483,1.6793091,469.36914,1148.1532,296.09918,310.44382,1160.1697,377.43802,454.46265,1159.2649,319.07724,325.29584,1179.5071,403.66086,484.6755,1274.7539,155.33253,278.6114,1280.366,223.15222
919ad234-1b5d-4b4c-adec-c5bb49bdfc6e.jpeg,stand,391.12332,135.83153,-552.42615,404.20505,110.680084,-515.9846,414.41684,110.25993,-515.8767,424.94485,109.68128,-515.80634,375.4544,111.83895,-518.5226,364.3979,111.92867,-518.43854,353.30322,112.223816,-518.6331,437.16785,125.83443,-284.28275,339.33972,128.16364,-288.68466,410.70193,163.62613,-464.65353,371.2053,164.78177,-465.15878,510.71844,285.87827,-145.89545,272.92276,291.1668,-165.56993,532.4917,480.2201,-49.255745,269.231,498.57935,-102.85986,545.5049,667.13995,-199.73909,250.29733,670.09424,-227.02472,558.95654,722.4536,-233.15451,237.7535,721.00775,-246.34215,545.5482,728.61,-311.99423,245.5019,726.5436,-325.8621,528.5909,709.02704,-231.93886,264.442,709.6073,-259.55594,471.39542,652.98346,8.807428,334.2683,653.1994,-8.177152,471.92017,899.92255,106.967224,309.8348,897.718,-65.72919,444.89978,1074.6721,561.59985,332.6113,1095.9849,376.23526,424.46164,1093.3912,593.83594,344.79416,1114.4683,405.07874,479.01132,1176.1201,372.6407,328.16953,1207.669,155.76007
9347db4b-ee6c-454f-955a-c4cfad162671.jpeg,stand,374.33243,190.60677,-416.1696,389.95276,172.6405,-381.75543,399.42273,173.98816,-381.65942,409.1974,175.1519,-381.56787,364.61835,170.14865,-384.4192,354.80743,169.34822,-384.41995,344.9579,168.73975,-384.58972,421.73544,196.52443,-199.39957,333.2373,187.07019,-206.4797,390.8666,221.76155,-349.66882,354.19357,218.26587,-351.15356,480.87488,349.6436,-102.06991,263.53415,340.8748,-121.36439,511.54306,513.4498,-26.341213,250.52965,517.387,-87.39977,505.33508,663.2699,-134.40762,244.35504,674.3815,-190.40916,511.48096,710.96106,-165.21436,234.06773,720.8368,-210.48575,493.22134,714.2075,-219.5955,251.12549,724.88403,-273.0696,479.6411,697.6575,-155.15675,267.90677,709.4944,-214.94086,428.5153,681.3744,9.036524,307.82605,676.1079,-8.580687,440.81744,892.64124,131.50333,282.09036,885.19104,50.667347,437.31705,1047.1462,431.08505,292.86554,1049.592,395.2787,417.8409,1064.9128,450.4874,310.2457,1067.7814,416.89185,483.57056,1143.762,282.68195,249.59174,1152.1515,237.69936
97f44108-b70d-4aa8-a0e1-1320b7b38e1b.jpg,stand,1583.837,1987.9663,-2270.9307,1633.8121,1913.6721,-2148.5322,1665.9675,1913.094,-2148.9548,1698.9863,1912.1045,-2148.4756,1546.2537,1914.506,-2136.4653,1513.5226,1913.5548,-2135.6033,1480.6581,1913.1287,-2134.935,1747.5507,1959.7506,-1401.765,1451.5396,1957.1455,-1287.4432,1649.7023,2065.323,-1992.0559,1528.7078,2064.1519,-1962.5275,1930.5742,2390.7131,-955.50385,1274.422,2408.5176,-739.7695,1985.6155,2946.0344,-682.20905,1241.7478,2990.8276,-572.43146,2069.2212,3456.1472,-1306.9539,1186.2573,3501.2449,-1061.9646,2114.4883,3592.507,-1456.2192,1159.9081,3632.8135,-1144.5203,2093.533,3605.2922,-1695.7671,1176.214,3656.9214,-1405.268,2044.601,3557.981,-1414.9004,1233.3884,3607.7068,-1178.8728,1809.207,3382.9768,-181.80103,1426.897,3395.6086,184.14377,1749.9998,4196.88,-439.43246,1456.7056,4185.226,117.40159,1725.9614,4845.5796,540.9979,1572.1752,4713.905,1698.8184,1737.4122,4911.978,587.3692,1619.0238,4769.197,1810.7388,1645.0177,5160.6636,-231.17072,1545.8601,5019.9365,1130.4395
9d2bd651-71c0-45cb-a3d2-6cff005bb88b.jpeg,stand,372.1585,143.13138,-489.41528,386.85452,120.58899,-441.32968,397.8475,120.41557,-441.36093,409.22086,120.06771,-441.3999,356.06046,122.29637,-440.87308,344.56894,122.9509,-440.6483,333.0076,123.82717,-440.65747,425.15295,142.31972,-215.50601,320.6985,146.29128,-200.0513,395.34225,176.24161,-409.0345,352.69485,177.89188,-404.86066,508.28455,331.91382,-106.270744,245.5878,332.30588,-124.478424,523.6927,528.811,-12.782409,225.39418,544.1915,-93.02354,533.1498,711.776,-251.9963,214.39032,720.7871,-298.77634,545.04425,772.87604,-309.74713,204.14667,779.4769,-348.31592,525.9442,775.7569,-395.69296,222.06686,781.182,-429.1808,509.8043,752.75793,-287.13226,242.06331,759.745,-334.38443,455.44394,723.0506,3.8162014,301.4658,722.8884,-2.3796887,446.7353,992.8345,24.438004,295.6257,997.91077,-23.889019,425.1051,1206.2245,431.30615,309.70917,1206.1914,463.52225,412.94397,1227.0431,457.02673,321.97128,1227.2146,495.7944,429.4223,1318.133,224.56146,300.81482,1320.1226,262.52994
a77bde41-76bc-4b5e-82e1-5d02ff41b1d5.jpeg,stand,380.4886,119.93408,-558.88873,396.2214,96.23123,-518.1397,407.20892,96.340256,-518.15247,418.53546,96.2933,-518.09546,366.2821,96.83815,-518.305,354.78665,97.04113,-518.17126,343.23877,97.432556,-518.23096,433.14548,118.151474,-299.9618,329.77533,118.42331,-289.13208,401.9382,152.04773,-479.7552,359.0638,152.28218,-476.41452,502.33905,298.67358,-188.23036,255.83008,294.6509,-201.49983,517.81866,505.0741,-114.600365,242.35728,507.90024,-161.5698,515.6235,698.0201,-265.76324,235.99828,699.71606,-262.00085,525.0217,757.1332,-303.9811,224.72475,757.1268,-278.61697,504.51236,761.2467,-374.07446,243.1147,762.91284,-352.399,487.703,739.0696,-292.59003,262.80246,742.932,-291.2076,442.3101,675.1317,-0.6316261,303.29504,671.25146,1.5729328,428.58017,942.8488,70.1189,302.5004,939.9453,-6.342039,404.6663,1154.6484,403.4602,326.15485,1155.0142,361.21304,389.41434,1173.345,422.13083,338.34616,1174.8534,381.64612,420.38623,1275.5597,191.83961,318.96863,1277.6941,143.15004
a875cbae-59dc-4eaa-b7af-8c2ed373f794.jpeg,stand,355.4883,162.98938,-619.76355,370.24423,142.42703,-573.43634,380.59674,142.47174,-573.3449,391.30362,142.32266,-573.3067,340.91553,143.35442,-572.47974,330.3815,143.55682,-572.23224,319.7911,143.99284,-572.2133,407.84116,161.4434,-307.93085,308.23087,162.90443,-292.9763,377.00586,191.46497,-522.5829,337.30215,191.94485,-518.5996,487.07645,322.04932,-150.46562,238.9511,320.71823,-153.61095,513.08203,499.37537,-53.881626,223.75262,506.28403,-70.40352,515.9181,660.37024,-318.04962,214.65594,665.61163,-325.44617,526.26685,714.018,-377.08197,204.14674,718.10175,-383.74548,509.70764,718.1137,-460.61057,221.28354,718.67316,-474.7425,495.40167,699.6908,-352.70135,238.03073,701.1243,-364.88596,437.3441,686.9032,6.7416787,294.22217,688.95105,-5.8340955,445.39703,925.3972,41.84317,293.49655,938.79144,15.041781,432.64084,1117.4408,468.32202,300.15118,1143.0626,469.36575,416.0676,1135.944,495.9592,312.86334,1164.8713,497.05035,456.60458,1226.515,225.24736,281.53033,1254.6233,203.69496
b33a2837-200c-4670-baae-306b5ded90f7.jpeg,stand,383.06445,135.25833,-330.5698,395.24753,105.762215,-300.74866,406.24316,104.93748,-300.70126,417.59665,103.99372,-300.67722,364.8938,107.38098,-305.465,352.78128,107.44785,-305.52753,340.6224,107.62146,-305.65546,429.13422,118.19645,-121.42367,324.0527,122.1566,-127.31995,404.19016,162.37506,-261.10953,361.34457,164.03195,-263.01593,500.36124,279.79446,-34.400845,249.62126,278.2151,-70.87299,511.52325,479.76062,40.063984,231.85992,495.83496,-56.818886,508.49878,654.7168,-96.43836,223.101,669.4683,-131.62344,516.9722,711.0999,-136.97649,213.42586,720.93274,-136.67438,500.6852,713.0078,-192.73708,223.66728,727.0477,-201.33698,485.27518,692.2639,-121.67599,242.96129,708.313,-155.60551,450.3281,658.1579,8.938811,304.89407,654.07526,-8.066939,455.61496,963.77795,-36.168903,317.6358,931.0205,-26.073944,425.83887,1131.8003,318.30325,328.3333,1134.5977,373.91046,411.23242,1139.5581,346.89746,332.60187,1151.234,404.42346,432.14148,1243.0536,198.83261,339.87137,1253.123,230.81488
b68cb35a-c793-4ee3-9355-9c80832f8713.jpeg,stand,359.9546,250.25067,-411.491,370.53366,229.86462,-381.78317,379.69626,229.08023,-381.80798,389.0818,228.1253,-381.7388,346.2954,232.44095,-381.52658,337.10965,233.34674,-381.49307,327.90158,234.35349,-381.51056,403.30692,242.7528,-219.94998,319.5118,250.23624,-208.0407,380.48727,272.90494,-350.91638,345.6188,276.169,-347.7953,464.26498,365.29327,-123.2214,273.69025,375.62097,-134.30626,499.01,523.50543,-110.48995,260.7463,533.91046,-120.97428,420.0143,625.1587,-246.18546,340.58707,641.8518,-238.98618,403.61456,665.4278,-302.1886,355.05197,685.5331,-292.91385,382.5096,649.91223,-322.40298,380.17142,670.53033,-312.31073,385.27466,635.0455,-254.52766,377.2855,654.38715,-246.90933,426.67548,653.297,-4.2988887,315.09583,655.9617,4.524504,455.8536,873.7981,-17.80097,293.16043,871.60364,9.529244,466.06082,1051.6816,200.7178,286.9232,1046.4191,290.4863,458.11444,1068.5374,213.33192,299.68848,1066.7572,306.1756,481.96558,1149.7014,37.89238,254.78374,1142.6561,120.63157
b78f2884-2a62-45ee-bf6b-4c4c2099cf92.jpeg,stand,359.9546,250.25067,-411.491,370.53366,229.86462,-381.78317,379.69626,229.08023,-381.80798,389.0818,228.1253,-381.7388,346.2954,232.44095,-381.52658,337.10965,233.34674,-381.49307,327.90158,234.35349,-381.51056,403.30692,242.7528,-219.94998,319.5118,250.23624,-208.0407,380.48727,272.90494,-350.91638,345.6188,276.169,-347.7953,464.26498,365.29327,-123.2214,273.69025,375.62097,-134.30626,499.01,523.50543,-110.48995,260.7463,533.91046,-120.97428,420.0143,625.1587,-246.18546,340.58707,641.8518,-238.98618,403.61456,665.4278,-302.1886,355.05197,685.5331,-292.91385,382.5096,649.91223,-322.40298,380.17142,670.53033,-312.31073,385.27466,635.0455,-254.52766,377.2855,654.38715,-246.90933,426.67548,653.297,-4.2988887,315.09583,655.9617,4.524504,455.8536,873.7981,-17.80097,293.16043,871.60364,9.529244,466.06082,1051.6816,200.7178,286.9232,1046.4191,290.4863,458.11444,1068.5374,213.33192,299.68848,1066.7572,306.1756,481.96558,1149.7014,37.89238,254.78374,1142.6561,120.63157
bf07abdd-110c-4899-8d8a-21f9bca50833.jpeg,stand,390.03412,184.4352,-664.44366,405.34637,164.98802,-617.92377,415.40402,166.61389,-617.94147,425.70215,168.06313,-617.7794,377.83365,161.54971,-628.0771,367.26303,160.32275,-627.99164,356.63757,159.23419,-627.9267,434.81445,189.24603,-366.9344,340.26376,177.0261,-404.76907,406.05615,214.9277,-570.47125,366.02844,209.98825,-582.48926,483.7799,341.61566,-199.41348,256.49356,326.01202,-324.11633,516.34314,534.3473,-130.13142,228.2502,525.04565,-325.92896,449.59442,667.5115,-350.9134,304.46414,674.06683,-475.5035,434.51785,716.90497,-433.593,314.57684,728.5658,-553.29803,408.56235,703.5291,-470.33188,347.5493,715.5437,-583.65875,407.7077,683.499,-370.16415,346.3143,693.80457,-488.11594,435.63315,662.9226,34.751114,306.08688,660.96344,-33.75692,430.92734,928.9851,-26.86933,321.3207,925.01855,-65.85137,422.79044,1145.239,303.03677,333.31866,1138.4644,321.3215,414.19754,1164.0275,324.5952,334.0856,1161.248,344.35284,422.38605,1258.7395,93.00885,349.8999,1249.4722,79.86595
bf77887e-eb57-4589-9d9b-2092ec651cc3.jpeg,stand,326.04813,117.09396,-525.2729,342.2222,94.21528,-481.5386,353.29837,94.86317,-481.37375,364.72845,95.30422,-481.29453,312.35458,93.71605,-482.63403,300.81525,93.543625,-482.5451,289.2164,93.5836,-482.64136,379.326,119.1972,-256.78653,276.0814,115.75863,-254.24155,347.3114,150.876,-445.2482,303.98798,149.78177,-443.93558,451.7491,294.7946,-144.78094,205.99582,296.70294,-163.77939,476.43445,487.9849,-73.06393,199.36324,502.46606,-137.5752,484.61746,678.5873,-234.69812,192.67896,691.8084,-271.88947,500.02188,739.4214,-279.15778,179.62224,750.00494,-300.75558,475.72488,746.52686,-349.13956,199.81625,756.9397,-374.77353,457.76398,724.5094,-263.43585,218.65904,737.50336,-302.57706,415.4532,667.1258,8.028597,277.48477,671.09814,-7.3779564,429.99792,914.6988,105.9589,263.04724,905.1016,-202.2809,417.33972,1104.7168,478.01248,310.20813,1103.5356,235.80229,400.77695,1116.1157,502.68094,324.86755,1113.7072,267.0361,438.89917,1237.3342,272.4107,317.1198,1238.9795,27.541353
c2d99509-dfa6-4aa8-b196-52bf9b6ff5f4.jpeg,stand,365.67728,193.08655,-677.8226,384.37854,167.78903,-638.8231,396.25952,168.81172,-638.633,408.4464,169.64847,-638.68475,353.61508,165.62146,-635.9324,341.4739,164.50546,-635.731,329.29816,163.68729,-635.74695,424.44263,191.61484,-399.1728,315.99734,182.29538,-374.97556,387.36548,225.34271,-588.2703,341.90298,221.92242,-581.30835,492.62894,367.20505,-259.87485,239.77841,355.929,-255.4333,516.7384,561.37024,-197.69073,228.49408,556.25806,-185.9494,514.09314,738.00226,-442.6644,221.31967,738.66486,-381.59033,522.1214,796.344,-506.1171,209.18118,796.21326,-429.60684,501.2409,796.83594,-578.19214,230.03479,802.2818,-510.68988,484.78363,774.3037,-474.09717,250.67789,781.84265,-415.3512,433.88498,733.9658,-11.801481,302.7232,732.7235,12.975706,422.73254,962.54834,213.78822,304.07825,959.00415,157.55281,417.53635,1135.366,684.60895,315.71924,1128.3198,715.90485,407.10474,1149.1436,721.8095,327.53647,1143.4432,757.6398,434.98895,1254.4335,508.6994,298.3523,1247.4624,547.18414
c73ae4c5-983e-4178-bc48-1715ed8a41f3.jpeg,stand,381.76505,145.4672,-617.5876,398.21518,123.35911,-577.9756,408.3801,123.93467,-577.84955,418.86298,124.3182,-577.7515,370.23715,122.48661,-576.61383,359.70416,121.92516,-576.43805,349.1067,121.58516,-576.4865,433.1639,142.9496,-332.82477,336.59744,137.77245,-319.97174,400.41586,174.24171,-527.1284,361.29868,172.43893,-522.69495,496.93604,295.807,-197.40921,267.00763,292.16077,-186.16704,516.17035,477.4785,-115.68622,253.37732,482.3709,-145.91971,514.2199,650.654,-277.6981,251.45903,656.317,-308.40253,527.074,704.1753,-324.21545,239.02757,710.974,-360.2233,503.61234,709.2831,-392.72137,261.12604,714.483,-427.25235,488.7442,689.16986,-305.2838,276.70798,695.6804,-338.6826,445.7598,640.4951,-9.5422535,315.10428,639.9563,10.135519,442.9896,870.531,42.84861,294.18478,861.29004,-237.4802,421.16296,1058.4474,437.00452,324.3784,1069.2251,192.51102,408.44202,1074.3938,463.23737,335.03833,1085.678,220.83371,430.2053,1170.9497,212.3566,331.8566,1185.8844,-55.499863
cb4c87b6-d29f-4d12-8258-6e2dcd17872a.jpeg,stand,383.06445,135.25833,-330.5698,395.24753,105.762215,-300.74866,406.24316,104.93748,-300.70126,417.59665,103.99372,-300.67722,364.8938,107.38098,-305.465,352.78128,107.44785,-305.52753,340.6224,107.62146,-305.65546,429.13422,118.19645,-121.42367,324.0527,122.1566,-127.31995,404.19016,162.37506,-261.10953,361.34457,164.03195,-263.01593,500.36124,279.79446,-34.400845,249.62126,278.2151,-70.87299,511.52325,479.76062,40.063984,231.85992,495.83496,-56.818886,508.49878,654.7168,-96.43836,223.101,669.4683,-131.62344,516.9722,711.0999,-136.97649,213.42586,720.93274,-136.67438,500.6852,713.0078,-192.73708,223.66728,727.0477,-201.33698,485.27518,692.2639,-121.67599,242.96129,708.313,-155.60551,450.3281,658.1579,8.938811,304.89407,654.07526,-8.066939,455.61496,963.77795,-36.168903,317.6358,931.0205,-26.073944,425.83887,1131.8003,318.30325,328.3333,1134.5977,373.91046,411.23242,1139.5581,346.89746,332.60187,1151.234,404.42346,432.14148,1243.0536,198.83261,339.87137,1253.123,230.81488
dcf596d1-1135-4f2d-8cb7-f564d666044c.jpeg,stand,357.54355,182.94235,-432.8557,371.23,155.37933,-408.22165,382.13055,154.25189,-408.06805,393.37247,152.93053,-407.94104,342.8995,158.39038,-405.58594,332.02762,159.11664,-405.5397,321.17877,160.01935,-405.66687,413.27786,167.48761,-240.00018,313.62457,175.75829,-218.52756,382.9044,209.52881,-369.24872,342.72086,213.15051,-362.5902,501.8357,324.89185,-135.67728,257.63364,334.83588,-143.31418,527.58344,515.53174,-76.713066,246.29915,535.4534,-104.53895,539.3625,680.8075,-248.21918,233.96648,699.42804,-253.51944,555.6378,734.203,-296.59006,222.22652,750.792,-283.65717,531.7355,736.37177,-358.09793,240.31128,751.76794,-356.76984,514.07294,718.44214,-271.10156,260.1964,733.7934,-282.68625,459.31863,690.25757,12.682616,324.08606,692.75977,-11.8982525,449.96866,934.36743,30.427004,301.85788,939.7641,-14.796194,427.92847,1120.4617,270.305,312.24857,1127.6895,307.6853,409.94437,1134.2866,282.24976,323.50916,1141.0215,324.5045,449.14096,1243.1134,85.454346,310.51425,1255.6895,117.56367
e0743c57-a10b-4270-bebd-958db3ce90bb.jpeg,stand,372.24963,183.74588,-413.07138,386.16327,160.33719,-376.15283,396.36728,160.36575,-376.13977,406.87097,160.2132,-376.1064,358.02896,160.71597,-383.10333,347.17188,160.73254,-382.9971,336.3033,160.91022,-383.04425,419.36417,178.42853,-165.68651,322.86844,178.48285,-191.51836,391.2902,212.98734,-333.6637,352.25937,213.24684,-340.96622,481.48682,333.00195,-39.06463,259.01086,339.6565,-103.615654,501.84818,516.7951,50.319736,253.32816,542.8075,-71.88688,521.98126,671.53986,-146.63167,245.03838,709.3487,-203.10886,538.4984,721.9653,-193.06032,234.31874,758.8098,-222.77264,523.0358,723.75903,-262.82565,250.21213,761.50214,-296.8991,505.04733,706.9555,-176.52075,268.1333,743.76807,-231.26558,452.23685,691.4892,21.374928,322.59845,695.33624,-20.740667,477.83658,937.33167,48.2458,295.30582,942.5277,-40.547417,468.43414,1133.5494,305.81784,301.43344,1144.9323,282.02567,445.09354,1160.988,319.18243,320.11386,1170.0151,298.85248,533.9328,1228.1436,130.9585,259.27585,1250.8329,90.87672
e3ea3f3f-8a8e-4313-bddf-90338185c5cf.jpeg,stand,395.24338,120.49957,-510.07407,409.66794,96.405334,-468.78555,421.0687,96.632996,-468.8655,432.76804,96.64562,-468.82446,380.27985,96.8964,-472.41064,368.36996,97.03602,-472.27243,356.37122,97.40662,-472.40717,447.97406,120.2026,-264.2242,342.44446,120.23781,-273.66888,418.35565,153.83644,-435.8874,373.10217,153.81447,-438.44217,522.2667,294.05502,-149.00648,262.98932,290.44055,-213.94666,555.4445,490.87573,-98.87927,211.35081,480.65628,-203.62747,477.82446,629.7515,-271.8894,300.6095,630.57007,-321.45624,463.47113,684.8684,-334.54007,320.70483,684.4657,-373.32898,435.66055,667.73804,-379.14148,348.94217,661.7699,-406.55234,432.76306,645.09094,-288.8178,347.67026,641.6542,-330.1555,455.7448,690.6221,17.157642,317.1008,689.9445,-16.397741,446.6441,934.3783,171.51373,298.77795,936.9251,87.29631,445.97922,1112.1233,442.1982,303.01996,1119.3259,460.24704,427.47894,1133.0247,459.00146,321.19208,1140.9154,483.39615,498.4961,1222.1683,282.8409,248.6338,1237.2,291.5015
e98e5bd8-8705-47b8-afe1-e0419f32ec3d.jpeg,stand,380.4886,119.93408,-558.88873,396.2214,96.23123,-518.1397,407.20892,96.340256,-518.15247,418.53546,96.2933,-518.09546,366.2821,96.83815,-518.305,354.78665,97.04113,-518.17126,343.23877,97.432556,-518.23096,433.14548,118.151474,-299.9618,329.77533,118.42331,-289.13208,401.9382,152.04773,-479.7552,359.0638,152.28218,-476.41452,502.33905,298.67358,-188.23036,255.83008,294.6509,-201.49983,517.81866,505.0741,-114.600365,242.35728,507.90024,-161.5698,515.6235,698.0201,-265.76324,235.99828,699.71606,-262.00085,525.0217,757.1332,-303.9811,224.72475,757.1268,-278.61697,504.51236,761.2467,-374.07446,243.1147,762.91284,-352.399,487.703,739.0696,-292.59003,262.80246,742.932,-291.2076,442.3101,675.1317,-0.6316261,303.29504,671.25146,1.5729328,428.58017,942.8488,70.1189,302.5004,939.9453,-6.342039,404.6663,1154.6484,403.4602,326.15485,1155.0142,361.21304,389.41434,1173.345,422.13083,338.34616,1174.8534,381.64612,420.38623,1275.5597,191.83961,318.96863,1277.6941,143.15004
eb8bf5ed-1c43-47c5-8ff8-ff32a9c70ac9.jpeg,stand,359.01294,179.01624,-728.103,374.16455,152.31793,-689.18994,385.91888,152.42856,-689.04767,397.98163,152.35542,-688.99817,343.1337,152.64793,-692.53235,330.7359,152.54242,-692.3917,318.3039,152.719,-692.4741,413.01624,173.72948,-448.8341,304.10422,173.3536,-455.34222,382.04288,211.39224,-637.6893,336.8233,211.45581,-639.0795,495.89795,354.27728,-293.23965,229.56744,357.88318,-332.92728,524.5202,560.78766,-197.294,223.2648,580.2703,-279.84525,537.8217,745.144,-423.7998,216.47523,754.32745,-498.6315,550.60175,803.9635,-484.3557,205.86143,809.187,-551.5637,533.3524,807.6217,-566.56995,222.5059,811.1945,-639.9706,514.8345,786.1594,-458.50098,243.79315,790.2835,-536.5008,457.06445,743.12384,17.794886,313.53372,752.09595,-16.7916,466.03592,969.4608,157.57158,304.42447,998.8545,56.70276,438.04886,1125.7974,653.8237,334.47214,1130.135,724.6533,416.62512,1141.8728,693.5356,347.19165,1137.2865,779.795,479.3506,1233.5427,512.24384,332.2175,1248.1227,615.7997
ef8b857c-90ec-4875-bdd9-b3d6e0cbef48.jpeg,stand,370.62643,123.2238,-648.6418,386.25397,99.19182,-597.592,397.94055,99.61319,-597.5149,409.94586,99.87141,-597.4826,355.30368,99.09847,-600.0766,342.92554,99.00421,-599.9523,330.46973,99.18087,-600.077,424.55167,124.49257,-337.67105,316.01816,122.632904,-339.43066,393.0478,158.05829,-555.7063,347.2866,157.49306,-556.13873,491.62137,316.7995,-184.44086,239.00148,308.8593,-225.40582,506.83575,527.32874,-113.55224,221.18646,525.1893,-177.97948,505.6291,711.25885,-355.73853,221.03325,715.5558,-379.92813,512.1426,769.93713,-420.118,211.24478,774.6762,-440.13617,497.28085,768.82385,-499.20016,233.97012,774.3415,-511.6824,481.17743,745.7862,-391.28317,251.68622,751.4944,-410.85507,425.2677,704.4313,9.824201,287.58206,699.806,-8.702945,423.94547,923.4203,262.45914,270.05112,928.6081,105.67311,404.71036,1095.4717,785.1126,298.97806,1099.346,709.5315,383.43057,1112.464,823.7281,316.41574,1115.3369,753.9465,444.56476,1212.7809,588.9155,272.13245,1222.9653,518.0771
f9e10803-1fa7-4566-8a25-7addb86826ee.jpeg,stand,365.21323,192.67563,-519.25415,380.79044,170.6052,-479.52756,391.13586,171.18248,-479.47058,401.79102,171.60092,-479.51733,351.9531,169.91977,-481.32816,341.0666,169.56311,-481.2033,330.1549,169.41937,-481.26065,414.862,192.23297,-251.6102,317.00006,188.41171,-254.66289,384.5453,223.99792,-434.79373,344.35562,222.66919,-435.538,481.11453,354.06183,-117.59383,244.10776,353.63202,-118.55698,510.06372,524.0011,-32.447933,218.0563,532.92834,-23.214136,519.79956,678.5432,-289.76385,209.4793,688.61743,-220.36804,530.04443,732.02875,-362.3694,199.01059,738.67883,-264.7112,510.45416,730.55853,-432.41202,217.84552,739.29297,-346.6424,496.33536,711.7545,-321.29398,234.39897,721.0186,-253.946,439.06976,703.0402,12.582499,303.83777,703.47546,-11.767031,450.78143,926.6089,86.81883,279.28384,931.3958,-100.82349,422.6317,1081.5394,561.34314,299.67145,1097.3926,393.25708,400.97607,1093.288,596.1149,309.92007,1107.6989,429.0456,451.21307,1191.7605,386.76068,303.82364,1215.1239,209.3664
fba9f5e0-7a3d-4c26-bd6e-fa1524d79d32.jpeg,stand,357.54355,182.94235,-432.8557,371.23,155.37933,-408.22165,382.13055,154.25189,-408.06805,393.37247,152.93053,-407.94104,342.8995,158.39038,-405.58594,332.02762,159.11664,-405.5397,321.17877,160.01935,-405.66687,413.27786,167.48761,-240.00018,313.62457,175.75829,-218.52756,382.9044,209.52881,-369.24872,342.72086,213.15051,-362.5902,501.8357,324.89185,-135.67728,257.63364,334.83588,-143.31418,527.58344,515.53174,-76.713066,246.29915,535.4534,-104.53895,539.3625,680.8075,-248.21918,233.96648,699.42804,-253.51944,555.6378,734.203,-296.59006,222.22652,750.792,-283.65717,531.7355,736.37177,-358.09793,240.31128,751.76794,-356.76984,514.07294,718.44214,-271.10156,260.1964,733.7934,-282.68625,459.31863,690.25757,12.682616,324.08606,692.75977,-11.8982525,449.96866,934.36743,30.427004,301.85788,939.7641,-14.796194,427.92847,1120.4617,270.305,312.24857,1127.6895,307.6853,409.94437,1134.2866,282.24976,323.50916,1141.0215,324.5045,449.14096,1243.1134,85.454346,310.51425,1255.6895,117.56367
fce3eb76-78ff-4828-8475-074445321a7c.jpeg,stand,390.22467,167.45471,-528.9127,403.46527,144.00017,-488.29086,413.73285,144.70044,-488.18835,424.33252,145.22662,-488.17612,374.7912,142.76608,-496.05032,363.20523,142.1997,-495.99234,351.56406,141.8292,-495.98166,432.1219,166.66003,-269.43814,333.3329,161.55185,-297.1535,407.00406,200.05704,-448.46616,365.50034,198.05382,-456.41116,493.50885,341.6476,-150.137,253.34431,338.44952,-214.38434,516.5269,537.3391,-67.78617,248.85046,545.8103,-182.31134,524.421,728.661,-237.60474,251.64648,726.7591,-307.17307,537.06305,790.2948,-281.72192,242.05347,785.0731,-343.15604,516.439,797.4628,-352.3898,264.82852,788.2232,-408.11273,499.0091,775.59644,-267.78503,281.671,767.06555,-333.85156,447.8228,708.32275,16.817722,310.987,711.71313,-16.03961,458.05164,960.8971,80.19294,308.84186,968.9877,-23.573542,444.43036,1148.945,432.7691,324.2232,1152.8282,402.93665,427.10843,1166.2135,456.14133,333.5794,1168.222,431.56064,471.96686,1265.9315,255.78047,323.24503,1272.4541,217.59135
fea69922-71a8-4e13-8dfd-903db1723709.jpeg,stand,332.6406,180.23415,-518.6097,345.73972,158.13968,-479.08527,356.4402,157.44244,-479.11176,367.39825,156.55942,-479.04022,317.73602,161.09485,-480.89917,307.1335,162.2863,-480.7967,296.47906,163.65036,-480.8723,385.90305,176.68343,-273.24857,288.0291,185.21545,-271.13278,357.92334,208.55472,-442.86597,316.70523,212.12585,-442.79868,463.80914,332.7029,-153.33023,231.05927,340.39767,-200.39449,477.0893,521.9101,-119.853584,209.07747,524.4861,-188.64655,385.8871,657.21344,-302.71857,299.10565,660.2002,-308.7481,369.32996,711.37177,-376.07626,314.31195,713.4186,-367.5077,342.40427,696.8988,-409.8835,347.1852,698.00446,-395.78577,343.39615,674.3248,-318.69043,345.35153,676.7999,-318.89575,422.5962,680.0549,8.151012,290.82846,683.2809,-7.668976,438.98026,933.62604,33.910263,283.50085,936.7994,5.003742,426.6733,1134.5582,312.75983,308.2062,1139.1254,348.94843,409.214,1157.293,328.28656,329.96304,1164.8557,368.22696,463.38913,1245.4213,126.76574,261.51517,1251.259,144.04271
00c976ce-9a5b-4511-bd18-530ee710ace8.jpeg,sit,407.8619,246.32312,-422.01352,422.209,223.29147,-386.5489,432.93045,223.45706,-386.59058,443.8753,223.4571,-386.34402,393.44775,223.22502,-388.6214,382.24127,222.85281,-388.48737,371.06204,222.64264,-388.45035,457.48117,240.53528,-170.50096,356.789,238.457,-172.83754,428.76282,273.0197,-340.46317,386.4107,272.0683,-341.2488,516.5533,371.22107,-70.22612,299.40536,364.42502,-46.280624,549.5882,544.423,-62.98751,269.00793,532.6477,-34.436443,456.77295,649.38257,-227.73846,358.3542,640.0672,-209.5638,440.053,692.504,-298.81262,371.19208,687.0777,-268.30222,411.01007,674.6289,-310.7444,401.54388,669.28845,-292.93466,413.5615,659.5456,-233.68518,399.9273,655.25397,-217.9294,470.7991,638.10443,-19.31819,348.57568,631.47516,19.73593,423.15607,777.37427,-480.40173,328.2783,754.38544,-538.5161,378.07095,1086.5615,-314.67758,345.10812,1070.3599,-417.35794,370.97284,1113.5835,-305.12167,354.4747,1100.039,-411.35074,347.61642,1229.7787,-510.47116,352.9305,1217.364,-627.4616
083595aa-c8ee-473a-bfa7-db8645682ddf.jpeg,sit,379.59085,187.3718,-443.00543,394.52127,162.19098,-403.6341,405.45984,161.89816,-403.72165,416.67468,161.39267,-403.84827,363.7396,163.69534,-404.1126,352.3473,164.0477,-403.8161,340.9622,164.60751,-403.67972,433.06955,180.9946,-167.53024,327.53464,184.58008,-160.37706,400.8611,219.79831,-355.84122,359.55557,220.98587,-354.17807,504.41898,339.7084,-31.29903,263.45972,339.91467,-47.499588,530.8181,516.05975,-32.802197,246.43317,524.5702,-67.38655,541.3446,656.15845,-431.3189,219.81175,667.0334,-390.0998,561.22205,708.8982,-534.3722,199.17636,719.45374,-450.7568,533.4691,702.0786,-597.7789,215.38872,710.4813,-526.1108,516.48224,682.58594,-468.5183,235.79333,693.7664,-423.41287,458.54587,681.7252,-0.31345266,311.6719,676.8213,1.3662832,570.9189,840.8469,-593.82385,179.77477,817.37177,-615.23706,461.45557,1058.406,-127.606415,279.1586,1046.1211,-150.59325,421.3771,1074.4907,-87.672264,321.86108,1069.0272,-111.87106,496.0819,1197.2191,-278.3511,215.13234,1180.2285,-320.30463
0a95c2e4-0f44-4134-8b9b-b94f196c8466.jpeg,sit,378.57684,148.95602,-392.54538,392.80157,127.57954,-346.69635,403.94318,128.17828,-346.85205,415.38422,128.56873,-346.8234,361.95547,127.81643,-351.5548,350.0053,128.1173,-351.36176,338.06934,128.57109,-351.37506,428.70383,153.8578,-117.90292,321.36096,153.42194,-135.62822,399.52948,184.60406,-311.52994,355.27975,184.20682,-316.39963,494.95468,327.94205,1.3142784,246.46175,311.93225,-46.62953,508.91977,503.61588,33.820576,211.53589,487.61053,-54.870544,497.16534,620.9631,-332.16336,235.41487,604.2113,-367.8495,503.8793,674.8581,-440.88095,231.99007,656.5046,-446.8353,475.63593,658.34204,-490.89902,262.53857,637.2013,-500.87692,463.5939,637.58923,-360.68958,273.89676,618.6598,-390.88562,446.681,633.8497,22.485004,297.89914,630.6564,-21.715199,519.6293,799.31305,-430.01343,228.76164,794.51746,-625.0012,442.36807,1049.4891,-97.13642,281.2153,1049.7336,-232.43295,408.71298,1060.8682,-71.649864,305.6686,1063.5999,-198.77667,463.01215,1221.1334,-280.95496,258.81903,1214.31,-424.26672
0d3b883b-8bb3-4839-9963-2445938cb756.jpeg,sit,347.00177,263.04233,-336.73737,359.4896,237.75372,-306.66238,369.8641,236.93646,-306.6465,380.5137,235.92029,-306.64587,331.55853,240.12729,-307.72537,320.75543,240.67365,-307.48303,309.98602,241.3779,-307.31033,397.19843,250.38681,-122.80594,299.07373,256.99448,-120.0775,369.5118,288.7918,-267.5723,330.20972,291.35333,-266.81738,467.99045,382.41956,-42.42228,247.46555,384.47998,-20.570154,483.9725,539.217,-28.139517,234.49721,542.3883,0.94491893,484.59027,670.8821,-267.656,234.0136,684.91797,-225.70467,502.3436,723.03595,-341.53317,219.23222,737.5174,-273.20303,470.89105,721.1443,-385.96436,245.52205,734.8656,-334.89438,455.21747,702.1378,-288.27927,263.07736,716.81934,-251.53468,427.503,673.0484,3.1869345,297.38092,673.10266,-2.578064,508.92456,819.6878,-390.37912,212.98328,823.72095,-428.08606,453.47348,1037.4746,-134.03992,270.8339,1034.2156,-113.71756,425.14917,1052.4364,-114.565094,298.22217,1050.3052,-88.92806,481.0054,1171.9216,-277.62567,239.90665,1164.8405,-252.94609
1f6cd1a9-f128-4f98-9a59-0e7df7285c7e.jpeg,sit,391.71225,205.93152,-369.61746,409.40353,185.22087,-330.79095,420.95816,186.50223,-330.8772,432.8152,187.59827,-330.76968,379.4872,183.46634,-327.39868,368.10562,182.8671,-327.17014,356.697,182.43518,-327.0699,450.6376,212.82193,-134.554,344.51135,205.29564,-113.334854,414.40683,241.1393,-299.98853,369.74994,237.93088,-293.85764,520.9572,383.5169,-43.716095,267.4202,368.14236,-47.620544,532.6958,560.50024,-34.48385,238.70139,552.1136,-72.664444,519.5117,691.8035,-320.55927,250.44554,674.89264,-380.23245,526.5059,749.01825,-409.26566,242.26598,728.1451,-454.8224,496.05786,736.90643,-455.14868,273.81537,713.3826,-510.85632,482.66528,715.5582,-343.81024,287.90125,695.741,-404.5342,458.66125,705.5344,5.093533,313.4202,700.6891,-3.871488,465.09756,866.3803,-409.45166,282.056,856.3953,-556.3305,424.87213,1124.1737,-117.3412,315.77985,1124.7325,-216.20604,407.27725,1139.7694,-95.57779,332.65167,1144.5753,-189.35548,423.1661,1281.4268,-297.68045,303.25223,1279.3828,-405.27002
3759877e-2623-4d0b-8208-3ecbff2f3551.jpeg,sit,377.35056,191.9643,-477.05457,395.0051,169.45544,-438.4188,406.08597,170.03792,-438.4573,417.41248,170.38277,-438.46982,363.6894,169.56647,-442.43588,352.28323,169.7155,-442.21048,340.88464,170.06955,-442.04324,433.75336,194.89685,-218.76503,327.15015,193.3414,-230.29901,397.559,227.94777,-396.2315,355.97226,227.32635,-399.42615,494.98703,350.47174,-90.56577,261.0587,354.31055,-120.775856,514.6832,521.95874,-74.61471,243.76202,539.93317,-125.83783,521.5732,655.7258,-418.56296,244.08084,679.41003,-416.20285,539.82574,705.61255,-514.2407,230.40215,729.356,-481.6741,512.9305,700.6811,-576.48865,255.20819,723.0591,-552.4609,495.9843,683.0863,-452.93335,274.08908,706.00244,-448.02313,456.04288,648.78894,14.684502,318.21832,652.413,-14.39413,569.80396,825.676,-368.75217,196.45547,832.7284,-518.3255,487.29517,1025.5768,-8.560403,291.03375,1021.05786,-92.12482,443.4073,1052.7769,16.631615,334.70538,1046.2758,-59.00676,563.56885,1137.4022,-156.38545,217.51286,1134.43,-236.64867
3f888c92-a65e-45dd-90c9-67cf57ab9908.jpeg,sit,358.05222,404.31982,-278.2012,367.2179,385.9806,-256.3073,375.30566,384.99072,-256.31473,383.55438,383.86966,-256.47937,344.60193,389.49933,-254.46951,336.3605,390.7395,-254.24045,328.16708,392.1408,-254.16368,397.09787,397.17694,-114.96216,320.05237,407.49084,-99.674675,376.0338,426.00867,-223.50587,346.66888,430.02905,-219.16844,457.50226,504.5184,-37.034607,277.71417,509.51462,-32.264004,482.1369,620.7214,-3.1651154,251.47078,627.4887,-2.4041405,495.57858,724.57434,-237.26091,251.78938,728.1347,-211.19495,509.83652,763.70886,-305.11844,242.30681,768.4929,-255.35312,488.97433,758.0138,-348.76474,264.40717,760.3479,-304.1457,477.5182,746.0965,-258.41946,277.1015,747.2046,-231.2283,422.39484,736.76666,-4.9916096,315.95294,734.3891,5.6246724,518.9714,825.7736,-344.5046,195.89372,821.4633,-340.0531,417.12796,942.1943,-76.54037,320.11395,942.5733,-46.744213,390.0245,948.6313,-52.04601,356.689,950.93494,-20.354898,423.11554,1014.4043,-174.70152,294.09695,1023.7384,-119.72557
49b4fb63-f998-42ac-b2e2-9a5c476a669c.jpeg,sit,380.59006,152.74701,-416.4559,396.91583,131.0419,-378.86597,408.07153,132.20975,-378.93903,419.5161,133.15097,-378.9348,366.46082,129.64478,-381.29962,354.6896,129.20074,-381.15646,342.91464,128.92921,-381.12415,433.09256,157.52274,-173.1706,326.829,151.1132,-181.16989,400.06018,188.4656,-341.22403,356.61874,185.89252,-343.2763,493.402,318.0444,-71.83233,248.55911,310.29852,-92.30538,518.0432,486.8187,-42.673878,215.2461,492.45285,-103.40453,520.6103,619.2815,-340.49115,226.48622,629.0998,-376.18393,534.133,674.8552,-429.6862,219.01086,687.0508,-445.56067,503.72855,664.1574,-480.0509,249.84653,670.4593,-499.92053,487.9137,645.068,-366.9066,263.24014,650.7581,-399.24982,437.64157,637.42175,14.089479,291.72162,635.6648,-13.19551,537.67615,805.2237,-433.19006,210.3451,784.0636,-552.36334,458.943,1013.03577,-58.70358,303.89908,1002.5365,-142.61603,425.3973,1024.2225,-28.844748,332.57825,1014.42413,-107.74351,488.25067,1157.5862,-204.50552,293.67563,1147.0726,-298.11212
4c697401-f0c7-4d76-a97d-a00b01d68c98.jpeg,sit,363.06348,137.88617,-485.85852,379.11334,115.72552,-441.46762,390.147,117.08881,-441.5718,401.42606,118.21304,-441.4708,348.55865,113.83572,-444.129,336.6667,113.26256,-443.8435,324.7761,112.86049,-443.71603,412.94577,142.13428,-200.98975,305.40543,134.29028,-211.63992,381.14697,172.61188,-398.95215,336.84457,169.41754,-401.51117,474.23502,292.10803,-92.510475,222.96219,294.89163,-90.56616,525.8338,444.34982,-115.55806,193.40903,482.99728,-164.71877,501.99384,553.7285,-499.2782,252.2306,580.2804,-515.0491,508.45657,609.28467,-617.1689,266.30603,630.1977,-603.6568,465.0363,594.75195,-650.1685,292.15833,600.825,-644.9166,453.0715,575.97205,-517.83344,296.33423,585.4878,-533.14404,427.91635,585.6052,9.258024,285.0967,593.81433,-8.481063,500.20242,695.46295,-600.33527,278.80588,698.9493,-679.1669,448.9172,979.1614,-258.51758,336.3983,978.5153,-341.1984,426.37674,995.4419,-231.21614,347.03598,997.3485,-313.1577,446.97302,1140.3091,-461.78033,369.49786,1129.5068,-550.85095
4e9e3f80-7772-4ee9-b117-b969a4a76bf7.jpeg,sit,422.81287,149.462,-430.67676,443.51965,127.796555,-384.43466,455.50287,129.4119,-384.53204,467.80557,130.82565,-384.51047,412.1429,125.333824,-383.27747,400.52673,124.49242,-383.1169,388.85114,123.890495,-383.04172,487.6713,157.10889,-125.65171,376.5378,146.40988,-118.09003,445.63464,186.37149,-336.57507,399.70248,182.02911,-333.8718,549.92303,320.5102,4.921459,292.20895,294.57184,-18.671646,588.59863,490.50226,-36.14186,232.26437,464.78104,-100.05209,551.08856,617.1698,-434.97058,242.34334,589.13416,-496.9152,555.5557,677.7158,-552.2312,226.7709,644.2494,-593.9936,511.43597,661.7742,-591.2541,269.3089,631.6565,-648.97424,500.8168,640.3583,-458.5855,284.38806,615.4291,-521.49115,467.39572,667.26807,29.839891,314.8236,656.5143,-28.805525,562.6629,745.2819,-645.6168,244.3374,721.6254,-768.10004,545.03375,1037.343,-310.21353,266.9173,1016.0965,-419.08197,514.9896,1070.2047,-286.05817,291.52557,1052.3442,-392.83234,608.207,1182.5381,-533.80884,219.23798,1153.1196,-641.2884
5082d201-3eb1-47eb-9373-ab57cc640fad.jpeg,sit,390.6871,263.04828,-353.69757,404.8028,243.98557,-310.2494,414.4474,244.27707,-310.38782,424.38876,244.37085,-310.4815,377.6378,244.5681,-313.94565,367.60965,244.89433,-313.66376,357.5841,245.39223,-313.5509,438.8421,265.32346,-88.859726,345.35092,265.81232,-101.25499,409.42062,293.73206,-274.6198,372.14124,293.78912,-278.28253,497.34128,413.98303,25.634851,281.5924,403.85785,-17.644005,526.9783,566.6324,54.09051,248.1229,557.5554,-34.876762,541.38763,695.8161,-293.40533,232.21605,699.87354,-330.62134,559.4746,745.1873,-388.97296,214.72383,750.3931,-395.8428,531.38446,739.3627,-447.1582,240.39545,746.34827,-464.90887,515.61774,720.1087,-326.28915,257.5861,729.93256,-360.19214,445.78128,711.7527,19.414827,312.9813,705.7108,-18.46199,556.99414,865.7345,-438.9564,219.0876,839.4896,-591.8413,482.92075,1080.0367,-89.9242,261.444,1070.0507,-203.52068,445.98923,1102.8785,-63.18442,292.46362,1100.812,-172.72372,543.10284,1197.2096,-223.91748,190.79036,1179.5691,-365.41953
5644de97-accf-47ad-b344-5faad1569b7b.jpg,sit,1983.4562,1120.5737,-2391.2717,2025.5265,1040.382,-2232.6733,2058.3433,1040.334,-2232.9631,2092.0974,1039.8079,-2232.866,1928.8407,1040.0405,-2259.8489,1893.6234,1038.7849,-2258.8972,1857.9324,1038.0494,-2259.228,2132.2583,1087.4279,-1231.1488,1804.8016,1081.8315,-1324.0662,2044.4209,1213.8291,-2008.4199,1915.2556,1211.7537,-2031.2877,2337.9778,1565.905,-415.33408,1497.0841,1529.9045,-762.0731,2302.5957,2118.4727,-18.846903,1249.4675,2109.1934,-789.3895,2078.7969,2538.7927,-1328.8181,1380.0742,2464.083,-1928.1669,2047.585,2709.1765,-1813.2131,1399.3138,2600.166,-2302.0632,1950.2991,2656.4065,-2023.6895,1480.9937,2533.4746,-2485.3923,1939.6797,2586.369,-1456.8981,1495.311,2478.344,-2014.842,2080.476,2656.008,182.54524,1557.1868,2663.1086,-179.69711,2768.5493,3147.6196,-2373.6328,1360.968,3351.7427,-2317.7104,2181.1365,3699.723,-630.683,1355.1028,4184.3564,-573.70026,2041.7883,3663.876,-492.10587,1386.3025,4278.1245,-452.6673,2089.379,4138.2803,-1471.6631,1314.8634,4559.283,-1624.0197
59836e93-d10e-431c-80c2-b08a4aa741bb.jpeg,sit,402.97305,254.45366,-466.3939,415.88547,224.8494,-439.13474,427.8696,224.57318,-439.1208,440.0097,224.06909,-439.21024,383.47385,225.53574,-442.2838,370.39743,225.32315,-442.2279,357.25748,225.26344,-442.24725,451.4683,240.4526,-235.57756,337.44345,241.11847,-247.02077,423.7774,284.89,-385.11978,378.11374,285.3241,-387.9755,526.1073,365.9173,-105.78133,266.67273,378.96948,-140.33363,586.0578,533.9657,-35.84927,249.96063,587.257,-111.58465,466.86285,653.5462,-84.506744,376.53888,660.5879,-276.84567,444.92023,707.2866,-126.21689,408.69693,703.7763,-330.83865,416.1973,679.692,-141.07874,427.4084,669.5786,-345.22418,421.45944,660.6217,-87.619644,422.53503,655.6012,-278.85797,493.84625,694.93335,-6.3945136,334.16306,694.95917,7.0264473,614.0949,881.38416,-456.06085,174.81194,875.76904,-566.0115,437.8568,1072.4893,-78.09553,327.98425,1085.3425,-169.18373,399.46585,1071.322,-39.908726,369.36224,1091.2278,-125.81051,407.89362,1231.1813,-195.77654,309.07254,1241.5974,-268.7178
6499205e-b449-4a97-99ad-08675f98803a.jpeg,sit,372.97858,265.2971,-421.3818,385.12985,245.81744,-383.7321,394.24246,246.28781,-383.7326,403.58994,246.61343,-383.81708,359.74335,245.38406,-386.43314,349.9807,245.13168,-386.33447,340.18375,245.06284,-386.2813,413.76117,264.3579,-176.08806,327.08298,261.92184,-182.72629,389.30267,293.1224,-345.95535,353.97903,292.27237,-347.8635,472.11646,402.7166,-37.089046,259.90063,401.80786,-97.514366,483.7094,562.7953,79.30329,246.68295,578.8594,-43.643906,493.5646,698.29767,-85.582344,237.23778,725.397,-157.91042,505.60413,738.19574,-123.92546,226.4408,766.0448,-170.59207,498.82104,736.8369,-181.41313,234.36319,765.98145,-236.64162,485.9541,723.9486,-113.49196,249.51968,752.87805,-182.65778,435.19528,690.5487,25.203337,305.36728,689.6259,-24.459726,500.83282,854.9337,-468.27182,284.89926,822.71533,-618.0132,417.22925,998.1853,-21.502672,317.13757,1014.24567,-214.5869,388.67096,1003.32214,15.803047,327.98373,1028.5719,-183.4897,437.84207,1108.8135,-166.69122,320.92596,1127.4011,-417.7695
6578fde1-186f-4e58-9411-8adf51ce5d8e.jpeg,sit,381.0925,163.41382,-351.08258,397.51038,134.89368,-318.48508,410.009,134.4878,-318.50507,422.8033,133.85277,-318.39655,365.07166,136.4402,-316.19495,352.33762,136.87274,-316.15143,339.6074,137.44388,-316.11252,442.27798,154.88441,-143.8563,326.97043,158.74954,-125.62088,407.33344,195.7832,-287.70798,359.34033,197.61975,-282.23764,517.145,306.5765,-86.853386,263.75748,318.41733,-57.80457,565.1552,485.36047,-90.93287,241.72012,512.92804,-48.186203,542.15295,657.9678,-256.47842,283.77094,670.0491,-233.25163,554.65753,722.0948,-319.35056,280.97174,730.089,-286.05734,512.09174,716.9239,-351.8285,316.49036,718.1332,-326.64282,498.69022,691.49164,-269.02835,327.30862,694.3795,-248.22816,474.41333,657.16644,0.72342205,330.95697,659.17676,-0.07574698,554.1511,872.4077,-211.3607,267.55853,866.5084,-289.38937,508.9377,1038.0057,56.41613,312.60956,1036.391,69.16002,483.34717,1042.7203,78.7896,340.08386,1048.2839,97.49959,535.5304,1181.105,-49.936543,265.38278,1175.8981,-43.01557
6be03f2c-39f0-4ccb-b631-3dc455c9bd51.jpeg,sit,385.18265,263.01907,-469.22583,398.33932,242.07886,-428.7628,408.55142,242.66159,-428.83575,418.97925,243.02483,-428.90396,370.10614,241.74854,-434.45816,359.2984,241.52542,-434.33762,348.47507,241.49777,-434.25287,430.19717,263.46924,-197.97531,333.3068,260.56778,-219.18465,403.3216,294.09012,-382.3218,363.89062,292.6581,-388.98856,495.57162,406.63458,-80.82745,261.2315,402.0389,-132.55492,515.94,602.7078,-73.811676,233.79297,596.97986,-139.17699,435.06177,721.25635,-327.8491,325.13824,715.3425,-338.65106,424.10986,774.1106,-424.10742,336.9166,768.4181,-407.8204,393.95883,754.29315,-448.5161,369.7719,748.33374,-431.39658,393.7754,735.74585,-343.4869,369.77136,729.9958,-347.9016,450.64612,710.5708,13.749327,305.6658,712.1824,-13.130692,607.26776,808.5556,-447.61322,142.05925,798.9198,-608.2249,465.37424,1018.3904,-111.00869,315.20496,1026.7361,-220.7586,423.5878,1026.6436,-79.01264,361.24432,1033.386,-181.38115,480.7038,1168.6183,-274.97223,307.6853,1185.9161,-380.5666
744a7fce-f7b5-4ac6-aa36-064e4884fba8.jpeg,sit,388.38547,206.92981,-362.54352,403.96423,187.15294,-316.87827,414.4814,188.07239,-317.02176,425.31165,188.79066,-317.1703,375.34998,186.2973,-320.66653,364.53925,186.1837,-320.34323,353.73322,186.2634,-320.08633,440.65067,213.10992,-96.84899,340.77866,209.2202,-110.22391,408.38336,241.69003,-284.88455,367.32806,240.01843,-288.87497,502.7412,377.26303,-7.502675,273.9907,370.22974,-48.515694,518.1097,542.11676,11.3148155,262.931,541.20294,-69.86015,514.0872,690.3147,-324.54785,262.90402,690.34485,-347.94843,531.4559,751.23535,-423.0907,249.1016,747.9034,-415.85037,491.77237,746.9811,-476.06488,278.14865,740.0394,-481.205,475.76074,722.0008,-351.17917,292.70944,720.5088,-374.5082,460.78772,703.2654,19.51452,322.97723,702.52997,-18.488611,532.7383,879.0445,-436.21713,232.45613,876.4391,-618.6633,484.8051,1076.2448,-82.35216,269.11496,1072.3729,-162.6516,456.82294,1088.4165,-53.84319,295.8701,1087.8203,-125.45479,522.17883,1210.8848,-245.77336,219.07738,1202.0203,-334.67337
75ca2e24-5000-4077-81ad-a5dce2f22cda.jpeg,sit,1628.4333,1336.3588,-1316.8612,1663.4115,1268.499,-1238.1573,1692.5647,1267.8607,-1237.8182,1722.3325,1266.721,-1237.6357,1583.3218,1269.3531,-1236.0868,1552.9208,1268.2959,-1235.6511,1522.4989,1267.72,-1235.8718,1763.1707,1299.6176,-608.7758,1482.2888,1298.4242,-593.2753,1685.3743,1405.621,-1069.4601,1575.9331,1405.2139,-1063.8005,1955.543,1623.8711,-260.22433,1316.019,1599.1486,-270.2822,2066.5273,1991.9508,-594.26196,1175.2307,1944.5934,-641.8094,2177.4304,2276.0813,-1865.2816,995.4737,2181.5466,-1900.7067,2244.3372,2400.75,-2122.7139,905.79614,2286.1348,-2100.369,2180.7793,2359.9163,-2288.05,937.6972,2255.6458,-2306.2986,2135.626,2322.2458,-1962.3259,995.81525,2237.1892,-2007.7227,1794.3356,2521.826,23.752394,1413.5947,2497.4844,-20.988955,1943.8397,3067.4136,-914.39575,1187.4353,2944.7449,-1668.0708,1814.0371,3462.3665,433.8731,1374.4762,3399.4155,-42.18938,1734.7662,3486.6199,536.1932,1458.031,3429.8208,89.730774,1921.8005,3813.4175,-35.79652,1277.3191,3746.1528,-541.12744
79786f49-51a6-4b84-b7fa-ae08671ad3e5.jpeg,sit,387.6957,159.12738,-512.3996,407.00647,136.31416,-464.8134,418.56525,137.78465,-464.9096,430.38324,139.00363,-464.8312,374.73163,134.01085,-471.5125,362.69333,133.29724,-471.4333,350.64722,132.82138,-471.62512,445.92026,164.21567,-198.03494,333.95734,155.05714,-229.07935,407.37305,197.07443,-414.54846,362.6906,193.29964,-423.17072,507.72595,325.21124,-66.10266,251.38689,316.21082,-102.384285,546.29364,504.95874,-74.4104,217.87737,496.28198,-131.65828,522.4461,639.94403,-502.35468,246.9039,635.46826,-480.04,531.38165,699.1489,-631.8697,242.82224,694.1223,-573.7724,489.94174,685.3388,-679.93555,276.13788,676.6185,-637.1439,476.61752,662.70984,-532.87836,287.3014,656.01434,-506.3641,462.8669,660.9088,22.445988,315.8939,665.0277,-21.759645,563.4391,805.9468,-490.49448,229.59328,810.0979,-633.8037,487.4653,1025.9258,-63.94384,293.28296,1017.1998,-107.20113,446.6219,1053.164,-31.842405,333.17914,1044.2374,-66.49198,562.71967,1153.0519,-241.11465,211.17328,1140.4346,-295.77448
7f79e6a9-0f85-4847-92ee-27e3bbcfa349.jpeg,sit,397.41077,235.58505,-629.88763,408.82596,217.29129,-580.46967,418.37143,217.72556,-580.54297,428.15894,217.98813,-580.6389,381.3162,217.47925,-584.07635,370.8277,217.69211,-583.6722,360.33572,218.10428,-583.3478,439.0393,238.41354,-329.55603,344.70905,238.125,-341.04816,415.47412,265.58337,-540.1381,377.0626,265.4552,-543.3714,501.39078,388.74518,-198.50139,272.38852,383.67346,-240.1275,515.5654,548.4286,-140.53802,249.44676,547.2725,-222.68898,509.3721,692.74817,-470.2163,255.73254,695.24976,-492.13312,521.3743,747.76245,-574.05743,243.74272,748.36334,-577.2713,489.45255,743.8244,-636.0148,274.41794,743.3387,-640.2811,476.26257,721.4735,-502.54697,287.95517,723.124,-521.272,446.15353,663.74536,17.254433,307.66962,662.4453,-16.402224,541.45294,853.6531,-535.9142,242.31947,838.46936,-591.619,473.8721,976.517,70.39243,254.84593,1000.7234,-5.0413957,446.25894,978.32605,124.26377,264.34857,1010.83527,42.20031,497.07294,1086.8376,-60.525692,261.06482,1115.3898,-204.54648
81071db1-e627-4e9a-b5bd-5538ad10ed5f.jpeg,sit,381.7238,339.14594,-368.3118,390.6865,319.51962,-338.44995,398.96463,319.11304,-338.4962,407.44904,318.5342,-338.522,367.20187,321.30554,-342.3647,358.05118,321.9475,-342.22754,348.92075,322.72174,-342.22507,417.40173,332.3972,-166.22485,335.55582,337.57114,-181.45987,397.55527,362.99548,-304.0951,365.38287,365.03873,-308.0851,475.56433,447.77023,-89.93579,279.03055,451.7296,-95.00439,514.74567,574.90814,-80.841705,245.34355,585.1829,-100.86474,495.68906,691.2988,-350.2081,264.5741,697.70874,-324.43436,502.41956,737.73224,-429.87875,263.98825,742.9013,-382.59644,469.1961,729.75195,-467.2217,286.5392,729.7114,-424.64664,459.55823,713.12317,-368.17752,294.64117,714.58057,-341.2041,438.61148,706.6275,8.40028,323.09265,707.0141,-7.833404,510.04855,852.70087,-363.59674,262.9221,843.158,-392.44504,453.48083,987.38403,-3.8481135,312.20245,989.41345,-26.725676,429.95157,999.3273,26.16136,337.35242,1007.0062,0.6418618,481.72754,1072.7299,-105.52865,272.1316,1074.7078,-155.02501
85512558-dec2-4384-b4d4-22aa2db8f6cf.jpeg,sit,391.5164,224.04953,-368.77725,406.7856,200.47096,-335.8961,417.7493,201.02165,-335.95007,428.9298,201.3818,-335.7967,377.91092,199.39069,-335.28372,366.58038,198.6456,-335.14447,355.23798,198.0405,-335.04935,442.3984,219.00967,-140.41765,340.01978,213.53955,-126.55505,411.59656,251.98346,-295.07025,368.85425,249.82846,-291.5654,502.60562,349.75348,-52.21972,273.013,342.16858,-21.085903,569.65125,507.46338,-83.2711,229.8869,510.85858,-37.325317,468.05023,603.76495,-258.30618,324.8768,592.77576,-219.66293,449.0982,645.0491,-328.37036,344.31177,630.7773,-277.4716,416.38535,623.3743,-329.18463,368.37167,609.9247,-294.46008,420.13852,610.1875,-258.42935,364.8514,599.9588,-225.29802,443.96204,640.28595,-24.230589,313.2002,635.5988,25.038408,436.6608,803.8751,-406.10553,315.4794,789.4868,-454.2782,418.8208,1082.3832,-261.50946,315.44727,1067.6283,-274.1997,415.5551,1102.6824,-253.29967,320.23383,1087.7821,-263.03708,389.57977,1229.934,-461.138,326.6691,1221.576,-466.63257
86ef1ecc-6049-43e8-9cc6-b78b8e77b66a.jpeg,sit,380.2423,264.87256,-454.88742,393.4711,244.36615,-416.1528,402.91516,244.60971,-416.25812,412.65512,244.66397,-416.32764,366.92825,244.3732,-419.7614,356.85953,244.23798,-419.44785,346.7847,244.25705,-419.16772,425.56967,262.21408,-195.53497,333.23077,260.69702,-204.0445,398.26834,291.93173,-374.07782,361.128,291.12076,-376.31912,482.28452,395.7515,-83.82228,274.5916,386.37878,-75.79888,501.27225,551.41693,-59.35965,247.42589,541.66437,-64.34865,525.8854,688.95703,-301.83545,217.47289,681.65625,-297.71277,550.38275,737.62054,-371.53427,193.26234,726.5227,-336.01437,526.886,739.27435,-430.04596,212.66647,727.5064,-410.58157,509.02606,720.8164,-330.7299,232.40353,713.3364,-329.06073,440.0228,649.2235,10.2415695,312.50345,646.9061,-9.745946,537.1854,790.0165,-497.92752,213.57793,785.6343,-575.6936,490.99503,1007.1744,-187.76924,227.43373,1004.76135,-218.06166,462.44293,1022.3755,-163.36227,245.88605,1022.1933,-188.51434,529.7818,1135.4667,-351.6345,198.09354,1128.7502,-394.0031
949c18f0-1895-4466-8668-3a16ae0ee0bd.jpeg,sit,361.81366,382.40558,-297.42157,371.09778,367.92996,-262.48648,378.34598,368.05286,-262.53,385.80362,368.00458,-262.49405,350.31363,368.94946,-267.24146,342.4735,369.51495,-267.07248,334.63766,370.22314,-267.19058,395.59445,384.0022,-88.268616,323.52588,386.5872,-108.14429,375.93716,406.3111,-234.83336,347.24973,407.27847,-240.26883,442.5916,495.99176,-14.937802,273.43665,494.64746,-37.27826,462.89435,611.58624,-4.4173927,253.55373,609.2115,-53.180126,467.7523,707.9783,-285.59726,269.49326,710.2334,-286.55872,481.40402,748.7623,-369.69998,265.41373,752.2614,-350.60397,454.25903,741.6073,-414.2256,288.5739,742.07104,-397.69342,442.60168,725.8099,-308.8727,296.78247,728.0645,-306.785,414.22217,722.53735,11.335061,314.04733,725.365,-10.664209,492.51846,806.2873,-408.42914,259.35516,808.5254,-450.56946,461.43372,993.2327,-146.5426,290.54605,986.13525,-146.66313,438.2819,1016.7718,-129.04456,313.4556,1011.5433,-125.93221,504.0275,1076.9753,-290.46167,246.63972,1063.8292,-291.01874
af7c1136-b621-4449-ac16-28a4599bc6ff.jpeg,sit,406.0133,159.16187,-672.2652,423.4239,138.45604,-614.89923,434.5622,139.17259,-614.96106,445.95184,139.66138,-614.9929,391.63428,138.33102,-618.7963,380.25623,138.47928,-618.7062,368.82416,138.87296,-618.7927,462.3374,165.63962,-331.2525,356.10394,163.49377,-344.70932,428.44238,195.22728,-571.6537,384.6516,194.0509,-575.92523,532.1499,348.11908,-211.8809,281.48596,330.30026,-252.14204,531.3917,574.4912,-221.56444,260.2495,533.4989,-277.9529,452.90158,717.3956,-561.09656,341.71356,695.5409,-555.45703,442.27652,774.65015,-678.0368,347.35406,761.49536,-660.672,412.32227,759.3407,-719.4878,392.7948,744.3053,-696.69904,412.35165,735.7563,-588.5419,394.99734,720.52686,-573.6985,474.45154,675.62524,11.948661,325.81094,671.68604,-11.436217,584.57074,868.13416,-549.96497,198.33243,859.87195,-674.6997,501.61026,1070.5153,2.5851915,268.0456,1049.3186,-56.819916,464.59332,1091.7532,48.329174,304.50555,1073.5262,-5.3105574,554.4792,1204.172,-176.00977,197.6168,1173.7959,-252.80391
b630e32a-21d6-4589-95f2-6d962be162b7.jpeg,sit,384.6787,374.1333,-449.6552,395.46643,357.4958,-411.93552,403.687,357.53766,-411.96796,412.10977,357.41147,-411.95663,372.08307,358.41718,-413.5233,363.4891,358.76538,-413.26712,354.90775,359.27625,-413.13107,424.35324,373.21033,-197.94643,343.81705,375.30014,-202.29062,401.46622,397.97705,-371.6099,369.2656,398.6467,-372.70496,485.45364,493.0815,-86.4195,291.52335,491.91315,-94.27333,516.2121,619.99896,-53.602806,265.69104,617.7428,-69.57848,507.60208,734.89984,-375.69354,276.95465,739.33527,-340.70575,517.12976,780.61487,-479.62018,269.75186,783.57874,-405.9576,485.7531,775.2509,-522.99274,293.62787,776.6688,-464.55478,475.38666,756.7124,-400.77463,303.99988,760.10406,-365.46106,457.31845,739.54584,10.604684,344.42728,741.54144,-9.872224,514.22766,880.0072,-448.61066,285.01636,880.8412,-551.4202,453.84787,1045.3114,-58.47896,320.25247,1047.477,-125.33641,429.3064,1054.4839,-26.309423,338.67648,1059.6223,-90.38892,474.32468,1154.6233,-204.80867,300.6226,1153.5143,-291.5725
bb3a260c-de2a-4c32-ac24-95ce3f5a8fa4.jpeg,sit,378.65317,223.11615,-301.57758,393.04156,204.35254,-255.12283,403.1171,205.2432,-255.14484,413.52594,205.92323,-255.11478,365.74478,203.49472,-261.56186,355.20782,203.24704,-261.28247,344.69867,203.17741,-261.03415,428.0446,228.78258,-33.385593,332.16992,224.79149,-59.302666,399.12738,254.65874,-222.82889,358.6466,252.66986,-230.3011,495.3096,378.71606,51.148857,267.35095,366.62317,-3.8899765,512.7524,546.80273,90.291824,239.28192,533.0941,-5.289145,515.174,696.84375,-182.50044,254.14986,691.3063,-232.16986,534.57776,759.4854,-274.00983,240.0726,752.7442,-280.67038,497.403,758.6496,-321.7784,278.60046,747.5978,-341.0974,480.1463,734.22,-207.7252,291.78598,724.75336,-254.28737,464.36758,677.2976,28.149424,326.98975,676.91675,-27.473524,546.6288,834.1134,-429.18115,235.23097,831.02527,-634.2499,456.21432,1086.613,-162.97708,293.297,1085.0884,-280.07587,419.51514,1097.0269,-138.91734,317.71176,1093.6571,-247.01015,490.84048,1258.6202,-302.4585,279.66202,1260.3661,-441.7682
bfa0d47b-2937-46ea-b347-38136d319ace.jpeg,sit,366.51068,237.15533,-402.8559,382.72308,209.43748,-362.8555,394.57452,209.1941,-362.8596,406.74408,208.75705,-362.80893,351.10864,210.32562,-365.37918,338.90787,210.2431,-365.1788,326.7277,210.34584,-365.0385,424.95752,226.84674,-126.139755,313.4407,227.9271,-132.6761,390.47964,267.2401,-314.65112,345.2025,267.5394,-316.42767,494.8084,372.32175,-5.2995477,246.8455,371.77625,-29.657944,504.86728,545.66943,27.869625,225.2595,558.53796,-28.346405,493.6812,698.659,-294.9327,219.74158,711.045,-317.8658,510.91254,762.62256,-389.1957,202.08171,769.6626,-377.01688,473.5042,760.60474,-443.0873,232.80017,762.83014,-447.53265,456.22684,736.434,-322.89334,251.54176,742.72095,-345.8862,438.73746,700.3073,17.913296,291.57367,698.44116,-16.991392,530.6564,872.3691,-477.64606,194.98935,872.5876,-608.5643,426.54196,1091.3575,-133.38823,282.63162,1100.2745,-200.37376,387.709,1103.6284,-103.84323,316.69632,1115.8809,-164.6294,461.76602,1244.5906,-270.72238,245.11867,1250.3314,-358.61368
c298683c-6d01-4531-931a-2065607f033b.jpeg,sit,370.80798,264.78485,-426.82828,388.03503,241.85162,-390.7488,399.28564,242.63832,-390.78876,410.81726,243.21945,-390.7633,357.70807,240.93701,-391.068,346.35666,240.50667,-390.85782,335.01196,240.24353,-390.71146,427.8042,265.15955,-174.58496,321.89972,260.23926,-169.95401,392.0885,297.78506,-346.00208,349.39923,295.6349,-344.78827,493.9587,414.5636,-64.09226,253.3739,405.6811,-72.28152,512.36847,577.8879,-84.95826,225.5206,574.0955,-83.34551,503.98514,707.8325,-472.12073,237.49866,712.2399,-405.21384,518.1916,767.39294,-581.94543,227.507,772.39856,-476.36172,482.75797,759.51575,-632.0323,259.94943,760.6586,-541.61664,466.57623,738.0459,-500.2917,274.86996,739.0936,-433.16187,445.86914,724.0397,5.6470075,303.33908,723.41406,-4.7567945,544.9308,892.58575,-405.67526,176.19789,891.10266,-562.5706,459.86954,1079.8181,-27.168373,288.69992,1081.8799,-102.32713,428.00726,1084.4973,5.470771,328.02277,1086.7555,-58.474007,475.646,1234.6023,-162.98596,253.22495,1236.4312,-228.68163
c6df439f-008e-4e90-8f17-c00336eace83.jpeg,sit,371.33438,191.14413,-432.19022,389.60254,166.80305,-389.3217,401.74142,167.92636,-389.30396,414.2147,168.79956,-389.12543,357.18414,164.9863,-392.60773,344.4654,164.19823,-392.5001,331.76004,163.56392,-392.48358,429.44818,193.60065,-169.52916,314.60242,185.34698,-177.78706,392.84552,226.8557,-352.74768,345.33878,223.50949,-354.62866,493.27768,350.79315,-74.709496,233.0028,341.0672,-105.00281,522.2651,534.28894,-47.22616,193.43881,535.1883,-120.03545,530.1292,709.80457,-271.9542,195.67448,715.4586,-328.22183,551.12866,774.512,-344.1168,176.51363,778.8984,-383.14288,513.08923,774.07404,-399.7868,217.84077,777.5347,-439.6395,493.7986,749.7721,-298.37872,236.48889,754.57117,-350.0355,436.84268,670.7447,12.745606,283.69128,668.0453,-11.999661,515.562,866.9671,-358.01062,187.15494,847.84045,-566.6172,481.83075,1119.4808,-63.617733,230.1003,1097.2634,-150.09459,454.53513,1139.5143,-42.79846,261.66357,1118.342,-115.8602,524.21497,1275.158,-243.63762,172.76791,1249.352,-314.32834
ca26fd77-f5a0-436c-bae6-c6ce9ef2594c.jpeg,sit,379.23477,186.04901,-553.5127,397.1055,160.80142,-509.2236,408.82993,161.72516,-509.22522,420.80478,162.4104,-509.02225,365.4823,159.0625,-513.465,353.278,158.25081,-513.3237,341.0887,157.60709,-513.3251,436.57974,183.7125,-255.518,324.64587,176.59253,-272.30362,400.4883,218.87794,-460.22223,354.4923,215.82527,-464.80145,504.50885,332.16705,-132.58965,246.12148,324.72733,-137.01782,558.903,511.95264,-104.658394,201.52205,514.7699,-145.88501,521.60126,667.254,-398.10458,240.01462,671.4286,-408.3161,527.516,730.0779,-509.7272,235.78224,730.8539,-478.93875,482.24127,723.90106,-542.32587,272.96512,717.9347,-528.9102,469.59082,699.0596,-417.49957,282.85767,694.66724,-427.4792,456.4864,629.15686,11.886659,313.05786,631.1271,-11.184102,531.4326,779.5184,-502.17694,241.52228,805.19965,-571.5431,464.47098,1031.2891,-174.61543,286.30115,1025.2578,-126.02702,431.85864,1046.0806,-147.48987,312.0646,1040.1421,-88.25466,494.63586,1198.4701,-357.26407,247.11385,1180.9741,-295.83902
d12d6c13-7956-4744-95e1-c985dc9b56ae.jpeg,sit,402.04288,188.31757,-363.4021,415.56,167.4263,-323.70807,426.23834,167.92908,-323.73303,437.21722,168.23425,-323.64706,386.93204,167.49687,-326.1925,375.73093,167.65778,-326.001,364.51282,167.9934,-326.04648,451.83936,191.17566,-129.52818,350.79868,190.48058,-135.34589,423.40262,221.46935,-294.7724,381.2991,221.22739,-296.18088,522.5512,356.7303,-58.900818,283.26358,352.0075,-70.93505,534.88275,531.491,-19.393646,256.69876,526.67786,-77.43631,509.25095,680.4196,-286.61325,268.4715,677.853,-314.76752,516.78394,742.9114,-377.9808,258.31064,737.8082,-375.22992,476.85916,734.33154,-420.03027,291.08862,729.23816,-431.03168,464.33084,709.7129,-305.89404,304.99548,707.9425,-336.8882,477.07263,688.4124,14.630445,335.3896,683.5031,-13.534476,522.93726,897.04346,-352.7075,261.19067,848.1239,-590.0055,459.93405,1065.0981,45.26821,305.48926,1046.2827,-133.52408,434.8228,1067.9357,79.335266,322.0375,1053.6956,-95.52608,475.81628,1199.1895,-81.59203,305.64716,1188.4917,-300.10983
dad37701-0140-4c47-93ed-00aa4440faa9.jpeg,sit,404.07443,182.53029,-601.69507,417.62433,157.6897,-564.61755,428.6785,158.00525,-564.64746,440.03265,158.1311,-564.53705,387.2185,157.36046,-567.5306,375.16507,156.93738,-567.3274,363.0996,156.66125,-567.1308,451.36725,177.5621,-340.41382,345.87054,174.6746,-346.7907,423.87338,213.41061,-516.7911,380.18915,212.1536,-518.3415,518.9416,331.25153,-226.13298,273.3284,330.76035,-217.91011,535.18097,520.8373,-164.37453,244.38177,525.91235,-194.60243,516.77496,692.6953,-391.22977,257.06824,693.0578,-408.1475,524.0484,753.3998,-471.5993,247.74756,754.9738,-471.63126,493.95758,749.62225,-525.0021,280.88153,746.5424,-519.60596,480.6414,726.3291,-417.18213,293.6408,722.7515,-427.83643,468.28787,645.02386,-12.190959,327.91086,642.85156,12.802048,524.6323,878.4413,-422.40372,242.25583,843.00183,-486.81708,418.28183,1049.1799,20.837042,321.74515,1049.9908,-43.214935,393.70215,1045.3401,60.136204,347.26984,1057.2247,-5.227859,397.96915,1198.203,-111.360756,315.16693,1198.218,-212.26056
e8b7f595-ca6c-499f-84ed-9c32814ebd06.jpeg,sit,373.37518,215.79109,-459.77136,386.1,194.89307,-412.20554,396.27408,194.51678,-412.29004,406.71204,193.95047,-412.09982,358.03214,197.04185,-413.30838,347.36627,197.80902,-413.11276,336.69254,198.72635,-413.1377,421.81796,213.98029,-171.51495,324.4476,219.57535,-172.36656,395.5676,244.05927,-374.735,354.77087,246.20654,-374.76486,482.4303,365.85327,-47.232616,265.95505,361.8782,-58.626266,491.3924,541.7542,-4.2763815,240.21716,532.9351,-64.96278,464.93698,669.0359,-329.43842,289.2278,661.5701,-355.0829,468.9457,720.12695,-441.7427,292.9858,715.40155,-437.28488,441.9747,709.65015,-485.4602,323.57523,698.1769,-487.68207,433.4039,688.87427,-355.90607,328.2887,678.07007,-378.0526,430.83026,637.4373,11.7768,303.03583,635.4151,-11.035817,484.32138,790.1365,-460.89523,271.51688,775.02026,-629.5442,451.77252,1039.586,-146.57532,294.80905,1031.2594,-299.8646,427.56897,1057.3752,-125.36124,307.18008,1051.796,-275.58456,477.32092,1186.7592,-369.8479,298.64136,1176.8005,-538.0126
eff9f99b-e786-4d13-87e7-0530d285c7b1.jpeg,sit,365.93005,379.0464,-406.45,377.36093,362.0794,-379.03088,385.42386,362.3502,-379.04938,393.6938,362.4443,-379.04205,354.42426,362.25458,-380.1763,345.84683,362.24994,-380.04056,337.2759,362.39407,-379.90585,404.02335,379.0019,-208.27473,325.46957,377.71866,-206.37427,380.21674,404.03308,-341.85468,349.58197,403.61417,-341.1531,454.42682,489.94836,-119.43925,272.44363,490.44342,-111.36653,487.4226,627.82965,-114.599365,247.47212,630.6696,-108.22397,492.21686,749.8512,-353.19653,231.10619,744.43604,-319.98312,505.50592,791.1091,-424.91946,215.62923,781.9575,-368.63947,479.06085,786.8733,-468.65872,235.8914,780.0952,-419.61185,466.70798,773.41376,-375.964,251.78947,769.0366,-342.40363,416.6954,728.97217,-2.7357638,309.87595,729.1206,3.0765715,490.83008,866.446,-348.02573,209.20969,859.3268,-406.75568,427.76233,1002.93097,-22.778606,306.83417,1008.1973,-64.15417,400.14307,1018.29034,3.0449724,344.64465,1027.4534,-36.244686,465.1656,1090.3785,-144.3239,252.85599,1092.7316,-180.05197
f04088a1-9fd1-44d6-b59a-65502aaf1408.jpeg,sit,406.0133,159.16187,-672.2652,423.4239,138.45604,-614.89923,434.5622,139.17259,-614.96106,445.95184,139.66138,-614.9929,391.63428,138.33102,-618.7963,380.25623,138.47928,-618.7062,368.82416,138.87296,-618.7927,462.3374,165.63962,-331.2525,356.10394,163.49377,-344.70932,428.44238,195.22728,-571.6537,384.6516,194.0509,-575.92523,532.1499,348.11908,-211.8809,281.48596,330.30026,-252.14204,531.3917,574.4912,-221.56444,260.2495,533.4989,-277.9529,452.90158,717.3956,-561.09656,341.71356,695.5409,-555.45703,442.27652,774.65015,-678.0368,347.35406,761.49536,-660.672,412.32227,759.3407,-719.4878,392.7948,744.3053,-696.69904,412.35165,735.7563,-588.5419,394.99734,720.52686,-573.6985,474.45154,675.62524,11.948661,325.81094,671.68604,-11.436217,584.57074,868.13416,-549.96497,198.33243,859.87195,-674.6997,501.61026,1070.5153,2.5851915,268.0456,1049.3186,-56.819916,464.59332,1091.7532,48.329174,304.50555,1073.5262,-5.3105574,554.4792,1204.172,-176.00977,197.6168,1173.7959,-252.80391
f5169d21-b83c-4ec5-818f-ca9f285eb5ce.jpeg,sit,359.01715,173.49109,-489.26834,372.85706,149.51596,-439.2572,384.3615,148.99223,-439.41528,396.17218,148.22891,-439.32172,342.0345,152.3959,-436.1884,330.2739,153.41214,-435.83588,318.53012,154.63596,-435.67847,415.0016,170.63107,-183.96674,306.7373,178.41617,-163.3888,385.17093,205.32132,-399.47897,339.53864,208.22803,-392.79913,492.6491,340.8041,-46.46174,243.25833,340.86523,-42.988304,530.5822,530.32776,-29.72486,213.59465,526.1843,-49.81377,496.87524,680.11993,-388.51617,237.64839,672.27527,-418.33533,502.47705,741.7935,-511.9608,232.87433,737.0386,-515.07355,460.0403,734.3857,-553.04254,270.45645,718.0298,-579.2626,448.56628,710.723,-411.99777,281.93283,696.0359,-446.60733,429.791,665.40894,13.509525,286.11835,669.5035,-12.692025,500.44077,790.38135,-572.6284,244.6727,794.8284,-731.0938,454.42557,1080.7078,-206.7413,272.9176,1090.2883,-332.55453,427.60385,1091.2433,-175.46815,285.59064,1103.1078,-297.74533,474.5894,1273.5881,-414.30374,289.7227,1281.1669,-564.006
fb80b9e5-261f-40d4-a4e3-2bb3d596d938.jpeg,sit,417.4476,209.55197,-405.69818,432.80112,189.26105,-358.86563,443.57376,190.28232,-358.92865,454.65854,191.0965,-358.96973,403.43484,188.12111,-361.24567,392.2097,187.82565,-360.9362,381.0129,187.71594,-360.75714,468.8292,214.85431,-125.33277,366.29623,209.94415,-129.29266,437.16998,242.82382,-323.1242,394.60147,240.61928,-324.27872,531.03174,374.84827,-42.14414,295.1226,360.57803,-25.326107,557.5067,544.5326,-14.596463,257.06522,529.41473,-16.431646,566.03375,695.55237,-310.00726,242.17522,685.6507,-301.791,585.2523,755.62744,-406.2721,222.30617,743.4193,-362.62128,548.5091,752.51807,-456.8352,254.21382,740.3745,-434.35895,532.0254,730.06586,-335.35806,271.98047,721.12665,-330.08694,485.1983,690.2805,7.6970553,344.46545,687.4793,-6.7887073,579.86346,801.72266,-549.139,241.11841,789.52075,-659.5387,493.127,1002.5705,-156.57678,293.16425,1011.3085,-242.94637,465.34528,1002.7217,-118.776436,317.78903,1020.4019,-203.83076,489.99084,1161.9503,-303.13205,271.10895,1162.6609,-411.29276
fb8859d6-eaba-4185-8418-26ed48a30db6.jpeg,sit,396.99692,245.4586,-489.63605,411.05905,222.81696,-446.8902,421.6049,223.05087,-446.95087,432.4096,223.0809,-446.9837,381.6692,223.28564,-450.66876,370.5996,223.40569,-450.31567,359.53964,223.7265,-450.1519,447.14365,242.72255,-195.78261,344.73923,242.85388,-210.58627,417.25302,275.92685,-396.76056,376.1291,275.8866,-400.9335,516.682,387.87933,-76.793205,278.02466,387.64508,-95.41232,551.2809,547.2216,-82.15584,249.87433,550.782,-132.92674,542.0243,689.3716,-486.4466,256.9096,692.60693,-490.3018,556.8365,748.0909,-604.7251,244.64903,748.87146,-573.6651,516.6084,742.778,-654.3224,275.55725,740.0781,-639.29144,502.08154,720.5179,-515.10156,290.79022,721.0394,-519.0094,477.06696,702.1138,14.37734,334.8102,703.17773,-13.412461,576.98926,871.5216,-557.33716,233.80708,859.36755,-675.3098,487.6913,1050.4601,-66.35637,310.07114,1054.026,-161.0899,453.85596,1059.3413,-22.631863,339.49377,1066.7168,-116.664795,519.478,1180.6182,-197.31705,284.18094,1184.8044,-332.48383
fbb68ea8-865a-4a79-b606-ca8b479a2c88.jpeg,sit,361.80786,320.9165,-320.30823,374.58713,302.49554,-288.90057,383.59955,303.17886,-288.9135,392.84613,303.69293,-288.78882,350.4436,301.75583,-288.1232,341.05753,301.441,-287.92654,331.68314,301.26694,-287.79617,404.28906,322.02176,-124.93909,319.2166,318.127,-115.0346,378.47592,347.6787,-260.81696,342.69385,346.08777,-257.83807,458.02353,450.9405,-74.87076,257.9484,444.3902,-40.441345,470.34192,592.07446,-60.772243,240.70358,592.3443,-48.39327,446.38974,712.7406,-245.10576,264.18192,699.902,-229.57095,453.62454,763.2003,-323.46347,259.53326,744.78705,-283.18115,418.50168,756.7009,-352.87024,286.4945,735.23364,-319.12534,408.66672,738.5121,-258.68695,294.4388,720.5146,-244.37097,410.25305,704.18097,-9.55984,299.99335,702.3084,10.282098,426.6322,791.0115,-465.8383,283.9202,785.51483,-462.91187,393.81424,1017.0491,-215.7117,322.78204,1018.70935,-235.0395,385.50885,1030.0682,-194.57158,336.56027,1034.9309,-218.16432,375.4271,1141.9553,-358.7341,329.88107,1143.7279,-391.76324
fc826f65-2e25-4338-a7e5-fc5c6ca5d4c9.jpeg,sit,379.07434,182.37384,-426.73367,393.71378,160.54497,-384.07245,404.35547,160.49126,-384.26935,415.35855,160.18005,-384.48016,362.54187,162.18712,-388.79425,351.1648,162.85042,-388.3538,339.8615,163.68991,-388.04428,430.292,182.21489,-154.84259,324.42957,186.07475,-167.94629,398.78195,216.36269,-344.0034,358.2887,217.40344,-347.65063,499.658,335.44623,-37.516243,259.12885,336.20502,-53.12708,540.9611,512.42053,-17.682583,200.6434,514.4596,-78.312996,578.26776,689.167,-238.72032,148.81937,668.19006,-282.27365,609.9092,743.79425,-307.1347,116.45542,716.6023,-319.4282,579.9142,748.4757,-371.36407,144.9084,715.57184,-388.2267,558.2028,731.8808,-270.0567,167.99423,702.7379,-308.81766,461.2181,646.895,3.2258654,315.79083,647.0426,-2.456012,574.31854,736.8189,-582.5034,154.5504,731.2568,-584.0172,476.90485,1010.55164,-280.86148,184.46461,1023.3967,-272.29935,431.54633,1044.9072,-256.91315,226.00674,1062.3286,-250.27663,548.26483,1144.3627,-428.3166,85.67583,1163.3792,-443.91632
037c9e49-3a1a-4312-b253-026f2c3ffcf3.jpeg,face_left,483.29144,159.53171,-316.8497,481.72644,140.44498,-287.8286,486.73645,140.80661,-287.72046,492.1518,141.03275,-287.85352,463.39816,139.68971,-313.73395,454.4085,139.23149,-313.8009,445.40054,138.93997,-313.8576,480.28812,156.6085,-153.7912,415.95358,155.38422,-262.55853,484.73013,189.55426,-266.74884,458.3524,188.25668,-298.20032,523.45667,330.48016,-89.87536,318.62982,315.45673,-221.7639,537.5997,519.0536,-11.939924,284.5098,512.16425,-195.90942,551.246,683.30475,-75.57402,272.25586,677.0725,-227.05376,560.2571,730.13904,-83.48811,255.99956,723.99603,-233.68059,554.90533,736.3739,-140.76234,275.87198,729.4568,-280.3462,540.8097,719.8235,-99.52995,293.92685,711.78284,-241.83876,468.21735,658.0527,37.45734,356.19257,652.7766,-37.09309,444.9313,884.18005,188.58041,356.27213,874.51843,55.11309,420.38248,1062.2917,433.43527,362.80942,1060.2772,351.41544,399.8847,1080.8148,447.90692,365.77902,1079.3191,369.58548,456.202,1152.8021,307.7846,366.0386,1156.6982,211.30908
0d5a7071-de44-4fa4-bc62-1e43513e4539.jpeg,face_left,509.5532,145.24768,-343.5382,505.0749,112.95242,-306.78854,510.18954,113.307076,-306.80453,515.80255,113.554306,-307.00272,483.7467,109.59526,-358.15237,471.3098,106.91582,-358.2613,458.82993,104.41212,-358.23062,484.4884,119.077835,-110.186775,408.07635,108.89149,-337.10153,499.17163,174.47754,-265.14908,468.33353,169.34781,-330.57416,519.0733,294.6954,-37.105156,249.79314,267.71027,-255.31978,548.9091,495.33832,101.05901,176.13313,478.04993,-255.38141,556.2802,676.5496,-114.943794,164.70944,659.89496,-426.8082,562.3988,742.71375,-175.28409,148.90262,727.2207,-473.95135,543.6322,740.9722,-251.26277,183.1996,721.4409,-535.19904,525.536,714.1692,-148.66455,203.65973,694.3564,-447.9265,450.2608,693.5946,48.188217,301.11874,693.22516,-47.461826,457.17172,929.5835,238.56343,268.0536,940.0281,36.837418,430.7129,1096.7273,630.6784,284.43634,1090.1501,592.21265,408.4783,1107.654,664.6641,297.61072,1101.9354,640.9819,460.41052,1227.0238,530.5255,254.73386,1215.1101,499.69873
0d7df90c-ed37-498c-b0c2-3b3e0e5c0b1b.jpeg,face_left,431.16678,135.7795,-349.90775,434.64197,114.690895,-309.58414,441.94452,115.78789,-309.3886,449.68826,116.69193,-309.3943,410.2201,111.75251,-336.2336,398.83792,110.32719,-336.2358,387.44202,109.05487,-336.20932,438.90384,133.59189,-120.968765,355.17654,124.63867,-233.6134,434.57996,169.31076,-280.8668,400.27008,165.01312,-313.4408,489.03113,310.5069,-39.6847,250.87148,297.96332,-182.56793,507.98468,498.60724,48.933094,239.29364,506.65848,-170.51157,514.5786,672.70154,-109.72468,224.66548,693.153,-270.6747,527.70544,732.2845,-150.50545,205.74959,750.5701,-291.36847,503.3626,737.9078,-215.18307,229.7521,759.26306,-351.7759,486.0006,715.13794,-135.77608,250.42831,737.15515,-291.7148,447.83444,665.19196,35.311783,310.18423,666.3409,-34.918457,454.4574,916.5902,78.3324,291.02847,915.8518,-81.9142,431.76294,1114.4308,306.20065,327.91785,1099.8796,270.74197,412.03583,1126.3337,319.82745,338.7269,1109.4636,294.91437,453.82407,1250.7224,146.61401,332.66345,1238.731,119.23096
0e548986-dc39-4bdf-bc43-ddbd64a5d097.jpeg,face_left,441.308,192.41849,-349.64383,449.30405,167.10193,-314.7013,458.74448,168.2077,-314.58307,468.556,169.11713,-314.58087,422.22263,164.38828,-336.04825,409.74527,163.10498,-336.03662,397.23206,162.00737,-335.99478,465.23868,189.12453,-141.02881,368.6792,180.26172,-230.8573,451.22845,226.15326,-284.9027,410.1952,222.25034,-311.01575,505.3146,362.70523,-74.68973,266.88687,347.7139,-212.91592,518.0513,549.2123,-10.632953,234.56253,553.4254,-226.32564,519.29675,726.58264,-166.58817,250.15424,740.58716,-311.67783,529.2197,788.7274,-206.60869,241.74463,804.4442,-343.29407,504.7187,790.73804,-262.46866,275.62723,801.6517,-390.72287,486.91208,767.6682,-189.9717,290.23544,777.4513,-327.05316,442.62534,743.8312,44.50458,313.92166,743.5339,-43.60596,440.9372,981.72906,118.073715,300.4996,981.74384,-26.293846,415.25247,1160.8478,314.4892,322.12292,1153.444,269.4459,392.37543,1176.6609,326.15912,327.96265,1167.9675,287.1998,459.8013,1282.7435,181.40198,323.70917,1278.9133,124.245705
19a4ee1f-97d6-42e7-9b95-51d15edd9454.jpeg,face_left,425.2245,244.44821,-388.19632,427.7377,228.68945,-351.60077,433.3518,230.04974,-351.44214,439.3086,231.25888,-351.40448,408.55695,225.17514,-377.46136,399.54352,223.61977,-377.44193,390.5029,222.16571,-377.4542,427.84216,244.17377,-158.23718,362.0389,233.01868,-273.4713,425.9526,269.4194,-314.54034,398.6787,264.46927,-347.8928,454.70544,374.32,-54.425125,273.13144,363.9668,-211.96362,478.78934,530.8384,47.397934,257.35907,540.03894,-206.01588,490.43304,681.41833,-106.59635,292.77505,690.14166,-289.75916,502.40552,729.8528,-153.82349,292.959,739.79407,-322.0138,483.18494,733.56213,-207.10796,316.71167,735.8445,-358.64606,469.44772,716.18835,-131.03432,321.2837,715.52527,-300.96942,425.10352,672.7865,49.717106,319.9366,677.27783,-49.650635,430.14218,891.7362,94.18614,324.60587,909.87683,-46.775204,408.16452,1066.2234,311.0437,329.7058,1089.5789,226.1925,389.43436,1083.9202,324.53668,331.24057,1107.9945,242.97351,440.8167,1162.106,180.70169,338.05875,1189.4263,70.5578
1dafefdf-44ab-4753-9fd8-ffe7c5f8ae57.jpeg,face_left,436.65085,194.55066,-294.7636,445.27365,173.88062,-264.89133,453.0742,175.22885,-264.91998,461.20636,176.43501,-264.96396,421.8113,170.57278,-280.38254,411.49683,169.06589,-280.60236,401.1862,167.62042,-280.88843,454.90427,191.55014,-129.82881,375.22165,179.99435,-183.77312,441.10168,223.4349,-242.69531,407.9515,218.57414,-258.02072,479.3286,343.8005,-92.31268,283.41522,331.40405,-159.0338,499.2851,526.73914,-39.839024,257.9895,535.80896,-158.09067,505.55374,694.9468,-99.86861,246.60027,699.3149,-162.62924,513.50726,746.62585,-127.579666,233.5978,748.4545,-175.72206,493.15063,744.3832,-170.3287,252.95544,751.24646,-213.78674,479.63858,726.3115,-117.44546,268.71423,735.88403,-175.50108,418.07486,672.8224,2.9816484,312.96545,669.3074,-2.4031394,404.29517,898.6679,47.345764,305.07108,896.37573,40.618385,394.056,1083.7003,193.43413,295.77744,1080.6715,216.96866,390.79922,1101.6333,199.99211,293.3486,1102.5571,223.97685,381.486,1163.7853,63.695652,299.35645,1159.0374,78.12997
2473c791-3388-4600-8034-9917102e2297.jpeg,face_left,473.43784,210.30334,-370.58218,472.7328,191.36772,-331.13464,477.54758,192.84467,-331.02554,482.81418,194.16699,-331.07184,453.87973,187.19917,-365.54922,444.09402,185.15094,-365.47794,434.26105,183.25058,-365.3385,463.15656,208.0677,-143.1249,397.39062,195.20764,-293.8322,468.7768,240.91022,-300.6195,441.37375,234.75436,-344.51468,502.54086,380.26837,-83.72671,274.80936,360.52005,-215.07791,522.6709,572.9519,17.841547,255.68472,566.93396,-199.23442,525.27606,762.16016,-148.52786,264.53738,753.3328,-352.8293,533.4085,824.7192,-199.1897,254.8841,817.7883,-401.7627,511.0765,830.51056,-266.59985,283.09686,818.4118,-457.5068,495.64554,804.47723,-175.86691,297.56552,791.06024,-373.84702,458.31323,736.5866,30.098274,327.93668,739.0542,-29.327219,467.2987,987.6725,124.91219,317.05084,990.8678,33.601627,464.92664,1187.0298,402.3242,339.29492,1168.8662,418.73874,450.3807,1203.2183,421.55313,350.08133,1180.9011,445.86652,487.30948,1308.7499,249.8079,333.6197,1295.1074,256.74063
2605db41-6a20-4337-9a60-ef01e4bd9d37.jpeg,face_left,464.32596,221.51695,-278.12662,459.28802,200.34573,-235.82979,461.74756,200.43404,-235.71036,464.65955,200.37122,-235.69815,443.95932,198.36823,-284.98972,435.1435,196.63144,-284.9779,426.31186,194.99985,-285.00058,438.0695,203.71132,-27.38339,386.92218,198.15254,-245.66618,453.54456,244.39987,-198.13274,434.2369,241.26106,-261.58054,463.40384,350.0906,90.48982,264.18356,329.819,-213.63252,494.0893,515.2993,218.39503,234.07076,507.23077,-225.86687,502.91766,689.66455,-16.76503,230.29097,690.8054,-383.70364,513.9085,747.6242,-69.81321,216.86642,750.4959,-436.52243,490.21332,751.6986,-149.12631,241.86032,754.3716,-484.60522,476.81848,728.5125,-52.251728,256.09586,730.1419,-401.71362,425.77652,686.62024,75.92338,303.3103,685.79346,-75.47928,429.7656,939.2854,86.210106,293.63144,942.4671,-93.008385,424.26254,1150.3174,328.91223,300.9191,1135.8743,264.09747,411.14456,1168.5385,342.3332,308.93973,1149.5247,287.7509,445.85614,1261.9521,142.29199,293.59506,1256.2621,60.66204
26177134-3b4b-4526-b07b-5b22ffaeeb04.jpeg,face_left,431.98926,195.07462,-562.77893,430.01495,175.24167,-518.9818,434.48447,175.66394,-518.79944,439.34348,175.90137,-518.7609,409.48782,173.36998,-558.2647,399.52594,172.1037,-558.2459,389.5623,170.97461,-558.20105,418.756,184.19644,-251.9016,351.90637,178.4418,-425.46542,426.9775,219.84047,-458.60623,402.02954,216.68587,-509.03564,463.60107,329.73242,-104.77513,240.23723,321.71912,-292.11588,504.58157,512.2043,14.231685,223.35835,515.8593,-260.88306,517.50037,691.8568,-226.28697,192.68922,695.50635,-435.86563,529.791,748.19366,-286.66016,174.61505,748.1772,-473.2421,510.5262,755.26807,-370.9873,184.76247,758.7749,-562.1997,495.0625,735.0184,-264.4807,205.06969,739.4355,-471.1219,431.5,667.8464,48.64967,297.8657,671.8808,-48.47136,444.98788,924.92236,92.362114,278.95386,938.56104,-82.66806,436.5542,1139.438,406.83536,290.3023,1146.1895,308.96423,418.83737,1165.081,427.33774,305.86197,1168.2585,335.012,478.2773,1241.9875,205.66864,260.38348,1257.0469,87.23128
301bf4fd-ebbc-43e0-87c8-6085334cdd4e.jpeg,face_left,461.1903,232.35054,-235.422,454.66083,209.98737,-193.79466,457.74374,209.7662,-193.75647,461.18585,209.36882,-193.76707,437.66068,209.35504,-247.9692,427.37122,208.26988,-247.971,417.06436,207.31555,-247.9535,431.6956,216.95895,-12.125351,373.33212,216.16794,-248.64162,450.2665,258.91864,-165.3677,427.38748,257.39108,-234.08246,455.4527,370.65167,53.21278,253.19745,370.12335,-213.86832,484.37994,551.723,180.17696,237.42438,579.6183,-235.35455,512.0718,718.4097,-17.72524,237.63844,755.03186,-321.42343,528.7684,773.6282,-66.127495,226.11066,811.3695,-346.40482,510.61105,775.6353,-141.69061,246.37653,808.9639,-397.9503,492.68674,753.97797,-53.633408,262.12122,786.1699,-337.53647,440.76834,726.90796,54.644596,317.80664,732.86194,-54.158825,460.1561,973.76,113.7625,297.47513,980.6483,-15.8496895,447.04596,1177.7513,351.84805,298.9005,1178.1423,320.20087,424.79514,1205.7278,365.08118,316.6008,1205.8552,339.56448,504.6129,1276.1155,212.18593,241.57841,1279.3195,150.9355
31fb1c80-4a56-49c9-a4f2-44349af20fd3.jpeg,face_left,442.48914,286.36658,-259.64197,436.43295,266.48602,-231.46338,439.9151,266.53296,-231.37877,443.70444,266.43948,-231.37132,421.37674,265.12543,-266.89005,413.0963,264.05078,-266.98837,404.7942,263.0274,-267.0724,423.26865,272.07672,-78.85599,369.92868,269.67007,-234.10132,437.1126,307.41364,-198.69,416.2591,305.73462,-243.98633,453.9862,387.97937,-4.6201386,276.87787,385.2965,-179.62326,486.58545,536.4495,55.25968,257.39252,551.3012,-205.27954,427.07446,649.1693,-93.25021,346.5699,668.3991,-266.35825,414.65652,692.4903,-149.84084,364.0601,711.3547,-302.2384,391.07697,683.1588,-173.35709,383.54526,699.13934,-315.66934,389.90997,666.5817,-106.32758,378.79684,682.4133,-267.44608,434.44382,675.416,41.594933,325.17722,679.5025,-41.5896,461.85815,892.511,35.864414,304.1901,895.1073,-35.662502,460.52087,1071.4358,219.19678,285.98862,1067.9824,209.72656,443.74255,1088.7664,230.29033,289.18277,1087.0,223.57898,491.96304,1163.1416,84.50584,270.28497,1159.3522,54.27686
382796d4-9d37-4894-bf57-f6eabe0492d9.jpeg,face_left,431.98926,195.07462,-562.77893,430.01495,175.24167,-518.9818,434.48447,175.66394,-518.79944,439.34348,175.90137,-518.7609,409.48782,173.36998,-558.2647,399.52594,172.1037,-558.2459,389.5623,170.97461,-558.20105,418.756,184.19644,-251.9016,351.90637,178.4418,-425.46542,426.9775,219.84047,-458.60623,402.02954,216.68587,-509.03564,463.60107,329.73242,-104.77513,240.23723,321.71912,-292.11588,504.58157,512.2043,14.231685,223.35835,515.8593,-260.88306,517.50037,691.8568,-226.28697,192.68922,695.50635,-435.86563,529.791,748.19366,-286.66016,174.61505,748.1772,-473.2421,510.5262,755.26807,-370.9873,184.76247,758.7749,-562.1997,495.0625,735.0184,-264.4807,205.06969,739.4355,-471.1219,431.5,667.8464,48.64967,297.8657,671.8808,-48.47136,444.98788,924.92236,92.362114,278.95386,938.56104,-82.66806,436.5542,1139.438,406.83536,290.3023,1146.1895,308.96423,418.83737,1165.081,427.33774,305.86197,1168.2585,335.012,478.2773,1241.9875,205.66864,260.38348,1257.0469,87.23128
38c16226-c16a-43f6-83f6-1bbd1c12e9a4.jpeg,face_left,451.4646,227.39072,-342.12894,447.82483,209.20316,-308.92773,450.76535,209.73724,-308.81082,454.07425,210.099,-308.78018,432.63846,207.12135,-348.23425,424.18668,205.73407,-348.29187,415.71613,204.47406,-348.4084,432.75623,217.51167,-135.81134,380.86987,211.35571,-306.6904,443.9254,251.53629,-275.86618,424.2029,248.15463,-325.0283,466.34378,356.56604,-45.74703,273.8864,347.49847,-242.02847,498.82925,515.59644,61.835823,256.3164,525.51263,-230.75523,516.4821,668.2168,-101.29912,250.98041,676.4053,-345.6253,528.83276,716.189,-139.10796,237.02275,724.6017,-383.70975,514.94183,721.07367,-208.83568,260.88458,725.7007,-435.55026,500.14774,703.1478,-131.6633,277.03217,706.7392,-363.79675,433.96304,656.3275,39.804638,321.70575,657.2657,-39.618935,441.7167,877.54114,100.72838,320.14813,873.2294,5.8234525,437.02502,1060.1183,327.08652,325.89566,1061.5312,286.0804,422.07605,1080.7396,339.4227,334.7513,1084.5802,300.88812,470.43784,1149.5868,171.27707,309.55734,1153.0947,97.40785
445641f0-0fea-47fb-9508-57bb7e2019e1.jpeg,face_left,451.4646,227.39072,-342.12894,447.82483,209.20316,-308.92773,450.76535,209.73724,-308.81082,454.07425,210.099,-308.78018,432.63846,207.12135,-348.23425,424.18668,205.73407,-348.29187,415.71613,204.47406,-348.4084,432.75623,217.51167,-135.81134,380.86987,211.35571,-306.6904,443.9254,251.53629,-275.86618,424.2029,248.15463,-325.0283,466.34378,356.56604,-45.74703,273.8864,347.49847,-242.02847,498.82925,515.59644,61.835823,256.3164,525.51263,-230.75523,516.4821,668.2168,-101.29912,250.98041,676.4053,-345.6253,528.83276,716.189,-139.10796,237.02275,724.6017,-383.70975,514.94183,721.07367,-208.83568,260.88458,725.7007,-435.55026,500.14774,703.1478,-131.6633,277.03217,706.7392,-363.79675,433.96304,656.3275,39.804638,321.70575,657.2657,-39.618935,441.7167,877.54114,100.72838,320.14813,873.2294,5.8234525,437.02502,1060.1183,327.08652,325.89566,1061.5312,286.0804,422.07605,1080.7396,339.4227,334.7513,1084.5802,300.88812,470.43784,1149.5868,171.27707,309.55734,1153.0947,97.40785
45a07b49-d2c9-4d5f-be8a-abb86922b1c7.jpeg,face_left,421.11432,180.39719,-449.1474,416.94818,164.07883,-408.13367,420.55972,165.21725,-408.05344,424.55316,166.22089,-408.16293,400.5505,161.3747,-449.4618,391.3852,160.1788,-449.34134,382.17,159.176,-449.39514,403.04013,180.19814,-190.67894,345.5542,172.11392,-373.33728,415.902,208.71631,-365.92194,392.1873,204.82059,-418.7041,445.55865,338.08655,-67.23507,239.511,329.20355,-250.15097,483.92535,499.09784,101.915146,229.99883,513.84467,-213.74525,493.8951,644.4174,-112.91598,232.55879,673.4855,-386.66074,500.6141,695.8807,-175.30841,221.66917,727.60895,-437.44202,484.07037,696.0444,-253.43628,246.4377,725.7947,-501.1906,469.5781,675.23553,-145.9055,261.21744,702.45654,-409.77515,413.08807,664.78326,44.972935,295.77316,662.59656,-44.600147,433.84103,875.34534,306.63275,278.76767,867.3302,136.45227,421.55798,1040.8713,751.70276,284.83008,1031.7778,622.66437,399.23337,1061.2114,786.975,299.9127,1051.7983,658.6979,472.12903,1139.0352,623.8836,244.80714,1135.5466,456.88956
45b79867-00f6-4f77-b8a5-e358542c150a.jpeg,face_left,464.32596,221.51695,-278.12662,459.28802,200.34573,-235.82979,461.74756,200.43404,-235.71036,464.65955,200.37122,-235.69815,443.95932,198.36823,-284.98972,435.1435,196.63144,-284.9779,426.31186,194.99985,-285.00058,438.0695,203.71132,-27.38339,386.92218,198.15254,-245.66618,453.54456,244.39987,-198.13274,434.2369,241.26106,-261.58054,463.40384,350.0906,90.48982,264.18356,329.819,-213.63252,494.0893,515.2993,218.39503,234.07076,507.23077,-225.86687,502.91766,689.66455,-16.76503,230.29097,690.8054,-383.70364,513.9085,747.6242,-69.81321,216.86642,750.4959,-436.52243,490.21332,751.6986,-149.12631,241.86032,754.3716,-484.60522,476.81848,728.5125,-52.251728,256.09586,730.1419,-401.71362,425.77652,686.62024,75.92338,303.3103,685.79346,-75.47928,429.7656,939.2854,86.210106,293.63144,942.4671,-93.008385,424.26254,1150.3174,328.91223,300.9191,1135.8743,264.09747,411.14456,1168.5385,342.3332,308.93973,1149.5247,287.7509,445.85614,1261.9521,142.29199,293.59506,1256.2621,60.66204
47f005e9-3d8c-462e-8d4f-a733354b5d2d.jpeg,face_left,484.44,205.04337,-332.68384,472.8033,175.3056,-300.60568,475.5093,173.79044,-300.54846,478.6556,172.11911,-300.631,456.0089,177.06943,-354.21997,445.1849,176.44763,-354.18423,434.41568,175.9537,-354.06235,445.40475,174.90837,-123.65479,386.03952,182.07248,-356.55148,472.54755,229.19604,-262.4691,449.50012,230.85156,-329.75952,483.50525,335.92175,-32.89294,260.66467,336.85315,-285.48517,512.60004,526.0904,92.59988,247.88289,543.15564,-255.40118,528.57196,697.84216,-95.124725,244.44106,721.24115,-407.0951,540.22485,753.0144,-142.51729,231.44354,777.45447,-452.918,523.3117,754.8894,-220.18604,254.0018,780.75574,-507.99188,506.55896,733.38043,-128.19205,271.57822,757.43384,-427.08527,451.85303,689.5383,52.838043,324.72934,697.0713,-52.401142,457.2008,939.9303,133.824,307.0241,950.35754,-14.258741,434.347,1138.4817,398.85495,318.78662,1140.722,350.53192,411.49408,1153.5009,415.29242,323.06805,1156.766,374.91196,468.37326,1260.5236,242.49472,324.0311,1264.9122,187.20238
4d7e162a-fbd5-4de3-9b4c-4ed31980b12b.jpeg,face_left,436.65085,194.55066,-294.7636,445.27365,173.88062,-264.89133,453.0742,175.22885,-264.91998,461.20636,176.43501,-264.96396,421.8113,170.57278,-280.38254,411.49683,169.06589,-280.60236,401.1862,167.62042,-280.88843,454.90427,191.55014,-129.82881,375.22165,179.99435,-183.77312,441.10168,223.4349,-242.69531,407.9515,218.57414,-258.02072,479.3286,343.8005,-92.31268,283.41522,331.40405,-159.0338,499.2851,526.73914,-39.839024,257.9895,535.80896,-158.09067,505.55374,694.9468,-99.86861,246.60027,699.3149,-162.62924,513.50726,746.62585,-127.579666,233.5978,748.4545,-175.72206,493.15063,744.3832,-170.3287,252.95544,751.24646,-213.78674,479.63858,726.3115,-117.44546,268.71423,735.88403,-175.50108,418.07486,672.8224,2.9816484,312.96545,669.3074,-2.4031394,404.29517,898.6679,47.345764,305.07108,896.37573,40.618385,394.056,1083.7003,193.43413,295.77744,1080.6715,216.96866,390.79922,1101.6333,199.99211,293.3486,1102.5571,223.97685,381.486,1163.7853,63.695652,299.35645,1159.0374,78.12997
4e86d4ab-61ce-49f9-9d65-a745b91a06df.jpeg,face_left,479.00537,164.71031,-297.16864,472.67612,138.3504,-249.83861,475.7132,138.14792,-249.79561,479.20947,137.81906,-249.94946,454.0907,136.23502,-307.8292,443.53952,134.15703,-307.78998,432.9844,132.23663,-307.75415,448.67255,138.36815,-6.461148,387.2306,132.6786,-266.54257,467.29077,188.54214,-201.48033,444.79236,185.23254,-277.07916,483.4106,298.68802,109.8331,250.66058,271.93762,-177.01414,515.4314,480.37988,292.1651,230.78218,469.8207,-178.13765,528.2047,649.9845,7.7576766,223.96565,646.35156,-397.3427,537.0944,708.317,-59.90887,211.83511,704.96735,-447.3362,517.95215,706.727,-149.87805,232.18759,701.6277,-513.54266,503.3771,682.2063,-32.502,247.95541,677.59106,-420.6192,442.7709,663.72253,72.16606,303.5097,661.5732,-71.454926,448.0491,913.2834,133.71045,288.89157,928.53265,-85.56914,425.02533,1113.9568,528.5143,301.9457,1123.8954,350.72736,404.33807,1134.6968,558.5847,312.51224,1141.999,381.93213,462.5257,1222.905,381.81122,292.87695,1241.1572,157.51132
4fd68138-0b95-4900-ae0f-98915b4810bf.jpeg,face_left,498.26883,118.02967,-363.71155,494.7663,95.96142,-323.60275,499.15717,96.33152,-323.50128,503.96805,96.55907,-323.59085,475.31165,94.28585,-362.97467,464.91818,93.026505,-362.98508,454.4673,91.91578,-362.91443,480.7405,108.45978,-134.8163,414.41626,103.57048,-305.5593,492.26465,148.02707,-292.36603,465.41443,145.11462,-341.9185,514.4719,290.24643,-64.564514,285.56027,268.32303,-213.80994,532.2363,489.46713,62.747253,256.0675,481.32043,-174.98686,540.24945,669.76654,-114.9678,239.50703,656.8487,-270.85147,549.7212,725.80554,-163.43881,227.87927,709.8258,-292.17477,535.80414,731.9549,-237.20203,243.35039,711.51526,-356.38525,519.49396,709.48615,-147.17833,260.28384,689.7594,-293.4494,444.26556,641.4032,29.09343,310.65436,634.27966,-28.663708,442.9735,914.4496,112.54114,300.26614,907.5,4.8255477,436.84506,1121.6797,418.1614,322.9547,1119.9895,374.99542,420.18796,1143.9307,436.5375,340.6777,1144.5294,398.1926,466.40683,1232.1665,247.9459,286.72192,1232.7783,189.17766
529a12e7-9d9e-4515-806f-f1010470a415.jpeg,face_left,483.29144,159.53171,-316.8497,481.72644,140.44498,-287.8286,486.73645,140.80661,-287.72046,492.1518,141.03275,-287.85352,463.39816,139.68971,-313.73395,454.4085,139.23149,-313.8009,445.40054,138.93997,-313.8576,480.28812,156.6085,-153.7912,415.95358,155.38422,-262.55853,484.73013,189.55426,-266.74884,458.3524,188.25668,-298.20032,523.45667,330.48016,-89.87536,318.62982,315.45673,-221.7639,537.5997,519.0536,-11.939924,284.5098,512.16425,-195.90942,551.246,683.30475,-75.57402,272.25586,677.0725,-227.05376,560.2571,730.13904,-83.48811,255.99956,723.99603,-233.68059,554.90533,736.3739,-140.76234,275.87198,729.4568,-280.3462,540.8097,719.8235,-99.52995,293.92685,711.78284,-241.83876,468.21735,658.0527,37.45734,356.19257,652.7766,-37.09309,444.9313,884.18005,188.58041,356.27213,874.51843,55.11309,420.38248,1062.2917,433.43527,362.80942,1060.2772,351.41544,399.8847,1080.8148,447.90692,365.77902,1079.3191,369.58548,456.202,1152.8021,307.7846,366.0386,1156.6982,211.30908
55396e2c-e956-478a-ae17-3a2d3481cb38.jpeg,face_left,456.71036,226.97766,-323.7719,449.6601,211.26605,-278.2659,453.38815,212.35817,-278.2546,457.4241,213.28159,-278.33218,431.9298,208.31714,-324.95465,422.2636,207.07349,-324.97852,412.51886,205.96631,-325.06662,431.44775,226.17435,-59.508476,371.70844,218.92963,-265.45206,449.20425,255.78484,-239.6997,425.56354,252.02682,-299.9813,462.80457,376.77823,51.55382,263.8068,364.2792,-192.73216,484.56323,541.287,119.6732,239.1682,547.3542,-215.23686,417.93375,667.89606,-139.12791,336.29562,671.32227,-301.4689,400.93777,719.2048,-216.45865,358.86288,722.0367,-341.61166,381.4694,704.6197,-256.4089,375.53073,704.3818,-367.18704,382.5604,683.2812,-163.28015,370.6203,683.55786,-304.26523,441.04785,712.6154,55.891293,317.10187,715.3646,-55.77398,469.97998,954.93396,89.10664,319.91278,956.2817,2.9080958,448.32333,1149.8547,382.94397,334.85535,1152.6052,357.90607,423.1172,1175.605,400.795,349.22714,1179.9475,379.84286,506.04376,1246.852,218.66649,298.6367,1251.2478,152.59354
59cfa586-9e8e-44c7-98a2-bba832b7458d.jpeg,face_left,430.0635,172.8706,-394.34937,430.83618,148.62277,-351.04694,438.18655,149.27106,-350.93854,445.95447,149.74716,-351.09995,405.8496,146.78159,-383.06284,393.6811,145.70767,-383.07425,381.4936,144.78508,-383.06082,430.57312,164.93146,-146.60281,344.89352,159.54239,-282.57437,432.39304,204.40067,-318.34488,396.93213,201.732,-357.876,473.49667,338.86197,-67.59161,238.78831,334.49878,-206.6149,504.25504,536.62646,25.763922,222.52817,552.39087,-184.29454,519.81177,714.72504,-145.31364,220.52678,726.2271,-294.07544,530.7724,770.324,-189.14748,209.9123,780.0895,-323.94058,513.44354,773.2684,-251.77342,230.59663,780.8212,-382.222,496.62152,753.29224,-172.68417,247.40826,759.6984,-314.6231,432.91394,702.56494,43.23304,303.88474,707.826,-42.623173,437.1461,954.2524,113.968864,316.0872,956.7566,9.096487,418.81677,1142.7969,383.12756,334.2682,1143.4215,348.59253,397.94507,1158.6431,400.1857,335.94336,1159.0245,369.87027,455.3857,1263.2906,215.16524,356.82645,1267.1294,167.54193
5ac24f66-4220-48f0-850c-7c0027fa8b5e.jpeg,face_left,432.9897,197.4704,-212.02646,435.6563,177.97302,-173.177,442.00916,178.46954,-173.05884,448.75974,178.84827,-173.23569,414.15268,176.46732,-196.54872,404.69345,175.5542,-196.72646,395.2177,174.77737,-196.80725,442.86188,192.25024,-18.179325,369.91714,188.10196,-107.982155,439.095,225.48245,-154.04659,409.82773,223.18973,-180.53032,489.11673,356.42505,39.05605,267.32623,334.01273,-99.43143,500.41882,537.5931,148.04733,220.04813,532.3548,-46.69971,519.15967,686.04095,-1.2361819,203.48157,698.62213,-110.56429,526.70667,729.42413,-31.384024,191.28764,745.4696,-111.30605,522.8085,730.77844,-94.83951,206.16823,746.4808,-169.51848,510.70102,715.37897,-32.301945,223.03392,728.7407,-129.54366,436.35953,704.2206,41.153664,303.8347,701.1935,-40.492203,444.95355,966.4707,-4.249421,315.48227,961.9248,-67.76025,417.30487,1123.12,364.46002,324.66312,1130.8508,342.467,402.3626,1131.5236,396.72855,323.9222,1142.5615,378.12573,429.95895,1222.029,287.5812,347.00122,1238.6104,245.15685
63c8bcf2-84f5-4955-a000-9e403b8087fb.jpeg,face_left,477.6288,210.90096,-384.43927,479.4486,183.0545,-353.64243,486.81146,183.90533,-353.51492,494.58878,184.55734,-353.63065,455.27173,179.75288,-385.42053,443.14337,177.72495,-385.3992,430.9908,175.8919,-385.4716,480.35144,195.79541,-181.78755,392.64954,185.50906,-315.4885,478.94858,240.45438,-316.83112,443.51617,235.66348,-355.59735,534.8084,359.38934,-144.43913,263.63364,341.50848,-258.94232,571.8461,552.49854,-63.574642,214.47821,542.3077,-246.37566,578.8474,726.33276,-216.60074,213.90765,725.61743,-333.72653,585.8808,786.44604,-261.9387,202.50786,787.50885,-362.29987,563.33014,786.6401,-318.98398,231.33388,787.967,-424.85992,545.91095,763.4813,-239.69046,250.20238,763.7097,-354.07333,473.03714,746.64465,27.785017,327.57568,747.85126,-26.68675,481.2998,980.1779,151.35274,313.7613,979.87524,66.47061,470.08557,1145.76,413.33218,314.94022,1136.456,463.009,450.73303,1158.5134,433.57806,321.10312,1149.7029,492.8979,503.75314,1263.3447,302.16946,305.14835,1255.0148,353.05356
656f2b55-0fd9-47aa-a712-a124fb78430d.jpeg,face_left,483.5364,174.37973,-270.19702,478.61813,145.38696,-235.85506,483.88245,145.16492,-235.78177,489.58765,144.78523,-235.78497,457.3455,143.98598,-276.49814,445.50107,142.3779,-276.612,433.65298,140.8855,-276.52982,461.79404,152.38686,-79.52075,386.57,149.87842,-253.07816,475.36197,204.3143,-210.338,445.0574,201.84563,-260.618,491.515,329.48718,-37.51984,249.4196,313.69144,-195.28128,515.0264,520.0206,45.881668,215.32558,530.9927,-185.6942,538.9806,695.9752,-89.57307,231.11539,717.4331,-257.01,552.62964,753.587,-122.37233,225.04454,782.3075,-279.725,535.6284,757.60065,-187.95631,254.45996,776.4446,-318.33072,516.06793,734.4093,-118.55334,267.94336,749.07947,-267.64905,435.3002,697.0248,19.749832,296.79797,695.2637,-19.239601,454.24646,949.1669,102.67743,269.3979,933.4484,17.701967,462.0443,1130.7843,360.43954,293.55298,1115.8989,345.3399,447.36087,1142.9578,377.5616,312.48285,1134.6245,366.78342,481.4377,1258.439,221.52516,248.7543,1237.6854,196.93114
6cdd60f9-d3d6-4c44-8e65-c6318cfd8ec0.jpeg,face_left,430.935,166.22678,-333.3425,427.23306,136.84135,-298.66922,431.6554,137.0668,-298.7043,436.4923,137.1336,-298.96326,407.50122,133.72693,-346.75595,396.00455,131.21631,-346.73392,384.5139,128.88339,-346.56003,405.97018,140.66653,-106.435265,336.29385,131.40656,-317.7908,419.0734,193.68217,-256.7483,392.38312,188.88077,-318.34726,440.982,294.3793,-22.976868,191.09499,291.64523,-216.65189,484.80637,471.9824,103.49975,170.39793,491.45514,-200.50609,500.07928,647.2892,-86.507256,170.82979,664.32544,-329.92184,510.71344,706.7383,-134.07541,159.25687,724.4227,-364.657,493.2635,709.3588,-205.25969,187.0007,719.9936,-422.16516,474.8855,688.07184,-119.04408,204.38475,695.0715,-348.9976,404.05222,686.93353,32.535347,262.36072,695.86584,-31.617409,425.24286,939.2768,169.78233,264.29306,938.4662,-8.049166,419.5586,1115.0032,524.18176,311.47855,1117.6871,404.75595,401.34274,1129.1459,550.77216,329.7029,1134.9436,434.11768,454.26755,1239.7584,391.6793,290.51562,1240.5371,250.79602
6ced5bcc-9333-4f48-a90a-a826fe954937.jpeg,face_left,438.67682,220.92181,-259.5004,433.4564,196.96503,-221.66566,437.31058,196.95071,-221.58469,441.60928,196.82999,-221.75116,416.39114,195.57544,-264.70425,406.90668,194.22363,-264.65723,397.3764,193.02864,-264.5215,419.17184,203.46436,-42.345463,359.12415,200.30179,-226.58667,433.40906,245.51231,-189.5251,409.2702,243.37059,-243.12067,448.3231,357.55475,35.79401,246.60942,342.53754,-193.10014,475.05017,533.1111,145.32819,223.1525,535.76,-189.71678,487.6153,700.27234,-22.714651,210.63147,706.9514,-294.18494,495.95074,753.5563,-61.790623,195.37485,760.4984,-327.22873,478.8875,756.1325,-127.815575,216.89758,761.36957,-376.88925,464.85446,735.3745,-51.96546,233.18216,739.5218,-311.146,402.66763,704.441,76.22499,290.7241,707.5668,-75.45365,408.2588,933.4223,189.82892,308.93182,959.9999,5.803794,380.7721,1092.9412,555.44244,312.8751,1151.0457,322.71915,362.11896,1106.8445,587.46246,305.1516,1171.1726,346.81613,407.7716,1186.0591,485.33374,349.58603,1254.3936,170.33994
6ee8af64-4118-4620-b980-9a0bc6dcbe28.jpeg,face_left,442.48914,286.36658,-259.64197,436.43295,266.48602,-231.46338,439.9151,266.53296,-231.37877,443.70444,266.43948,-231.37132,421.37674,265.12543,-266.89005,413.0963,264.05078,-266.98837,404.7942,263.0274,-267.0724,423.26865,272.07672,-78.85599,369.92868,269.67007,-234.10132,437.1126,307.41364,-198.69,416.2591,305.73462,-243.98633,453.9862,387.97937,-4.6201386,276.87787,385.2965,-179.62326,486.58545,536.4495,55.25968,257.39252,551.3012,-205.27954,427.07446,649.1693,-93.25021,346.5699,668.3991,-266.35825,414.65652,692.4903,-149.84084,364.0601,711.3547,-302.2384,391.07697,683.1588,-173.35709,383.54526,699.13934,-315.66934,389.90997,666.5817,-106.32758,378.79684,682.4133,-267.44608,434.44382,675.416,41.594933,325.17722,679.5025,-41.5896,461.85815,892.511,35.864414,304.1901,895.1073,-35.662502,460.52087,1071.4358,219.19678,285.98862,1067.9824,209.72656,443.74255,1088.7664,230.29033,289.18277,1087.0,223.57898,491.96304,1163.1416,84.50584,270.28497,1159.3522,54.27686
77ae1e7d-0270-4e70-b507-cc16d15513e5.jpeg,face_left,421.11432,180.39719,-449.1474,416.94818,164.07883,-408.13367,420.55972,165.21725,-408.05344,424.55316,166.22089,-408.16293,400.5505,161.3747,-449.4618,391.3852,160.1788,-449.34134,382.17,159.176,-449.39514,403.04013,180.19814,-190.67894,345.5542,172.11392,-373.33728,415.902,208.71631,-365.92194,392.1873,204.82059,-418.7041,445.55865,338.08655,-67.23507,239.511,329.20355,-250.15097,483.92535,499.09784,101.915146,229.99883,513.84467,-213.74525,493.8951,644.4174,-112.91598,232.55879,673.4855,-386.66074,500.6141,695.8807,-175.30841,221.66917,727.60895,-437.44202,484.07037,696.0444,-253.43628,246.4377,725.7947,-501.1906,469.5781,675.23553,-145.9055,261.21744,702.45654,-409.77515,413.08807,664.78326,44.972935,295.77316,662.59656,-44.600147,433.84103,875.34534,306.63275,278.76767,867.3302,136.45227,421.55798,1040.8713,751.70276,284.83008,1031.7778,622.66437,399.23337,1061.2114,786.975,299.9127,1051.7983,658.6979,472.12903,1139.0352,623.8836,244.80714,1135.5466,456.88956
7a3f93e4-fa64-4896-8c9b-f89f8a9e7c0f.jpeg,face_left,460.37744,241.33197,-421.7581,455.23755,216.75244,-387.4381,460.64764,216.42395,-387.4751,466.4137,215.92369,-387.64294,434.62973,216.67358,-424.15414,423.6705,215.9679,-424.036,412.70236,215.42587,-424.0148,447.26675,223.46912,-198.81682,373.17865,224.52644,-357.48514,458.90338,266.56445,-347.6042,430.0443,266.19736,-393.33978,496.49405,372.69147,-108.225174,262.12637,361.27155,-262.5106,535.0823,535.1254,-17.407713,213.77254,524.7556,-239.69962,541.1902,679.74524,-268.2741,212.27213,681.8841,-373.20285,546.81726,730.6833,-340.28775,201.77902,735.74097,-413.36386,527.7583,725.0543,-400.11865,228.21121,731.74414,-476.15158,512.6745,706.32446,-297.0203,244.97769,710.9228,-394.92734,443.88232,710.8204,32.812073,318.78384,710.7483,-32.33258,454.50134,915.3049,215.85632,301.19858,907.916,35.159927,447.0893,1071.05,492.20682,325.80652,1062.9338,409.99146,427.92697,1086.6309,510.55322,343.9511,1079.7179,435.499,491.99316,1171.9038,359.59692,283.63846,1162.5078,273.8043
7d151876-5403-41b9-aa78-0aa2deb4b98c.jpeg,face_left,468.97052,130.50815,-300.48715,464.08746,107.37141,-264.88895,468.53577,107.70168,-264.73557,473.4258,107.86785,-264.79843,445.24982,105.865746,-305.2426,434.85626,104.782486,-305.2679,424.42435,103.85132,-305.23285,450.83804,120.6406,-95.89705,384.36682,117.10907,-269.44794,463.68784,161.24835,-236.5046,436.67392,158.88919,-286.89633,488.76855,305.47656,-34.693382,260.18283,284.66797,-214.8103,501.84525,506.42532,65.96238,236.5576,502.5006,-204.24771,500.9612,690.0104,-97.69032,216.85806,694.8737,-283.03253,509.0689,749.7161,-138.16203,198.58936,753.5162,-301.36612,488.90894,753.7314,-209.80025,218.84132,759.35864,-364.39386,472.31442,729.54517,-128.13385,239.09102,736.8072,-303.76907,429.23624,668.6129,43.617443,300.4111,663.6456,-42.99604,420.14297,932.55493,133.40332,294.88986,934.49536,-7.329701,386.44275,1148.2205,372.3013,314.74158,1147.2052,303.87207,363.58777,1169.2444,385.88434,324.79883,1169.1189,321.81876,419.213,1263.1993,228.77928,299.88812,1263.507,133.82675
7d6d3c13-e269-434b-a0ae-7c41ca7175f0.jpeg,face_left,468.814,173.01392,-369.15137,463.86603,149.76483,-329.74744,467.31848,150.01584,-329.69434,471.20428,150.11658,-329.77786,446.34473,148.18192,-376.08835,436.64825,146.93515,-375.93945,426.94214,145.87146,-375.9868,448.15567,158.88165,-120.12324,387.53046,154.59251,-325.39215,462.19766,201.45282,-288.23285,439.2375,198.99585,-347.17773,491.8803,323.90326,8.65236,271.4983,317.6494,-226.71974,515.3139,503.54608,170.09476,262.6714,519.39667,-191.60495,524.7126,672.50964,-42.313858,253.59428,690.6873,-339.7882,534.50006,728.9575,-96.294365,237.51132,745.4187,-391.16843,518.45416,729.7069,-181.01271,262.4877,745.1594,-451.16632,502.9256,707.3199,-77.66457,279.67664,721.21814,-361.78497,460.0391,669.4622,51.820198,329.39523,669.69904,-51.12504,459.39902,897.98816,188.52614,294.9416,888.30084,-231.77509,426.4405,1083.3845,631.8086,335.75607,1080.9495,256.3466,407.46097,1097.4968,664.8831,344.25372,1093.2091,295.8456,443.2079,1200.4999,491.7635,354.79214,1205.4454,87.981865
8144bcd6-f989-4668-9491-04e43250eca2.jpeg,face_left,489.58667,186.68861,-252.54947,484.66907,157.16156,-220.40308,490.00208,157.27982,-220.34619,495.78552,157.21497,-220.51942,463.32312,154.82922,-260.04614,451.4628,152.97977,-260.0959,439.57764,151.2695,-259.88614,469.15622,165.96222,-63.72777,393.69275,160.44388,-231.70033,482.8949,216.88484,-191.24362,452.28326,213.48442,-240.1802,509.08023,334.45868,-19.785923,261.15366,326.4499,-179.72356,547.53973,516.3322,59.9079,226.91501,531.9427,-177.28607,571.435,686.4696,-90.11824,210.12836,708.35297,-256.78998,584.93896,744.6805,-128.04033,193.88908,767.07007,-280.15118,562.94775,748.4598,-188.18317,221.17892,766.7087,-325.48322,543.5851,727.1288,-116.936226,239.35661,743.3618,-271.5718,460.18393,718.57544,24.086403,320.29596,721.9898,-23.373724,485.3295,962.43286,98.38502,299.70544,962.7428,-3.26834,471.1918,1136.5345,367.75812,321.16763,1136.6201,342.54318,452.22845,1145.3616,388.17474,333.18286,1151.4249,367.55542,492.1148,1270.2106,255.49388,299.3311,1264.9373,217.71701
8253bff7-8717-4799-9c1d-761e81161170.jpeg,face_left,431.16678,135.7795,-349.90775,434.64197,114.690895,-309.58414,441.94452,115.78789,-309.3886,449.68826,116.69193,-309.3943,410.2201,111.75251,-336.2336,398.83792,110.32719,-336.2358,387.44202,109.05487,-336.20932,438.90384,133.59189,-120.968765,355.17654,124.63867,-233.6134,434.57996,169.31076,-280.8668,400.27008,165.01312,-313.4408,489.03113,310.5069,-39.6847,250.87148,297.96332,-182.56793,507.98468,498.60724,48.933094,239.29364,506.65848,-170.51157,514.5786,672.70154,-109.72468,224.66548,693.153,-270.6747,527.70544,732.2845,-150.50545,205.74959,750.5701,-291.36847,503.3626,737.9078,-215.18307,229.7521,759.26306,-351.7759,486.0006,715.13794,-135.77608,250.42831,737.15515,-291.7148,447.83444,665.19196,35.311783,310.18423,666.3409,-34.918457,454.4574,916.5902,78.3324,291.02847,915.8518,-81.9142,431.76294,1114.4308,306.20065,327.91785,1099.8796,270.74197,412.03583,1126.3337,319.82745,338.7269,1109.4636,294.91437,453.82407,1250.7224,146.61401,332.66345,1238.731,119.23096
83b99d01-ecb7-46fb-a5f7-0ec5442a5f2e.jpeg,face_left,468.91812,190.36014,-443.6235,459.01947,163.60313,-404.76074,462.01462,163.09753,-404.75748,465.45618,162.44556,-404.8114,442.44455,163.19888,-462.5357,431.67773,162.02454,-462.52206,420.96967,160.97949,-462.4721,432.26968,168.09985,-211.98674,372.91632,168.23856,-471.77444,456.78003,216.28578,-369.63712,432.8949,215.14523,-444.85583,464.20352,330.28992,-126.380005,238.98717,330.29523,-425.3629,488.20065,531.64526,-3.8611667,232.64828,551.38257,-423.15192,487.5891,712.97797,-181.2583,263.12372,722.6932,-540.9731,495.08112,772.6836,-234.13206,260.99448,780.9567,-598.86945,474.9179,772.9752,-302.2728,288.2407,772.4812,-641.50165,458.9213,747.88904,-211.5921,297.92496,746.12354,-555.34283,429.44077,681.4222,72.45096,304.8567,690.82404,-71.84353,448.51413,928.5407,234.53302,304.65628,935.42834,19.748274,442.9005,1123.5973,508.98926,322.521,1129.4213,353.26907,422.6999,1143.0377,526.7731,326.75226,1149.1332,372.65808,496.26816,1236.9716,359.65878,333.8736,1249.1948,161.4704
89e47eef-5aef-426a-8214-83f26943382a.jpeg,face_left,453.6421,180.75539,-255.12555,452.69894,159.29996,-221.83524,457.59695,159.61693,-221.72713,462.90442,159.78561,-221.83931,433.1439,157.9232,-254.67487,423.4635,156.94344,-254.70692,413.76245,156.12018,-254.7313,447.57364,172.20767,-61.22534,381.34827,168.65547,-202.73166,452.7083,210.05124,-193.78014,426.09207,207.89726,-234.79088,489.1329,345.92108,17.184153,277.79288,327.4272,-165.0884,506.9418,531.77435,116.675674,257.88367,525.27905,-145.97612,524.54926,693.21094,-27.680727,235.97697,694.82166,-215.04306,535.5155,744.0172,-55.207108,218.62943,744.3829,-226.0098,524.63873,748.2588,-122.91675,235.44466,751.5295,-279.65787,509.4889,728.7245,-56.4423,254.98221,733.0262,-232.23094,446.5425,685.7132,42.9387,321.88242,682.03455,-42.527363,456.16104,918.5492,118.37681,305.94897,922.3738,-31.63356,426.5066,1098.2925,408.40643,322.393,1107.7156,312.2305,404.27203,1114.2893,427.7774,329.36163,1123.9167,335.0876,458.73846,1203.843,285.57062,322.0873,1219.6671,169.95226
90604427-2139-416a-b7fb-30c5b9fe256b.jpeg,face_left,509.5532,145.24768,-343.5382,505.0749,112.95242,-306.78854,510.18954,113.307076,-306.80453,515.80255,113.554306,-307.00272,483.7467,109.59526,-358.15237,471.3098,106.91582,-358.2613,458.82993,104.41212,-358.23062,484.4884,119.077835,-110.186775,408.07635,108.89149,-337.10153,499.17163,174.47754,-265.14908,468.33353,169.34781,-330.57416,519.0733,294.6954,-37.105156,249.79314,267.71027,-255.31978,548.9091,495.33832,101.05901,176.13313,478.04993,-255.38141,556.2802,676.5496,-114.943794,164.70944,659.89496,-426.8082,562.3988,742.71375,-175.28409,148.90262,727.2207,-473.95135,543.6322,740.9722,-251.26277,183.1996,721.4409,-535.19904,525.536,714.1692,-148.66455,203.65973,694.3564,-447.9265,450.2608,693.5946,48.188217,301.11874,693.22516,-47.461826,457.17172,929.5835,238.56343,268.0536,940.0281,36.837418,430.7129,1096.7273,630.6784,284.43634,1090.1501,592.21265,408.4783,1107.654,664.6641,297.61072,1101.9354,640.9819,460.41052,1227.0238,530.5255,254.73386,1215.1101,499.69873
989ceb5b-f419-40dc-a918-9439187827b2.jpeg,face_left,468.814,173.01392,-369.15137,463.86603,149.76483,-329.74744,467.31848,150.01584,-329.69434,471.20428,150.11658,-329.77786,446.34473,148.18192,-376.08835,436.64825,146.93515,-375.93945,426.94214,145.87146,-375.9868,448.15567,158.88165,-120.12324,387.53046,154.59251,-325.39215,462.19766,201.45282,-288.23285,439.2375,198.99585,-347.17773,491.8803,323.90326,8.65236,271.4983,317.6494,-226.71974,515.3139,503.54608,170.09476,262.6714,519.39667,-191.60495,524.7126,672.50964,-42.313858,253.59428,690.6873,-339.7882,534.50006,728.9575,-96.294365,237.51132,745.4187,-391.16843,518.45416,729.7069,-181.01271,262.4877,745.1594,-451.16632,502.9256,707.3199,-77.66457,279.67664,721.21814,-361.78497,460.0391,669.4622,51.820198,329.39523,669.69904,-51.12504,459.39902,897.98816,188.52614,294.9416,888.30084,-231.77509,426.4405,1083.3845,631.8086,335.75607,1080.9495,256.3466,407.46097,1097.4968,664.8831,344.25372,1093.2091,295.8456,443.2079,1200.4999,491.7635,354.79214,1205.4454,87.981865
9c11f11a-30ee-4cc5-a12c-6f77416d874d.jpeg,face_left,430.935,166.22678,-333.3425,427.23306,136.84135,-298.66922,431.6554,137.0668,-298.7043,436.4923,137.1336,-298.96326,407.50122,133.72693,-346.75595,396.00455,131.21631,-346.73392,384.5139,128.88339,-346.56003,405.97018,140.66653,-106.435265,336.29385,131.40656,-317.7908,419.0734,193.68217,-256.7483,392.38312,188.88077,-318.34726,440.982,294.3793,-22.976868,191.09499,291.64523,-216.65189,484.80637,471.9824,103.49975,170.39793,491.45514,-200.50609,500.07928,647.2892,-86.507256,170.82979,664.32544,-329.92184,510.71344,706.7383,-134.07541,159.25687,724.4227,-364.657,493.2635,709.3588,-205.25969,187.0007,719.9936,-422.16516,474.8855,688.07184,-119.04408,204.38475,695.0715,-348.9976,404.05222,686.93353,32.535347,262.36072,695.86584,-31.617409,425.24286,939.2768,169.78233,264.29306,938.4662,-8.049166,419.5586,1115.0032,524.18176,311.47855,1117.6871,404.75595,401.34274,1129.1459,550.77216,329.7029,1134.9436,434.11768,454.26755,1239.7584,391.6793,290.51562,1240.5371,250.79602
9eb9e842-2b59-4138-be20-7dfd249e0a59.jpeg,face_left,477.94226,148.70847,-326.24304,477.94656,124.286,-287.03693,482.77747,125.83897,-286.9206,488.08282,127.23816,-286.98132,458.35434,118.41583,-329.56863,447.78116,115.11555,-329.52267,437.1877,111.971664,-329.46643,464.00198,135.07866,-81.58122,395.56915,116.560745,-269.3682,469.61057,177.83424,-247.25275,442.04297,169.38586,-301.76297,500.4693,302.34866,-3.1149354,252.9441,278.88483,-191.43016,534.18463,505.23077,118.42973,226.77258,507.60382,-180.7687,547.95667,677.5425,-92.34096,226.35318,692.1798,-351.53732,556.6107,736.0735,-152.49442,212.73222,753.20764,-397.31567,535.0202,735.6221,-219.64322,241.9284,751.0924,-456.65225,518.7792,711.2103,-121.29429,260.11398,724.70184,-371.8313,456.84186,676.2677,46.986187,313.78302,682.0905,-46.327217,466.96075,924.42163,114.80274,277.57327,957.77747,-33.752842,432.9699,1117.2767,417.6024,298.77435,1133.08,411.6126,410.84335,1128.6064,440.9196,307.1968,1140.1901,445.96768,455.3893,1255.0721,286.5662,304.1029,1276.6743,274.84268
a1a6710f-5a9c-4eea-8ee3-7d34affdfa77.jpeg,face_left,425.2245,244.44821,-388.19632,427.7377,228.68945,-351.60077,433.3518,230.04974,-351.44214,439.3086,231.25888,-351.40448,408.55695,225.17514,-377.46136,399.54352,223.61977,-377.44193,390.5029,222.16571,-377.4542,427.84216,244.17377,-158.23718,362.0389,233.01868,-273.4713,425.9526,269.4194,-314.54034,398.6787,264.46927,-347.8928,454.70544,374.32,-54.425125,273.13144,363.9668,-211.96362,478.78934,530.8384,47.397934,257.35907,540.03894,-206.01588,490.43304,681.41833,-106.59635,292.77505,690.14166,-289.75916,502.40552,729.8528,-153.82349,292.959,739.79407,-322.0138,483.18494,733.56213,-207.10796,316.71167,735.8445,-358.64606,469.44772,716.18835,-131.03432,321.2837,715.52527,-300.96942,425.10352,672.7865,49.717106,319.9366,677.27783,-49.650635,430.14218,891.7362,94.18614,324.60587,909.87683,-46.775204,408.16452,1066.2234,311.0437,329.7058,1089.5789,226.1925,389.43436,1083.9202,324.53668,331.24057,1107.9945,242.97351,440.8167,1162.106,180.70169,338.05875,1189.4263,70.5578
a2644523-fd9d-449b-a16f-798d1d8f655a.jpeg,face_left,430.95416,191.68048,-495.5981,430.75446,170.58029,-463.63464,436.43805,171.46774,-463.42426,442.51083,172.1936,-463.3865,409.77142,167.5,-498.2643,399.21573,165.70355,-498.29208,388.68375,164.05006,-498.30692,424.07144,182.37183,-262.8708,352.24066,172.80632,-417.8426,427.9285,218.31592,-416.86945,399.0957,213.8536,-461.53098,456.3295,328.9423,-139.17569,251.64587,317.45886,-322.8437,484.53625,503.69144,-8.190689,238.92822,515.5829,-320.2919,490.89746,668.0889,-144.5561,233.61339,677.814,-401.27524,500.4087,720.0339,-177.18817,221.06157,726.9848,-415.89636,480.7645,723.87805,-237.12491,234.74258,732.29126,-473.15558,465.6031,704.79913,-168.82462,251.3619,714.19324,-419.396,422.08978,652.21094,57.507397,303.00076,651.9915,-57.59374,426.687,886.5453,155.04298,267.74863,886.4102,-23.04501,406.3122,1073.5134,357.18524,256.67126,1068.1609,270.8882,380.3863,1096.8623,368.3574,263.55347,1086.3262,287.23917,472.40112,1177.8674,210.09508,239.05971,1182.8328,102.94631
a4f39dd8-5256-433e-b597-81bda41b194b.jpeg,face_left,479.00537,164.71031,-297.16864,472.67612,138.3504,-249.83861,475.7132,138.14792,-249.79561,479.20947,137.81906,-249.94946,454.0907,136.23502,-307.8292,443.53952,134.15703,-307.78998,432.9844,132.23663,-307.75415,448.67255,138.36815,-6.461148,387.2306,132.6786,-266.54257,467.29077,188.54214,-201.48033,444.79236,185.23254,-277.07916,483.4106,298.68802,109.8331,250.66058,271.93762,-177.01414,515.4314,480.37988,292.1651,230.78218,469.8207,-178.13765,528.2047,649.9845,7.7576766,223.96565,646.35156,-397.3427,537.0944,708.317,-59.90887,211.83511,704.96735,-447.3362,517.95215,706.727,-149.87805,232.18759,701.6277,-513.54266,503.3771,682.2063,-32.502,247.95541,677.59106,-420.6192,442.7709,663.72253,72.16606,303.5097,661.5732,-71.454926,448.0491,913.2834,133.71045,288.89157,928.53265,-85.56914,425.02533,1113.9568,528.5143,301.9457,1123.8954,350.72736,404.33807,1134.6968,558.5847,312.51224,1141.999,381.93213,462.5257,1222.905,381.81122,292.87695,1241.1572,157.51132
a56f5704-ac1f-4b4c-925e-93fca5e9f4c1.jpeg,face_left,498.26883,118.02967,-363.71155,494.7663,95.96142,-323.60275,499.15717,96.33152,-323.50128,503.96805,96.55907,-323.59085,475.31165,94.28585,-362.97467,464.91818,93.026505,-362.98508,454.4673,91.91578,-362.91443,480.7405,108.45978,-134.8163,414.41626,103.57048,-305.5593,492.26465,148.02707,-292.36603,465.41443,145.11462,-341.9185,514.4719,290.24643,-64.564514,285.56027,268.32303,-213.80994,532.2363,489.46713,62.747253,256.0675,481.32043,-174.98686,540.24945,669.76654,-114.9678,239.50703,656.8487,-270.85147,549.7212,725.80554,-163.43881,227.87927,709.8258,-292.17477,535.80414,731.9549,-237.20203,243.35039,711.51526,-356.38525,519.49396,709.48615,-147.17833,260.28384,689.7594,-293.4494,444.26556,641.4032,29.09343,310.65436,634.27966,-28.663708,442.9735,914.4496,112.54114,300.26614,907.5,4.8255477,436.84506,1121.6797,418.1614,322.9547,1119.9895,374.99542,420.18796,1143.9307,436.5375,340.6777,1144.5294,398.1926,466.40683,1232.1665,247.9459,286.72192,1232.7783,189.17766
b430f375-2148-4913-97ab-25287a211b11.jpeg,face_left,490.12872,210.73795,-425.22443,488.1666,187.70459,-380.2908,494.64456,188.50696,-380.25406,501.5268,189.15703,-380.34332,465.13254,185.66963,-416.2897,453.20016,184.7002,-416.28372,441.20703,183.89915,-416.33557,483.12064,207.14554,-192.15361,401.44614,201.93173,-347.15543,489.58768,245.4053,-357.12604,455.68945,242.51236,-402.01126,522.38153,394.93713,-134.94724,283.2035,377.05228,-284.08734,530.0982,597.2082,-42.426983,260.94467,592.4639,-281.31967,521.1252,789.3853,-196.27164,252.0469,781.39856,-344.20105,526.81915,849.0048,-237.7002,239.7546,839.4754,-370.02478,510.504,853.9371,-302.17868,259.77383,837.7883,-422.78473,494.9001,830.1793,-224.39929,276.57172,814.45135,-362.5027,452.13284,751.4477,31.213669,320.12674,746.2336,-30.567167,460.6018,967.45215,245.03923,301.06604,953.3363,31.858477,442.92984,1125.2463,611.6545,341.35776,1106.4935,485.82156,424.0226,1137.5061,637.6092,357.35126,1119.6414,519.91223,466.7115,1245.652,470.97388,317.98016,1224.0094,341.7421
c3ea86b1-768c-40a7-a2dd-1615c23b1f5b.jpeg,face_left,430.0635,172.8706,-394.34937,430.83618,148.62277,-351.04694,438.18655,149.27106,-350.93854,445.95447,149.74716,-351.09995,405.8496,146.78159,-383.06284,393.6811,145.70767,-383.07425,381.4936,144.78508,-383.06082,430.57312,164.93146,-146.60281,344.89352,159.54239,-282.57437,432.39304,204.40067,-318.34488,396.93213,201.732,-357.876,473.49667,338.86197,-67.59161,238.78831,334.49878,-206.6149,504.25504,536.62646,25.763922,222.52817,552.39087,-184.29454,519.81177,714.72504,-145.31364,220.52678,726.2271,-294.07544,530.7724,770.324,-189.14748,209.9123,780.0895,-323.94058,513.44354,773.2684,-251.77342,230.59663,780.8212,-382.222,496.62152,753.29224,-172.68417,247.40826,759.6984,-314.6231,432.91394,702.56494,43.23304,303.88474,707.826,-42.623173,437.1461,954.2524,113.968864,316.0872,956.7566,9.096487,418.81677,1142.7969,383.12756,334.2682,1143.4215,348.59253,397.94507,1158.6431,400.1857,335.94336,1159.0245,369.87027,455.3857,1263.2906,215.16524,356.82645,1267.1294,167.54193
c9595b73-14ff-462a-be7e-3cf5ee799060.jpeg,face_left,483.5364,174.37973,-270.19702,478.61813,145.38696,-235.85506,483.88245,145.16492,-235.78177,489.58765,144.78523,-235.78497,457.3455,143.98598,-276.49814,445.50107,142.3779,-276.612,433.65298,140.8855,-276.52982,461.79404,152.38686,-79.52075,386.57,149.87842,-253.07816,475.36197,204.3143,-210.338,445.0574,201.84563,-260.618,491.515,329.48718,-37.51984,249.4196,313.69144,-195.28128,515.0264,520.0206,45.881668,215.32558,530.9927,-185.6942,538.9806,695.9752,-89.57307,231.11539,717.4331,-257.01,552.62964,753.587,-122.37233,225.04454,782.3075,-279.725,535.6284,757.60065,-187.95631,254.45996,776.4446,-318.33072,516.06793,734.4093,-118.55334,267.94336,749.07947,-267.64905,435.3002,697.0248,19.749832,296.79797,695.2637,-19.239601,454.24646,949.1669,102.67743,269.3979,933.4484,17.701967,462.0443,1130.7843,360.43954,293.55298,1115.8989,345.3399,447.36087,1142.9578,377.5616,312.48285,1134.6245,366.78342,481.4377,1258.439,221.52516,248.7543,1237.6854,196.93114
cc4ccc8e-496d-435d-b6f1-41014479d3b5.jpeg,face_left,460.37744,241.33197,-421.7581,455.23755,216.75244,-387.4381,460.64764,216.42395,-387.4751,466.4137,215.92369,-387.64294,434.62973,216.67358,-424.15414,423.6705,215.9679,-424.036,412.70236,215.42587,-424.0148,447.26675,223.46912,-198.81682,373.17865,224.52644,-357.48514,458.90338,266.56445,-347.6042,430.0443,266.19736,-393.33978,496.49405,372.69147,-108.225174,262.12637,361.27155,-262.5106,535.0823,535.1254,-17.407713,213.77254,524.7556,-239.69962,541.1902,679.74524,-268.2741,212.27213,681.8841,-373.20285,546.81726,730.6833,-340.28775,201.77902,735.74097,-413.36386,527.7583,725.0543,-400.11865,228.21121,731.74414,-476.15158,512.6745,706.32446,-297.0203,244.97769,710.9228,-394.92734,443.88232,710.8204,32.812073,318.78384,710.7483,-32.33258,454.50134,915.3049,215.85632,301.19858,907.916,35.159927,447.0893,1071.05,492.20682,325.80652,1062.9338,409.99146,427.92697,1086.6309,510.55322,343.9511,1079.7179,435.499,491.99316,1171.9038,359.59692,283.63846,1162.5078,273.8043
d25bff3d-8b3c-493f-ba7c-7d5f9048803e.jpeg,face_left,453.6421,180.75539,-255.12555,452.69894,159.29996,-221.83524,457.59695,159.61693,-221.72713,462.90442,159.78561,-221.83931,433.1439,157.9232,-254.67487,423.4635,156.94344,-254.70692,413.76245,156.12018,-254.7313,447.57364,172.20767,-61.22534,381.34827,168.65547,-202.73166,452.7083,210.05124,-193.78014,426.09207,207.89726,-234.79088,489.1329,345.92108,17.184153,277.79288,327.4272,-165.0884,506.9418,531.77435,116.675674,257.88367,525.27905,-145.97612,524.54926,693.21094,-27.680727,235.97697,694.82166,-215.04306,535.5155,744.0172,-55.207108,218.62943,744.3829,-226.0098,524.63873,748.2588,-122.91675,235.44466,751.5295,-279.65787,509.4889,728.7245,-56.4423,254.98221,733.0262,-232.23094,446.5425,685.7132,42.9387,321.88242,682.03455,-42.527363,456.16104,918.5492,118.37681,305.94897,922.3738,-31.63356,426.5066,1098.2925,408.40643,322.393,1107.7156,312.2305,404.27203,1114.2893,427.7774,329.36163,1123.9167,335.0876,458.73846,1203.843,285.57062,322.0873,1219.6671,169.95226
d59ffec1-1a38-4a1f-aaaf-73ab489dc11f.jpeg,face_left,461.1903,232.35054,-235.422,454.66083,209.98737,-193.79466,457.74374,209.7662,-193.75647,461.18585,209.36882,-193.76707,437.66068,209.35504,-247.9692,427.37122,208.26988,-247.971,417.06436,207.31555,-247.9535,431.6956,216.95895,-12.125351,373.33212,216.16794,-248.64162,450.2665,258.91864,-165.3677,427.38748,257.39108,-234.08246,455.4527,370.65167,53.21278,253.19745,370.12335,-213.86832,484.37994,551.723,180.17696,237.42438,579.6183,-235.35455,512.0718,718.4097,-17.72524,237.63844,755.03186,-321.42343,528.7684,773.6282,-66.127495,226.11066,811.3695,-346.40482,510.61105,775.6353,-141.69061,246.37653,808.9639,-397.9503,492.68674,753.97797,-53.633408,262.12122,786.1699,-337.53647,440.76834,726.90796,54.644596,317.80664,732.86194,-54.158825,460.1561,973.76,113.7625,297.47513,980.6483,-15.8496895,447.04596,1177.7513,351.84805,298.9005,1178.1423,320.20087,424.79514,1205.7278,365.08118,316.6008,1205.8552,339.56448,504.6129,1276.1155,212.18593,241.57841,1279.3195,150.9355
d5e557c9-9eb5-4458-9994-849f999a73e2.jpeg,face_left,489.58667,186.68861,-252.54947,484.66907,157.16156,-220.40308,490.00208,157.27982,-220.34619,495.78552,157.21497,-220.51942,463.32312,154.82922,-260.04614,451.4628,152.97977,-260.0959,439.57764,151.2695,-259.88614,469.15622,165.96222,-63.72777,393.69275,160.44388,-231.70033,482.8949,216.88484,-191.24362,452.28326,213.48442,-240.1802,509.08023,334.45868,-19.785923,261.15366,326.4499,-179.72356,547.53973,516.3322,59.9079,226.91501,531.9427,-177.28607,571.435,686.4696,-90.11824,210.12836,708.35297,-256.78998,584.93896,744.6805,-128.04033,193.88908,767.07007,-280.15118,562.94775,748.4598,-188.18317,221.17892,766.7087,-325.48322,543.5851,727.1288,-116.936226,239.35661,743.3618,-271.5718,460.18393,718.57544,24.086403,320.29596,721.9898,-23.373724,485.3295,962.43286,98.38502,299.70544,962.7428,-3.26834,471.1918,1136.5345,367.75812,321.16763,1136.6201,342.54318,452.22845,1145.3616,388.17474,333.18286,1151.4249,367.55542,492.1148,1270.2106,255.49388,299.3311,1264.9373,217.71701
d68fcb2c-5566-44df-b2c4-506e53ac64f6.jpeg,face_left,468.97052,130.50815,-300.48715,464.08746,107.37141,-264.88895,468.53577,107.70168,-264.73557,473.4258,107.86785,-264.79843,445.24982,105.865746,-305.2426,434.85626,104.782486,-305.2679,424.42435,103.85132,-305.23285,450.83804,120.6406,-95.89705,384.36682,117.10907,-269.44794,463.68784,161.24835,-236.5046,436.67392,158.88919,-286.89633,488.76855,305.47656,-34.693382,260.18283,284.66797,-214.8103,501.84525,506.42532,65.96238,236.5576,502.5006,-204.24771,500.9612,690.0104,-97.69032,216.85806,694.8737,-283.03253,509.0689,749.7161,-138.16203,198.58936,753.5162,-301.36612,488.90894,753.7314,-209.80025,218.84132,759.35864,-364.39386,472.31442,729.54517,-128.13385,239.09102,736.8072,-303.76907,429.23624,668.6129,43.617443,300.4111,663.6456,-42.99604,420.14297,932.55493,133.40332,294.88986,934.49536,-7.329701,386.44275,1148.2205,372.3013,314.74158,1147.2052,303.87207,363.58777,1169.2444,385.88434,324.79883,1169.1189,321.81876,419.213,1263.1993,228.77928,299.88812,1263.507,133.82675
d6fc60e2-e18b-4a02-bfc2-7ac0fac64e85.jpeg,face_left,490.12872,210.73795,-425.22443,488.1666,187.70459,-380.2908,494.64456,188.50696,-380.25406,501.5268,189.15703,-380.34332,465.13254,185.66963,-416.2897,453.20016,184.7002,-416.28372,441.20703,183.89915,-416.33557,483.12064,207.14554,-192.15361,401.44614,201.93173,-347.15543,489.58768,245.4053,-357.12604,455.68945,242.51236,-402.01126,522.38153,394.93713,-134.94724,283.2035,377.05228,-284.08734,530.0982,597.2082,-42.426983,260.94467,592.4639,-281.31967,521.1252,789.3853,-196.27164,252.0469,781.39856,-344.20105,526.81915,849.0048,-237.7002,239.7546,839.4754,-370.02478,510.504,853.9371,-302.17868,259.77383,837.7883,-422.78473,494.9001,830.1793,-224.39929,276.57172,814.45135,-362.5027,452.13284,751.4477,31.213669,320.12674,746.2336,-30.567167,460.6018,967.45215,245.03923,301.06604,953.3363,31.858477,442.92984,1125.2463,611.6545,341.35776,1106.4935,485.82156,424.0226,1137.5061,637.6092,357.35126,1119.6414,519.91223,466.7115,1245.652,470.97388,317.98016,1224.0094,341.7421
d81e3585-92c8-4048-9699-b497948745fb.jpeg,face_left,484.44,205.04337,-332.68384,472.8033,175.3056,-300.60568,475.5093,173.79044,-300.54846,478.6556,172.11911,-300.631,456.0089,177.06943,-354.21997,445.1849,176.44763,-354.18423,434.41568,175.9537,-354.06235,445.40475,174.90837,-123.65479,386.03952,182.07248,-356.55148,472.54755,229.19604,-262.4691,449.50012,230.85156,-329.75952,483.50525,335.92175,-32.89294,260.66467,336.85315,-285.48517,512.60004,526.0904,92.59988,247.88289,543.15564,-255.40118,528.57196,697.84216,-95.124725,244.44106,721.24115,-407.0951,540.22485,753.0144,-142.51729,231.44354,777.45447,-452.918,523.3117,754.8894,-220.18604,254.0018,780.75574,-507.99188,506.55896,733.38043,-128.19205,271.57822,757.43384,-427.08527,451.85303,689.5383,52.838043,324.72934,697.0713,-52.401142,457.2008,939.9303,133.824,307.0241,950.35754,-14.258741,434.347,1138.4817,398.85495,318.78662,1140.722,350.53192,411.49408,1153.5009,415.29242,323.06805,1156.766,374.91196,468.37326,1260.5236,242.49472,324.0311,1264.9122,187.20238
e0298d08-7041-485b-9ace-1c2259004c91.jpeg,face_left,477.6288,210.90096,-384.43927,479.4486,183.0545,-353.64243,486.81146,183.90533,-353.51492,494.58878,184.55734,-353.63065,455.27173,179.75288,-385.42053,443.14337,177.72495,-385.3992,430.9908,175.8919,-385.4716,480.35144,195.79541,-181.78755,392.64954,185.50906,-315.4885,478.94858,240.45438,-316.83112,443.51617,235.66348,-355.59735,534.8084,359.38934,-144.43913,263.63364,341.50848,-258.94232,571.8461,552.49854,-63.574642,214.47821,542.3077,-246.37566,578.8474,726.33276,-216.60074,213.90765,725.61743,-333.72653,585.8808,786.44604,-261.9387,202.50786,787.50885,-362.29987,563.33014,786.6401,-318.98398,231.33388,787.967,-424.85992,545.91095,763.4813,-239.69046,250.20238,763.7097,-354.07333,473.03714,746.64465,27.785017,327.57568,747.85126,-26.68675,481.2998,980.1779,151.35274,313.7613,979.87524,66.47061,470.08557,1145.76,413.33218,314.94022,1136.456,463.009,450.73303,1158.5134,433.57806,321.10312,1149.7029,492.8979,503.75314,1263.3447,302.16946,305.14835,1255.0148,353.05356
e1ab1935-990a-4e5b-ba5a-0719bdcf466f.jpeg,face_left,445.29666,157.70462,-382.224,439.718,134.82358,-332.05197,444.2752,135.25368,-332.01245,449.30087,135.559,-332.12546,419.0714,133.00468,-377.922,407.91687,131.77814,-377.74078,396.72498,130.73087,-377.52878,423.9419,148.82266,-106.7883,352.70193,144.37726,-306.37167,439.61465,189.60518,-298.2297,410.7621,186.81572,-356.52502,467.783,337.79675,-28.778204,222.97487,321.31982,-204.67667,494.85114,533.01636,120.350685,211.6532,538.6598,-191.95735,506.5476,713.3735,-139.89664,193.88968,728.4051,-403.90137,515.4628,775.7254,-206.2455,178.38579,790.98425,-454.01962,494.77524,776.65,-294.7936,196.45065,792.61237,-526.7841,479.01636,750.0901,-176.33879,216.10863,764.93396,-432.51846,423.1563,710.20447,39.764004,279.8218,711.5912,-38.49148,434.3522,958.8622,161.67537,265.44385,980.1667,-38.794094,420.38034,1156.5432,627.4688,315.78,1145.1134,517.13086,405.82312,1170.9906,665.0961,330.87668,1152.844,563.3387,430.03244,1281.9731,489.83536,318.52917,1276.4032,381.6829
e7aa80fa-82ec-45c0-801d-89d0ca73a26c.jpeg,face_left,473.43784,210.30334,-370.58218,472.7328,191.36772,-331.13464,477.54758,192.84467,-331.02554,482.81418,194.16699,-331.07184,453.87973,187.19917,-365.54922,444.09402,185.15094,-365.47794,434.26105,183.25058,-365.3385,463.15656,208.0677,-143.1249,397.39062,195.20764,-293.8322,468.7768,240.91022,-300.6195,441.37375,234.75436,-344.51468,502.54086,380.26837,-83.72671,274.80936,360.52005,-215.07791,522.6709,572.9519,17.841547,255.68472,566.93396,-199.23442,525.27606,762.16016,-148.52786,264.53738,753.3328,-352.8293,533.4085,824.7192,-199.1897,254.8841,817.7883,-401.7627,511.0765,830.51056,-266.59985,283.09686,818.4118,-457.5068,495.64554,804.47723,-175.86691,297.56552,791.06024,-373.84702,458.31323,736.5866,30.098274,327.93668,739.0542,-29.327219,467.2987,987.6725,124.91219,317.05084,990.8678,33.601627,464.92664,1187.0298,402.3242,339.29492,1168.8662,418.73874,450.3807,1203.2183,421.55313,350.08133,1180.9011,445.86652,487.30948,1308.7499,249.8079,333.6197,1295.1074,256.74063
e962177a-6b12-4ee8-837a-988f47b8d530.jpeg,face_left,1985.0432,1024.6997,-1464.7572,1966.0033,946.84357,-1352.7944,1982.6194,946.7388,-1352.7611,2000.3938,946.18207,-1353.441,1900.7104,945.3998,-1474.8971,1865.4454,943.37506,-1474.6161,1830.1273,941.9696,-1474.178,1931.1008,979.74774,-795.7829,1696.0586,980.634,-1323.5566,1975.9252,1111.336,-1248.8796,1882.0507,1108.8574,-1400.9329,2083.4653,1476.1404,-573.8323,1320.2594,1452.0304,-1029.3041,2171.4983,2004.5078,-188.51706,1181.9954,1993.9492,-899.7683,2219.601,2502.665,-713.0195,1204.4457,2502.1277,-1114.0,2243.946,2669.481,-868.8135,1180.6323,2676.1028,-1213.8613,2204.9473,2669.801,-1075.9883,1271.036,2662.1775,-1388.6772,2153.8972,2609.3584,-803.1151,1312.9779,2591.1987,-1172.3795,1902.3265,2531.3352,98.19701,1500.9825,2544.5967,-96.038284,1923.9745,3163.2075,860.93036,1471.5951,3164.147,320.7854,1934.252,3603.7268,1936.6014,1481.9032,3599.7358,1671.5134,1872.4393,3647.794,2018.6046,1510.2489,3637.364,1770.6311,2094.582,3921.21,1581.291,1421.9536,3935.2861,1273.9764
f5b9e84e-6797-492c-97b3-45971800d6ec.jpeg,face_left,445.29666,157.70462,-382.224,439.718,134.82358,-332.05197,444.2752,135.25368,-332.01245,449.30087,135.559,-332.12546,419.0714,133.00468,-377.922,407.91687,131.77814,-377.74078,396.72498,130.73087,-377.52878,423.9419,148.82266,-106.7883,352.70193,144.37726,-306.37167,439.61465,189.60518,-298.2297,410.7621,186.81572,-356.52502,467.783,337.79675,-28.778204,222.97487,321.31982,-204.67667,494.85114,533.01636,120.350685,211.6532,538.6598,-191.95735,506.5476,713.3735,-139.89664,193.88968,728.4051,-403.90137,515.4628,775.7254,-206.2455,178.38579,790.98425,-454.01962,494.77524,776.65,-294.7936,196.45065,792.61237,-526.7841,479.01636,750.0901,-176.33879,216.10863,764.93396,-432.51846,423.1563,710.20447,39.764004,279.8218,711.5912,-38.49148,434.3522,958.8622,161.67537,265.44385,980.1667,-38.794094,420.38034,1156.5432,627.4688,315.78,1145.1134,517.13086,405.82312,1170.9906,665.0961,330.87668,1152.844,563.3387,430.03244,1281.9731,489.83536,318.52917,1276.4032,381.6829
f71151c2-27e1-453e-b8e3-56ae28e512e2.jpeg,face_left,441.308,192.41849,-349.64383,449.30405,167.10193,-314.7013,458.74448,168.2077,-314.58307,468.556,169.11713,-314.58087,422.22263,164.38828,-336.04825,409.74527,163.10498,-336.03662,397.23206,162.00737,-335.99478,465.23868,189.12453,-141.02881,368.6792,180.26172,-230.8573,451.22845,226.15326,-284.9027,410.1952,222.25034,-311.01575,505.3146,362.70523,-74.68973,266.88687,347.7139,-212.91592,518.0513,549.2123,-10.632953,234.56253,553.4254,-226.32564,519.29675,726.58264,-166.58817,250.15424,740.58716,-311.67783,529.2197,788.7274,-206.60869,241.74463,804.4442,-343.29407,504.7187,790.73804,-262.46866,275.62723,801.6517,-390.72287,486.91208,767.6682,-189.9717,290.23544,777.4513,-327.05316,442.62534,743.8312,44.50458,313.92166,743.5339,-43.60596,440.9372,981.72906,118.073715,300.4996,981.74384,-26.293846,415.25247,1160.8478,314.4892,322.12292,1153.444,269.4459,392.37543,1176.6609,326.15912,327.96265,1167.9675,287.1998,459.8013,1282.7435,181.40198,323.70917,1278.9133,124.245705
f7755875-addc-49e6-8cad-f1862edeeee5.jpeg,face_left,438.67682,220.92181,-259.5004,433.4564,196.96503,-221.66566,437.31058,196.95071,-221.58469,441.60928,196.82999,-221.75116,416.39114,195.57544,-264.70425,406.90668,194.22363,-264.65723,397.3764,193.02864,-264.5215,419.17184,203.46436,-42.345463,359.12415,200.30179,-226.58667,433.40906,245.51231,-189.5251,409.2702,243.37059,-243.12067,448.3231,357.55475,35.79401,246.60942,342.53754,-193.10014,475.05017,533.1111,145.32819,223.1525,535.76,-189.71678,487.6153,700.27234,-22.714651,210.63147,706.9514,-294.18494,495.95074,753.5563,-61.790623,195.37485,760.4984,-327.22873,478.8875,756.1325,-127.815575,216.89758,761.36957,-376.88925,464.85446,735.3745,-51.96546,233.18216,739.5218,-311.146,402.66763,704.441,76.22499,290.7241,707.5668,-75.45365,408.2588,933.4223,189.82892,308.93182,959.9999,5.803794,380.7721,1092.9412,555.44244,312.8751,1151.0457,322.71915,362.11896,1106.8445,587.46246,305.1516,1171.1726,346.81613,407.7716,1186.0591,485.33374,349.58603,1254.3936,170.33994
f83d0a03-6cbf-4390-ac30-8c0d14b314ab.jpeg,face_left,432.9897,197.4704,-212.02646,435.6563,177.97302,-173.177,442.00916,178.46954,-173.05884,448.75974,178.84827,-173.23569,414.15268,176.46732,-196.54872,404.69345,175.5542,-196.72646,395.2177,174.77737,-196.80725,442.86188,192.25024,-18.179325,369.91714,188.10196,-107.982155,439.095,225.48245,-154.04659,409.82773,223.18973,-180.53032,489.11673,356.42505,39.05605,267.32623,334.01273,-99.43143,500.41882,537.5931,148.04733,220.04813,532.3548,-46.69971,519.15967,686.04095,-1.2361819,203.48157,698.62213,-110.56429,526.70667,729.42413,-31.384024,191.28764,745.4696,-111.30605,522.8085,730.77844,-94.83951,206.16823,746.4808,-169.51848,510.70102,715.37897,-32.301945,223.03392,728.7407,-129.54366,436.35953,704.2206,41.153664,303.8347,701.1935,-40.492203,444.95355,966.4707,-4.249421,315.48227,961.9248,-67.76025,417.30487,1123.12,364.46002,324.66312,1130.8508,342.467,402.3626,1131.5236,396.72855,323.9222,1142.5615,378.12573,429.95895,1222.029,287.5812,347.00122,1238.6104,245.15685
fe50b387-2cf3-4138-a6b4-49c629630930.jpeg,face_left,456.71036,226.97766,-323.7719,449.6601,211.26605,-278.2659,453.38815,212.35817,-278.2546,457.4241,213.28159,-278.33218,431.9298,208.31714,-324.95465,422.2636,207.07349,-324.97852,412.51886,205.96631,-325.06662,431.44775,226.17435,-59.508476,371.70844,218.92963,-265.45206,449.20425,255.78484,-239.6997,425.56354,252.02682,-299.9813,462.80457,376.77823,51.55382,263.8068,364.2792,-192.73216,484.56323,541.287,119.6732,239.1682,547.3542,-215.23686,417.93375,667.89606,-139.12791,336.29562,671.32227,-301.4689,400.93777,719.2048,-216.45865,358.86288,722.0367,-341.61166,381.4694,704.6197,-256.4089,375.53073,704.3818,-367.18704,382.5604,683.2812,-163.28015,370.6203,683.55786,-304.26523,441.04785,712.6154,55.891293,317.10187,715.3646,-55.77398,469.97998,954.93396,89.10664,319.91278,956.2817,2.9080958,448.32333,1149.8547,382.94397,334.85535,1152.6052,357.90607,423.1172,1175.605,400.795,349.22714,1179.9475,379.84286,506.04376,1246.852,218.66649,298.6367,1251.2478,152.59354
002d5591-9108-475a-bc98-17ba7b5807ef.jpeg,face_right,304.4478,175.374,-412.74524,330.89407,148.19766,-408.55884,343.11,148.05756,-408.52145,355.7442,147.71588,-408.61682,306.53638,149.16054,-369.139,298.7362,149.30142,-369.06244,290.85077,149.79141,-368.98758,398.1327,169.5903,-328.4575,309.8611,169.65736,-141.07372,340.03412,209.12997,-381.9996,302.36127,209.87953,-327.51306,524.18256,355.33295,-251.46822,255.52933,355.16852,-85.58457,559.66125,559.68665,-199.66902,240.89435,560.21576,-11.160166,553.79663,735.9475,-294.43292,224.96468,742.91473,-206.23299,564.43304,796.0367,-325.36533,213.81712,800.0357,-245.36238,538.8654,794.8807,-395.05856,225.9462,801.6617,-324.85767,522.70074,770.43024,-314.28918,249.04337,781.938,-241.46274,468.1454,753.22876,-16.203835,325.75595,749.0012,17.510946,474.02676,977.2451,135.1583,313.99832,980.8054,137.38193,451.71597,1137.9805,490.58224,340.251,1131.0298,585.3547,431.61386,1152.1571,520.9705,358.1108,1144.5021,620.91614,494.47034,1252.2195,384.3284,309.50677,1249.3173,491.54413
010a38fe-f5a2-4bf6-9e77-4c382c65bf25.jpeg,face_right,297.72302,209.5122,-295.94144,317.4098,188.34961,-295.34253,326.14407,187.27966,-295.3365,335.19098,185.99953,-295.2902,300.94708,191.7363,-259.58102,296.37555,192.817,-259.64697,291.66907,194.13205,-259.817,373.22763,202.2734,-246.09677,312.7193,211.0953,-79.8774,328.6522,235.88707,-276.82635,303.19824,239.84581,-229.01364,480.51675,352.36053,-192.26186,274.11383,359.23035,-34.996265,494.59067,546.48224,-208.93407,250.16312,535.56604,9.547181,388.48056,695.26587,-241.32353,312.61087,676.4531,-147.51811,366.0446,747.35376,-267.41183,330.03827,729.3237,-214.1036,345.65665,729.1736,-300.58438,349.1252,711.2677,-239.77312,351.8462,707.40186,-246.42879,350.02426,691.09814,-161.4517,443.6594,713.24817,-16.807787,318.54422,706.5989,17.129084,464.5324,966.20575,1.072283,296.4241,957.2867,36.826775,440.86996,1157.4738,260.53024,340.69016,1148.0242,336.15698,423.7493,1177.7076,276.8178,372.36444,1172.6008,354.2726,473.122,1265.7091,120.63011,270.02078,1254.7251,203.6308
05f9e763-0881-4238-9052-4ca750f39c7b.jpeg,face_right,285.7924,234.70233,-252.47069,307.42273,208.06317,-262.6229,317.5403,206.6143,-262.49994,328.00955,204.94087,-262.47256,287.5652,211.61166,-224.93144,281.8379,212.4307,-224.9912,276.05908,213.51387,-224.9974,370.18973,216.51126,-236.95999,298.13638,225.91556,-63.434715,320.3627,260.09253,-240.07404,291.38873,264.1234,-189.35434,495.19278,365.51562,-177.38048,261.7208,373.20648,-41.10855,547.86084,530.53735,-154.59712,228.97252,537.73737,17.023693,526.3926,681.9313,-198.63878,220.4526,685.6946,-147.1073,532.5979,733.67804,-219.71426,215.99997,739.14233,-195.91989,503.9536,728.97394,-264.69928,236.06354,731.64404,-243.79669,493.7165,708.2738,-209.73792,252.36252,712.5824,-169.4002,447.0739,730.0079,-12.555131,320.85062,726.0501,13.001511,458.16318,930.0068,61.16206,294.23343,925.6003,41.786114,440.07178,1087.2931,226.78262,321.29712,1080.5378,299.91867,424.77716,1102.5459,238.72034,344.3939,1096.7324,316.05884,473.69202,1187.9528,136.01118,276.9829,1185.7123,216.40242
064a0c75-7a4a-4cc3-8e81-bed25ec1cb86.jpeg,face_right,336.00146,139.68549,-247.11357,360.1502,113.44471,-257.0016,369.66873,112.756805,-256.741,379.635,111.89911,-256.54178,342.4303,115.72567,-218.24426,337.6458,116.18576,-218.48172,332.77512,116.89449,-218.6949,420.57922,130.14569,-239.67229,355.73032,134.45137,-60.35606,367.3058,171.43715,-239.26729,340.59085,173.43036,-186.69781,539.3148,314.1701,-168.74779,289.5536,306.57346,-65.93912,577.5126,522.4026,-137.46515,246.60905,517.09045,-19.64478,555.5383,691.2976,-189.95625,235.80304,694.28644,-151.2755,561.49384,746.494,-218.55493,226.79065,751.7661,-197.25562,532.469,741.2449,-272.7783,251.06592,747.7446,-242.13438,521.4242,718.6842,-206.59294,268.5695,725.95056,-172.8939,467.342,692.1819,8.34051,325.9827,682.6096,-8.013532,463.7087,956.0503,31.51203,283.0838,944.8291,-22.397684,438.6261,1134.6779,247.86647,305.56204,1139.0549,262.71875,418.24484,1146.9023,263.7894,321.3,1152.5253,279.58307,477.25204,1252.4233,129.75084,297.81714,1268.5603,129.62453
07c5ca52-2b58-4708-8938-461c2fcfacd8.jpeg,face_right,330.32935,202.65892,-338.04367,356.01642,171.88057,-333.2349,368.96558,170.83252,-333.12854,382.22617,169.552,-333.15125,328.46283,173.8736,-298.82816,319.31006,173.90259,-298.8599,310.11176,174.2203,-298.86322,423.1849,183.36124,-264.53265,324.907,187.01825,-101.36712,367.4422,230.87555,-311.7124,326.6528,232.9671,-264.12958,538.6405,345.5635,-219.36084,264.56763,347.55005,-88.91274,594.93634,540.00464,-215.84695,205.3527,526.05914,-11.700511,578.2163,728.13025,-240.50769,204.43872,709.4293,-154.47162,580.1567,789.83344,-249.907,202.82675,768.2482,-204.31337,556.33124,781.2365,-301.6824,223.18842,761.0187,-254.95476,545.73376,757.7272,-251.46127,240.83026,740.01697,-177.91052,464.9753,755.5368,-10.000156,316.83206,750.8047,10.951591,476.1385,994.3806,73.44371,306.266,987.23944,73.910675,470.42816,1149.7789,329.54053,326.60046,1140.2776,416.83774,455.89185,1161.2095,351.52936,344.7936,1152.9111,441.74545,501.97693,1264.2478,234.49654,300.22067,1261.3801,330.67206
087f62e7-a7b0-4b85-b0a2-016e940950e3.jpeg,face_right,296.72308,143.44876,-171.05469,311.54892,119.03999,-211.71638,315.0406,118.90373,-211.50114,318.73828,118.73718,-211.49811,310.3822,119.482346,-169.29945,311.17206,119.57222,-169.02292,312.20135,119.80862,-168.62952,341.64975,136.07227,-293.92865,334.4595,135.53601,-97.18212,310.94803,171.66537,-185.9724,303.802,171.6141,-129.26205,303.423,279.22165,-327.85538,428.918,281.9388,-18.987692,311.60254,502.68192,-291.5099,493.68674,505.58295,-34.9826,263.7727,679.9625,-202.714,464.29163,669.5631,-44.018383,251.66043,732.9214,-235.13875,460.98947,717.77747,-48.632763,239.109,729.12787,-225.27052,453.5576,713.54114,-78.472015,251.62245,716.3471,-192.35057,448.53775,702.4983,-57.37335,331.46454,670.1301,-83.28815,407.2043,658.96783,84.98221,310.3086,940.2361,109.24363,389.78058,922.3391,215.3363,329.01453,1162.4275,323.23718,386.5358,1148.791,396.80936,342.67026,1202.1855,341.3134,396.6112,1191.1091,413.05728,284.37698,1199.513,339.4866,346.02676,1182.0322,407.76685
08df09b4-16b8-4c6c-a1a0-d4f4456ad4c4.jpeg,face_right,291.27783,148.4241,-255.01396,315.69547,121.3459,-258.7722,326.4084,120.75546,-258.61038,337.51514,119.9501,-258.52756,294.74362,123.21545,-219.40451,288.42587,123.56991,-219.47314,282.01654,124.21814,-219.44023,378.62933,139.55319,-231.25392,301.60266,142.77824,-42.55018,324.90002,180.28008,-245.01613,292.2141,182.04404,-190.12416,501.7601,307.9478,-193.66495,248.83752,323.1515,-47.34866,571.628,492.40088,-208.99193,224.89738,524.24255,-6.345304,562.586,693.2196,-227.34184,201.67244,704.97864,-161.94022,573.47235,757.34283,-236.49393,188.5065,763.886,-206.92473,541.60046,756.75073,-292.66238,208.32698,759.56165,-261.7094,529.2735,731.47186,-242.8708,229.78604,739.3082,-188.67451,447.64133,711.1924,-19.872122,307.4687,708.9686,20.719385,466.18414,963.83514,18.338045,289.15817,949.1492,62.362877,449.63324,1151.5232,224.74484,314.38992,1127.2261,344.21393,434.63635,1163.1943,241.30869,333.39355,1142.7838,362.72733,474.65082,1281.6058,131.00594,283.8671,1254.0586,241.67625
090e145b-2b15-49bb-885a-5b98e52bf024.jpeg,face_right,217.80011,212.80902,-269.5429,241.8061,182.229,-290.32864,250.94536,181.2302,-290.17902,260.483,180.02576,-290.1867,228.21101,183.26389,-239.02298,225.1337,183.0117,-239.17943,221.92134,183.01862,-239.30096,307.23242,193.35559,-315.81888,252.84465,194.8682,-76.817215,251.63301,240.41241,-276.9502,227.64346,241.8765,-208.32042,441.20132,367.37122,-288.55026,211.92236,369.27777,-42.461082,475.68878,588.11346,-278.2362,221.64342,580.6974,37.894352,453.69968,774.55286,-242.77095,204.86877,765.30084,-65.16957,458.94034,826.6952,-243.89664,196.78102,814.653,-90.30345,440.30814,824.4182,-293.69412,200.6682,815.8338,-140.62181,429.8303,801.2529,-255.47412,217.41454,798.01587,-90.98172,383.66635,740.70166,-49.163246,255.66035,733.04596,50.100178,406.55838,964.04895,36.156147,247.11166,953.8036,114.464,398.2655,1128.8807,285.96402,304.3111,1103.6125,431.35718,395.99796,1138.2701,305.13223,329.99448,1116.3197,455.37042,395.46576,1246.5697,192.49173,261.76953,1216.8035,358.02655
099fccfe-7728-4385-9949-243bc2b7023f.jpeg,face_right,307.3651,216.72916,-251.3833,329.5101,193.46707,-270.95584,337.38324,193.41138,-270.8556,345.66885,193.22263,-270.9524,315.3724,193.66501,-228.75235,311.86908,193.1622,-228.77527,308.23563,192.88968,-228.6559,380.42496,205.67223,-268.09473,327.85672,202.95612,-71.32095,331.3068,242.25375,-243.49194,310.93082,241.68465,-186.74147,480.88022,352.47617,-242.74904,267.13123,341.4098,-2.7864747,504.2563,534.9205,-205.34229,234.585,516.10333,96.07526,496.0796,703.8827,-239.56139,222.28036,679.0225,-56.59817,504.33038,754.6052,-266.5706,215.1572,729.88153,-96.67093,484.73087,754.0451,-316.81442,228.52397,730.5067,-160.71391,473.6583,735.5835,-253.50885,244.22427,714.3787,-87.658745,416.77417,711.2195,-34.216248,300.20956,703.38855,35.236404,425.40317,944.40063,8.8264475,319.86026,937.5155,68.207,399.04794,1088.7012,355.01987,341.16315,1132.427,276.91577,388.9274,1096.7284,386.91385,345.41516,1152.0308,290.3957,399.52478,1179.7075,288.49506,357.75928,1228.3372,138.42932
11eded75-5a31-4c90-a2b1-919ca59680af.jpeg,face_right,350.11832,120.93872,-366.6796,375.07367,99.65935,-357.79114,385.71445,99.98947,-357.74792,396.7838,100.151215,-357.82672,352.7912,99.51038,-314.48883,346.10947,99.23164,-314.4658,339.28973,99.209785,-314.39688,432.99188,119.485664,-268.0375,356.25485,115.257454,-63.4784,379.9353,151.24802,-333.51343,347.7081,149.97093,-274.3527,538.0729,290.36343,-212.4844,296.11835,280.22675,28.57241,563.6411,495.03906,-169.40036,288.9645,485.49118,117.57737,546.43036,678.89795,-225.61105,257.16373,655.4554,-62.51373,554.9522,736.42676,-241.06525,247.53867,705.4769,-80.507805,532.4163,738.8368,-311.58218,244.85805,708.7621,-162.22154,518.52783,715.9584,-245.02484,264.80963,693.62213,-101.05397,446.36502,657.7106,-45.84547,310.02466,643.70966,46.45968,440.06244,926.0359,-9.631122,295.7387,910.9772,67.50122,423.29825,1129.4805,298.5213,315.11887,1130.0795,359.83942,410.89795,1148.0825,320.25195,339.05188,1158.2892,376.52933,439.4478,1248.933,129.79897,251.57645,1239.9144,182.89293
13a3f67c-6115-405e-bcee-ddd2478c661d.jpeg,face_right,314.4169,288.51605,-277.94965,331.2983,269.5724,-270.55273,340.0749,268.83313,-270.53027,349.1056,267.90195,-270.47836,312.4968,271.58435,-243.38255,306.5955,272.16425,-243.43692,300.59555,272.90137,-243.53392,378.85635,279.171,-198.72075,313.44247,283.98846,-70.00004,341.48416,309.57343,-249.57014,314.25043,312.07867,-212.72226,469.16568,396.1734,-131.70062,278.35217,401.96216,-37.48141,510.56015,557.54987,-140.35336,269.17526,552.47003,-3.7047493,421.38275,658.19385,-184.36581,345.71545,665.35223,-125.46698,401.3068,698.89417,-210.85115,362.4936,711.2231,-180.95952,383.70142,679.547,-232.1448,383.6904,696.0474,-197.35632,388.45,663.78174,-185.90689,381.73285,679.75916,-133.84758,434.68866,694.89905,-20.234167,319.34595,693.21295,20.568066,467.41684,909.7711,-35.420994,298.93417,903.7698,24.243874,471.87048,1085.4807,145.93275,299.71277,1077.6019,259.92102,465.00012,1102.1279,158.08957,314.60153,1098.6232,272.2377,484.57047,1181.6494,16.641687,266.06918,1170.447,124.574814
13e90c57-d08f-479a-adeb-c2ccc542c868.jpeg,face_right,305.00952,185.89389,-308.5977,328.68036,164.9736,-304.92566,338.4436,165.28088,-304.81268,348.61636,165.39218,-304.8044,308.94162,165.00964,-269.5962,303.224,164.86465,-269.62494,297.40268,165.00359,-269.67023,385.2274,184.81308,-240.57118,315.0852,182.10507,-72.8389,333.6909,217.12665,-283.52008,304.79626,216.44318,-234.70355,491.3441,352.66138,-170.7811,257.78314,344.2136,-19.647356,516.80774,541.64435,-125.26068,238.88586,533.29584,54.500893,505.7141,716.17523,-151.98863,218.91563,703.51654,-100.39452,514.77734,771.6212,-159.50539,207.85262,757.6039,-126.801315,494.6326,773.2928,-226.91399,218.32156,760.27313,-196.82895,482.07275,751.8945,-170.73526,238.07162,743.6315,-132.60045,424.1716,719.8581,-10.845732,292.6907,708.3155,11.331098,428.62546,959.17535,36.34234,273.12,943.2117,60.766876,417.67715,1142.6475,298.8385,294.2423,1135.2623,348.5924,397.3344,1160.3389,316.4931,317.46613,1158.7028,366.53366,462.1904,1251.5428,152.67036,237.2519,1241.5585,207.5933
1885c9ae-df34-40f5-b45d-328c6675c8c4.jpeg,face_right,311.78,279.39294,-403.9674,334.84012,256.4447,-414.32166,343.7768,256.29553,-414.16653,353.1208,255.9607,-414.1765,319.2613,257.1007,-364.23743,315.0134,256.98853,-364.1615,310.64438,257.19315,-364.1238,392.08444,272.54602,-372.12387,334.2926,271.66382,-140.95682,340.60056,306.79684,-386.71164,315.83636,307.07565,-319.90823,504.02545,432.39682,-317.4385,287.61786,425.64786,-26.291592,530.252,617.0626,-275.23373,276.3366,601.5051,67.09451,511.6543,782.59875,-358.9065,249.62337,762.695,-154.85855,518.22644,834.35,-397.46423,239.18481,814.0527,-203.47562,493.62936,830.99915,-457.7522,246.76895,814.50226,-275.59503,483.1875,809.2502,-375.77173,265.1033,797.1416,-190.54947,441.3867,781.5996,-60.533085,323.3388,771.7881,61.688244,441.35745,999.5134,56.36696,298.39154,992.71796,115.668686,426.7464,1165.5668,395.8683,326.59183,1147.5999,460.1151,419.53998,1177.1719,422.58307,345.71118,1159.514,484.30905,430.0159,1282.4504,256.64862,294.01108,1262.6677,333.17398
1e05c1b8-1e6e-4439-b03d-cef6599b79ab.jpeg,face_right,314.4169,288.51605,-277.94965,331.2983,269.5724,-270.55273,340.0749,268.83313,-270.53027,349.1056,267.90195,-270.47836,312.4968,271.58435,-243.38255,306.5955,272.16425,-243.43692,300.59555,272.90137,-243.53392,378.85635,279.171,-198.72075,313.44247,283.98846,-70.00004,341.48416,309.57343,-249.57014,314.25043,312.07867,-212.72226,469.16568,396.1734,-131.70062,278.35217,401.96216,-37.48141,510.56015,557.54987,-140.35336,269.17526,552.47003,-3.7047493,421.38275,658.19385,-184.36581,345.71545,665.35223,-125.46698,401.3068,698.89417,-210.85115,362.4936,711.2231,-180.95952,383.70142,679.547,-232.1448,383.6904,696.0474,-197.35632,388.45,663.78174,-185.90689,381.73285,679.75916,-133.84758,434.68866,694.89905,-20.234167,319.34595,693.21295,20.568066,467.41684,909.7711,-35.420994,298.93417,903.7698,24.243874,471.87048,1085.4807,145.93275,299.71277,1077.6019,259.92102,465.00012,1102.1279,158.08957,314.60153,1098.6232,272.2377,484.57047,1181.6494,16.641687,266.06918,1170.447,124.574814
20153d94-39d2-47e5-9a74-31642ed2e3bc.jpeg,face_right,318.08615,193.13885,-354.31403,336.10706,167.31277,-356.77554,346.04776,164.94385,-356.61722,356.42,162.3751,-356.49323,316.71225,173.62637,-317.5352,311.0151,175.5304,-317.52402,305.19888,177.74353,-317.5694,398.83072,175.48856,-299.18338,328.63892,193.82062,-114.41806,354.87036,218.47122,-329.41864,325.94513,226.02371,-275.5038,540.80176,340.35156,-205.29813,289.2919,353.68634,-72.23065,577.0882,537.179,-143.77127,261.34058,541.7157,-13.229493,559.7142,726.00433,-251.54091,260.8068,707.66534,-230.71411,570.4766,790.9413,-289.71295,254.55081,763.0145,-286.27338,539.9702,793.3452,-362.56976,270.9377,761.5655,-355.25024,526.3973,766.5355,-273.14526,289.85452,740.4621,-262.6402,477.2008,740.32227,-2.1337948,334.78687,734.33966,3.2291534,478.0333,993.3798,55.68083,304.40805,993.0976,32.83139,459.13406,1188.0573,325.0432,309.30722,1203.4868,354.76483,436.1606,1213.7893,344.39404,332.5343,1229.9922,374.18533,522.4449,1289.8083,200.78545,250.01424,1320.5272,207.33823
208a2c04-fc6c-4726-b8e2-a6537d1f07c0.jpeg,face_right,304.82837,188.16895,-295.31448,326.94937,169.00089,-287.2473,336.35455,169.27951,-287.05902,346.13684,169.36847,-286.97418,306.80576,168.83908,-258.2436,300.71564,168.6417,-258.3713,294.55267,168.70743,-258.54144,379.00772,186.12251,-204.49147,309.32452,183.1147,-71.26673,331.65332,216.30145,-263.7851,303.05328,215.63484,-224.61272,474.25323,338.29993,-126.638374,261.37244,331.6106,-23.293512,504.01917,508.25412,-90.34924,250.1149,504.36813,34.25642,494.21362,667.1485,-111.43449,242.42062,665.1962,-80.97219,502.81635,717.5079,-117.33909,234.1129,715.24225,-102.70104,483.21072,718.91833,-176.40175,245.26978,719.6399,-159.53723,471.17194,699.0632,-127.13281,261.72986,703.4394,-105.85684,418.5691,678.7013,2.1091132,298.42975,666.3612,-1.8726066,432.4412,892.34814,98.27627,273.25177,874.56165,62.216564,426.09125,1045.8816,364.85138,287.75903,1042.6398,348.54816,404.3952,1063.488,384.1539,308.11557,1062.5431,365.3218,486.18735,1135.8918,234.33414,238.9501,1141.2717,210.16916
24dac703-7e2f-4ea8-8451-dcba0d4602b0.jpeg,face_right,300.89252,209.03995,-205.45549,318.61816,180.298,-246.61182,324.48624,178.77155,-246.48862,330.78564,177.04852,-246.5451,314.16125,181.66512,-179.57114,314.43295,180.99518,-179.48355,314.45578,180.48663,-179.18748,368.30438,181.01013,-327.51535,344.96774,182.63817,-16.696459,325.1228,228.41331,-225.96277,314.85345,229.8825,-136.5806,489.92285,306.4588,-361.90918,300.54086,319.5441,115.10846,545.53625,505.93808,-403.79752,287.88092,507.8824,257.50284,510.35764,698.526,-430.12085,246.6175,664.08057,83.32733,516.416,758.05554,-462.59955,235.53241,710.6403,47.914516,480.98856,750.4477,-503.22705,237.31117,709.8159,-22.48423,474.38904,726.9833,-436.00903,253.40489,694.9596,48.27381,431.19073,678.5442,-107.3636,315.4705,674.8694,108.49829,456.2757,935.43054,-77.622444,313.32428,909.5359,146.34288,440.14484,1113.7957,259.29688,328.98444,1097.4663,403.96652,442.14764,1122.7336,291.57553,343.1521,1117.4312,421.41354,413.3164,1228.6409,177.24504,304.12848,1201.8931,286.752
2c2c68e5-4b03-4a05-b7a2-6e77feb08cb0.jpeg,face_right,291.27783,148.4241,-255.01396,315.69547,121.3459,-258.7722,326.4084,120.75546,-258.61038,337.51514,119.9501,-258.52756,294.74362,123.21545,-219.40451,288.42587,123.56991,-219.47314,282.01654,124.21814,-219.44023,378.62933,139.55319,-231.25392,301.60266,142.77824,-42.55018,324.90002,180.28008,-245.01613,292.2141,182.04404,-190.12416,501.7601,307.9478,-193.66495,248.83752,323.1515,-47.34866,571.628,492.40088,-208.99193,224.89738,524.24255,-6.345304,562.586,693.2196,-227.34184,201.67244,704.97864,-161.94022,573.47235,757.34283,-236.49393,188.5065,763.886,-206.92473,541.60046,756.75073,-292.66238,208.32698,759.56165,-261.7094,529.2735,731.47186,-242.8708,229.78604,739.3082,-188.67451,447.64133,711.1924,-19.872122,307.4687,708.9686,20.719385,466.18414,963.83514,18.338045,289.15817,949.1492,62.362877,449.63324,1151.5232,224.74484,314.38992,1127.2261,344.21393,434.63635,1163.1943,241.30869,333.39355,1142.7838,362.72733,474.65082,1281.6058,131.00594,283.8671,1254.0586,241.67625
2f71b2da-410b-4709-a4db-de188bcb0777.jpeg,face_right,303.2417,194.77112,-291.2293,329.88306,171.27556,-290.80685,340.89093,171.37405,-290.56104,352.27484,171.26895,-290.49475,307.3728,171.35658,-252.64587,300.9199,171.09505,-252.83762,294.4025,171.09921,-252.88072,393.66785,189.89227,-238.70311,315.39224,187.117,-62.841705,336.4924,226.00693,-272.16052,303.89575,225.55733,-221.03577,508.33063,352.80664,-179.54144,265.6169,351.11057,-22.765665,545.57495,530.68555,-164.9138,238.80887,521.25696,72.44,531.71783,692.6169,-195.49316,227.863,684.672,-72.22903,540.44434,744.5111,-214.19186,217.24687,735.3552,-109.55044,516.6011,742.97003,-265.7831,235.2563,737.4634,-165.02055,505.76135,722.95056,-209.52112,253.55862,720.25476,-98.95718,456.95685,705.28687,-4.4206285,321.79388,697.8656,4.9447756,471.03864,946.2501,29.512348,291.1104,923.5974,-53.798717,436.76727,1081.183,359.69183,325.7344,1085.7711,263.2701,417.96176,1082.6215,387.62885,342.05383,1092.6906,285.55756,457.6543,1202.8387,273.0671,319.9641,1214.1221,148.23322
3cf53999-f6ef-4c77-9019-8b9cae94e531.jpeg,face_right,302.92316,173.12668,-344.5148,326.43826,142.44556,-335.8822,339.10904,141.4899,-335.76678,352.13632,140.29297,-335.78122,298.24612,145.03384,-306.20175,288.46896,145.56638,-306.24246,278.65353,146.33694,-306.25064,389.18637,157.5454,-250.21077,288.77112,162.86343,-108.26941,338.26102,202.70328,-312.6727,296.0241,205.50357,-270.90005,503.8179,327.43045,-203.197,234.62968,331.64563,-75.21235,564.1015,520.4125,-186.44206,192.32932,525.9441,-30.426609,559.1995,700.0607,-244.18658,171.86891,696.8312,-183.82622,572.2827,759.8894,-271.3186,158.38283,753.98065,-221.71472,537.8805,760.1846,-316.7512,183.66696,753.35394,-279.4694,521.22,736.9754,-255.26326,206.00322,733.03656,-209.30026,430.3127,718.3302,-25.059479,291.51135,713.6761,26.013485,433.01492,952.4778,21.772196,271.42102,948.92773,-69.54532,404.07422,1125.0353,232.37843,313.3161,1134.661,216.67104,395.16135,1132.816,247.14706,333.83914,1149.8811,235.21928,398.7153,1255.9132,117.98155,285.39334,1260.5876,100.8156
3e8b0fe2-6841-40cc-8ef7-8dbaf8eb2c13.jpeg,face_right,307.98633,161.89877,-314.1133,327.97552,137.66055,-329.91495,335.2295,136.75754,-329.67603,342.97354,135.65063,-329.46838,317.65585,139.12701,-277.9179,316.51376,139.07468,-277.88007,315.20554,139.25632,-278.03812,385.75894,145.71686,-317.62717,345.48236,149.30862,-83.12532,337.4439,187.39835,-303.03397,321.57834,189.22935,-235.14111,526.62683,307.50922,-221.26224,291.43054,303.87463,15.659888,560.3744,501.6294,-174.46907,263.48798,492.60248,107.214,546.6268,666.9608,-320.80286,240.60545,648.42615,-224.07294,555.6614,721.0888,-372.94223,229.56999,700.7616,-311.12128,528.0288,718.60144,-438.05542,246.85292,698.6898,-387.85056,518.0475,696.98145,-339.4381,266.0112,679.2988,-264.08383,471.63025,685.3369,4.35707,324.71844,677.5507,-3.3748972,475.1265,933.69165,37.07235,289.67047,931.56116,-70.72928,446.45724,1121.58,434.06412,313.46475,1133.9768,315.12112,424.4101,1136.3707,463.892,332.8732,1151.2042,341.28125,484.48438,1232.0884,276.00934,291.31113,1252.5344,134.99388
3fc03ddb-900a-4c6c-b894-1297de9ddc5c.jpeg,face_right,217.80011,212.80902,-269.5429,241.8061,182.229,-290.32864,250.94536,181.2302,-290.17902,260.483,180.02576,-290.1867,228.21101,183.26389,-239.02298,225.1337,183.0117,-239.17943,221.92134,183.01862,-239.30096,307.23242,193.35559,-315.81888,252.84465,194.8682,-76.817215,251.63301,240.41241,-276.9502,227.64346,241.8765,-208.32042,441.20132,367.37122,-288.55026,211.92236,369.27777,-42.461082,475.68878,588.11346,-278.2362,221.64342,580.6974,37.894352,453.69968,774.55286,-242.77095,204.86877,765.30084,-65.16957,458.94034,826.6952,-243.89664,196.78102,814.653,-90.30345,440.30814,824.4182,-293.69412,200.6682,815.8338,-140.62181,429.8303,801.2529,-255.47412,217.41454,798.01587,-90.98172,383.66635,740.70166,-49.163246,255.66035,733.04596,50.100178,406.55838,964.04895,36.156147,247.11166,953.8036,114.464,398.2655,1128.8807,285.96402,304.3111,1103.6125,431.35718,395.99796,1138.2701,305.13223,329.99448,1116.3197,455.37042,395.46576,1246.5697,192.49173,261.76953,1216.8035,358.02655
41655bdd-fce7-4bf5-927a-bb4380769f42.jpeg,face_right,314.78046,206.91882,-304.67383,337.36563,177.87086,-305.76297,348.7318,176.3649,-305.6508,360.43512,174.65106,-305.64786,314.77692,180.95523,-264.4383,307.42648,181.47713,-264.46194,299.95773,182.27974,-264.46603,400.55298,187.06342,-254.55386,320.3687,194.11461,-60.454212,350.71368,231.828,-283.38297,315.99594,235.45273,-227.20862,515.0961,339.57944,-206.84775,277.6505,351.8462,-35.527958,552.03625,537.63153,-201.94463,259.6271,546.0009,29.624365,526.37274,731.4094,-224.1455,262.98288,733.8138,-127.2171,532.82166,794.8907,-241.6782,256.88272,793.06604,-174.68042,504.2301,790.38745,-293.9729,275.1128,791.40894,-224.31052,494.15958,764.5606,-235.93314,292.48877,768.48755,-151.32625,450.4763,736.90625,-22.521301,320.2732,732.3269,23.41282,459.78632,972.3518,25.282223,306.1409,976.3535,28.161722,429.98648,1152.3826,220.83075,337.576,1150.3485,300.4661,415.62772,1167.392,235.22638,356.21555,1166.3779,316.58902,454.97208,1271.3885,118.83674,312.40683,1272.8447,195.20322
437d536a-3306-43de-842e-716961c7c9f2.jpeg,face_right,274.54834,194.65271,-291.96555,299.79233,166.97304,-300.9177,310.0827,166.14845,-300.79443,320.74963,165.1135,-300.75775,281.1995,168.59021,-254.6149,276.06784,168.65009,-254.78023,270.8253,168.99203,-254.85788,365.47903,180.2341,-285.31598,297.98285,182.42409,-65.06036,309.5431,222.70432,-285.64606,280.4189,224.44786,-221.724,489.13638,347.5647,-223.1803,256.67072,353.47806,-51.272717,534.5374,553.97955,-209.28311,248.45929,559.3713,18.256456,533.2003,724.59467,-214.09096,225.12694,726.0382,-109.87569,543.1692,773.5833,-216.67896,213.0165,775.2508,-140.41708,524.1772,770.4675,-275.39407,223.22377,774.0454,-192.81635,511.54086,750.52966,-231.50464,243.459,757.9443,-135.83963,427.26007,719.0158,-28.205372,299.71524,713.7884,28.851297,440.71304,965.15045,4.8365602,304.718,960.88184,77.55035,415.75992,1146.9047,238.01747,330.72812,1146.1451,344.69687,403.35123,1159.6819,255.4833,346.00027,1165.3651,361.5445,429.06885,1268.5576,136.85135,311.58447,1260.8467,226.25792
445a9cd6-7c38-4f5e-8d25-9977531cb03f.jpeg,face_right,284.35583,150.32672,-491.25333,310.6637,126.873856,-485.9444,321.69913,127.12742,-485.78217,333.17624,127.157936,-485.6778,289.69135,127.12223,-439.2675,283.38153,126.987915,-439.31308,276.92368,127.22805,-439.46582,375.35617,148.736,-387.1398,299.78006,146.09393,-171.80074,317.53918,183.78445,-453.9286,285.5314,183.42511,-391.18906,491.38412,328.89362,-271.9506,240.6768,322.71564,-74.95793,516.0345,534.3054,-236.71405,212.62447,524.7075,8.605291,501.31332,715.73065,-377.69073,207.73524,712.822,-266.15656,508.80472,775.5021,-425.23416,200.60919,777.76685,-345.2571,483.2285,773.5584,-500.09494,222.90822,774.396,-416.59973,470.0367,749.7848,-400.9351,242.0194,751.34485,-300.9069,422.74866,726.9701,-17.614985,285.1204,718.9083,18.584259,428.45172,959.4562,123.44515,262.99435,958.84796,147.28851,401.77774,1141.4736,540.8378,281.8062,1139.6434,624.18195,377.56485,1158.8457,573.1122,305.0488,1159.6089,656.9185,451.15884,1261.1693,376.0206,232.13113,1261.5754,457.77502
46ba1dab-92d3-42f2-ad0a-12521ce9601c.jpeg,face_right,293.97656,217.53197,-171.53697,311.8713,194.45828,-188.284,318.81146,193.21286,-188.10521,326.1712,191.76712,-188.0628,301.2604,197.08221,-142.49081,299.38226,197.53131,-142.5994,297.3983,198.16516,-142.68556,364.1056,200.84781,-212.44147,324.30417,207.61314,1.3275112,321.60062,239.83249,-176.76205,305.21274,242.93515,-114.74223,480.05133,347.05432,-179.16441,287.80435,348.154,33.273838,505.63495,526.8357,-157.6666,264.8935,521.35815,106.3855,514.0441,684.68396,-173.45816,247.27588,670.7241,-28.217125,529.7398,729.2426,-186.68651,238.48932,716.3465,-60.1978,509.06506,734.9588,-237.11127,253.51222,717.2216,-112.46313,495.43112,717.5537,-188.55914,269.3379,702.2628,-53.455303,430.72684,672.54065,-28.760601,317.81155,668.17065,29.209892,445.75482,883.88403,-14.005767,314.6903,875.6027,37.954998,436.9775,1063.7523,156.95776,333.13852,1061.6517,234.71582,427.54657,1082.0242,168.2092,350.9027,1086.1757,244.36295,457.7592,1151.9751,53.01879,298.8986,1146.1818,114.659836
48c75c0c-17ba-4c14-b6df-217c9574c541.jpeg,face_right,277.5694,193.90591,-326.10562,301.31232,173.56781,-322.66672,310.80463,173.7867,-322.5339,320.72083,173.78802,-322.40436,283.3558,173.57216,-279.48962,278.44055,173.40192,-279.55142,273.39944,173.50449,-279.687,358.7409,190.73834,-253.72687,296.41074,188.12817,-51.657257,307.02664,223.62537,-297.04404,281.0061,223.05984,-238.4553,470.50046,347.76007,-158.77663,249.09131,349.70325,28.400616,501.44916,537.04175,-94.68568,239.0896,544.3025,119.06409,498.91855,702.6786,-147.76956,226.65181,713.3988,-66.317764,510.65894,758.1028,-165.58078,221.13985,769.3115,-95.06325,490.26944,754.9847,-238.30026,227.19833,768.32056,-170.96428,477.7822,733.3978,-167.85365,244.67175,750.02563,-99.29586,429.52087,716.1014,-14.924712,295.55902,712.2864,15.720003,450.57297,960.80396,2.4988859,282.74426,949.92175,67.58846,442.21796,1152.3022,305.1698,306.23828,1153.0712,399.18982,419.5577,1178.285,325.56873,333.35574,1183.4313,418.68338,509.64612,1247.073,143.70743,237.90973,1250.6368,233.1038
4a11f5ee-e029-4992-a0a3-543dbbf8b29d.jpeg,face_right,304.82837,188.16895,-295.31448,326.94937,169.00089,-287.2473,336.35455,169.27951,-287.05902,346.13684,169.36847,-286.97418,306.80576,168.83908,-258.2436,300.71564,168.6417,-258.3713,294.55267,168.70743,-258.54144,379.00772,186.12251,-204.49147,309.32452,183.1147,-71.26673,331.65332,216.30145,-263.7851,303.05328,215.63484,-224.61272,474.25323,338.29993,-126.638374,261.37244,331.6106,-23.293512,504.01917,508.25412,-90.34924,250.1149,504.36813,34.25642,494.21362,667.1485,-111.43449,242.42062,665.1962,-80.97219,502.81635,717.5079,-117.33909,234.1129,715.24225,-102.70104,483.21072,718.91833,-176.40175,245.26978,719.6399,-159.53723,471.17194,699.0632,-127.13281,261.72986,703.4394,-105.85684,418.5691,678.7013,2.1091132,298.42975,666.3612,-1.8726066,432.4412,892.34814,98.27627,273.25177,874.56165,62.216564,426.09125,1045.8816,364.85138,287.75903,1042.6398,348.54816,404.3952,1063.488,384.1539,308.11557,1062.5431,365.3218,486.18735,1135.8918,234.33414,238.9501,1141.2717,210.16916
4bd7d0e5-c35d-493e-8ee2-a40598e4ed2d.jpeg,face_right,310.1503,163.87787,-340.6201,331.5861,143.47089,-329.47348,341.3725,143.4596,-329.44003,351.58102,143.2753,-329.5521,309.3311,144.25296,-296.3118,302.4925,144.30096,-296.21002,295.55417,144.62115,-296.03732,383.3155,160.24432,-220.35486,308.3484,159.78473,-63.550186,337.6055,191.91216,-299.01718,307.1498,192.16522,-253.60017,481.38336,316.20923,-145.07043,252.20856,311.95093,26.953625,506.1894,490.02304,-113.491646,229.64964,489.55054,107.36424,505.28577,657.7257,-217.68639,208.36812,652.3463,-91.254616,518.62537,711.0568,-248.3005,197.12166,705.0074,-127.4711,497.65714,714.5746,-311.54047,207.33162,707.44763,-202.50085,484.0985,693.9675,-236.76076,225.44473,689.5643,-126.36361,415.66708,686.32935,-12.667074,283.14307,678.991,13.378589,436.9734,912.54663,14.996928,262.33896,905.68604,23.97414,424.00656,1086.5729,320.4601,277.7256,1087.7585,358.48965,401.68585,1104.6555,343.23132,293.15845,1105.9373,379.32217,482.30148,1190.6709,164.70915,253.99562,1197.8904,194.91602
4d84255f-0375-462b-be4f-7337c6e3b3bd.jpeg,face_right,290.85822,132.64249,-545.53925,312.2063,109.257545,-531.2681,322.34058,108.5096,-531.1721,332.9228,107.580605,-531.2107,289.67102,112.36214,-489.14484,282.8234,113.33954,-489.00272,275.85834,114.647484,-488.92847,368.67517,127.5959,-395.94318,291.07947,134.07341,-198.82083,321.99402,162.86613,-497.87366,289.8829,166.05777,-440.44672,494.3296,308.59015,-311.49863,235.03185,313.71332,-58.97287,514.55994,517.815,-255.03726,220.01544,522.00006,26.890074,502.41394,700.5185,-417.3609,204.14499,702.33575,-249.90668,511.93872,756.6003,-470.40118,197.15172,760.0283,-305.2114,486.17352,759.95435,-544.9532,204.51207,764.97095,-396.23987,473.14746,737.838,-441.21222,225.09174,745.22363,-294.59134,437.2548,691.3846,-39.78795,290.20627,685.84143,40.71818,436.91104,957.54913,40.805847,264.05432,936.08453,-101.24207,410.83582,1137.96,546.42834,302.7059,1141.8701,362.80017,398.90894,1148.6394,585.9715,321.56506,1157.4152,395.71832,413.05988,1262.0017,357.67578,293.20172,1269.7886,152.01323
4e3caf75-7a35-49ce-a0a2-bc95ecfd0ed5.jpeg,face_right,298.34186,165.04367,-287.52136,326.82574,138.75638,-288.5021,338.6202,139.05743,-288.36838,350.8125,139.12453,-288.3751,303.35437,138.15887,-245.06058,296.30222,137.52368,-245.08485,289.14032,137.16827,-245.01613,392.71875,157.93823,-242.65407,310.05133,152.39606,-35.200455,332.24005,196.89743,-269.37814,297.21005,195.35484,-209.5304,506.8051,328.85645,-200.21559,248.9874,326.55212,-0.35156652,548.7384,524.10693,-176.41461,216.98283,523.23883,72.54742,556.27905,692.19293,-211.96875,194.03044,700.13556,-95.11834,570.3892,745.6446,-226.6601,182.53323,756.0266,-133.05286,548.64215,744.37036,-287.76782,197.9111,758.6644,-195.87883,533.3687,723.98676,-229.16988,219.77383,740.0497,-125.36784,444.7821,715.8452,-34.213654,302.86163,715.0269,34.98318,473.90253,973.7305,-22.20319,291.1786,967.10626,62.222248,453.78577,1135.6387,264.11145,299.66275,1141.3312,398.73355,441.8172,1143.285,290.8017,314.7921,1157.4619,423.7935,466.54614,1260.1764,193.31801,270.63354,1261.2651,308.20532
555c2d8e-181c-42df-9bcf-f2a92d6b90e4.jpeg,face_right,293.59854,175.18974,-175.2108,313.5311,145.78845,-207.37218,320.7275,144.41719,-207.06082,328.40567,142.82143,-206.88971,306.33347,146.75464,-145.94563,306.37784,146.09596,-146.0023,306.2377,145.68188,-146.16873,374.77615,147.6199,-268.56403,342.32565,150.19977,14.097841,324.8125,197.98373,-187.23987,311.40417,199.646,-105.73031,522.1136,299.3589,-224.30205,296.54666,301.5482,98.814804,559.20154,499.99527,-182.75377,273.59833,487.33884,237.03258,554.882,677.5379,-225.163,234.09822,653.45795,8.593988,567.32544,732.05927,-257.0233,219.77351,706.18896,-50.82123,540.6212,728.75195,-313.68945,231.3177,704.9755,-124.409294,530.0829,708.18555,-240.95526,250.57558,687.5821,-29.715996,469.57648,696.83765,-25.819374,326.0219,693.86584,26.805645,490.35742,949.5654,27.483015,317.98874,940.2388,-9.599913,467.50262,1129.0452,433.72165,349.6743,1121.2007,386.7498,453.55,1139.8345,469.90906,369.4122,1136.4172,420.07938,486.9749,1248.5232,347.15204,325.576,1239.948,277.69308
5a2cfa97-d6d4-4c91-b97b-1e2ada0001ce.jpeg,face_right,354.28412,109.10828,-444.9843,378.4599,89.42623,-437.4978,388.21024,90.04265,-437.33795,398.37976,90.48191,-437.26874,358.28278,88.97255,-396.7682,352.3994,88.7117,-396.80786,346.3978,88.76217,-396.96475,433.35782,111.61545,-334.48978,363.99176,106.784706,-147.7959,382.09656,141.176,-406.55426,352.9939,139.74197,-351.8609,539.88336,283.95953,-238.71036,308.436,277.5208,-42.130135,562.89435,487.28174,-167.51523,292.34152,472.25327,52.8525,563.40155,668.3313,-213.53596,261.52744,643.5825,-134.50867,573.74164,721.1472,-224.58995,247.97575,696.782,-163.9602,557.8013,726.7108,-296.74387,253.40514,701.3488,-242.78242,544.2443,706.7042,-234.85802,274.1733,684.8163,-171.6067,486.33023,643.4879,-17.194126,353.35797,635.3785,17.957611,473.65063,888.02374,64.852554,316.95966,877.12866,-31.713985,447.07413,1077.6573,453.79312,337.01706,1076.5471,349.82184,425.8338,1094.4835,481.27695,352.4984,1093.0083,374.7234,481.7847,1189.2035,270.5229,319.1816,1193.6534,163.38327
5d0ed3b2-d604-4690-bf53-1049e6d5ad7c.jpeg,face_right,280.07193,129.64246,-516.9804,304.1734,110.237236,-516.47955,312.2735,111.08032,-516.293,320.79434,111.73748,-516.2139,289.23743,109.243355,-471.51608,285.6913,108.86093,-471.53098,281.99716,108.81317,-471.56937,357.17285,134.96353,-435.4959,302.57803,128.67561,-233.70285,305.2684,163.51108,-488.46344,282.46835,161.44951,-429.44916,470.03726,311.88025,-345.0141,236.97969,304.7783,-121.199165,499.17502,513.2638,-288.86725,224.89091,501.42548,-50.49446,491.49936,702.74036,-361.0331,206.891,688.35986,-255.36674,502.03937,758.0323,-389.9762,195.20319,743.12164,-300.035,478.11478,766.2311,-462.98904,204.15233,752.0204,-379.52744,465.30722,745.9802,-384.0127,224.1202,735.0961,-296.09097,421.62634,670.25525,-13.697034,285.46033,661.16156,14.350255,433.5562,934.67316,108.88597,258.22675,907.9731,-160.8248,407.93787,1117.09,608.1119,299.57755,1121.6553,258.55814,387.66547,1125.6444,646.33704,315.3615,1133.9435,287.8351,430.50134,1240.7095,424.19397,301.79642,1248.9731,37.51041
5e6252ee-e815-476d-9af1-cb30f280e34a.jpeg,face_right,300.89252,209.03995,-205.45549,318.61816,180.298,-246.61182,324.48624,178.77155,-246.48862,330.78564,177.04852,-246.5451,314.16125,181.66512,-179.57114,314.43295,180.99518,-179.48355,314.45578,180.48663,-179.18748,368.30438,181.01013,-327.51535,344.96774,182.63817,-16.696459,325.1228,228.41331,-225.96277,314.85345,229.8825,-136.5806,489.92285,306.4588,-361.90918,300.54086,319.5441,115.10846,545.53625,505.93808,-403.79752,287.88092,507.8824,257.50284,510.35764,698.526,-430.12085,246.6175,664.08057,83.32733,516.416,758.05554,-462.59955,235.53241,710.6403,47.914516,480.98856,750.4477,-503.22705,237.31117,709.8159,-22.48423,474.38904,726.9833,-436.00903,253.40489,694.9596,48.27381,431.19073,678.5442,-107.3636,315.4705,674.8694,108.49829,456.2757,935.43054,-77.622444,313.32428,909.5359,146.34288,440.14484,1113.7957,259.29688,328.98444,1097.4663,403.96652,442.14764,1122.7336,291.57553,343.1521,1117.4312,421.41354,413.3164,1228.6409,177.24504,304.12848,1201.8931,286.752
62c9ffdc-5d87-4d2f-8de9-2ab0f77f61bf.jpeg,face_right,298.5095,259.32947,-258.52444,315.45145,237.15584,-259.04312,323.96768,235.98315,-258.9342,332.7951,234.62982,-258.95526,297.25775,239.57664,-227.0631,291.4904,239.95953,-227.11641,285.64563,240.52322,-227.17613,362.49927,242.60208,-204.25381,299.9233,248.03421,-56.28112,325.22726,278.28076,-235.23386,299.3592,281.11008,-192.20189,450.75122,363.08124,-159.45609,268.1128,373.43854,-8.898976,478.202,534.2411,-142.57799,264.7851,544.27344,44.753273,478.6219,696.6594,-154.39919,276.92084,698.5717,-52.928883,491.25262,744.627,-169.53229,276.50888,745.2066,-78.7119,471.89133,745.4192,-211.86664,287.711,745.4645,-121.08904,460.65326,727.4346,-163.893,298.34024,727.97656,-72.63767,412.0933,688.3123,-20.144705,306.94446,685.8423,20.486969,427.61893,900.6131,0.5530506,308.8939,904.9321,24.753683,408.0357,1071.0646,169.74889,324.89285,1083.9803,218.3745,394.50076,1087.7142,180.64142,335.21902,1101.6753,226.06801,436.62967,1166.3235,52.04436,322.48126,1184.004,83.3161
64cea208-bdc3-4101-903e-ec7951228ca7.jpeg,face_right,300.82593,189.47182,-262.4204,320.70493,166.84537,-277.21594,328.11105,166.02776,-276.9832,335.9952,165.01437,-276.78394,309.91498,168.78476,-224.27972,308.18683,169.12625,-224.3561,306.30276,169.68864,-224.51416,376.17886,178.35365,-280.34302,335.25906,182.89441,-38.4158,329.3481,215.05241,-259.8882,311.50653,217.38202,-189.74533,500.44687,342.28183,-220.78221,285.7427,336.1377,15.986471,521.0848,524.06635,-184.73906,245.30089,505.88342,99.99555,504.53348,691.2833,-264.59518,240.00082,687.797,-93.00956,512.3442,743.09424,-313.2986,231.08754,739.54517,-154.20018,486.13675,743.3815,-367.75613,252.19746,739.9695,-210.55165,477.90466,723.36115,-281.94348,265.9961,721.1831,-122.79878,444.25214,688.30316,-13.707224,313.9578,678.8578,14.500986,440.44647,932.65106,14.943553,301.8132,921.39636,-44.4858,423.4845,1125.7947,315.36734,307.1151,1124.4692,270.54407,409.4608,1136.874,336.98154,316.44003,1139.0449,290.03906,437.68192,1238.7429,161.31038,305.7843,1240.9211,101.94368
65ab4f2a-8bd1-4a95-8a0b-263fa3331551.jpeg,face_right,354.28412,109.10828,-444.9843,378.4599,89.42623,-437.4978,388.21024,90.04265,-437.33795,398.37976,90.48191,-437.26874,358.28278,88.97255,-396.7682,352.3994,88.7117,-396.80786,346.3978,88.76217,-396.96475,433.35782,111.61545,-334.48978,363.99176,106.784706,-147.7959,382.09656,141.176,-406.55426,352.9939,139.74197,-351.8609,539.88336,283.95953,-238.71036,308.436,277.5208,-42.130135,562.89435,487.28174,-167.51523,292.34152,472.25327,52.8525,563.40155,668.3313,-213.53596,261.52744,643.5825,-134.50867,573.74164,721.1472,-224.58995,247.97575,696.782,-163.9602,557.8013,726.7108,-296.74387,253.40514,701.3488,-242.78242,544.2443,706.7042,-234.85802,274.1733,684.8163,-171.6067,486.33023,643.4879,-17.194126,353.35797,635.3785,17.957611,473.65063,888.02374,64.852554,316.95966,877.12866,-31.713985,447.07413,1077.6573,453.79312,337.01706,1076.5471,349.82184,425.8338,1094.4835,481.27695,352.4984,1093.0083,374.7234,481.7847,1189.2035,270.5229,319.1816,1193.6534,163.38327
690e57b3-c13c-49e4-9fad-e3c26bd108ea.jpeg,face_right,284.05154,194.30743,-198.82726,297.5633,162.09076,-226.39938,304.97745,158.22922,-226.07417,312.8843,154.15733,-225.71146,287.46408,169.04366,-174.42947,286.12537,170.43149,-174.71806,284.66486,171.97632,-175.17537,360.59155,151.84814,-275.79434,320.31302,174.63623,-34.266857,321.81482,209.66896,-209.12158,305.8318,219.09653,-138.99019,527.23615,297.49353,-192.62994,294.60843,311.69513,-22.86125,558.3077,506.6366,-135.14609,273.6429,508.76068,72.1959,564.0689,676.00433,-213.30753,264.36758,685.5444,-48.97263,578.8852,726.66046,-254.00835,258.06357,734.99097,-81.517685,554.463,729.6151,-308.12952,272.7774,737.18506,-143.1103,538.7854,710.50244,-232.82265,288.65808,716.94025,-76.10561,479.3843,672.1441,9.070642,335.001,667.0962,-8.409728,478.59454,928.54095,18.670034,316.2928,924.8602,-56.42055,446.98956,1126.105,265.3771,338.58017,1131.4365,218.27477,426.55423,1140.311,281.97812,355.57733,1149.2756,235.80162,480.9659,1242.1014,131.8728,323.022,1254.0498,64.24346
69d1cbb5-bb22-4fc1-82e4-d4d56c6d42ff.jpeg,face_right,307.3651,216.72916,-251.3833,329.5101,193.46707,-270.95584,337.38324,193.41138,-270.8556,345.66885,193.22263,-270.9524,315.3724,193.66501,-228.75235,311.86908,193.1622,-228.77527,308.23563,192.88968,-228.6559,380.42496,205.67223,-268.09473,327.85672,202.95612,-71.32095,331.3068,242.25375,-243.49194,310.93082,241.68465,-186.74147,480.88022,352.47617,-242.74904,267.13123,341.4098,-2.7864747,504.2563,534.9205,-205.34229,234.585,516.10333,96.07526,496.0796,703.8827,-239.56139,222.28036,679.0225,-56.59817,504.33038,754.6052,-266.5706,215.1572,729.88153,-96.67093,484.73087,754.0451,-316.81442,228.52397,730.5067,-160.71391,473.6583,735.5835,-253.50885,244.22427,714.3787,-87.658745,416.77417,711.2195,-34.216248,300.20956,703.38855,35.236404,425.40317,944.40063,8.8264475,319.86026,937.5155,68.207,399.04794,1088.7012,355.01987,341.16315,1132.427,276.91577,388.9274,1096.7284,386.91385,345.41516,1152.0308,290.3957,399.52478,1179.7075,288.49506,357.75928,1228.3372,138.42932
6a6f783e-a74e-47fc-93a3-22bd59698fa1.jpeg,face_right,284.35583,150.32672,-491.25333,310.6637,126.873856,-485.9444,321.69913,127.12742,-485.78217,333.17624,127.157936,-485.6778,289.69135,127.12223,-439.2675,283.38153,126.987915,-439.31308,276.92368,127.22805,-439.46582,375.35617,148.736,-387.1398,299.78006,146.09393,-171.80074,317.53918,183.78445,-453.9286,285.5314,183.42511,-391.18906,491.38412,328.89362,-271.9506,240.6768,322.71564,-74.95793,516.0345,534.3054,-236.71405,212.62447,524.7075,8.605291,501.31332,715.73065,-377.69073,207.73524,712.822,-266.15656,508.80472,775.5021,-425.23416,200.60919,777.76685,-345.2571,483.2285,773.5584,-500.09494,222.90822,774.396,-416.59973,470.0367,749.7848,-400.9351,242.0194,751.34485,-300.9069,422.74866,726.9701,-17.614985,285.1204,718.9083,18.584259,428.45172,959.4562,123.44515,262.99435,958.84796,147.28851,401.77774,1141.4736,540.8378,281.8062,1139.6434,624.18195,377.56485,1158.8457,573.1122,305.0488,1159.6089,656.9185,451.15884,1261.1693,376.0206,232.13113,1261.5754,457.77502
6b00dfc0-543b-409f-975f-7399a2fdbb95.jpeg,face_right,305.00952,185.89389,-308.5977,328.68036,164.9736,-304.92566,338.4436,165.28088,-304.81268,348.61636,165.39218,-304.8044,308.94162,165.00964,-269.5962,303.224,164.86465,-269.62494,297.40268,165.00359,-269.67023,385.2274,184.81308,-240.57118,315.0852,182.10507,-72.8389,333.6909,217.12665,-283.52008,304.79626,216.44318,-234.70355,491.3441,352.66138,-170.7811,257.78314,344.2136,-19.647356,516.80774,541.64435,-125.26068,238.88586,533.29584,54.500893,505.7141,716.17523,-151.98863,218.91563,703.51654,-100.39452,514.77734,771.6212,-159.50539,207.85262,757.6039,-126.801315,494.6326,773.2928,-226.91399,218.32156,760.27313,-196.82895,482.07275,751.8945,-170.73526,238.07162,743.6315,-132.60045,424.1716,719.8581,-10.845732,292.6907,708.3155,11.331098,428.62546,959.17535,36.34234,273.12,943.2117,60.766876,417.67715,1142.6475,298.8385,294.2423,1135.2623,348.5924,397.3344,1160.3389,316.4931,317.46613,1158.7028,366.53366,462.1904,1251.5428,152.67036,237.2519,1241.5585,207.5933
6df2fd0e-ad0c-45bd-aaae-33871f5dfdad.jpeg,face_right,330.32935,202.65892,-338.04367,356.01642,171.88057,-333.2349,368.96558,170.83252,-333.12854,382.22617,169.552,-333.15125,328.46283,173.8736,-298.82816,319.31006,173.90259,-298.8599,310.11176,174.2203,-298.86322,423.1849,183.36124,-264.53265,324.907,187.01825,-101.36712,367.4422,230.87555,-311.7124,326.6528,232.9671,-264.12958,538.6405,345.5635,-219.36084,264.56763,347.55005,-88.91274,594.93634,540.00464,-215.84695,205.3527,526.05914,-11.700511,578.2163,728.13025,-240.50769,204.43872,709.4293,-154.47162,580.1567,789.83344,-249.907,202.82675,768.2482,-204.31337,556.33124,781.2365,-301.6824,223.18842,761.0187,-254.95476,545.73376,757.7272,-251.46127,240.83026,740.01697,-177.91052,464.9753,755.5368,-10.000156,316.83206,750.8047,10.951591,476.1385,994.3806,73.44371,306.266,987.23944,73.910675,470.42816,1149.7789,329.54053,326.60046,1140.2776,416.83774,455.89185,1161.2095,351.52936,344.7936,1152.9111,441.74545,501.97693,1264.2478,234.49654,300.22067,1261.3801,330.67206
7093d145-af99-43ad-8aea-c302a3151b5f.jpeg,face_right,310.1503,163.87787,-340.6201,331.5861,143.47089,-329.47348,341.3725,143.4596,-329.44003,351.58102,143.2753,-329.5521,309.3311,144.25296,-296.3118,302.4925,144.30096,-296.21002,295.55417,144.62115,-296.03732,383.3155,160.24432,-220.35486,308.3484,159.78473,-63.550186,337.6055,191.91216,-299.01718,307.1498,192.16522,-253.60017,481.38336,316.20923,-145.07043,252.20856,311.95093,26.953625,506.1894,490.02304,-113.491646,229.64964,489.55054,107.36424,505.28577,657.7257,-217.68639,208.36812,652.3463,-91.254616,518.62537,711.0568,-248.3005,197.12166,705.0074,-127.4711,497.65714,714.5746,-311.54047,207.33162,707.44763,-202.50085,484.0985,693.9675,-236.76076,225.44473,689.5643,-126.36361,415.66708,686.32935,-12.667074,283.14307,678.991,13.378589,436.9734,912.54663,14.996928,262.33896,905.68604,23.97414,424.00656,1086.5729,320.4601,277.7256,1087.7585,358.48965,401.68585,1104.6555,343.23132,293.15845,1105.9373,379.32217,482.30148,1190.6709,164.70915,253.99562,1197.8904,194.91602
7225ce05-d978-4b75-8185-ab00b75b75ab.jpeg,face_right,295.28027,138.08258,-214.55173,322.5157,108.53577,-236.42462,332.10623,108.53504,-236.18367,342.17206,108.31234,-236.12968,308.4347,107.52903,-182.20396,305.4746,106.45298,-182.24828,302.33203,105.6332,-182.23763,387.7619,123.839035,-260.7022,332.14478,118.12069,-10.213631,326.67065,169.23953,-217.29305,302.8487,167.49829,-145.05676,516.695,297.79987,-218.60225,261.54865,287.29388,34.80967,563.26855,501.0419,-207.87401,218.41862,485.82184,143.24718,546.7435,693.0646,-254.02657,173.36023,662.7756,-48.772488,556.62354,756.0077,-275.2935,157.05632,718.9697,-100.98646,525.17645,751.3694,-336.05002,172.2567,718.53845,-167.77136,513.20245,725.2488,-270.99216,193.80586,699.70557,-81.76269,436.66312,704.39575,-22.336863,286.72522,695.9433,23.302387,452.66452,951.76886,17.774353,249.06519,936.7878,22.840755,430.16647,1129.7507,312.114,266.27133,1106.3313,382.75754,413.9306,1141.6763,338.18457,286.85864,1123.1045,410.64975,460.96194,1256.1608,214.57022,221.42867,1226.352,280.84598
72c90dc5-972a-4537-901c-0250a39ef36d.jpeg,face_right,308.33127,129.5205,-308.2638,332.48868,107.1077,-318.81247,340.72806,107.26078,-318.6831,349.40424,107.23602,-318.58597,318.63055,107.217064,-270.63736,315.3047,106.944275,-270.66928,311.82483,106.94996,-270.73035,387.50763,125.84675,-299.88538,335.62054,122.61467,-74.688896,334.73785,160.35667,-299.7039,312.53613,159.5192,-234.33821,496.7745,302.41797,-254.16644,273.11588,295.027,-17.025629,518.98535,508.0092,-209.55391,243.56136,492.68347,57.795933,498.53455,698.0279,-225.66527,223.63765,684.25165,-100.0593,503.9171,754.6082,-243.80959,212.41653,740.7085,-140.88948,481.65067,754.8965,-309.10382,228.81955,743.8144,-202.70964,471.11584,731.78766,-243.3498,248.37636,725.10956,-131.85303,424.639,673.7287,-46.60839,298.22174,664.06555,47.43877,412.40997,943.2344,-10.261887,282.9214,928.1208,51.485394,392.2149,1157.7703,243.22266,305.25598,1153.3239,304.49194,381.81882,1176.8309,259.7036,322.54755,1178.4717,316.51718,397.6624,1272.6184,100.13502,275.4469,1264.3639,139.7291
73825e79-5c50-403c-bc3d-2a06dbdfd135.jpeg,face_right,1490.6903,1042.9728,-1081.3794,1575.5717,956.9031,-1119.6285,1609.944,958.66254,-1119.3075,1645.4999,959.7624,-1119.2584,1512.0079,949.72266,-1000.4531,1493.5704,945.4391,-1000.7629,1474.8457,941.9649,-1001.48376,1777.2944,1005.77844,-1044.4998,1538.9423,976.5341,-506.4472,1589.7814,1137.5431,-1037.9957,1492.1075,1127.679,-881.1657,2148.016,1515.6521,-809.90607,1330.378,1448.7484,-439.49966,2244.8394,2113.038,-644.14496,1221.02,1979.5469,-220.72974,2233.1758,2589.532,-784.7591,1225.5876,2493.858,-561.6942,2256.6,2751.6501,-859.3815,1210.9526,2658.2158,-698.3955,2188.788,2744.555,-1002.13153,1269.893,2658.4646,-861.0528,2142.1323,2680.3489,-825.3057,1322.7046,2599.6746,-635.18787,1939.5458,2606.9304,39.860523,1498.3024,2584.0686,-36.502113,1970.6648,3204.0278,482.61298,1453.9303,3191.4888,294.99954,1905.505,3605.6853,1301.0742,1463.6619,3614.9846,1318.4583,1828.2238,3633.7588,1368.7797,1493.1302,3647.0,1391.8472,2065.3176,3938.135,972.572,1432.4556,3955.9775,944.9574
74d304f6-4b9f-4b2c-9073-dc925a60d556.jpeg,face_right,318.08615,193.13885,-354.31403,336.10706,167.31277,-356.77554,346.04776,164.94385,-356.61722,356.42,162.3751,-356.49323,316.71225,173.62637,-317.5352,311.0151,175.5304,-317.52402,305.19888,177.74353,-317.5694,398.83072,175.48856,-299.18338,328.63892,193.82062,-114.41806,354.87036,218.47122,-329.41864,325.94513,226.02371,-275.5038,540.80176,340.35156,-205.29813,289.2919,353.68634,-72.23065,577.0882,537.179,-143.77127,261.34058,541.7157,-13.229493,559.7142,726.00433,-251.54091,260.8068,707.66534,-230.71411,570.4766,790.9413,-289.71295,254.55081,763.0145,-286.27338,539.9702,793.3452,-362.56976,270.9377,761.5655,-355.25024,526.3973,766.5355,-273.14526,289.85452,740.4621,-262.6402,477.2008,740.32227,-2.1337948,334.78687,734.33966,3.2291534,478.0333,993.3798,55.68083,304.40805,993.0976,32.83139,459.13406,1188.0573,325.0432,309.30722,1203.4868,354.76483,436.1606,1213.7893,344.39404,332.5343,1229.9922,374.18533,522.4449,1289.8083,200.78545,250.01424,1320.5272,207.33823
7cb2e84c-8a72-45c8-9c40-c478fa9f9e07.jpeg,face_right,350.11832,120.93872,-366.6796,375.07367,99.65935,-357.79114,385.71445,99.98947,-357.74792,396.7838,100.151215,-357.82672,352.7912,99.51038,-314.48883,346.10947,99.23164,-314.4658,339.28973,99.209785,-314.39688,432.99188,119.485664,-268.0375,356.25485,115.257454,-63.4784,379.9353,151.24802,-333.51343,347.7081,149.97093,-274.3527,538.0729,290.36343,-212.4844,296.11835,280.22675,28.57241,563.6411,495.03906,-169.40036,288.9645,485.49118,117.57737,546.43036,678.89795,-225.61105,257.16373,655.4554,-62.51373,554.9522,736.42676,-241.06525,247.53867,705.4769,-80.507805,532.4163,738.8368,-311.58218,244.85805,708.7621,-162.22154,518.52783,715.9584,-245.02484,264.80963,693.62213,-101.05397,446.36502,657.7106,-45.84547,310.02466,643.70966,46.45968,440.06244,926.0359,-9.631122,295.7387,910.9772,67.50122,423.29825,1129.4805,298.5213,315.11887,1130.0795,359.83942,410.89795,1148.0825,320.25195,339.05188,1158.2892,376.52933,439.4478,1248.933,129.79897,251.57645,1239.9144,182.89293
7d062f40-ceb8-46c4-90ed-1e126bbef83a.jpeg,face_right,303.2417,194.77112,-291.2293,329.88306,171.27556,-290.80685,340.89093,171.37405,-290.56104,352.27484,171.26895,-290.49475,307.3728,171.35658,-252.64587,300.9199,171.09505,-252.83762,294.4025,171.09921,-252.88072,393.66785,189.89227,-238.70311,315.39224,187.117,-62.841705,336.4924,226.00693,-272.16052,303.89575,225.55733,-221.03577,508.33063,352.80664,-179.54144,265.6169,351.11057,-22.765665,545.57495,530.68555,-164.9138,238.80887,521.25696,72.44,531.71783,692.6169,-195.49316,227.863,684.672,-72.22903,540.44434,744.5111,-214.19186,217.24687,735.3552,-109.55044,516.6011,742.97003,-265.7831,235.2563,737.4634,-165.02055,505.76135,722.95056,-209.52112,253.55862,720.25476,-98.95718,456.95685,705.28687,-4.4206285,321.79388,697.8656,4.9447756,471.03864,946.2501,29.512348,291.1104,923.5974,-53.798717,436.76727,1081.183,359.69183,325.7344,1085.7711,263.2701,417.96176,1082.6215,387.62885,342.05383,1092.6906,285.55756,457.6543,1202.8387,273.0671,319.9641,1214.1221,148.23322
81dffba3-f0d1-46f8-93fd-758f50b8f0e1.jpeg,face_right,276.92664,228.24023,-309.80786,297.90408,205.86906,-326.5747,305.43802,205.58807,-326.5679,313.37317,205.08934,-326.57196,287.30994,207.02115,-272.3895,285.15036,207.2255,-272.21478,282.76816,207.72366,-271.97098,351.3746,224.14803,-333.2151,308.94864,225.3624,-76.677086,303.1218,258.3516,-309.0557,283.99655,259.28363,-235.13199,470.3962,393.72125,-314.28543,264.9782,395.92932,-10.19149,508.22577,594.31445,-304.34744,255.05312,579.2127,61.0951,489.64078,788.7082,-336.32983,242.01517,763.7031,-109.651085,496.44376,848.7577,-360.5362,231.7944,814.89374,-147.80414,467.3197,846.35254,-424.86896,239.24905,819.3684,-209.28703,457.12524,820.6475,-352.96402,257.90588,802.98334,-141.079,429.0513,760.40466,-64.121704,310.56024,755.4932,65.2935,443.98984,1008.8885,-22.49944,297.95944,996.22375,85.21814,441.63675,1204.3542,257.10397,321.84155,1198.3324,365.1846,434.35092,1226.0007,278.393,343.5776,1226.6226,381.88095,457.66348,1303.1614,135.22975,265.54312,1293.5767,224.255
873dab4d-0ae8-4b44-9989-b2dbb3f78de4.jpeg,face_right,296.72308,143.44876,-171.05469,311.54892,119.03999,-211.71638,315.0406,118.90373,-211.50114,318.73828,118.73718,-211.49811,310.3822,119.482346,-169.29945,311.17206,119.57222,-169.02292,312.20135,119.80862,-168.62952,341.64975,136.07227,-293.92865,334.4595,135.53601,-97.18212,310.94803,171.66537,-185.9724,303.802,171.6141,-129.26205,303.423,279.22165,-327.85538,428.918,281.9388,-18.987692,311.60254,502.68192,-291.5099,493.68674,505.58295,-34.9826,263.7727,679.9625,-202.714,464.29163,669.5631,-44.018383,251.66043,732.9214,-235.13875,460.98947,717.77747,-48.632763,239.109,729.12787,-225.27052,453.5576,713.54114,-78.472015,251.62245,716.3471,-192.35057,448.53775,702.4983,-57.37335,331.46454,670.1301,-83.28815,407.2043,658.96783,84.98221,310.3086,940.2361,109.24363,389.78058,922.3391,215.3363,329.01453,1162.4275,323.23718,386.5358,1148.791,396.80936,342.67026,1202.1855,341.3134,396.6112,1191.1091,413.05728,284.37698,1199.513,339.4866,346.02676,1182.0322,407.76685
88d87581-ff47-431c-a244-f9421f56fe23.jpeg,face_right,314.78046,206.91882,-304.67383,337.36563,177.87086,-305.76297,348.7318,176.3649,-305.6508,360.43512,174.65106,-305.64786,314.77692,180.95523,-264.4383,307.42648,181.47713,-264.46194,299.95773,182.27974,-264.46603,400.55298,187.06342,-254.55386,320.3687,194.11461,-60.454212,350.71368,231.828,-283.38297,315.99594,235.45273,-227.20862,515.0961,339.57944,-206.84775,277.6505,351.8462,-35.527958,552.03625,537.63153,-201.94463,259.6271,546.0009,29.624365,526.37274,731.4094,-224.1455,262.98288,733.8138,-127.2171,532.82166,794.8907,-241.6782,256.88272,793.06604,-174.68042,504.2301,790.38745,-293.9729,275.1128,791.40894,-224.31052,494.15958,764.5606,-235.93314,292.48877,768.48755,-151.32625,450.4763,736.90625,-22.521301,320.2732,732.3269,23.41282,459.78632,972.3518,25.282223,306.1409,976.3535,28.161722,429.98648,1152.3826,220.83075,337.576,1150.3485,300.4661,415.62772,1167.392,235.22638,356.21555,1166.3779,316.58902,454.97208,1271.3885,118.83674,312.40683,1272.8447,195.20322
896b9af2-0421-4fea-b01a-52101068b3a5.jpeg,face_right,295.28027,138.08258,-214.55173,322.5157,108.53577,-236.42462,332.10623,108.53504,-236.18367,342.17206,108.31234,-236.12968,308.4347,107.52903,-182.20396,305.4746,106.45298,-182.24828,302.33203,105.6332,-182.23763,387.7619,123.839035,-260.7022,332.14478,118.12069,-10.213631,326.67065,169.23953,-217.29305,302.8487,167.49829,-145.05676,516.695,297.79987,-218.60225,261.54865,287.29388,34.80967,563.26855,501.0419,-207.87401,218.41862,485.82184,143.24718,546.7435,693.0646,-254.02657,173.36023,662.7756,-48.772488,556.62354,756.0077,-275.2935,157.05632,718.9697,-100.98646,525.17645,751.3694,-336.05002,172.2567,718.53845,-167.77136,513.20245,725.2488,-270.99216,193.80586,699.70557,-81.76269,436.66312,704.39575,-22.336863,286.72522,695.9433,23.302387,452.66452,951.76886,17.774353,249.06519,936.7878,22.840755,430.16647,1129.7507,312.114,266.27133,1106.3313,382.75754,413.9306,1141.6763,338.18457,286.85864,1123.1045,410.64975,460.96194,1256.1608,214.57022,221.42867,1226.352,280.84598
8aa2b634-9b9b-46c6-a365-e3803efa2fcc.jpeg,face_right,274.54834,194.65271,-291.96555,299.79233,166.97304,-300.9177,310.0827,166.14845,-300.79443,320.74963,165.1135,-300.75775,281.1995,168.59021,-254.6149,276.06784,168.65009,-254.78023,270.8253,168.99203,-254.85788,365.47903,180.2341,-285.31598,297.98285,182.42409,-65.06036,309.5431,222.70432,-285.64606,280.4189,224.44786,-221.724,489.13638,347.5647,-223.1803,256.67072,353.47806,-51.272717,534.5374,553.97955,-209.28311,248.45929,559.3713,18.256456,533.2003,724.59467,-214.09096,225.12694,726.0382,-109.87569,543.1692,773.5833,-216.67896,213.0165,775.2508,-140.41708,524.1772,770.4675,-275.39407,223.22377,774.0454,-192.81635,511.54086,750.52966,-231.50464,243.459,757.9443,-135.83963,427.26007,719.0158,-28.205372,299.71524,713.7884,28.851297,440.71304,965.15045,4.8365602,304.718,960.88184,77.55035,415.75992,1146.9047,238.01747,330.72812,1146.1451,344.69687,403.35123,1159.6819,255.4833,346.00027,1165.3651,361.5445,429.06885,1268.5576,136.85135,311.58447,1260.8467,226.25792
96ac89d0-bee3-4800-b99a-e023b37d28d0.jpeg,face_right,285.7924,234.70233,-252.47069,307.42273,208.06317,-262.6229,317.5403,206.6143,-262.49994,328.00955,204.94087,-262.47256,287.5652,211.61166,-224.93144,281.8379,212.4307,-224.9912,276.05908,213.51387,-224.9974,370.18973,216.51126,-236.95999,298.13638,225.91556,-63.434715,320.3627,260.09253,-240.07404,291.38873,264.1234,-189.35434,495.19278,365.51562,-177.38048,261.7208,373.20648,-41.10855,547.86084,530.53735,-154.59712,228.97252,537.73737,17.023693,526.3926,681.9313,-198.63878,220.4526,685.6946,-147.1073,532.5979,733.67804,-219.71426,215.99997,739.14233,-195.91989,503.9536,728.97394,-264.69928,236.06354,731.64404,-243.79669,493.7165,708.2738,-209.73792,252.36252,712.5824,-169.4002,447.0739,730.0079,-12.555131,320.85062,726.0501,13.001511,458.16318,930.0068,61.16206,294.23343,925.6003,41.786114,440.07178,1087.2931,226.78262,321.29712,1080.5378,299.91867,424.77716,1102.5459,238.72034,344.3939,1096.7324,316.05884,473.69202,1187.9528,136.01118,276.9829,1185.7123,216.40242
9ea30f6b-c5b0-474a-9937-9293697087be.jpeg,face_right,293.97656,217.53197,-171.53697,311.8713,194.45828,-188.284,318.81146,193.21286,-188.10521,326.1712,191.76712,-188.0628,301.2604,197.08221,-142.49081,299.38226,197.53131,-142.5994,297.3983,198.16516,-142.68556,364.1056,200.84781,-212.44147,324.30417,207.61314,1.3275112,321.60062,239.83249,-176.76205,305.21274,242.93515,-114.74223,480.05133,347.05432,-179.16441,287.80435,348.154,33.273838,505.63495,526.8357,-157.6666,264.8935,521.35815,106.3855,514.0441,684.68396,-173.45816,247.27588,670.7241,-28.217125,529.7398,729.2426,-186.68651,238.48932,716.3465,-60.1978,509.06506,734.9588,-237.11127,253.51222,717.2216,-112.46313,495.43112,717.5537,-188.55914,269.3379,702.2628,-53.455303,430.72684,672.54065,-28.760601,317.81155,668.17065,29.209892,445.75482,883.88403,-14.005767,314.6903,875.6027,37.954998,436.9775,1063.7523,156.95776,333.13852,1061.6517,234.71582,427.54657,1082.0242,168.2092,350.9027,1086.1757,244.36295,457.7592,1151.9751,53.01879,298.8986,1146.1818,114.659836
a2ebb4f5-bd02-41c3-a10b-5cdff44e3bb9.jpeg,face_right,285.9157,203.14339,-178.0837,305.09116,179.47217,-192.88019,312.3308,178.76163,-192.7864,319.91675,177.8818,-192.78946,291.60132,180.95111,-156.87361,288.29376,181.08386,-157.03813,284.87302,181.38908,-157.28804,352.2615,189.0968,-194.78342,303.83047,191.28616,-27.051609,310.12082,226.81053,-174.1494,290.21094,228.23593,-125.599,449.5517,335.99332,-178.78523,260.57956,333.77,-4.847938,488.81012,528.0156,-158.48216,233.04547,515.5781,40.67046,478.53876,693.94226,-153.98772,215.12634,687.2875,-37.47879,485.36566,744.49133,-172.42531,204.06032,737.9691,-56.930466,461.73373,741.5398,-211.31769,218.15817,739.7043,-103.60163,452.23898,722.6697,-165.75378,234.04419,724.2673,-59.126053,398.88028,680.85144,-37.497246,291.1147,674.5548,38.105648,394.66437,915.8758,-13.043364,288.96042,912.8197,47.280525,388.94815,1126.5339,100.55133,288.6745,1118.1941,196.6538,389.03293,1148.2301,105.38342,294.10397,1143.3336,201.38405,374.87506,1212.9216,-15.742513,285.64294,1197.3502,70.535225
a3843ab1-1639-4748-bf12-31be9c700ea9.jpeg,face_right,357.51126,163.47653,-499.05386,377.67697,141.71852,-468.8216,389.37784,141.95026,-468.6481,401.30783,142.01363,-468.93823,347.2873,142.39616,-456.6223,336.93033,142.64954,-456.9014,326.49268,143.23575,-457.27985,427.4323,162.61475,-302.34033,326.16895,162.65015,-236.60294,386.27762,196.66837,-439.15314,344.9008,197.07893,-419.68948,519.55334,335.35886,-180.53578,265.33243,322.94254,-96.84254,555.69183,494.07272,46.448505,240.27338,458.01904,211.43886,500.65164,605.86786,263.32153,284.5558,541.3305,354.07892,487.83246,644.7488,282.4321,293.67218,572.30566,368.01633,475.83755,628.8542,255.47385,305.4261,558.2885,326.45175,474.97922,614.65686,260.22278,310.8176,546.06573,343.79745,458.30612,684.7244,-8.980509,313.27866,677.1161,9.137922,437.72232,935.89453,113.77227,310.0506,917.92053,74.45922,437.06052,1116.1702,525.63885,312.49197,1109.6144,460.35278,427.64713,1126.609,555.75024,322.7922,1122.1685,487.29172,435.89758,1249.0176,340.34476,307.54977,1245.8129,282.54193
a43582bf-43dc-421d-a055-7041256d3008.jpeg,face_right,293.59854,175.18974,-175.2108,313.5311,145.78845,-207.37218,320.7275,144.41719,-207.06082,328.40567,142.82143,-206.88971,306.33347,146.75464,-145.94563,306.37784,146.09596,-146.0023,306.2377,145.68188,-146.16873,374.77615,147.6199,-268.56403,342.32565,150.19977,14.097841,324.8125,197.98373,-187.23987,311.40417,199.646,-105.73031,522.1136,299.3589,-224.30205,296.54666,301.5482,98.814804,559.20154,499.99527,-182.75377,273.59833,487.33884,237.03258,554.882,677.5379,-225.163,234.09822,653.45795,8.593988,567.32544,732.05927,-257.0233,219.77351,706.18896,-50.82123,540.6212,728.75195,-313.68945,231.3177,704.9755,-124.409294,530.0829,708.18555,-240.95526,250.57558,687.5821,-29.715996,469.57648,696.83765,-25.819374,326.0219,693.86584,26.805645,490.35742,949.5654,27.483015,317.98874,940.2388,-9.599913,467.50262,1129.0452,433.72165,349.6743,1121.2007,386.7498,453.55,1139.8345,469.90906,369.4122,1136.4172,420.07938,486.9749,1248.5232,347.15204,325.576,1239.948,277.69308
a4d500d9-36f6-4b25-9ceb-ec0ac3ae9959.jpeg,face_right,294.02237,148.24704,-290.65976,312.47604,128.03867,-286.5647,321.1877,127.0002,-286.34512,330.32928,125.74154,-286.25122,293.69992,131.26793,-253.25716,288.60486,132.21916,-253.36899,283.43445,133.43582,-253.53418,366.06952,138.8498,-203.88824,302.9682,147.06482,-48.719833,324.11487,173.98521,-257.26285,299.04663,177.44583,-212.07368,494.16608,292.873,-114.15186,260.9498,298.87906,-1.0264033,533.20404,485.6286,-70.03627,245.53662,483.02487,55.93635,535.5826,667.744,-153.93608,210.02374,659.34235,-94.445366,549.9446,725.65,-171.72243,193.57018,714.3078,-104.86171,529.1499,729.88525,-248.1916,198.46707,722.24695,-189.19135,514.68884,709.1903,-178.08719,220.74713,706.3124,-130.84007,450.5852,663.30444,4.0721703,310.74722,655.05005,-3.4864755,461.19827,930.15454,5.4627595,281.58908,918.3624,-45.54936,444.4295,1139.783,244.01085,302.67188,1149.0819,206.11021,421.99396,1167.4897,256.1894,329.5518,1179.0088,215.81396,504.58768,1236.3539,76.12192,240.95947,1256.0997,24.835566
a5efe525-41c8-4946-887d-3b382ad6acdb.jpeg,face_right,311.78,279.39294,-403.9674,334.84012,256.4447,-414.32166,343.7768,256.29553,-414.16653,353.1208,255.9607,-414.1765,319.2613,257.1007,-364.23743,315.0134,256.98853,-364.1615,310.64438,257.19315,-364.1238,392.08444,272.54602,-372.12387,334.2926,271.66382,-140.95682,340.60056,306.79684,-386.71164,315.83636,307.07565,-319.90823,504.02545,432.39682,-317.4385,287.61786,425.64786,-26.291592,530.252,617.0626,-275.23373,276.3366,601.5051,67.09451,511.6543,782.59875,-358.9065,249.62337,762.695,-154.85855,518.22644,834.35,-397.46423,239.18481,814.0527,-203.47562,493.62936,830.99915,-457.7522,246.76895,814.50226,-275.59503,483.1875,809.2502,-375.77173,265.1033,797.1416,-190.54947,441.3867,781.5996,-60.533085,323.3388,771.7881,61.688244,441.35745,999.5134,56.36696,298.39154,992.71796,115.668686,426.7464,1165.5668,395.8683,326.59183,1147.5999,460.1151,419.53998,1177.1719,422.58307,345.71118,1159.514,484.30905,430.0159,1282.4504,256.64862,294.01108,1262.6677,333.17398
ac86d8ca-b07c-4c4f-917d-673bccdfb252.jpeg,face_right,300.82593,189.47182,-262.4204,320.70493,166.84537,-277.21594,328.11105,166.02776,-276.9832,335.9952,165.01437,-276.78394,309.91498,168.78476,-224.27972,308.18683,169.12625,-224.3561,306.30276,169.68864,-224.51416,376.17886,178.35365,-280.34302,335.25906,182.89441,-38.4158,329.3481,215.05241,-259.8882,311.50653,217.38202,-189.74533,500.44687,342.28183,-220.78221,285.7427,336.1377,15.986471,521.0848,524.06635,-184.73906,245.30089,505.88342,99.99555,504.53348,691.2833,-264.59518,240.00082,687.797,-93.00956,512.3442,743.09424,-313.2986,231.08754,739.54517,-154.20018,486.13675,743.3815,-367.75613,252.19746,739.9695,-210.55165,477.90466,723.36115,-281.94348,265.9961,721.1831,-122.79878,444.25214,688.30316,-13.707224,313.9578,678.8578,14.500986,440.44647,932.65106,14.943553,301.8132,921.39636,-44.4858,423.4845,1125.7947,315.36734,307.1151,1124.4692,270.54407,409.4608,1136.874,336.98154,316.44003,1139.0449,290.03906,437.68192,1238.7429,161.31038,305.7843,1240.9211,101.94368
ade82842-0b8e-4ce3-ac6f-64699ef27960.jpeg,face_right,205.2291,112.57532,-205.15346,217.3385,96.33124,-208.73776,223.40216,95.50891,-208.70396,229.69846,94.57219,-208.73108,205.18413,98.35014,-186.19951,201.38768,98.80383,-186.27946,197.55446,99.41724,-186.3948,252.39787,102.10126,-182.87836,208.95175,107.08058,-74.66536,224.53952,127.635956,-193.4732,206.50209,129.96602,-161.82373,323.90762,203.19693,-136.99217,181.6689,198.42577,-53.15798,332.4608,327.24432,-98.919815,167.17596,312.73285,-4.383269,338.35394,427.5884,-113.051636,160.70311,419.53665,-73.05991,345.1684,455.83276,-118.26181,154.51903,449.46738,-87.140915,339.18475,457.59302,-156.59116,162.52481,450.51144,-122.87319,329.712,447.03885,-124.811195,174.56355,440.96664,-88.35357,282.12195,416.5117,-12.415709,206.68924,409.5253,12.956326,274.15042,556.2376,30.110767,205.28403,544.0504,46.36402,253.08932,660.6869,171.01376,214.49881,650.90405,222.76355,243.62033,670.3593,180.68375,221.26071,662.9762,233.8727,263.9055,720.44403,101.430626,204.65865,709.5475,153.57852
b2b3d967-1eeb-429e-8ae4-2b0fcb8794d4.jpeg,face_right,302.92316,173.12668,-344.5148,326.43826,142.44556,-335.8822,339.10904,141.4899,-335.76678,352.13632,140.29297,-335.78122,298.24612,145.03384,-306.20175,288.46896,145.56638,-306.24246,278.65353,146.33694,-306.25064,389.18637,157.5454,-250.21077,288.77112,162.86343,-108.26941,338.26102,202.70328,-312.6727,296.0241,205.50357,-270.90005,503.8179,327.43045,-203.197,234.62968,331.64563,-75.21235,564.1015,520.4125,-186.44206,192.32932,525.9441,-30.426609,559.1995,700.0607,-244.18658,171.86891,696.8312,-183.82622,572.2827,759.8894,-271.3186,158.38283,753.98065,-221.71472,537.8805,760.1846,-316.7512,183.66696,753.35394,-279.4694,521.22,736.9754,-255.26326,206.00322,733.03656,-209.30026,430.3127,718.3302,-25.059479,291.51135,713.6761,26.013485,433.01492,952.4778,21.772196,271.42102,948.92773,-69.54532,404.07422,1125.0353,232.37843,313.3161,1134.661,216.67104,395.16135,1132.816,247.14706,333.83914,1149.8811,235.21928,398.7153,1255.9132,117.98155,285.39334,1260.5876,100.8156
b3bacbe6-e378-47e0-b4b3-925697de1d6e.jpeg,face_right,318.33627,161.38382,-456.217,340.79315,140.62268,-457.14932,349.42685,140.8479,-456.96155,358.4667,140.8714,-456.88455,323.7455,140.79984,-414.19122,318.99966,140.69516,-414.2473,314.1298,140.88844,-414.36328,393.3336,158.93547,-382.12784,332.95822,156.20038,-186.6746,344.70605,190.54001,-428.10065,319.563,190.06264,-370.83334,501.33295,317.05737,-309.24716,278.18268,315.75995,-95.63903,524.4397,500.17645,-270.75406,264.46988,499.57486,-40.15731,513.7227,667.3873,-340.48538,261.82605,673.3798,-218.09087,524.64685,717.1774,-372.72726,255.3469,727.4669,-261.35828,499.97873,724.13477,-430.4907,268.86005,732.2754,-324.2994,487.74933,705.1685,-358.1895,284.9232,714.2772,-249.67773,447.36877,659.1196,-37.78207,321.25534,653.4089,38.422607,448.37067,895.71423,29.227654,299.85223,884.66034,-90.611664,422.25858,1083.7468,364.83078,336.64413,1087.851,272.65622,411.04922,1097.2301,388.41245,352.71246,1103.3137,296.25873,429.25793,1198.5481,200.93826,329.5325,1205.571,96.20701
b50186dd-c399-4b3e-825e-8d16eefc63b1.jpeg,face_right,298.5095,259.32947,-258.52444,315.45145,237.15584,-259.04312,323.96768,235.98315,-258.9342,332.7951,234.62982,-258.95526,297.25775,239.57664,-227.0631,291.4904,239.95953,-227.11641,285.64563,240.52322,-227.17613,362.49927,242.60208,-204.25381,299.9233,248.03421,-56.28112,325.22726,278.28076,-235.23386,299.3592,281.11008,-192.20189,450.75122,363.08124,-159.45609,268.1128,373.43854,-8.898976,478.202,534.2411,-142.57799,264.7851,544.27344,44.753273,478.6219,696.6594,-154.39919,276.92084,698.5717,-52.928883,491.25262,744.627,-169.53229,276.50888,745.2066,-78.7119,471.89133,745.4192,-211.86664,287.711,745.4645,-121.08904,460.65326,727.4346,-163.893,298.34024,727.97656,-72.63767,412.0933,688.3123,-20.144705,306.94446,685.8423,20.486969,427.61893,900.6131,0.5530506,308.8939,904.9321,24.753683,408.0357,1071.0646,169.74889,324.89285,1083.9803,218.3745,394.50076,1087.7142,180.64142,335.21902,1101.6753,226.06801,436.62967,1166.3235,52.04436,322.48126,1184.004,83.3161
bd71eb48-29b2-4891-b608-8e14a980a9f9.jpeg,face_right,285.9157,203.14339,-178.0837,305.09116,179.47217,-192.88019,312.3308,178.76163,-192.7864,319.91675,177.8818,-192.78946,291.60132,180.95111,-156.87361,288.29376,181.08386,-157.03813,284.87302,181.38908,-157.28804,352.2615,189.0968,-194.78342,303.83047,191.28616,-27.051609,310.12082,226.81053,-174.1494,290.21094,228.23593,-125.599,449.5517,335.99332,-178.78523,260.57956,333.77,-4.847938,488.81012,528.0156,-158.48216,233.04547,515.5781,40.67046,478.53876,693.94226,-153.98772,215.12634,687.2875,-37.47879,485.36566,744.49133,-172.42531,204.06032,737.9691,-56.930466,461.73373,741.5398,-211.31769,218.15817,739.7043,-103.60163,452.23898,722.6697,-165.75378,234.04419,724.2673,-59.126053,398.88028,680.85144,-37.497246,291.1147,674.5548,38.105648,394.66437,915.8758,-13.043364,288.96042,912.8197,47.280525,388.94815,1126.5339,100.55133,288.6745,1118.1941,196.6538,389.03293,1148.2301,105.38342,294.10397,1143.3336,201.38405,374.87506,1212.9216,-15.742513,285.64294,1197.3502,70.535225
bf146ef6-7dba-4a1a-b6be-7d7b0cd8f991.jpeg,face_right,357.51126,163.47653,-499.05386,377.67697,141.71852,-468.8216,389.37784,141.95026,-468.6481,401.30783,142.01363,-468.93823,347.2873,142.39616,-456.6223,336.93033,142.64954,-456.9014,326.49268,143.23575,-457.27985,427.4323,162.61475,-302.34033,326.16895,162.65015,-236.60294,386.27762,196.66837,-439.15314,344.9008,197.07893,-419.68948,519.55334,335.35886,-180.53578,265.33243,322.94254,-96.84254,555.69183,494.07272,46.448505,240.27338,458.01904,211.43886,500.65164,605.86786,263.32153,284.5558,541.3305,354.07892,487.83246,644.7488,282.4321,293.67218,572.30566,368.01633,475.83755,628.8542,255.47385,305.4261,558.2885,326.45175,474.97922,614.65686,260.22278,310.8176,546.06573,343.79745,458.30612,684.7244,-8.980509,313.27866,677.1161,9.137922,437.72232,935.89453,113.77227,310.0506,917.92053,74.45922,437.06052,1116.1702,525.63885,312.49197,1109.6144,460.35278,427.64713,1126.609,555.75024,322.7922,1122.1685,487.29172,435.89758,1249.0176,340.34476,307.54977,1245.8129,282.54193
c40b74b5-6cb2-432c-b882-8ca713b3eebe.jpeg,face_right,284.05154,194.30743,-198.82726,297.5633,162.09076,-226.39938,304.97745,158.22922,-226.07417,312.8843,154.15733,-225.71146,287.46408,169.04366,-174.42947,286.12537,170.43149,-174.71806,284.66486,171.97632,-175.17537,360.59155,151.84814,-275.79434,320.31302,174.63623,-34.266857,321.81482,209.66896,-209.12158,305.8318,219.09653,-138.99019,527.23615,297.49353,-192.62994,294.60843,311.69513,-22.86125,558.3077,506.6366,-135.14609,273.6429,508.76068,72.1959,564.0689,676.00433,-213.30753,264.36758,685.5444,-48.97263,578.8852,726.66046,-254.00835,258.06357,734.99097,-81.517685,554.463,729.6151,-308.12952,272.7774,737.18506,-143.1103,538.7854,710.50244,-232.82265,288.65808,716.94025,-76.10561,479.3843,672.1441,9.070642,335.001,667.0962,-8.409728,478.59454,928.54095,18.670034,316.2928,924.8602,-56.42055,446.98956,1126.105,265.3771,338.58017,1131.4365,218.27477,426.55423,1140.311,281.97812,355.57733,1149.2756,235.80162,480.9659,1242.1014,131.8728,323.022,1254.0498,64.24346
ca1acd40-ad5f-4f67-b172-c295873317b6.jpeg,face_right,307.98633,161.89877,-314.1133,327.97552,137.66055,-329.91495,335.2295,136.75754,-329.67603,342.97354,135.65063,-329.46838,317.65585,139.12701,-277.9179,316.51376,139.07468,-277.88007,315.20554,139.25632,-278.03812,385.75894,145.71686,-317.62717,345.48236,149.30862,-83.12532,337.4439,187.39835,-303.03397,321.57834,189.22935,-235.14111,526.62683,307.50922,-221.26224,291.43054,303.87463,15.659888,560.3744,501.6294,-174.46907,263.48798,492.60248,107.214,546.6268,666.9608,-320.80286,240.60545,648.42615,-224.07294,555.6614,721.0888,-372.94223,229.56999,700.7616,-311.12128,528.0288,718.60144,-438.05542,246.85292,698.6898,-387.85056,518.0475,696.98145,-339.4381,266.0112,679.2988,-264.08383,471.63025,685.3369,4.35707,324.71844,677.5507,-3.3748972,475.1265,933.69165,37.07235,289.67047,931.56116,-70.72928,446.45724,1121.58,434.06412,313.46475,1133.9768,315.12112,424.4101,1136.3707,463.892,332.8732,1151.2042,341.28125,484.48438,1232.0884,276.00934,291.31113,1252.5344,134.99388
cc60013e-e4f0-4837-8415-095e14bf956b.jpeg,face_right,298.34186,165.04367,-287.52136,326.82574,138.75638,-288.5021,338.6202,139.05743,-288.36838,350.8125,139.12453,-288.3751,303.35437,138.15887,-245.06058,296.30222,137.52368,-245.08485,289.14032,137.16827,-245.01613,392.71875,157.93823,-242.65407,310.05133,152.39606,-35.200455,332.24005,196.89743,-269.37814,297.21005,195.35484,-209.5304,506.8051,328.85645,-200.21559,248.9874,326.55212,-0.35156652,548.7384,524.10693,-176.41461,216.98283,523.23883,72.54742,556.27905,692.19293,-211.96875,194.03044,700.13556,-95.11834,570.3892,745.6446,-226.6601,182.53323,756.0266,-133.05286,548.64215,744.37036,-287.76782,197.9111,758.6644,-195.87883,533.3687,723.98676,-229.16988,219.77383,740.0497,-125.36784,444.7821,715.8452,-34.213654,302.86163,715.0269,34.98318,473.90253,973.7305,-22.20319,291.1786,967.10626,62.222248,453.78577,1135.6387,264.11145,299.66275,1141.3312,398.73355,441.8172,1143.285,290.8017,314.7921,1157.4619,423.7935,466.54614,1260.1764,193.31801,270.63354,1261.2651,308.20532
ceff9dd4-44b7-4ed3-973c-8c6038353560.jpeg,face_right,308.33127,129.5205,-308.2638,332.48868,107.1077,-318.81247,340.72806,107.26078,-318.6831,349.40424,107.23602,-318.58597,318.63055,107.217064,-270.63736,315.3047,106.944275,-270.66928,311.82483,106.94996,-270.73035,387.50763,125.84675,-299.88538,335.62054,122.61467,-74.688896,334.73785,160.35667,-299.7039,312.53613,159.5192,-234.33821,496.7745,302.41797,-254.16644,273.11588,295.027,-17.025629,518.98535,508.0092,-209.55391,243.56136,492.68347,57.795933,498.53455,698.0279,-225.66527,223.63765,684.25165,-100.0593,503.9171,754.6082,-243.80959,212.41653,740.7085,-140.88948,481.65067,754.8965,-309.10382,228.81955,743.8144,-202.70964,471.11584,731.78766,-243.3498,248.37636,725.10956,-131.85303,424.639,673.7287,-46.60839,298.22174,664.06555,47.43877,412.40997,943.2344,-10.261887,282.9214,928.1208,51.485394,392.2149,1157.7703,243.22266,305.25598,1153.3239,304.49194,381.81882,1176.8309,259.7036,322.54755,1178.4717,316.51718,397.6624,1272.6184,100.13502,275.4469,1264.3639,139.7291
d5044eb4-947c-4f35-aa9e-76a4ec0a2ea8.jpeg,face_right,205.2291,112.57532,-205.15346,217.3385,96.33124,-208.73776,223.40216,95.50891,-208.70396,229.69846,94.57219,-208.73108,205.18413,98.35014,-186.19951,201.38768,98.80383,-186.27946,197.55446,99.41724,-186.3948,252.39787,102.10126,-182.87836,208.95175,107.08058,-74.66536,224.53952,127.635956,-193.4732,206.50209,129.96602,-161.82373,323.90762,203.19693,-136.99217,181.6689,198.42577,-53.15798,332.4608,327.24432,-98.919815,167.17596,312.73285,-4.383269,338.35394,427.5884,-113.051636,160.70311,419.53665,-73.05991,345.1684,455.83276,-118.26181,154.51903,449.46738,-87.140915,339.18475,457.59302,-156.59116,162.52481,450.51144,-122.87319,329.712,447.03885,-124.811195,174.56355,440.96664,-88.35357,282.12195,416.5117,-12.415709,206.68924,409.5253,12.956326,274.15042,556.2376,30.110767,205.28403,544.0504,46.36402,253.08932,660.6869,171.01376,214.49881,650.90405,222.76355,243.62033,670.3593,180.68375,221.26071,662.9762,233.8727,263.9055,720.44403,101.430626,204.65865,709.5475,153.57852
dbc7be18-2af5-4299-a9c9-f4291bdd956a.jpeg,face_right,283.79816,244.6619,-184.17416,306.4049,220.39307,-196.08778,315.2947,219.2907,-195.90874,324.56454,217.98996,-195.73238,291.2074,222.8017,-152.3854,287.6876,223.11661,-152.56433,284.04187,223.6842,-152.77002,367.3508,229.33139,-199.45995,311.10577,234.77313,8.513592,315.66858,269.58905,-182.16774,292.4635,271.96185,-121.52199,489.5902,388.65393,-151.02438,266.8742,385.57004,0.75664765,520.52466,584.48596,-126.047455,235.64178,568.31836,64.80949,507.97653,761.0147,-107.206314,226.24135,745.23773,-59.291103,514.2689,814.17395,-115.48805,216.89526,797.51556,-97.53979,493.6599,815.94147,-171.76822,234.75352,797.7308,-140.13774,482.92722,793.93774,-123.157265,252.76468,779.4968,-81.54453,430.06952,741.76874,-17.348621,304.00272,732.4356,17.863745,444.09805,989.9949,2.9852657,284.54526,976.6193,23.087696,447.11084,1178.8666,213.30573,299.95044,1166.4976,302.48965,435.96982,1194.0615,228.62775,321.5083,1188.2925,321.8184,464.95242,1285.3369,109.50837,251.45633,1269.4646,208.9204
dee9ab4b-b7e8-49f4-90d5-10c1eb5d23ef.jpeg,face_right,294.02237,148.24704,-290.65976,312.47604,128.03867,-286.5647,321.1877,127.0002,-286.34512,330.32928,125.74154,-286.25122,293.69992,131.26793,-253.25716,288.60486,132.21916,-253.36899,283.43445,133.43582,-253.53418,366.06952,138.8498,-203.88824,302.9682,147.06482,-48.719833,324.11487,173.98521,-257.26285,299.04663,177.44583,-212.07368,494.16608,292.873,-114.15186,260.9498,298.87906,-1.0264033,533.20404,485.6286,-70.03627,245.53662,483.02487,55.93635,535.5826,667.744,-153.93608,210.02374,659.34235,-94.445366,549.9446,725.65,-171.72243,193.57018,714.3078,-104.86171,529.1499,729.88525,-248.1916,198.46707,722.24695,-189.19135,514.68884,709.1903,-178.08719,220.74713,706.3124,-130.84007,450.5852,663.30444,4.0721703,310.74722,655.05005,-3.4864755,461.19827,930.15454,5.4627595,281.58908,918.3624,-45.54936,444.4295,1139.783,244.01085,302.67188,1149.0819,206.11021,421.99396,1167.4897,256.1894,329.5518,1179.0088,215.81396,504.58768,1236.3539,76.12192,240.95947,1256.0997,24.835566
dfcf08a1-e796-49aa-8106-82f2705babf8.jpeg,face_right,297.72302,209.5122,-295.94144,317.4098,188.34961,-295.34253,326.14407,187.27966,-295.3365,335.19098,185.99953,-295.2902,300.94708,191.7363,-259.58102,296.37555,192.817,-259.64697,291.66907,194.13205,-259.817,373.22763,202.2734,-246.09677,312.7193,211.0953,-79.8774,328.6522,235.88707,-276.82635,303.19824,239.84581,-229.01364,480.51675,352.36053,-192.26186,274.11383,359.23035,-34.996265,494.59067,546.48224,-208.93407,250.16312,535.56604,9.547181,388.48056,695.26587,-241.32353,312.61087,676.4531,-147.51811,366.0446,747.35376,-267.41183,330.03827,729.3237,-214.1036,345.65665,729.1736,-300.58438,349.1252,711.2677,-239.77312,351.8462,707.40186,-246.42879,350.02426,691.09814,-161.4517,443.6594,713.24817,-16.807787,318.54422,706.5989,17.129084,464.5324,966.20575,1.072283,296.4241,957.2867,36.826775,440.86996,1157.4738,260.53024,340.69016,1148.0242,336.15698,423.7493,1177.7076,276.8178,372.36444,1172.6008,354.2726,473.122,1265.7091,120.63011,270.02078,1254.7251,203.6308
e3ac84bc-04e6-472c-8ae5-2159c87c137f.jpeg,face_right,312.76215,205.38113,-260.10086,335.01227,180.81497,-272.2068,343.4883,180.78625,-272.08456,352.39975,180.55179,-271.9676,321.51697,180.25165,-227.58153,318.1924,179.66107,-227.72058,314.69727,179.27472,-227.89114,391.12656,195.93533,-269.66928,339.4483,192.37439,-64.22251,341.0469,234.00002,-255.18071,318.7132,233.26729,-195.63074,503.89627,356.75644,-210.06134,288.24716,355.1156,-28.322056,524.7804,560.46906,-174.89792,288.46686,557.12286,58.624424,506.95367,732.5629,-187.2021,291.4593,718.97394,-61.02341,514.5245,785.8617,-201.69495,288.78668,769.21875,-95.42635,492.8974,784.27246,-251.88016,300.53415,767.41547,-150.13539,481.94232,762.695,-199.6607,314.7052,748.73566,-85.95342,461.49,709.7595,-0.49853602,331.60434,706.16565,1.195653,479.0972,949.8339,30.884384,328.8973,942.54584,24.169586,462.4852,1134.5691,255.73398,342.97348,1142.6256,270.15503,440.55377,1149.199,271.082,353.16827,1160.4396,283.5161,513.68146,1246.0134,119.283745,341.6085,1258.5989,108.71653
e475b694-e12a-495c-b6f7-1a466a6b5d61.jpeg,face_right,318.33627,161.38382,-456.217,340.79315,140.62268,-457.14932,349.42685,140.8479,-456.96155,358.4667,140.8714,-456.88455,323.7455,140.79984,-414.19122,318.99966,140.69516,-414.2473,314.1298,140.88844,-414.36328,393.3336,158.93547,-382.12784,332.95822,156.20038,-186.6746,344.70605,190.54001,-428.10065,319.563,190.06264,-370.83334,501.33295,317.05737,-309.24716,278.18268,315.75995,-95.63903,524.4397,500.17645,-270.75406,264.46988,499.57486,-40.15731,513.7227,667.3873,-340.48538,261.82605,673.3798,-218.09087,524.64685,717.1774,-372.72726,255.3469,727.4669,-261.35828,499.97873,724.13477,-430.4907,268.86005,732.2754,-324.2994,487.74933,705.1685,-358.1895,284.9232,714.2772,-249.67773,447.36877,659.1196,-37.78207,321.25534,653.4089,38.422607,448.37067,895.71423,29.227654,299.85223,884.66034,-90.611664,422.25858,1083.7468,364.83078,336.64413,1087.851,272.65622,411.04922,1097.2301,388.41245,352.71246,1103.3137,296.25873,429.25793,1198.5481,200.93826,329.5325,1205.571,96.20701
e96eb556-176b-4fb4-814f-8530a303cb3d.jpeg,face_right,280.07193,129.64246,-516.9804,304.1734,110.237236,-516.47955,312.2735,111.08032,-516.293,320.79434,111.73748,-516.2139,289.23743,109.243355,-471.51608,285.6913,108.86093,-471.53098,281.99716,108.81317,-471.56937,357.17285,134.96353,-435.4959,302.57803,128.67561,-233.70285,305.2684,163.51108,-488.46344,282.46835,161.44951,-429.44916,470.03726,311.88025,-345.0141,236.97969,304.7783,-121.199165,499.17502,513.2638,-288.86725,224.89091,501.42548,-50.49446,491.49936,702.74036,-361.0331,206.891,688.35986,-255.36674,502.03937,758.0323,-389.9762,195.20319,743.12164,-300.035,478.11478,766.2311,-462.98904,204.15233,752.0204,-379.52744,465.30722,745.9802,-384.0127,224.1202,735.0961,-296.09097,421.62634,670.25525,-13.697034,285.46033,661.16156,14.350255,433.5562,934.67316,108.88597,258.22675,907.9731,-160.8248,407.93787,1117.09,608.1119,299.57755,1121.6553,258.55814,387.66547,1125.6444,646.33704,315.3615,1133.9435,287.8351,430.50134,1240.7095,424.19397,301.79642,1248.9731,37.51041
ed83e4c1-c43d-4869-8ed7-0b63ae5804cc.jpeg,face_right,277.5694,193.90591,-326.10562,301.31232,173.56781,-322.66672,310.80463,173.7867,-322.5339,320.72083,173.78802,-322.40436,283.3558,173.57216,-279.48962,278.44055,173.40192,-279.55142,273.39944,173.50449,-279.687,358.7409,190.73834,-253.72687,296.41074,188.12817,-51.657257,307.02664,223.62537,-297.04404,281.0061,223.05984,-238.4553,470.50046,347.76007,-158.77663,249.09131,349.70325,28.400616,501.44916,537.04175,-94.68568,239.0896,544.3025,119.06409,498.91855,702.6786,-147.76956,226.65181,713.3988,-66.317764,510.65894,758.1028,-165.58078,221.13985,769.3115,-95.06325,490.26944,754.9847,-238.30026,227.19833,768.32056,-170.96428,477.7822,733.3978,-167.85365,244.67175,750.02563,-99.29586,429.52087,716.1014,-14.924712,295.55902,712.2864,15.720003,450.57297,960.80396,2.4988859,282.74426,949.92175,67.58846,442.21796,1152.3022,305.1698,306.23828,1153.0712,399.18982,419.5577,1178.285,325.56873,333.35574,1183.4313,418.68338,509.64612,1247.073,143.70743,237.90973,1250.6368,233.1038
f867e83b-3289-4c68-a41b-4f3b866d53e7.jpeg,face_right,283.79816,244.6619,-184.17416,306.4049,220.39307,-196.08778,315.2947,219.2907,-195.90874,324.56454,217.98996,-195.73238,291.2074,222.8017,-152.3854,287.6876,223.11661,-152.56433,284.04187,223.6842,-152.77002,367.3508,229.33139,-199.45995,311.10577,234.77313,8.513592,315.66858,269.58905,-182.16774,292.4635,271.96185,-121.52199,489.5902,388.65393,-151.02438,266.8742,385.57004,0.75664765,520.52466,584.48596,-126.047455,235.64178,568.31836,64.80949,507.97653,761.0147,-107.206314,226.24135,745.23773,-59.291103,514.2689,814.17395,-115.48805,216.89526,797.51556,-97.53979,493.6599,815.94147,-171.76822,234.75352,797.7308,-140.13774,482.92722,793.93774,-123.157265,252.76468,779.4968,-81.54453,430.06952,741.76874,-17.348621,304.00272,732.4356,17.863745,444.09805,989.9949,2.9852657,284.54526,976.6193,23.087696,447.11084,1178.8666,213.30573,299.95044,1166.4976,302.48965,435.96982,1194.0615,228.62775,321.5083,1188.2925,321.8184,464.95242,1285.3369,109.50837,251.45633,1269.4646,208.9204
f89438b0-1a7c-4321-8f38-6602bfd08b00.jpeg,face_right,276.92664,228.24023,-309.80786,297.90408,205.86906,-326.5747,305.43802,205.58807,-326.5679,313.37317,205.08934,-326.57196,287.30994,207.02115,-272.3895,285.15036,207.2255,-272.21478,282.76816,207.72366,-271.97098,351.3746,224.14803,-333.2151,308.94864,225.3624,-76.677086,303.1218,258.3516,-309.0557,283.99655,259.28363,-235.13199,470.3962,393.72125,-314.28543,264.9782,395.92932,-10.19149,508.22577,594.31445,-304.34744,255.05312,579.2127,61.0951,489.64078,788.7082,-336.32983,242.01517,763.7031,-109.651085,496.44376,848.7577,-360.5362,231.7944,814.89374,-147.80414,467.3197,846.35254,-424.86896,239.24905,819.3684,-209.28703,457.12524,820.6475,-352.96402,257.90588,802.98334,-141.079,429.0513,760.40466,-64.121704,310.56024,755.4932,65.2935,443.98984,1008.8885,-22.49944,297.95944,996.22375,85.21814,441.63675,1204.3542,257.10397,321.84155,1198.3324,365.1846,434.35092,1226.0007,278.393,343.5776,1226.6226,381.88095,457.66348,1303.1614,135.22975,265.54312,1293.5767,224.255
f9f55b02-cf68-4a22-ae6c-03bb6e83d65d.jpeg,face_right,290.85822,132.64249,-545.53925,312.2063,109.257545,-531.2681,322.34058,108.5096,-531.1721,332.9228,107.580605,-531.2107,289.67102,112.36214,-489.14484,282.8234,113.33954,-489.00272,275.85834,114.647484,-488.92847,368.67517,127.5959,-395.94318,291.07947,134.07341,-198.82083,321.99402,162.86613,-497.87366,289.8829,166.05777,-440.44672,494.3296,308.59015,-311.49863,235.03185,313.71332,-58.97287,514.55994,517.815,-255.03726,220.01544,522.00006,26.890074,502.41394,700.5185,-417.3609,204.14499,702.33575,-249.90668,511.93872,756.6003,-470.40118,197.15172,760.0283,-305.2114,486.17352,759.95435,-544.9532,204.51207,764.97095,-396.23987,473.14746,737.838,-441.21222,225.09174,745.22363,-294.59134,437.2548,691.3846,-39.78795,290.20627,685.84143,40.71818,436.91104,957.54913,40.805847,264.05432,936.08453,-101.24207,410.83582,1137.96,546.42834,302.7059,1141.8701,362.80017,398.90894,1148.6394,585.9715,321.56506,1157.4152,395.71832,413.05988,1262.0017,357.67578,293.20172,1269.7886,152.01323
frame__z0u-9E2HmdA__0021044.jpg,squats_down,1392.6389,872.99274,-596.23206,1395.3839,841.1135,-648.2139,1402.5227,837.6209,-648.0437,1409.882,834.13654,-648.2261,1387.5087,841.1482,-552.12415,1387.8977,838.81604,-551.7023,1388.607,837.02,-551.68896,1457.6738,817.06854,-769.20215,1432.0681,820.43896,-331.56937,1437.0992,884.714,-634.7916,1426.9069,887.1351,-506.24335,1624.3151,915.2667,-932.30255,1520.4949,876.36487,-9.67111,1445.6388,1051.7185,-1129.0111,1385.1604,974.68616,452.4739,1249.6116,946.8349,-1035.8799,1263.0006,928.6651,637.7471,1193.584,916.8094,-1129.851,1236.5167,905.47833,684.8449,1219.9886,881.54425,-1128.2273,1239.2064,896.05164,631.0513,1242.6837,893.358,-1033.7507,1251.9818,910.8944,615.1415,1888.2332,1203.6652,-274.10178,1801.8881,1181.8481,274.8385,1723.2667,1357.228,-615.66815,1580.5072,1324.0195,639.9809,1749.008,1683.2042,-402.18073,1619.3108,1570.2302,1065.397,1782.5105,1753.7308,-399.18365,1655.895,1625.7258,1100.064,1613.7046,1760.8972,-643.3461,1483.9124,1639.045,1041.1631
frame__GdxOW-GswaY__0001091.jpg,squats_down,1168.0619,546.609,-74.18532,1157.4982,530.05023,-50.1245,1153.5824,529.5572,-50.162407,1149.8281,529.07477,-49.903976,1158.4983,531.09845,-110.52635,1155.7485,530.5346,-110.37169,1152.837,530.1353,-110.48823,1121.8944,535.11786,52.048004,1125.0493,534.71594,-224.20212,1151.5593,566.1953,-35.5237,1153.1212,566.13855,-113.33799,1057.8776,621.5781,232.05061,1083.3129,634.6613,-371.86578,1164.8907,702.97156,352.02655,1199.3921,747.4661,-289.97736,1224.2716,647.2272,305.94534,1245.0461,651.0141,2.3634405,1243.5509,616.77167,334.8427,1265.453,617.4047,-35.662647,1239.5355,613.8682,314.09427,1242.522,599.42847,-47.571457,1231.2114,628.7009,295.77283,1230.263,616.77594,7.9590745,941.15125,806.62036,194.81866,946.01404,818.3137,-194.29985,1099.8417,755.37604,379.4982,1148.1335,759.0596,-262.14594,1001.9301,892.4003,520.8049,1007.06305,912.30237,-142.87206,967.69763,918.47546,537.17474,965.79114,936.71625,-131.77289,1060.0304,933.1774,599.5958,1048.288,962.9434,-101.40349
frame__SdnNJKUOXsQ__0009920.jpg,squats_down,1271.5388,579.0627,-88.11853,1272.5691,561.819,-74.36977,1270.3644,560.7485,-74.35687,1268.25,559.7979,-74.28022,1272.6475,561.899,-126.19672,1270.2296,560.43256,-126.10266,1267.6804,559.1899,-126.18697,1244.5308,559.4625,44.201828,1243.7117,556.5501,-199.32095,1252.6095,593.4741,-43.94202,1251.6458,592.85223,-112.46369,1162.7343,622.34924,233.10338,1185.814,646.3883,-303.62012,1222.5558,731.9444,277.511,1249.8455,767.7288,-227.76181,1279.5542,672.5185,219.01723,1299.4487,668.7722,65.979935,1301.6808,644.4181,259.42593,1321.1421,638.7071,51.61869,1287.5536,641.25824,273.1966,1299.2596,628.6331,41.705837,1278.3387,655.22687,222.18999,1286.8696,643.2105,72.69864,954.68854,742.4604,177.87663,961.8729,760.37427,-177.29668,1118.5842,734.9052,452.7534,1179.3462,763.6287,-201.33917,1046.1516,876.457,652.0071,1071.6337,933.9223,-202.3867,1017.1367,905.7318,674.20154,1033.4243,967.24945,-206.49953,1111.8512,905.6547,723.44763,1143.6262,972.4708,-203.23158
frame__H0_1sulrkr4__0004974.jpg,squats_down,909.7846,563.98016,-522.2532,918.99365,540.96185,-504.08008,926.92456,538.55884,-503.94354,934.9609,536.1916,-503.91614,900.43317,547.0911,-481.91757,893.9862,549.13293,-481.64548,887.77625,551.3969,-481.47885,955.45935,542.90735,-360.89603,894.8253,562.0177,-261.11588,932.0969,577.2599,-468.28418,904.7363,586.36725,-439.54684,976.3529,626.5865,-500.57315,934.1875,609.71185,30.520285,853.8733,671.4997,-617.12775,818.848,671.1775,17.735498,727.5941,649.5395,-567.9029,731.1341,639.9453,-184.30196,691.9994,642.2137,-647.22394,706.8534,622.6916,-205.70909,691.3517,627.7006,-606.9839,709.7741,616.85455,-246.35448,708.3157,632.64905,-557.17346,719.47095,626.68933,-209.62344,1111.7622,806.07764,-176.79395,1077.2009,777.44684,177.32358,914.13354,825.18567,-203.5704,912.31213,756.0099,336.31253,1004.989,945.5635,111.36931,991.7756,888.9687,560.23126,1043.6165,961.9882,142.47678,1026.1974,904.99097,577.6859,942.5023,982.3944,132.6147,936.15625,944.2183,588.9684
Screenshot_2021-02-11 at 14.50.05.png,squats_down,379.0448,280.25995,-265.73706,384.37827,268.31192,-246.84511,388.7015,267.9618,-246.75737,393.07397,267.58105,-246.67613,371.43317,268.4912,-248.8305,366.71185,268.16888,-248.77432,361.97952,267.9727,-248.8159,397.24133,269.2459,-120.32651,354.30093,269.47916,-127.821045,385.48495,289.67548,-216.90875,370.46878,289.92758,-218.91801,418.7674,306.1129,-80.43823,327.15875,302.1602,-96.91045,459.28073,322.41763,-291.43417,293.8748,330.86154,-333.13342,438.56354,255.22383,-441.1024,339.0724,274.72333,-484.2508,439.78336,232.40175,-484.78378,348.5045,255.85748,-516.6464,432.8193,231.112,-448.39432,354.1424,254.05502,-482.20563,428.69315,241.88486,-434.0938,354.40866,264.11853,-473.60693,399.20123,420.0872,9.100037,342.37985,418.1624,-8.806217,458.64374,446.96033,-387.94193,308.56522,450.15903,-412.51263,434.9775,521.8132,-124.95,313.80502,524.85944,-156.70143,420.89532,533.476,-105.757225,321.80038,537.1974,-138.64354,460.88412,554.95825,-240.77054,300.68488,555.26416,-284.86887
Screenshot_2021-02-11 at 14.45.33.png,squats_down,490.85468,256.64386,-199.85658,496.7931,247.31546,-178.75163,501.62677,247.27359,-178.7355,506.50278,247.15137,-178.82913,483.29425,248.56131,-180.7562,478.18915,249.13347,-180.67511,473.09308,249.86386,-180.66603,513.21515,257.18082,-76.67204,467.2919,260.77148,-82.83062,500.71588,272.44604,-164.95084,483.0802,273.62784,-166.4828,546.7092,318.44458,-45.71454,440.70508,325.96207,-47.51173,604.6376,380.28485,-173.26329,396.52338,387.9246,-164.66502,608.2679,314.36707,-308.60623,385.44446,319.8998,-312.48654,613.49585,293.81558,-338.03156,378.0554,301.8476,-335.49347,606.4191,282.84476,-322.8561,383.89694,291.15414,-325.15454,600.29285,294.6249,-308.3603,392.56305,300.60538,-311.80792,536.5301,458.99326,-0.86516744,475.5592,462.65463,1.1326483,599.93555,399.33453,-247.65138,405.63477,416.91678,-227.66426,570.34344,522.449,-135.00638,430.62552,526.9879,-122.79691,556.3255,542.0815,-125.14865,447.46,548.67206,-113.77427,587.8724,558.359,-213.77402,398.3442,560.2582,-191.85564
frame___0CAcnhL5Sw__0015561.jpg,squats_down,1132.5985,607.4845,-623.79846,1129.3186,591.64636,-589.67993,1130.1295,591.52856,-589.60175,1131.2534,591.5219,-589.2263,1119.0901,591.564,-633.221,1113.0607,590.77075,-633.22845,1106.9028,590.0717,-633.1295,1107.9688,595.3392,-391.92703,1074.9086,590.65326,-592.12115,1117.2603,624.0012,-548.1352,1106.0472,622.76337,-605.7207,1080.2869,650.5406,-252.57408,956.4697,672.5146,-558.9029,1100.6373,779.37683,-441.6973,944.9617,847.5111,-567.05524,1140.9764,817.0601,-862.4929,1079.7267,843.95056,-549.05383,1168.4697,822.837,-944.02014,1115.7515,848.69745,-620.41925,1160.0017,806.73236,-929.3905,1125.4012,815.98035,-604.21906,1140.8906,810.1039,-871.2814,1110.5723,815.55597,-544.45984,951.1403,764.72,102.81899,858.11505,783.8925,-102.840576,1099.5692,763.58655,-17.296085,888.3669,852.83606,-740.06866,1056.3402,888.7666,232.78119,799.82086,1001.2991,-482.3544,1024.3771,905.836,254.93617,775.30475,1023.84216,-468.33978,1112.7117,958.36755,176.35623,837.22675,1082.7911,-694.97894
Screenshot_2021-02-11_at_15.52.34.png,squats_down,1324.1783,564.13074,-284.70593,1338.3168,547.779,-227.29422,1348.0616,547.4344,-227.4071,1357.8589,546.8981,-227.5699,1310.1321,551.723,-221.4129,1300.6865,553.46423,-221.28418,1291.1925,555.477,-221.23119,1377.8806,567.71686,0.6434647,1284.4247,578.5723,26.146513,1347.5233,596.068,-210.86765,1313.2336,600.04486,-203.99815,1456.3508,716.5112,33.376755,1232.2623,728.9849,90.55216,1514.5835,902.6101,-230.69981,1191.4349,928.8232,-210.05205,1379.464,788.12286,-456.6674,1301.9674,796.82654,-579.8254,1341.2921,752.1694,-506.77106,1333.1797,762.30945,-632.4857,1344.9213,725.2481,-432.87244,1325.4664,729.43066,-578.19965,1347.8159,743.20825,-428.6562,1326.46,747.6219,-558.0861,1424.7341,1002.8579,-5.252061,1281.5624,1005.81915,5.7609577,1570.721,999.1766,-732.47437,1135.3895,1021.58655,-665.4549,1495.214,1231.3693,-231.18439,1198.9088,1247.6147,-248.15135,1458.2242,1273.3135,-189.85844,1236.081,1285.8816,-212.90115,1573.183,1295.3661,-408.1654,1127.263,1333.1626,-431.3052
Screenshot_2021-02-11_at_15.46.08.png,squats_down,1247.0944,661.24585,-1393.8031,1259.6661,635.1298,-1350.1426,1269.6625,635.2258,-1349.9893,1279.5405,635.2133,-1349.7509,1231.1665,634.54254,-1354.9949,1220.743,633.83795,-1354.6053,1210.2955,633.3149,-1354.7046,1287.6383,640.221,-1041.9629,1192.954,638.57574,-1072.2786,1261.2379,683.96826,-1275.4884,1226.5397,682.0329,-1284.559,1347.3778,732.4201,-809.6766,1117.0973,748.25684,-831.8703,1403.2832,917.57227,-1242.1312,1096.9026,940.81226,-1281.1434,1302.0685,828.5984,-1768.7245,1198.7797,811.0505,-1793.3138,1265.5017,809.117,-1849.3738,1227.9285,773.17865,-1872.695,1275.6045,763.76056,-1781.5424,1218.9362,743.6036,-1794.4962,1277.0149,775.65173,-1740.9917,1220.6976,758.4985,-1761.4219,1310.9348,897.4014,-4.545271,1177.6719,907.7224,5.038305,1367.2041,968.354,-822.69806,1084.5942,997.4961,-771.95703,1374.8955,1195.2054,-421.29803,1100.7135,1198.457,-339.95236,1367.1213,1222.3794,-393.1681,1115.0355,1231.0436,-313.07748,1385.3131,1292.157,-697.92865,1072.3221,1271.2302,-609.6981
Screenshot_2021-02-11 at 15.08.23.png,squats_down,601.4823,300.8926,-193.0024,607.72705,288.21274,-167.54953,612.7588,287.80054,-167.509,617.86865,287.34387,-167.64716,593.2513,289.55463,-168.91144,587.86053,289.84525,-168.75757,582.4832,290.29556,-168.7119,624.9706,294.45203,-38.120125,575.9531,298.35962,-43.537056,611.82837,313.94907,-148.23427,592.27203,315.3483,-149.81006,655.3757,350.57654,-27.946379,549.61414,354.17126,-25.678207,703.3117,385.4754,-283.23544,510.7867,377.11862,-288.77472,698.4253,339.58173,-528.2323,502.10144,330.2048,-550.93085,706.2885,325.6747,-575.2862,495.4603,320.98416,-594.8292,695.39435,323.58005,-551.5177,502.4127,316.31393,-582.81775,688.57275,332.04358,-526.0425,509.0589,323.57272,-552.42786,641.31604,501.9582,0.13275507,578.16376,503.29968,0.30848327,689.95734,499.4357,-399.05475,530.05865,497.6665,-357.56516,666.6382,610.9093,-230.8046,546.29016,607.779,-211.10484,655.7215,621.1216,-218.84712,557.10126,622.7097,-201.20555,674.4032,662.0191,-352.30072,536.3189,654.1689,-322.30728
frame__0LlT7MSKJBc__0025382.jpg,squats_down,905.5431,513.29614,-987.7725,914.3335,491.75256,-952.0776,922.2196,491.12048,-952.1164,930.0442,490.3585,-951.96796,891.4789,493.48608,-950.4033,882.99896,493.78207,-950.2726,874.4381,494.27295,-950.2489,939.8132,497.8253,-715.6325,860.8796,502.5391,-704.07336,920.13586,531.437,-897.40607,890.13116,533.1743,-893.75507,991.0651,588.39124,-539.97327,815.45526,589.32495,-542.55,1024.0308,741.3166,-751.7199,771.84595,744.8281,-793.35693,925.204,723.0161,-1031.8741,898.0743,734.45264,-1067.4944,893.1207,722.3116,-1103.7876,931.8575,736.1123,-1136.0763,892.5107,698.9355,-1073.834,938.16705,715.5338,-1098.3131,897.1077,701.26495,-1023.0041,931.8856,717.0768,-1052.6774,953.7171,757.9393,-14.162571,862.39825,753.0714,14.556789,985.6748,781.0637,-768.8054,826.1596,789.8714,-706.86316,949.25903,916.64514,-250.79724,843.7774,913.60345,-201.12105,939.2946,932.4753,-213.48827,856.5927,930.0611,-163.12315,954.03784,977.91003,-494.37756,813.4325,976.0396,-418.20966
Screenshot_2021-02-11 at 15.56.33.png,squats_down,598.7415,334.22324,-550.09326,606.78394,318.80124,-529.82355,612.5087,318.50815,-529.7727,618.2018,318.05255,-529.9449,590.276,319.7647,-525.3167,584.64343,319.7728,-525.2441,579.02795,319.95435,-525.49335,627.9871,320.43576,-369.02277,572.26276,323.40118,-360.28845,609.36584,347.24524,-487.45245,590.3242,347.68286,-484.58282,680.1117,379.34363,-234.82567,530.0962,383.7526,-227.7534,738.8294,477.35547,-368.51874,500.39267,466.0578,-355.28397,705.98846,469.04193,-689.1576,497.7375,472.19263,-726.9958,696.6392,467.6626,-769.7129,492.0448,477.2171,-820.1895,691.20197,447.44806,-763.0303,499.0614,459.55893,-825.6905,686.0449,452.4836,-694.7296,508.4492,459.95352,-739.8802,655.05176,504.36734,-2.65769,576.19556,507.45786,3.2754753,740.55273,498.8455,-493.482,490.00806,516.25366,-477.09003,713.4113,636.4712,-219.63928,498.6848,636.8342,-214.11705,697.4339,655.4657,-201.65625,511.1838,657.6725,-195.72739,737.30206,680.6503,-390.1228,475.43985,669.8058,-373.71652
Screenshot_2021-02-11_at_15.47.33.png,squats_down,1248.6019,661.1905,-1274.5609,1258.7994,637.1896,-1222.1648,1267.8271,636.52527,-1222.093,1276.813,635.70844,-1221.9573,1231.0282,639.8414,-1229.3695,1221.1019,640.5338,-1228.9679,1211.1427,641.43665,-1229.0419,1283.0729,642.51337,-918.9008,1194.0719,649.8932,-945.936,1262.9546,684.3243,-1161.5758,1230.9644,686.2031,-1169.712,1348.0011,744.7678,-708.9705,1124.3103,766.07684,-746.3372,1420.0652,904.2651,-1160.5509,1088.9554,937.11224,-1212.6791,1293.9911,816.09186,-1678.26,1200.1138,819.2237,-1677.156,1254.1714,795.07654,-1764.3931,1221.9359,782.2395,-1752.9524,1258.4042,760.6626,-1684.4027,1223.8342,762.4065,-1667.281,1264.6779,774.9029,-1649.4014,1226.7605,778.7087,-1642.9613,1309.6544,919.0191,-0.21771443,1178.1002,932.1115,0.32837373,1397.595,975.60535,-862.57837,1094.1763,1006.3422,-826.3985,1371.9851,1193.396,-445.1643,1094.8098,1206.0641,-405.11966,1355.8363,1227.065,-419.71384,1108.7604,1241.7795,-383.7721,1401.4354,1272.235,-741.9892,1063.6581,1277.0682,-709.5707
Screenshot_2021-02-11_at_16.08.04.png,squats_down,1655.086,441.33994,-1077.4698,1666.5308,422.52158,-1038.4739,1677.0007,422.3569,-1038.773,1687.6979,422.16022,-1038.7001,1635.4354,423.67697,-1033.824,1624.8887,424.57687,-1033.7969,1614.1595,425.65848,-1033.8132,1704.3436,442.196,-770.75085,1601.2201,445.21893,-743.046,1675.7327,472.87073,-979.5068,1639.0942,475.54105,-969.04266,1775.6543,582.80695,-567.7803,1540.334,565.8686,-639.082,1859.3156,734.38513,-1098.3131,1483.7117,728.6386,-1132.9503,1749.4214,604.163,-1652.5157,1597.573,601.5663,-1633.1562,1730.8646,566.93445,-1750.4645,1629.0199,558.4905,-1716.6055,1717.6898,553.0271,-1656.7877,1623.7993,539.1784,-1658.485,1714.2435,573.59076,-1626.9576,1622.6515,565.7442,-1619.7914,1657.1967,826.64496,29.428364,1517.992,814.3529,-28.520206,1822.7081,864.31305,-751.79425,1441.1655,843.955,-983.60236,1759.2461,1075.3511,-295.23227,1476.2892,1086.2292,-445.47513,1719.3619,1114.0352,-263.1834,1494.7843,1121.9615,-407.98306,1837.6619,1159.1678,-526.6806,1467.263,1172.7831,-733.88464
Screenshot_2021-02-11 at 15.22.45.png,squats_down,153.40497,298.40964,-71.10616,157.73853,289.71252,-49.91151,161.2815,289.39822,-49.780277,164.8768,289.0071,-49.692863,146.6259,290.88354,-51.662163,142.64719,291.20013,-51.61157,138.65823,291.605,-51.625145,168.78528,294.23886,61.989273,131.63493,297.45004,57.0344,159.66216,308.1356,-30.627089,146.21487,309.3961,-31.966896,187.31258,335.7477,81.07638,114.1844,334.8186,48.601597,203.62779,365.7629,-104.119576,100.624825,360.49402,-186.19603,146.05135,361.88428,-219.57967,156.3698,336.92004,-322.757,133.90018,361.69797,-253.59457,167.40215,330.78152,-355.65656,126.466675,357.52518,-228.11653,173.39029,331.23407,-323.669,130.50037,361.14694,-214.20311,171.76231,336.9057,-312.86435,179.07642,430.81018,5.9375663,131.35016,431.7813,-5.7596455,234.21082,453.49884,-303.07693,86.74811,454.58865,-311.8192,207.56311,524.884,-60.315044,108.42746,526.7245,-52.187855,193.81674,536.1637,-41.710148,120.639786,539.7722,-30.815187,229.83305,560.6686,-154.82086,85.36002,562.0166,-141.58214
Screenshot_2021-02-11 at 14.52.07.png,squats_down,513.3796,269.7723,-172.91301,517.6315,256.05063,-150.76723,522.1559,255.25151,-150.79951,526.70654,254.50024,-150.78522,503.70062,258.1497,-151.56874,498.9669,258.52786,-151.56178,494.20453,259.06122,-151.67267,532.22095,256.90454,-38.39567,486.39127,262.7707,-25.490658,522.44104,279.11243,-130.40532,505.17102,281.08078,-126.39082,559.1808,296.49518,-93.121544,463.25845,303.79364,-79.547905,580.3184,271.61887,-399.9513,441.57104,299.4925,-378.75943,593.7542,249.8815,-689.5866,422.62845,268.1417,-652.2726,602.6442,242.97205,-766.5175,414.3471,260.71985,-717.9645,589.8119,238.549,-769.3434,426.5655,248.8697,-733.4904,587.1528,245.54784,-705.42523,430.3717,255.76003,-670.6592,551.52875,434.05957,-5.64942,484.6867,434.74045,5.866481,589.9701,438.06897,-423.71274,444.9427,432.16757,-386.75958,572.2305,547.49713,-388.17084,448.91046,551.3273,-354.4179,566.8562,557.4201,-389.76355,452.86978,564.68036,-357.84067,569.04895,595.7639,-538.3858,444.83032,600.28284,-510.27856
frame__8ghtQpeWov8__0007065.jpg,squats_down,1114.1753,599.0659,-325.0323,1120.4558,581.07306,-300.87656,1121.0574,581.19525,-300.85864,1121.8352,581.4395,-300.87485,1114.9307,578.28094,-348.39142,1110.9579,575.0856,-348.4201,1106.963,572.20233,-348.4895,1103.6262,575.0616,-152.00792,1085.5852,563.2513,-372.77386,1099.2871,608.60345,-267.0913,1092.416,604.51965,-328.648,1069.5433,603.2652,46.3011,1017.4955,606.91626,-454.708,1188.5352,634.1548,92.96989,1120.2333,687.17664,-601.7694,1275.189,640.05707,-95.22719,1255.4124,665.8289,-655.3165,1297.2449,645.66736,-108.417,1286.663,667.5876,-732.4752,1289.1382,632.24255,-155.41626,1291.576,645.2094,-706.19006,1277.2186,635.31006,-123.86096,1277.1047,647.72784,-647.4908,929.59753,749.2871,161.92181,881.6737,755.15607,-162.04861,1063.648,731.45074,332.8626,1016.2539,756.0021,-570.4864,1005.4534,865.5733,510.47922,964.61163,920.85114,-518.2354,977.50214,888.176,530.08813,936.89087,942.5167,-512.99426,1051.9775,905.89233,499.96423,1030.8724,983.407,-652.0945
frame__jBY85tpUliY__0022348.jpg,squats_down,1000.5394,530.60986,10.133388,1009.2359,515.90314,-25.887436,1012.23016,516.2792,-25.708406,1015.38885,516.6245,-25.678762,1008.23413,512.68866,34.95655,1009.8262,510.7725,34.980824,1011.48755,508.98233,34.77438,1038.9468,522.52936,-124.2231,1034.979,512.3948,144.39056,1015.3176,548.1575,-25.63961,1012.10266,544.4349,51.75706,1100.2998,600.82495,-281.3387,1061.8727,596.0955,267.60022,1024.8938,719.1773,-264.68927,1036.5166,699.59985,50.09436,1004.9999,615.8464,-41.522884,1018.0983,629.822,-344.73337,994.501,591.37274,-41.74288,1002.8611,610.62067,-376.6477,1020.6411,591.5655,-61.213432,1014.45764,602.564,-347.91196,1029.3164,601.91125,-39.145634,1024.7328,610.49255,-344.66858,1185.7109,793.9514,-163.49889,1146.802,782.36957,164.1517,1025.8337,787.55615,-286.59235,987.24097,758.397,239.79497,1113.2783,928.3765,-109.766685,1093.7375,882.2976,205.37796,1152.0487,943.0571,-84.69401,1130.0883,895.81616,205.06053,1060.7875,989.747,-85.43549,1052.6277,940.627,213.9099
frame__4zBnM_uozXM__0001262.jpg,squats_down,840.8986,206.8699,-192.44792,866.67,186.89203,-211.64674,874.1532,186.84413,-211.49423,881.74084,186.54898,-211.30199,857.7738,187.52519,-146.88356,857.98785,187.93532,-146.87206,858.3085,188.85901,-146.6956,922.8648,201.36919,-242.56161,890.4652,203.0845,40.475376,865.65735,236.38065,-207.53918,853.0137,237.254,-125.22462,972.5442,325.42313,-368.58813,915.8441,354.53485,176.44815,801.4396,445.0818,-482.82675,793.0442,473.85306,189.01425,614.64465,522.4231,-444.2086,641.5223,532.1866,130.86674,573.9919,533.9589,-507.79868,599.7275,530.6298,153.4935,570.6477,519.69586,-487.74078,590.24207,523.2528,107.86929,587.8041,520.3989,-438.0755,606.57605,531.3767,107.452286,1134.4026,609.8062,-151.39061,1064.21,615.2819,151.86574,1009.5495,575.753,-692.2734,849.87256,610.52094,70.89315,1072.8279,817.22327,-503.5362,946.83307,788.5366,302.5108,1100.8331,860.28973,-496.04874,992.47034,816.68695,323.1848,965.6173,878.8489,-702.5543,844.0283,853.46356,264.97156
frame__yWky9j7mG2Y__0013256.jpg,squats_down,971.3902,546.87775,19.758244,961.8314,530.6922,39.4982,958.56445,531.1777,39.55802,955.5079,531.7633,39.838543,963.1627,529.0622,-14.587221,961.1506,527.66406,-14.581621,959.05566,526.52344,-14.785871,931.2681,541.5903,146.60211,936.2124,534.0659,-104.67293,957.54553,568.95935,51.45538,957.6008,565.57355,-18.586046,891.7641,657.7975,282.6661,893.9559,653.94714,-273.83038,937.00146,790.9996,134.5656,952.6945,798.7621,-123.819565,962.41724,685.0459,-249.30951,973.2875,681.22424,235.16573,972.6497,648.3116,-275.79474,980.67456,641.90826,240.30176,953.75366,636.63306,-240.0943,959.58856,628.671,229.04749,945.2053,648.9315,-247.71094,952.8823,648.18427,245.17215,762.81866,871.7478,189.82549,752.47687,866.9699,-189.3076,973.29987,802.0182,222.99933,985.46747,767.0479,-208.18513,872.4319,950.45105,199.0692,865.5142,971.6769,-125.61565,845.54956,972.4102,199.68776,826.961,1002.96875,-114.8688,920.5746,983.13464,219.79143,913.87726,1036.0814,-87.489784
frame__TmsDaoMsHDk__0004413.jpg,squats_down,768.9279,359.2276,-351.6554,770.02264,348.34592,-324.95242,771.6655,348.9594,-324.98264,773.40173,349.63553,-325.07047,762.3829,347.01392,-354.5558,757.79443,346.05103,-354.5122,753.3125,345.3236,-354.54163,761.7444,355.0978,-185.7483,737.95215,349.9604,-323.1856,765.5481,372.96442,-299.7627,754.8375,370.55734,-338.29175,734.67444,403.9808,-1.6745483,709.30493,407.84613,-400.6922,823.94073,411.2882,38.358643,811.4697,438.53876,-491.88297,908.1674,396.50146,-98.10556,909.7162,418.017,-521.7931,929.6023,387.08176,-111.01628,932.95056,413.6625,-596.925,925.5448,382.53656,-156.08138,931.9768,401.56335,-578.3394,917.4253,388.6852,-125.02349,921.8674,405.20096,-518.87463,653.3739,540.4656,120.60574,629.078,554.3023,-120.45447,749.0827,546.3853,280.40955,753.72766,587.00494,-286.02298,689.8654,632.3987,432.7028,670.347,665.5666,-131.95273,668.7593,645.3306,445.63275,644.70105,671.7765,-115.82239,724.10516,654.6396,464.84735,696.17706,687.0005,-124.190765
Screenshot_2021-02-11 at 15.41.25.png,squats_down,501.15585,244.38379,-377.73166,505.60184,234.13576,-348.28177,510.08774,233.92781,-348.16876,514.5654,233.59998,-348.19754,491.7399,235.37836,-347.79025,486.6645,235.7189,-347.56018,481.56433,236.21194,-347.61255,518.0639,238.7083,-197.97969,472.38745,242.43407,-196.63228,509.03674,256.89246,-323.40817,491.80142,257.80817,-323.277,554.3942,300.20056,-155.92816,434.41608,304.31094,-139.31894,588.3413,380.2718,-403.87976,413.8884,381.78973,-380.70047,528.66113,351.8618,-681.2374,472.5594,346.27878,-664.13446,512.12445,347.57617,-735.53827,485.78848,339.9898,-718.0356,510.7146,331.46448,-704.5059,489.79684,327.93277,-687.8681,513.23236,336.37314,-673.19214,489.20773,332.60284,-655.56146,535.1963,439.72498,-10.495137,463.59186,446.4394,10.8941555,589.3977,465.40045,-487.19836,414.81393,482.6587,-454.69974,567.4818,594.5466,-262.5658,434.30072,603.29865,-245.39835,557.6291,608.819,-249.77977,445.68896,620.9488,-232.77214,574.90985,648.2491,-435.99963,417.53787,647.8501,-409.0354
frame__Qzd8oJyKQaI__0010512.jpg,squats_down,1094.2374,501.91064,-39.965782,1081.9769,486.76126,-20.962868,1078.9244,487.08203,-21.00233,1076.0039,487.44458,-21.100424,1081.5215,487.5629,-75.90349,1077.9042,487.79813,-75.8473,1074.2949,488.2365,-75.81557,1050.7501,499.52753,81.81227,1046.8689,499.25336,-170.14484,1081.949,524.2716,0.25939488,1081.3163,524.81757,-71.839455,1006.9196,613.6358,235.53583,1016.525,602.11346,-293.5395,1120.3136,680.90314,241.50595,1134.3146,696.0107,-246.37459,1172.659,594.7687,144.24194,1177.0426,597.9835,4.884103,1186.6119,558.5457,148.225,1195.1954,562.64435,-37.62065,1180.4497,552.3881,136.38225,1170.7931,551.6139,-37.66852,1175.31,568.4646,133.47531,1162.9282,568.9351,9.846618,905.2439,831.38617,174.98445,900.41797,830.09314,-174.28018,1056.7101,799.9371,391.2307,1069.0834,806.09247,-278.90195,991.2877,943.4735,519.9217,979.07855,988.1311,-260.97406,962.29626,965.3913,526.73865,944.86566,1012.61255,-258.23944,1036.3501,971.28107,549.67285,1027.6064,1026.4744,-271.4128
frame__zbt1g9WX6bA__0016235.jpg,squats_down,1842.5702,1248.7737,-1789.3533,1863.1316,1199.6272,-1764.4834,1876.0095,1198.0524,-1763.647,1888.6521,1196.0378,-1763.8167,1825.8315,1199.3466,-1755.0764,1813.9631,1196.9515,-1754.7736,1802.0071,1194.9995,-1755.3804,1915.736,1181.2822,-1369.8738,1789.6466,1178.9984,-1342.435,1865.6586,1267.5842,-1624.6694,1828.2922,1266.7748,-1618.5734,2024.0929,1299.005,-909.5443,1696.4525,1277.2764,-898.32733,2055.3599,1552.7284,-1361.8024,1637.9974,1511.4644,-1350.219,1895.5594,1479.7115,-2145.9824,1773.0851,1484.3638,-2113.8423,1849.7626,1445.693,-2346.8071,1814.6964,1469.1567,-2294.0151,1852.8914,1401.3519,-2259.4304,1818.8728,1429.1846,-2225.6917,1850.2756,1413.9829,-2133.842,1819.2391,1438.3198,-2100.696,1932.357,1544.8632,2.3622065,1749.5298,1531.008,-0.77577025,2105.4219,1579.398,-1283.7897,1610.8986,1589.7533,-1236.8882,2099.7368,1891.6628,-601.63837,1592.5756,1892.5016,-601.46155,2077.27,1949.3596,-553.9591,1614.1704,1951.935,-566.72015,2158.729,1994.3552,-1018.4856,1530.4493,1984.3252,-1053.3572
Screenshot_2021-02-11 at 15.48.09.png,squats_down,624.27527,403.58105,-277.0543,629.2763,395.30017,-253.57156,633.2934,395.4029,-253.58818,637.3639,395.41544,-253.58757,617.0528,395.40353,-257.07297,612.5671,395.41504,-256.9379,608.0665,395.53204,-256.91992,641.80475,401.46094,-128.92778,599.71155,401.38364,-144.1008,630.5617,415.01437,-231.12083,615.4874,414.82996,-235.5798,668.41327,443.2959,-108.00967,572.9466,441.2597,-140.07808,696.2183,486.65292,-331.47522,569.2205,482.13428,-376.8874,633.6216,489.10635,-486.88815,632.15485,470.57526,-538.0562,618.85815,494.49017,-518.5047,645.6546,471.2415,-574.2084,610.05365,487.30884,-492.36295,651.41907,464.57175,-549.4058,613.55994,489.60776,-479.44678,648.55945,468.75082,-529.5911,648.2463,543.68744,6.1409025,586.8566,543.1594,-5.830591,691.53235,556.61584,-354.85385,550.08154,551.992,-391.7371,674.63617,661.008,-200.56746,557.56683,658.08905,-215.58441,662.5328,679.2334,-192.49562,566.2023,677.25995,-204.93855,698.3844,694.87665,-321.04712,539.526,691.60077,-337.50717
frame__bXyhN4CK0_8__0006178.jpg,squats_down,990.27594,370.8922,-747.82043,998.53625,343.70847,-712.4156,1008.7342,343.13632,-712.30304,1019.0657,342.41248,-712.402,967.90704,345.2218,-727.9385,955.2701,345.408,-727.8012,942.62195,345.81863,-727.42395,1019.39734,355.97705,-457.28235,915.7251,360.23138,-509.56827,1002.7454,398.68195,-651.1565,963.0385,400.37106,-664.8473,1064.3472,456.75745,-327.34888,849.45575,482.27917,-374.79694,1170.5876,550.1345,-614.34344,845.1011,648.4962,-621.8459,1273.7686,505.755,-1044.701,834.97974,511.3293,-1030.5952,1321.4512,490.9889,-1123.8551,821.70776,471.32483,-1115.3989,1306.5156,483.47964,-1152.2782,823.1419,441.44736,-1100.9932,1282.977,494.87387,-1074.5702,834.81824,457.1989,-1039.1812,1015.5921,744.85236,10.196785,880.35175,754.73914,-10.118269,1220.8246,820.70764,-469.2521,701.1951,873.9758,-364.34094,1148.4753,947.36786,92.60675,703.94946,951.8097,231.8034,1105.0006,962.12354,140.11748,727.54877,967.31067,283.7491,1215.6136,1061.2205,-12.647047,641.4751,1038.8987,132.90741
frame__ohPA6wqX24o__0002899.jpg,squats_down,1108.9998,486.11484,-532.2491,1109.6182,469.59784,-512.4155,1111.251,468.61588,-512.3662,1113.1608,467.77844,-512.2274,1100.2457,471.19644,-553.64935,1095.2152,471.09924,-553.57715,1090.1896,471.16644,-553.7223,1098.9208,470.99753,-343.90424,1069.7329,475.32303,-530.6117,1102.9348,499.30624,-466.05762,1091.7067,501.42682,-517.43994,1066.1926,532.33386,-104.0911,1006.56683,541.5618,-555.2438,1056.9081,628.65076,-97.668236,999.3781,684.10724,-584.99664,1092.9807,581.8728,-322.9349,1084.5795,595.4673,-482.83643,1105.8105,568.35144,-353.72488,1114.759,576.2436,-501.5153,1102.6626,555.0794,-351.756,1100.8057,551.23865,-501.9235,1095.7765,560.4179,-328.78726,1092.642,560.4027,-475.28375,919.5298,662.76056,167.34627,877.84076,675.6361,-167.59216,1072.2743,693.2039,15.694948,1028.6074,742.2324,-344.19226,963.6281,841.65,131.08055,921.4596,871.9405,-223.03104,923.5814,861.76154,141.66135,877.6502,887.05365,-211.35309,1009.992,893.4213,89.901344,976.8363,920.4464,-273.49432
Screenshot_2021-02-11 at 14.31.53.png,squats_down,453.13733,235.61917,-76.99778,457.30728,228.82895,-67.251785,460.1938,228.60936,-67.20818,463.10968,228.3469,-67.242096,449.24747,229.6674,-67.22755,446.43848,229.85077,-67.20269,443.61804,230.11786,-67.23365,468.1537,231.80481,1.1062067,440.59717,233.72986,1.5849648,458.61215,243.53723,-50.82246,449.15717,244.3745,-50.415997,489.8405,263.93378,20.370827,421.56076,266.96487,23.421638,501.5972,309.19806,-62.049854,416.11,317.5782,-57.78272,470.73172,305.00528,-169.70416,435.2927,308.30673,-176.17876,462.39487,309.10873,-191.34508,439.00455,310.807,-198.95847,459.5435,299.8072,-189.61368,443.56036,300.23737,-197.5875,460.92816,301.4959,-169.92076,444.53775,301.90533,-176.31746,477.93857,360.2591,2.96293,433.50192,359.3228,-2.9242108,528.20166,352.8271,-212.63042,396.68036,352.69977,-220.2818,503.17056,442.01416,-203.3919,422.98367,442.53772,-207.76318,490.14856,458.108,-204.47194,434.30304,459.07672,-208.22011,521.32874,461.32684,-279.07697,409.74445,464.4457,-276.7737
frame__TwOuh73cGGQ__0017921.jpg,squats_down,1092.5504,564.59436,-256.75186,1102.1511,545.50214,-251.44612,1108.7836,545.26337,-251.35114,1115.4219,544.93414,-251.42029,1084.4851,545.3614,-253.06543,1077.821,544.6264,-253.08417,1071.1481,544.03656,-253.19354,1124.6255,546.81696,-162.7973,1063.0559,545.15857,-167.68289,1103.1605,578.3833,-219.53244,1081.6686,577.4757,-220.53893,1160.1377,598.1888,-79.683174,1020.8525,606.1649,-101.561134,1182.6,718.05615,-132.59613,1028.6659,742.97815,-174.91005,1121.6409,631.4607,-183.55576,1077.5767,636.7157,-267.04712,1101.5016,608.17786,-187.51643,1092.6691,607.10254,-275.09348,1110.8324,587.0406,-167.1507,1079.1724,586.19055,-251.3699,1111.4911,597.93066,-175.27484,1081.8856,597.89087,-256.45242,1129.8018,764.83716,2.632266,1051.178,765.0479,-2.7200825,1215.274,756.2506,-280.11868,948.3064,756.5281,-189.11296,1191.7325,899.2814,-162.14801,971.06824,885.328,-86.0927,1173.496,924.2593,-151.47404,993.3439,911.86194,-78.76493,1228.7399,941.72754,-245.4585,912.97455,926.7973,-141.48123
frame__bXyhN4CK0_8__0006978.jpg,squats_down,989.343,365.8959,560.29224,972.385,349.84195,511.90704,961.0998,351.77405,512.2516,950.124,353.92252,512.09955,1000.81366,346.20197,500.22693,1010.9459,344.26596,500.32355,1020.90674,342.54114,500.31622,932.3676,374.83914,258.85336,1032.3163,358.2283,229.68018,972.1747,388.0431,469.86044,1001.9086,382.15353,460.27036,859.76215,517.19543,-54.48269,1093.9452,487.28546,57.749897,867.2225,666.9038,-550.8543,1072.6205,585.5484,-391.9955,930.5266,763.1941,-1061.6428,1024.0829,696.87646,-848.8563,943.0165,773.20544,-1134.8735,1003.51685,710.16736,-920.86646,952.5622,776.4444,-1142.6252,1004.67303,722.9782,-892.7481,955.45685,770.7863,-1084.7754,1010.06744,719.2762,-854.9464,935.52405,817.08026,-72.14664,1078.4695,823.8071,74.68574,784.47375,727.38367,446.23907,1176.3816,720.67413,613.04816,762.73914,973.9903,376.4722,1240.4364,974.6929,393.5676,772.6015,1014.59106,373.2089,1245.5143,1012.8508,379.18237,711.30286,1001.9441,465.66666,1246.774,1007.7183,562.82684
frame__mGvzVjuY8SY__0006600.jpg,squats_down,767.5169,539.7567,-135.65251,773.4417,521.13776,-178.14027,776.1825,521.43884,-178.10031,779.21625,521.7086,-178.08908,772.86487,517.1537,-109.25431,775.0003,514.3804,-108.96877,777.37256,511.76196,-109.07788,805.7445,523.14465,-270.71146,805.4432,509.0255,42.53771,787.79724,558.0544,-170.66132,785.88873,552.7065,-81.18736,879.98083,613.87616,-437.90964,877.8759,609.5532,236.45332,817.83276,769.01575,-285.39615,836.3237,746.1549,52.810028,768.7013,664.2192,78.511086,783.2128,675.80817,-326.9189,736.27075,644.80725,64.567505,756.30255,657.9515,-362.46558,772.5507,628.12897,21.7108,772.87305,642.2283,-326.51254,793.4065,635.98126,74.67333,785.652,646.4765,-328.55096,1070.7783,782.72644,-221.66852,1045.7919,761.25433,222.13809,875.49835,759.4296,-435.5913,849.39996,754.0045,427.53778,972.9695,977.2159,-344.04184,959.50085,905.9111,536.1488,1020.2702,1011.3409,-335.5863,995.9618,923.5955,546.8353,895.7348,1032.8347,-355.25223,917.83905,978.6541,570.6621
Screenshot_2021-02-11 at 14.43.14.png,squats_down,413.6328,216.95428,-585.766,421.30292,203.7379,-572.7184,425.92606,203.54205,-572.7323,430.56992,203.24251,-572.55994,408.38992,203.69063,-570.10895,403.96866,203.26212,-570.0896,399.5394,202.90953,-570.10736,439.26093,204.71587,-453.68893,395.71234,203.8632,-437.77835,422.56232,225.9776,-538.62823,406.54196,225.56264,-534.0704,470.15396,247.83838,-362.71777,367.83444,247.6376,-329.50357,464.68887,343.47946,-367.4318,377.23123,345.30878,-324.52728,450.01834,412.53674,-429.37067,389.90472,417.83282,-372.38965,454.87744,432.76584,-469.89886,385.42462,437.58582,-395.89258,442.1196,430.81256,-491.7742,392.9479,437.8479,-426.74304,437.58093,422.66534,-439.97864,398.7035,431.15256,-384.73486,447.8731,338.82904,-4.584144,388.48947,337.31403,4.533007,524.98346,375.14233,-340.1128,320.8262,372.85767,-336.86942,518.0436,461.48267,-72.82497,320.4454,461.49744,-55.57408,505.7497,474.76797,-50.80879,330.56387,476.86823,-32.33037,549.73895,503.9007,-162.01411,294.92935,500.39832,-148.25334
frame__jaWXM1wCBxE__0001186.jpg,squats_down,1043.6482,459.39023,-918.77234,1055.2019,435.86258,-895.45514,1063.2412,435.64172,-895.542,1071.3844,435.2965,-895.57623,1031.78,435.06317,-899.74133,1023.19037,434.1708,-899.6097,1014.58386,433.3641,-899.58685,1080.0133,438.04294,-687.4573,1001.55066,434.8236,-712.13245,1055.647,477.2816,-835.23334,1027.6517,475.78336,-841.9164,1135.5479,517.8053,-476.61075,943.54144,523.53937,-501.53104,1166.6703,681.9066,-622.55817,918.946,693.8266,-663.42206,1093.7885,632.1407,-942.00696,1010.3906,629.3432,-973.2464,1067.8665,620.31775,-1012.63995,1048.5233,614.6598,-1036.9404,1070.9519,588.2838,-982.47504,1035.8535,577.50464,-1009.1543,1072.4634,591.30383,-935.45447,1031.915,583.98895,-962.46313,1098.9617,664.3688,5.082643,992.9853,666.9227,-4.8655295,1148.1078,797.94214,-597.41876,962.45074,798.93884,-504.6297,1127.8237,992.82733,-285.97162,955.51,975.33655,-208.4352,1112.6263,1019.1901,-266.159,962.4204,1002.7215,-191.88345,1144.3134,1059.7169,-511.4995,933.3868,1036.5151,-434.48038
frame__QfAY5JsB7qY__0004997.jpg,squats_down,827.8745,544.50134,-481.11844,834.6437,529.1037,-491.19553,839.1206,528.3381,-491.09528,843.641,527.523,-491.18832,826.83374,530.23376,-445.35452,825.807,529.9055,-445.1677,824.8945,529.9109,-445.17578,862.6448,524.7773,-482.80402,838.4945,527.1705,-280.4576,845.0588,554.2123,-476.832,836.4902,554.3574,-417.48303,928.2577,567.85406,-549.2507,844.87524,585.08606,-204.22981,875.877,542.18365,-815.2931,758.64856,544.42145,-277.96704,799.7831,451.0301,-997.4953,667.6539,474.31055,-421.638,785.95044,423.3393,-1081.4995,648.75275,454.0892,-462.41846,789.4848,418.33917,-1065.7129,647.2007,450.92664,-495.32285,791.05756,426.32245,-1000.62823,652.9674,457.3546,-444.99005,1012.2385,737.73413,-108.59327,956.62195,741.42413,109.17361,960.04224,824.85944,-485.4392,868.47906,809.73895,-203.3689,976.0479,950.25116,-293.89014,913.011,927.6262,16.778923,987.9418,978.4318,-287.3252,942.5128,950.4544,31.529367,919.49396,977.1343,-498.72104,830.58765,971.5299,-104.7394
Screenshot_2021-02-11_at_15.58.45.png,squats_down,1311.2657,486.85712,-391.41278,1328.5885,464.59473,-341.8008,1339.6895,464.7492,-341.70386,1350.8394,464.7458,-341.9129,1298.8057,465.7086,-335.98676,1287.984,466.1022,-335.7339,1277.16,466.83954,-335.45154,1369.9493,486.05905,-91.04324,1269.6171,488.85635,-56.379204,1335.0225,517.4302,-306.50043,1293.6454,518.1983,-295.97495,1424.7849,618.00287,-89.061356,1224.8024,630.0059,-10.143835,1392.3008,777.4915,-584.91974,1250.2422,784.38965,-398.85223,1406.4741,640.3852,-1012.69366,1248.2333,640.3884,-748.0418,1429.4275,599.84735,-1085.0991,1239.6345,605.56335,-789.26306,1437.7144,605.75397,-1048.912,1222.6995,588.67883,-745.35095,1420.8372,617.7124,-1007.77527,1232.2635,601.7114,-733.5063,1392.541,931.46,-7.416791,1275.2573,933.18085,8.276925,1433.2916,868.4438,-874.2557,1172.0374,888.0492,-789.56195,1415.6292,1072.4432,-323.32178,1202.2721,1086.8002,-319.75363,1401.1812,1095.1041,-274.9936,1225.2368,1108.4043,-279.7825,1442.3225,1170.0607,-522.85364,1161.2008,1183.457,-521.46075
frame__jPO_jp4Sb00__0027689.jpg,squats_down,854.85724,467.8695,-214.59149,866.9403,445.65677,-191.6688,875.1097,444.82135,-191.64786,883.3098,443.8492,-191.62555,846.3203,447.43207,-175.96431,839.1871,447.31696,-176.03749,831.9338,447.45193,-176.01662,900.74884,448.99292,-42.94878,830.4717,452.78412,40.336746,873.3042,485.18625,-159.58566,846.7563,486.7178,-136.1122,960.6601,528.01074,43.429432,793.4189,532.5747,100.18698,996.08057,645.07983,-170.46114,727.03564,652.5033,-196.18436,899.9622,534.72437,-244.51158,807.5465,516.7565,-408.21143,881.75214,499.5668,-276.78616,820.3957,476.97604,-449.55206,877.8218,491.3146,-204.83015,828.89746,466.19922,-378.36194,877.8526,507.05826,-217.74239,834.7016,485.47665,-383.94495,930.8922,730.0178,-24.741228,830.3826,727.8161,25.178083,1000.6939,729.0288,-699.7173,730.07245,714.896,-610.50037,958.72876,864.6268,-272.40625,783.3949,857.4257,-251.41763,945.1587,876.76465,-235.96436,808.5622,873.4479,-220.30986,960.5818,945.8714,-467.78802,753.93445,936.1236,-425.01093
frame__miPKBTdcCIY__0004615.jpg,squats_down,950.7256,520.30286,-329.04395,953.7736,500.33,-307.4592,955.1888,499.24463,-307.3928,956.773,498.18506,-307.45306,945.1149,501.54877,-350.14224,940.5851,500.8578,-350.01498,935.95013,500.34857,-350.0916,945.82666,499.74155,-164.7455,918.27045,500.81808,-350.29486,946.0523,534.2376,-271.05768,935.856,536.04193,-321.5982,917.13763,547.0414,76.7807,862.0102,580.42664,-429.98355,1009.7594,601.3036,223.77827,891.7136,696.6219,-482.29993,1005.7799,559.34863,194.14331,948.78705,568.4566,-321.3089,1010.0617,551.9366,194.31323,979.00256,541.89246,-335.55737,990.0792,543.7148,188.79782,956.40857,518.11694,-351.8969,984.4464,555.21924,187.75276,942.91797,531.0064,-320.0301,759.8293,730.95984,187.87958,730.79565,749.6824,-187.94278,921.9984,699.199,256.42126,918.3546,717.4311,-285.8407,848.40356,854.1138,362.1913,815.7965,865.17035,-183.46725,811.81915,880.07666,372.96127,768.9418,885.7797,-172.81215,911.8554,902.86115,358.761,888.70264,917.0441,-193.846
Screenshot_2021-02-11_at_16.08.47.png,squats_down,1724.9965,379.9945,-1093.0465,1732.5193,360.5672,-1043.9113,1741.1598,360.81845,-1044.1481,1749.8657,361.03024,-1043.9668,1704.5812,360.43942,-1058.223,1694.2495,360.62933,-1058.0547,1683.7141,361.1202,-1057.7952,1755.8607,377.6913,-728.4744,1662.4418,376.63535,-789.26935,1737.27,409.87576,-978.8168,1705.0264,410.6694,-994.3002,1816.4841,511.31134,-513.7256,1588.4037,500.49048,-633.04315,1908.6816,675.04956,-1021.43787,1549.953,681.2221,-1041.7178,1815.6975,538.6462,-1587.857,1667.4712,534.9215,-1317.7993,1798.9177,498.0466,-1689.889,1700.1217,482.86557,-1381.5946,1787.3323,479.59622,-1584.4454,1689.1368,463.58044,-1325.1432,1783.4623,499.7563,-1557.309,1691.3319,488.0785,-1298.6428,1713.5706,747.50775,45.16657,1577.4437,741.1995,-44.540546,1860.5306,813.95074,-689.8626,1508.7535,792.15454,-1133.978,1807.0055,1016.5664,-245.3226,1530.6272,1041.4556,-577.58374,1770.3417,1057.3702,-215.54115,1542.1042,1079.9918,-540.9818,1897.6538,1093.2146,-476.62302,1515.479,1121.4316,-909.8044
frame__8ghtQpeWov8__0013922.jpg,squats_down,1158.8892,572.87823,-122.235115,1167.372,558.91046,-99.728714,1166.0607,555.7301,-99.727585,1164.8931,552.7236,-99.6708,1165.5194,563.67285,-153.2725,1163.2195,563.0624,-153.20198,1160.8091,562.79974,-153.26218,1144.804,550.12885,-9.083175,1140.503,561.79297,-257.3049,1139.7065,579.77026,-87.04987,1137.8301,583.9346,-157.33919,1074.606,564.3167,167.88835,1057.3665,606.46387,-417.53705,1208.3384,576.34784,276.54266,1161.0267,661.58234,-692.9588,1289.9343,547.1121,145.17728,1283.196,622.9178,-768.2962,1305.4735,532.0347,152.67377,1323.2246,614.4229,-847.45056,1305.0581,525.2318,83.956924,1308.0634,590.26624,-820.70764,1299.1066,539.25354,113.98917,1293.6866,594.2685,-760.3099,866.2212,729.01544,202.39432,851.624,758.3746,-202.04306,1078.5286,719.4229,361.69833,1081.7821,762.4579,-269.9044,961.85956,856.4736,691.00116,974.71484,914.1584,17.952316,930.2166,871.2321,725.0413,941.1721,932.09753,45.501106,982.2664,906.78204,793.9116,1011.4588,964.5929,62.581673
Screenshot_2021-02-11 at 15.41.06.png,squats_down,373.70682,248.9057,-266.52054,378.90527,241.64755,-246.3396,382.66336,241.67445,-246.36345,386.50748,241.62744,-246.35207,367.8516,242.15016,-245.56453,363.99014,242.43465,-245.43123,360.1014,242.80116,-245.44046,392.71036,249.52763,-135.07803,355.18414,250.80542,-133.593,381.52258,260.78568,-226.19815,366.8491,261.15973,-225.56789,418.33688,305.26047,-86.85582,332.08047,300.34906,-83.65503,428.99368,362.05542,-157.65152,305.60596,352.29645,-164.18396,412.04803,388.67892,-349.1962,340.0248,382.22495,-350.31503,410.51608,400.77988,-398.8857,348.5068,398.52267,-397.33633,402.78238,392.76688,-406.90137,358.47882,387.82425,-403.8358,401.85052,388.85263,-357.47958,357.1777,383.83554,-355.48358,400.95584,413.95438,0.43306512,348.7867,411.74005,-0.18693057,435.63773,449.78397,-298.90182,307.96036,440.94327,-334.9341,424.06497,531.74457,-62.20473,314.69635,524.19183,-85.4974,416.36087,542.3736,-44.665085,324.5519,535.9486,-65.8223,434.8122,569.7874,-157.79276,291.31354,560.03564,-180.9462
frame__dCNS-QVXa6k__0022882.jpg,squats_down,1062.3062,385.67206,155.8595,1053.8481,367.16556,166.492,1050.1206,366.02505,166.68127,1046.587,365.06143,166.61667,1056.3123,370.1233,108.493645,1054.6975,370.65463,108.78315,1052.8455,371.3401,108.82379,1027.6184,375.57233,242.06683,1036.6776,381.55252,-28.530022,1051.303,406.11765,189.65024,1054.4749,409.5164,112.55179,963.8379,471.195,448.84335,1026.9922,474.91818,-196.53716,1091.2766,543.6611,568.85693,1155.3201,548.4517,-133.74316,1181.4098,514.98267,463.1337,1213.5956,516.0735,265.69122,1207.8616,490.48846,472.40033,1236.6055,490.38556,240.97775,1201.9749,484.50073,421.72128,1227.968,484.02097,277.46588,1194.0131,495.82672,440.5439,1219.3008,494.4786,287.34894,780.8424,658.521,220.97195,817.4846,667.35394,-221.02615,941.9776,733.2757,600.99475,1026.926,775.5174,-183.04492,881.3534,903.59906,893.5817,968.7584,971.8642,-117.57597,855.2072,936.25903,924.35913,934.14685,1004.1353,-107.7777,922.56335,923.6051,1003.87506,1042.6344,1008.77515,-81.717995
frame__dCNS-QVXa6k__0011204.jpg,squats_down,1124.0336,302.49496,108.68337,1113.0438,285.53418,115.656494,1107.973,285.41058,115.69397,1103.0833,285.38965,115.75951,1118.4744,286.55713,50.935013,1116.4794,286.61087,51.146416,1114.318,286.88025,51.00209,1075.8579,298.39703,203.56342,1090.5616,297.9363,-101.33919,1107.7988,325.357,144.69943,1113.486,326.80496,57.025723,1002.1852,399.08237,427.75745,1062.2544,413.5613,-265.12823,1102.365,509.7697,636.6071,1174.8164,522.89575,-121.14073,1152.2963,441.29144,786.52136,1169.7917,432.88248,320.1809,1176.8348,412.23965,824.3711,1176.5708,399.9946,288.58395,1158.7115,409.76996,819.1322,1164.6932,400.8157,281.5561,1146.4857,422.2631,786.46045,1157.2275,419.29004,326.06866,811.34753,597.81683,227.69136,842.0999,615.5526,-227.44675,997.4154,664.37573,619.533,1067.0476,733.1374,-229.8458,913.7407,856.06104,851.3019,966.5418,916.8826,-152.11728,878.8626,891.4702,883.5786,926.2631,951.66925,-145.79279,991.184,897.09955,989.836,1064.4578,958.1191,-110.39269
Screenshot_2021-02-11 at 15.24.49.png,squats_down,558.33215,330.0757,-491.0152,565.52747,315.01227,-485.34036,569.9653,313.58765,-485.34418,574.5371,312.0815,-485.46436,552.4009,317.70367,-477.83954,548.26825,317.9178,-477.5919,544.0681,318.28955,-477.53796,583.9127,305.87506,-385.06516,543.1779,313.63742,-344.83786,568.3184,335.54172,-446.49716,555.7554,338.27585,-435.00278,628.3156,345.10367,-339.4851,511.55716,341.96024,-289.8909,624.92163,406.84,-604.60156,472.29898,408.16724,-553.52405,573.64734,337.24335,-751.6866,532.30084,333.17062,-727.5572,567.9777,315.17786,-789.97614,538.4195,305.696,-754.31146,566.222,307.05954,-747.64746,547.8038,303.04056,-702.7627,566.0013,317.51373,-736.4553,550.5864,317.4385,-709.0652,604.33405,492.11182,-12.062526,527.7508,491.96155,11.977373,716.32495,485.75803,-357.1276,436.6627,488.07843,-281.6908,707.982,606.49615,-171.22115,440.24942,611.3217,-88.93191,691.5793,632.18555,-158.86603,454.85995,638.7245,-77.22438,748.64087,648.5559,-280.5047,399.4791,652.78357,-182.01924
frame__abrchWe7pnE__0003420.jpg,squats_down,2039.0706,1149.3215,-1656.897,2060.9294,1107.4391,-1613.1696,2074.213,1106.0863,-1613.1326,2087.7073,1104.5748,-1613.0842,2021.883,1107.7151,-1617.1279,2008.7693,1106.4503,-1617.3644,1995.5491,1105.3608,-1618.2015,2110.3225,1104.3773,-1219.325,1980.3505,1102.7922,-1235.4218,2061.4797,1175.7848,-1498.8423,2019.7515,1177.248,-1499.8479,2210.2861,1240.4369,-806.67377,1884.1218,1241.8701,-896.4811,2244.1301,1506.5226,-1103.6875,1856.2041,1537.6646,-1245.7714,2126.1934,1455.7174,-1785.4071,2009.5814,1465.2451,-1839.5485,2106.4841,1436.5957,-1972.4158,2052.6187,1439.2705,-2012.8464,2097.6675,1398.0797,-1915.1558,2051.0938,1390.0494,-1966.5852,2086.457,1408.6241,-1783.9723,2055.1738,1405.091,-1843.4263,2096.6414,1531.3693,18.7094,1922.1272,1528.6158,-17.69089,2315.572,1551.5856,-1208.3925,1799.1494,1527.0225,-1282.7921,2257.0408,1850.2894,-466.35724,1767.7861,1859.2589,-594.1508,2216.9114,1906.852,-416.2,1790.3441,1917.5349,-552.79767,2339.6653,1953.1154,-864.1173,1698.2579,1971.269,-1014.5547
frame__UxstRqRaIPs__0006369.jpg,squats_down,926.73975,434.34155,-821.0042,933.9177,412.52957,-793.6493,941.29065,411.50507,-793.5882,948.66815,410.38226,-793.46375,912.0241,414.74936,-797.18774,903.9631,415.184,-797.0451,895.905,415.71017,-796.91364,955.01245,415.11795,-575.53094,883.69464,422.84183,-590.8898,939.30774,450.56213,-737.5085,912.5657,453.03754,-741.5092,1002.62445,497.33426,-414.2403,839.63794,512.5242,-419.47333,1030.7358,622.84,-707.223,837.2557,631.8241,-726.2855,1011.27515,536.35944,-1141.4568,840.3124,544.1178,-1148.0737,1007.67566,507.73972,-1230.5692,839.3541,516.8982,-1225.6732,1011.02637,487.49615,-1198.4988,831.3995,500.47766,-1198.633,1005.24,498.0508,-1138.4049,839.7015,509.51773,-1145.8988,975.3484,664.8948,1.3246369,875.34534,669.18695,-1.1197236,1058.2473,795.29364,-408.94727,803.3474,806.05035,-447.395,1055.6815,940.8697,-22.110542,801.39905,941.4801,-54.69352,1042.4559,958.73755,7.2954807,812.6306,961.19214,-26.138126,1074.3301,1013.82996,-198.31822,765.91504,1005.4407,-243.84195
Screenshot_2021-02-11_at_15.38.15.png,squats_down,1333.2468,572.86365,-414.39624,1345.8037,553.14343,-354.2503,1355.0571,553.40497,-354.41702,1364.4413,553.4911,-354.40134,1319.436,553.2397,-360.10342,1309.7067,553.0491,-359.9618,1299.9841,553.1069,-359.84888,1375.6669,567.84753,-85.99523,1286.4275,566.62537,-110.72759,1348.6965,600.0213,-321.9796,1315.0433,599.3205,-328.86047,1437.1405,682.1424,-10.065819,1214.9274,680.02106,-73.56875,1508.8928,831.153,-520.2379,1136.8195,823.6657,-620.2308,1406.6656,698.6738,-903.5124,1248.0271,698.9645,-1062.6373,1383.5748,661.3655,-960.5898,1277.6984,669.3525,-1114.4644,1378.5664,642.66815,-853.4823,1283.1271,644.9049,-1032.5707,1375.1855,662.7016,-863.6757,1283.151,665.16595,-1027.2053,1388.3746,913.4355,24.67968,1252.4049,920.32513,-23.806454,1491.981,871.9769,-839.43555,1192.732,877.6571,-1002.0943,1457.3549,1091.1167,-422.33038,1194.27,1103.2965,-606.2126,1432.936,1125.653,-394.32916,1206.2821,1137.4264,-580.27515,1499.5978,1173.7778,-697.8918,1183.9039,1181.8906,-914.2788
frame__Qzd8oJyKQaI__0010691.jpg,squats_down,1081.7716,411.73505,-62.8589,1068.1973,395.70386,-48.419243,1064.4221,395.37247,-48.453743,1060.7867,395.09125,-48.520782,1070.0979,398.7277,-109.514145,1067.3398,399.7015,-109.449295,1064.586,400.82507,-109.634575,1036.0013,406.73346,50.59025,1040.9895,412.46664,-228.54938,1069.9304,432.62338,-20.190609,1072.6547,435.59665,-100.59387,997.6963,523.3411,225.03627,1022.7462,511.5959,-347.02444,1112.2959,608.6307,267.04166,1138.2163,610.529,-316.58554,1196.3793,550.905,137.76462,1206.0432,540.01227,-106.58336,1219.1144,521.1378,138.33649,1229.5985,508.70325,-162.36366,1215.6473,510.32242,108.7585,1212.2704,496.5635,-146.87439,1207.698,521.497,119.0051,1203.0809,511.7318,-97.396935,903.3001,739.75275,181.66971,907.73956,740.78174,-181.2869,1031.3892,815.064,439.69748,1055.9587,822.5699,-208.95892,995.3769,967.44745,693.0725,971.4675,989.7496,-110.58521,964.2968,998.36816,717.0832,935.90955,1011.2601,-102.35993,1070.1859,1006.04877,750.03064,1029.7999,1046.2737,-111.082695
frame__bggX6ocjojk__0001456.jpg,squats_down,1862.1237,1054.8574,-1063.085,1876.9562,1009.2049,-1035.6781,1888.5024,1007.34906,-1034.981,1900.1411,1005.1864,-1034.5922,1840.8188,1011.0064,-1034.4655,1828.6946,1009.72864,-1034.1023,1816.4639,1008.7739,-1034.5493,1918.3912,991.80096,-584.5506,1799.406,996.53613,-608.58435,1882.452,1071.6661,-877.5341,1844.2916,1072.671,-883.6529,1996.8823,1085.7104,-258.173,1704.4729,1074.1831,-243.68237,1998.3309,1238.9808,-870.5019,1657.696,1224.9885,-796.71625,1921.5282,1296.1517,-1891.7701,1764.3868,1297.0006,-1775.631,1911.1858,1318.5314,-2144.7485,1796.6921,1325.198,-2004.7749,1874.7518,1297.3015,-2140.6882,1822.6074,1295.922,-2003.5055,1872.353,1295.3279,-1921.9691,1819.3727,1293.7399,-1798.7053,1921.5475,1417.2306,25.495234,1738.0181,1407.3152,-23.669762,2104.1917,1523.7888,-1024.6682,1585.3105,1533.098,-1069.243,2055.0522,1828.169,-447.07358,1599.2601,1835.6674,-474.85083,2017.4419,1887.7008,-415.11502,1634.4119,1900.8652,-445.94983,2130.5176,1922.4939,-851.6194,1516.356,1929.0492,-922.01953
frame__ekowbKbBNSM__0007375.jpg,squats_down,1240.1278,546.5549,-450.77924,1248.1792,519.23364,-441.22885,1248.046,516.5628,-441.0697,1248.0824,513.9945,-440.91882,1244.9843,522.3588,-495.94006,1241.8062,520.22296,-495.96204,1238.5918,518.61755,-495.94785,1226.6373,499.90033,-322.74463,1213.2511,505.78726,-576.0333,1221.4756,550.4918,-401.13196,1216.7595,551.6923,-472.62,1182.6583,527.53864,-141.09671,1135.9224,540.63416,-662.2069,1383.8369,560.8508,-184.87791,1300.8859,607.4931,-852.7715,1556.5782,551.48724,-356.0047,1499.7153,575.001,-876.89825,1604.8264,547.2843,-385.9519,1550.6774,575.1305,-955.7886,1597.4791,537.0221,-451.55185,1544.9835,542.2381,-928.3783,1579.6655,545.97565,-396.9043,1526.8125,543.36566,-870.2026,1000.76135,754.11206,176.62823,961.02124,768.83734,-176.8117,1203.9597,676.5353,232.89392,1183.0215,689.5481,-389.2274,1110.4385,854.6912,451.84644,1083.2761,894.1604,-120.24024,1084.4036,881.09686,471.89313,1050.6956,917.94684,-89.874596,1124.1068,892.13367,501.98703,1106.3091,949.56256,-72.988914
frame__ku3vgejAZ0g__0001229.jpg,squats_down,920.6912,391.36667,-1042.6,933.0794,371.98767,-1004.7029,941.2908,371.67746,-1004.66125,949.4274,371.28992,-1004.6547,910.3624,373.4651,-1004.05035,902.5504,373.92426,-1003.7244,894.70197,374.5442,-1003.5703,963.18,380.4159,-756.6412,887.2119,384.82642,-763.9478,937.2394,411.70593,-949.0478,908.5643,412.93082,-950.6886,1022.04663,480.2771,-583.3929,836.78357,474.5952,-600.6567,1071.1108,624.7741,-878.86676,760.035,602.891,-927.9022,984.52686,585.32965,-1291.687,853.6916,564.6693,-1321.8772,953.1338,580.9633,-1362.4603,882.6908,557.46234,-1394.9548,956.6477,544.987,-1325.0272,888.14185,536.2085,-1347.5599,960.58124,548.1354,-1277.6344,885.4353,542.58344,-1303.4305,993.2167,641.53925,5.8037877,883.4517,642.0689,-5.564067,1083.0254,733.26575,-537.60895,813.87933,757.0088,-545.9337,1039.3186,851.52936,20.115835,863.0438,854.49677,34.938354,1021.4788,870.9275,65.44301,884.4549,871.4229,79.42079,1066.8207,913.85297,-135.2384,829.8866,917.76764,-132.49336
Screenshot_2021-02-11 at 15.47.00.png,squats_down,566.1186,306.4851,-263.09808,573.81335,294.0929,-239.47986,579.51917,294.03354,-239.43365,585.2522,293.86124,-239.3624,557.8767,294.71732,-240.48302,552.0461,294.87234,-240.45079,546.20825,295.1284,-240.42737,593.3649,301.6566,-109.59619,539.05774,303.09412,-113.88126,576.7269,321.7445,-216.45613,556.51556,322.13913,-217.42169,628.8582,368.72028,-41.321705,507.02628,365.91608,-38.162884,659.0643,474.38895,-227.2925,480.01913,469.09528,-213.88234,621.04065,394.6044,-443.83072,523.9897,399.4968,-423.2327,609.34393,372.12848,-479.98376,538.77216,383.2802,-446.23093,614.2679,353.31818,-440.7431,534.8558,363.3377,-418.57724,610.92993,363.38165,-430.73196,537.38,372.38623,-411.3389,605.8633,496.87915,-1.8482736,532.15686,494.2699,2.1942658,688.5107,497.09747,-396.31323,463.93027,489.61465,-372.11932,661.8017,627.1635,-216.69159,472.85068,618.00037,-214.42123,645.4667,648.3508,-204.43643,487.68573,641.65436,-203.26071,689.9302,670.4263,-341.80008,431.4882,657.6861,-334.48434
Screenshot_2021-02-11 at 15.50.40.png,squats_down,603.3988,334.02942,-408.76328,611.9552,322.2346,-392.951,616.7934,322.54144,-392.98135,621.6295,322.75003,-392.8683,598.29016,321.48584,-392.97708,593.6535,320.97934,-392.873,588.99927,320.53827,-392.92026,628.2979,325.8518,-277.00598,583.62085,322.67657,-276.92508,611.0406,345.15002,-363.46573,595.12695,343.7725,-363.5384,654.50745,376.3706,-191.49724,549.97845,369.3088,-196.4372,653.6626,464.5478,-325.44382,550.56104,456.3664,-360.4223,621.0034,401.53754,-464.1282,596.1641,397.93268,-514.00476,614.059,381.5232,-499.88095,604.3597,377.35086,-548.6003,620.0578,369.07837,-467.34058,600.15375,369.07947,-521.19635,618.687,375.70248,-453.3942,602.52356,377.00272,-506.04044,628.0847,480.59015,2.9801574,566.80695,480.11594,-2.7814283,700.7682,487.72406,-317.6922,505.46497,484.23532,-334.19437,690.01483,597.073,-116.69089,496.3886,592.9916,-133.0319,677.7683,616.715,-103.38546,504.4566,612.8723,-120.64528,720.0428,632.91046,-224.59718,463.76315,625.5765,-243.3457
Screenshot_2021-02-11 at 15.42.03.png,squats_down,613.4107,236.37299,-113.381836,617.06757,227.94786,-94.381035,620.0997,227.53767,-94.26427,623.2339,227.11737,-94.38439,607.8794,229.38365,-98.50233,604.58295,229.80649,-98.53186,601.2864,230.32271,-98.61152,627.2069,232.40454,11.614473,597.46423,236.54375,-3.636671,620.07,245.8238,-73.67252,608.2557,247.26694,-78.24238,649.47076,274.08466,-7.6024036,578.0917,274.6106,-4.6443954,678.3591,280.39664,-250.55331,548.105,278.5901,-256.06302,697.5752,275.54095,-513.62335,522.58954,276.24063,-560.9817,711.3323,279.4889,-566.6219,506.69583,281.86008,-610.9567,697.6946,277.09235,-573.35345,520.91815,276.14597,-623.8655,694.064,279.17172,-527.2266,525.9442,278.7097,-575.19745,640.0343,383.3612,6.7431517,590.1298,383.63715,-6.561203,679.98157,441.85098,-277.29544,558.57715,446.48633,-246.85657,668.4627,538.2867,-209.4831,568.8481,541.0119,-178.46104,658.3061,554.0189,-211.068,578.4952,555.6273,-177.9756,690.1952,570.9788,-329.1589,549.719,573.8198,-289.59515
frame__iPCJs2jh4Hk__0001781.jpg,squats_down,834.2707,571.01843,-220.85187,840.8306,562.55164,-175.13797,845.9302,563.3633,-175.12662,851.13885,564.0258,-175.09712,824.86365,561.44104,-181.60551,819.0648,561.1823,-181.47081,813.2787,561.0709,-181.39905,854.3106,575.6344,20.869928,802.21844,571.57434,-5.594599,840.6978,589.7883,-155.80455,820.7806,588.07556,-163.5281,888.1768,661.35583,80.10368,752.40265,654.2358,22.40483,920.975,759.02075,-240.5692,744.67114,760.62177,-309.86557,887.9946,682.80035,-560.991,800.8294,670.7777,-627.0753,886.0647,660.3441,-617.17773,813.3012,642.15204,-680.0335,880.4798,648.89716,-565.5132,811.71985,629.26227,-642.0361,874.71277,659.97205,-546.2384,814.2655,643.38965,-614.9335,852.43097,815.16724,27.114874,764.95844,814.51324,-26.37856,934.5735,801.6348,-560.1269,731.6016,806.51184,-664.55786,912.49994,971.33154,-525.79315,708.2755,983.1519,-616.5096,893.0035,1001.75635,-532.21454,709.11316,1012.41626,-620.72986,950.2053,1013.6625,-741.6117,705.89185,1028.5851,-846.5378
frame__mGvzVjuY8SY__0013411.jpg,squats_down,871.5465,587.22345,-408.6195,881.48395,561.829,-414.4165,888.7398,559.27997,-414.4008,895.9199,556.66455,-414.48718,866.2476,565.69025,-375.55475,861.39,565.8338,-375.24112,856.6428,566.1581,-375.08328,920.98755,548.80457,-344.30133,870.1593,560.5341,-179.01614,894.8414,594.00574,-377.67654,874.1804,598.33154,-329.74695,1006.1473,603.09674,-358.95938,877.64777,612.7321,-35.559814,960.73047,775.5856,-503.42337,824.1016,747.3347,-287.82733,863.2356,663.4655,-505.94055,824.679,655.45776,-646.40204,831.461,632.871,-536.90717,819.33875,634.91284,-694.4365,859.6501,612.21906,-523.335,832.6361,615.7669,-648.6594,870.4669,621.2493,-495.70248,842.97437,624.9734,-634.17676,1078.1248,766.18024,-109.75948,1007.8924,767.59753,110.87966,971.1566,798.11633,-552.4287,869.64575,791.9023,-313.81226,1014.9265,977.19244,-386.15167,946.24774,964.8797,-268.22397,1043.4036,1001.16785,-374.61295,980.74976,989.2277,-268.37836,959.25824,1056.6536,-558.9494,891.67993,1035.6028,-399.87177
frame__Av83LHehBK0__0002759.jpg,squats_down,827.50806,396.81534,609.3937,805.6683,385.78394,582.5341,801.7469,384.15665,582.55786,797.7512,382.1235,582.70667,817.81445,385.7475,623.96094,822.68536,383.2804,624.0507,827.8266,380.95953,623.7438,801.7472,372.03696,458.59103,842.3093,372.0223,662.1357,839.20135,396.80566,563.8249,853.57495,396.53314,623.9293,843.07935,404.76392,208.23946,971.4013,386.12558,681.0412,852.6096,586.74567,35.17136,1025.9985,546.04846,761.90015,796.00616,725.74615,17.479702,987.5855,696.3574,782.19916,777.17114,752.36694,-5.5697446,982.93604,716.71497,818.2576,774.81757,742.37146,33.76233,959.9098,723.25665,797.8673,785.252,730.0222,32.025345,954.62335,721.95996,772.2856,1149.0496,539.47,-150.7224,1223.7803,532.7337,151.39484,915.91516,568.28564,71.52286,1008.3578,598.34,572.97455,1024.7728,752.00635,-68.52215,1149.7224,672.39667,594.05316,1075.9243,783.32074,-80.56791,1194.9308,669.887,592.93134,966.4537,793.778,-58.645725,1139.459,702.12415,578.1632
frame__zJBLDJMJiDE__0000500.jpg,squats_down,1040.0221,530.91315,-609.619,1048.5801,511.5095,-572.6954,1057.1162,510.57144,-572.6983,1065.6035,509.49866,-572.96545,1025.7865,516.5904,-571.04926,1017.14746,518.8648,-570.68933,1008.4261,521.37164,-570.74,1077.7838,526.2694,-388.11502,1001.8478,542.1846,-383.7753,1060.0605,555.93256,-545.1475,1028.0609,561.5063,-544.18475,1150.5425,647.0766,-399.38226,973.8195,647.1437,-272.72784,1163.8058,829.87445,-635.334,911.4993,797.57574,-531.0657,1032.9052,734.1917,-925.57166,872.0919,739.5448,-973.04974,990.7475,726.3516,-997.1952,859.2816,733.43567,-1041.1453,999.74854,682.63275,-988.68066,864.291,706.15125,-1032.3187,1015.42426,691.018,-927.24365,879.86884,711.9437,-978.41895,1156.2345,869.24713,-56.050213,1059.1642,862.8064,56.56035,1127.5813,790.95435,-637.3083,914.78876,770.0488,-353.15143,1161.5565,954.4574,-249.56937,976.7747,949.4814,-80.37158,1175.06,977.90906,-219.20653,1016.37573,984.8098,-59.946068,1140.6995,1025.373,-378.1081,884.4645,1021.28595,-174.04166
frame__mGvzVjuY8SY__0004756.jpg,squats_down,919.3215,546.92584,-874.28424,932.1142,527.2427,-836.82135,940.48456,527.0397,-836.8068,948.8562,526.72955,-836.69946,909.013,527.6881,-834.6846,900.9926,527.67474,-834.6354,892.9351,527.7603,-834.70514,962.93665,536.8429,-626.0562,885.2837,537.5072,-615.07996,935.3462,568.3383,-797.35986,906.80536,568.70404,-793.0599,1019.80945,638.5684,-453.90167,840.0032,636.3841,-452.4168,1040.3304,796.3711,-682.23724,812.0507,788.3173,-698.91077,961.03455,721.69196,-1040.1901,873.0901,713.8941,-1066.8595,936.8262,699.52454,-1125.8173,893.3131,692.1222,-1146.5981,941.7849,669.0548,-1074.444,890.1151,665.0703,-1104.7084,941.49274,678.3062,-1026.4442,893.5224,675.5429,-1056.398,983.0718,779.5096,-4.6071844,887.00366,774.9674,5.2555203,1013.1325,838.60986,-720.8583,845.98096,838.263,-677.0373,1000.85565,985.6346,-248.50087,843.7481,978.49316,-195.39532,993.3916,1008.0646,-215.9015,853.01074,1000.24506,-165.55634,1010.41797,1046.932,-486.876,824.3073,1041.6349,-433.61575
frame__e2xTVq6wtsM__0035202.jpg,squats_down,758.9573,229.54742,-9.064943,780.22626,218.88663,-54.224365,783.016,220.85175,-54.155075,785.9459,222.67728,-54.234474,782.9187,215.65923,14.778604,787.0757,215.74144,14.909944,791.4941,216.09091,14.872334,815.1182,240.05493,-170.44833,819.59686,233.54305,138.11931,766.112,257.27982,-51.915623,768.74927,252.93857,37.505287,828.2489,358.7608,-344.4583,849.97876,361.47784,355.48044,687.09436,459.18683,-242.39133,718.7519,439.68628,390.24435,633.69275,323.03165,49.813435,643.29504,334.29065,315.09857,605.92566,286.2254,-0.82249117,620.12366,296.7572,321.33173,638.4027,275.5006,-22.851183,631.1674,288.51874,314.1765,654.0334,293.11172,47.482018,640.1264,302.38358,300.3993,974.51166,594.7769,-222.0977,978.59814,580.002,223.4254,782.4786,730.3029,-246.89761,797.2672,711.3919,336.764,787.18506,949.159,-225.69785,794.4843,903.97107,424.2367,809.2393,996.2752,-223.90265,818.9798,942.71747,432.11273,674.8597,963.76874,-260.9372,689.5254,937.8916,407.4636
Screenshot_2021-02-11 at 14.53.36.png,squats_down,404.31018,334.8083,-97.35719,411.06058,321.09497,-78.366745,416.76083,320.53494,-78.18457,422.54535,319.97238,-78.334496,394.53876,322.2182,-84.05322,388.39566,322.06146,-84.04667,382.23462,322.02994,-84.03998,430.2513,323.2244,32.05031,373.35638,325.3838,19.599869,414.41974,346.96875,-53.275494,394.53766,347.75397,-57.325485,445.9866,363.37894,30.513683,362.07947,360.80704,32.729023,476.4915,374.38867,-115.37024,339.3788,372.26984,-123.64945,480.6656,324.2568,-256.30188,322.39688,328.47934,-303.7594,489.81808,307.03882,-305.11765,307.99118,313.623,-351.77466,477.8958,299.8212,-297.6307,326.20886,304.2033,-351.88745,472.61392,308.7296,-266.08774,332.47058,313.51535,-314.54202,434.5155,481.7909,-0.62943566,374.0379,483.711,0.8108199,502.50232,483.7206,-312.0346,310.64023,497.5064,-256.99072,473.68243,586.1043,-181.93349,343.1899,597.1959,-145.53429,458.01175,603.39307,-172.58624,357.93903,611.2329,-140.18506,503.64392,626.73676,-272.14102,323.07043,640.1724,-252.96684
frame__ZwbX1A-LlTs__0009913.jpg,squats_down,1121.2802,595.90784,-652.24725,1124.6793,583.88446,-628.9531,1130.2233,583.9719,-628.99347,1135.7693,584.1016,-628.8914,1109.1334,584.8716,-641.46716,1102.86,585.277,-641.2767,1096.4202,585.87634,-641.1813,1138.3384,593.98145,-453.20868,1082.0895,595.19257,-496.00995,1131.214,611.063,-583.0165,1110.0612,611.3979,-594.5584,1151.7426,649.5088,-294.5162,1049.4476,656.13416,-464.2272,1217.3147,709.206,-507.85504,1067.8555,769.37964,-697.1068,1207.3398,694.49536,-850.06494,1156.4551,728.6786,-849.4054,1208.1985,688.1238,-921.5797,1178.5736,715.8394,-901.6159,1196.6685,680.5832,-909.40137,1175.292,707.3073,-881.3454,1191.774,684.6338,-856.88385,1170.5447,713.86707,-842.19794,1089.284,755.5622,47.737133,1026.3726,755.6833,-46.9354,1141.1254,830.50214,-443.1514,1055.0117,816.7208,-600.3325,1117.8439,927.41724,-157.34178,1064.0973,921.9112,-356.24112,1105.0874,943.99976,-137.50923,1063.1467,933.4348,-334.12268,1138.2518,963.5728,-298.416,1080.7086,961.0154,-497.75842
frame__6Gim-ntffUY__0005315.jpg,squats_down,973.7898,495.3674,-681.9969,984.7704,483.25836,-641.49524,991.1338,484.48535,-641.4179,997.5991,485.6202,-641.33655,966.4784,480.32898,-639.1353,960.1879,479.203,-639.0017,953.8397,478.22308,-639.12994,1006.1998,497.0354,-425.5479,945.65717,487.25586,-416.75256,983.4558,516.31244,-604.1914,960.4081,512.0884,-601.06494,1048.375,590.1677,-314.27136,893.28503,581.3011,-313.89285,1048.662,707.1164,-604.97046,876.81006,707.0508,-582.6828,989.87915,654.79834,-993.11957,953.26086,656.7693,-950.91296,977.8202,642.0414,-1078.5739,974.9681,643.88257,-1032.8302,975.09155,620.6938,-1039.4152,972.9389,625.0668,-1000.73193,974.36475,626.1428,-984.9,971.8434,631.5014,-942.80774,1019.3747,765.66815,7.42118,934.1101,764.8312,-6.490435,1006.1673,772.63184,-614.0952,940.1294,757.56573,-654.02356,994.0831,933.5648,-283.4639,953.9706,929.0366,-303.63504,991.15436,961.1037,-261.44946,956.30835,958.9756,-280.6202,975.8909,982.709,-506.52106,956.0041,977.17645,-516.8837
frame__eAW98p-wPQ4__0007163.jpg,squats_down,1162.6891,634.1248,-67.40378,1165.8396,619.76196,-100.99216,1167.9366,619.933,-100.99742,1170.1858,619.9521,-100.97974,1166.9318,615.40875,-44.34295,1169.2815,612.964,-44.28753,1172.0774,610.57526,-44.347126,1192.6066,618.7214,-203.4036,1194.832,608.09546,54.94365,1176.9839,645.98114,-103.45944,1176.7612,642.2849,-28.67352,1242.477,676.7567,-346.07135,1248.6503,647.80273,222.60449,1162.835,760.1679,-449.12213,1168.3491,749.5021,301.27402,1036.2444,792.7469,-365.88553,1056.9967,781.1108,193.7504,1003.5523,797.849,-442.176,1026.457,774.41864,216.5273,999.1523,786.86,-399.0462,1018.1365,778.1845,145.52628,1014.82477,785.62146,-353.0686,1029.457,786.0783,160.44629,1424.2006,813.2257,-182.0564,1415.0802,787.1233,182.90596,1227.9154,766.7845,-225.59784,1210.4614,742.6509,310.02847,1348.6481,906.168,60.287167,1316.5316,883.6874,519.80914,1378.8794,913.9948,90.335014,1346.6746,894.58844,537.50305,1326.5328,951.8074,135.30402,1295.6519,932.8042,591.073
frame__Gq6gXBCMP2A__0009671.jpg,squats_down,1067.2435,255.86479,144.17087,1058.8806,235.52687,150.11421,1054.5778,233.62811,150.12038,1050.3687,231.84464,150.09743,1063.5543,239.83017,86.918884,1062.5231,240.38182,87.186646,1061.2007,241.10855,87.23626,1026.3235,238.41084,204.10535,1040.9865,248.50044,-90.25357,1051.6024,274.18207,171.34277,1056.2618,278.78827,88.586006,937.8611,319.855,454.11096,1011.92035,352.47256,-249.66597,1001.66235,426.5377,734.73566,1081.8502,470.70135,-75.791534,1061.3696,367.81152,928.03467,1093.8922,383.5184,435.02322,1086.38,342.57584,989.6741,1104.31,352.634,440.2547,1075.1896,337.34564,979.544,1096.4023,344.9943,441.5006,1063.4685,348.43027,927.8911,1086.2266,357.34082,450.0534,748.0507,513.4562,231.1407,790.7178,537.11536,-231.4889,903.1123,576.4043,686.09955,1017.96466,631.5614,-177.42355,825.2062,756.61316,886.44495,916.4392,812.8399,-181.10945,788.05304,789.6797,912.4489,867.7575,847.9861,-176.64235,891.9026,795.8598,1055.0609,1006.8218,856.3647,-96.724754
frame__zJBLDJMJiDE__0017590.jpg,squats_down,970.2963,539.0757,-193.63617,984.7546,528.18445,-231.37105,986.952,528.7679,-231.24423,989.323,529.3134,-231.06079,986.2206,528.5727,-171.57681,988.8551,529.4967,-171.56822,991.7584,530.746,-171.71391,1012.2057,541.5968,-325.7068,1013.6532,544.36475,-57.448826,978.3845,556.9362,-227.22319,979.0515,557.86743,-148.90877,1033.6595,629.0674,-447.8076,1020.7821,626.40497,69.65502,910.9571,682.4591,-574.4141,912.803,681.4389,63.65791,776.1087,661.32367,-585.0967,794.6454,661.1412,-104.72594,741.00183,650.8154,-686.07745,769.4693,637.3777,-110.3917,743.9568,636.80817,-643.7474,765.72,636.0711,-190.24652,756.4861,643.57477,-577.7828,775.60223,646.90784,-146.01697,1109.8516,841.8794,-175.76416,1098.3315,817.2573,176.73901,972.82764,735.01917,-202.75883,974.89014,691.82465,289.23203,1032.0994,890.60956,84.106384,1023.8309,850.01355,492.60892,1062.0012,909.6422,114.4634,1049.574,870.5351,511.46567,983.3817,915.33057,153.76956,975.8943,883.0009,576.68884
frame__rSNN-Arbxuo__0010743.jpg,squats_down,926.58606,705.06915,-457.4839,933.26404,685.81775,-483.3152,938.43463,684.77814,-483.52295,943.5744,683.6572,-483.5994,917.2887,685.627,-474.91254,911.17096,683.7579,-474.60648,905.1978,682.11127,-474.53873,946.7575,667.33203,-445.49844,891.7964,667.78955,-410.50058,932.63574,708.3254,-428.83228,915.7936,706.24005,-418.85193,1005.1028,670.17017,-319.63773,846.62317,688.0509,-265.44012,1046.8126,799.3751,-207.97292,847.37756,784.2165,-126.17739,951.03406,831.67456,-203.73117,901.28577,822.64685,-51.635647,928.3258,852.689,-220.6161,904.4966,834.78296,-45.90085,919.7947,819.2728,-227.29541,910.5768,826.0968,-46.824684,927.5027,809.74524,-203.3159,912.6833,822.17505,-45.477295,1024.1538,766.2039,-39.052326,938.05286,774.432,39.8123,1041.6218,801.4246,-314.0014,880.6035,773.76166,-243.03305,997.4176,864.1664,-208.37398,893.24756,822.1155,-216.50012,991.8228,860.6733,-194.48203,898.36346,831.6991,-214.82903,978.7475,906.3964,-232.04555,887.8955,828.6738,-271.82712
Screenshot_2021-02-11_at_15.50.46.png,squats_down,1248.4628,508.9318,-250.21933,1261.43,492.64886,-198.19614,1270.4044,492.21704,-197.91995,1279.4882,491.63177,-198.18593,1235.2656,496.55444,-203.84317,1226.2432,498.21762,-203.6226,1217.22,500.1793,-203.73602,1294.6486,511.16666,60.8992,1207.6647,522.1154,34.34997,1268.4878,535.27655,-159.88867,1234.5217,539.3976,-167.5831,1353.8665,606.98535,55.68098,1164.412,631.5218,38.602375,1424.2427,656.07306,-456.05164,1105.1771,666.25616,-530.9927,1465.593,629.7817,-1050.0112,1072.5015,603.28723,-1173.2689,1499.4818,629.26514,-1154.8173,1049.1366,601.45013,-1280.6866,1475.5796,628.6131,-1155.7571,1065.3129,588.85693,-1273.8882,1459.814,635.36633,-1069.1615,1079.1437,596.73206,-1187.5483,1352.0062,884.0363,16.753674,1225.6846,895.1419,-16.429352,1478.8569,979.5877,-543.85846,1105.8262,1007.7839,-517.50903,1413.4725,1185.6151,-161.25545,1132.1086,1183.5795,-131.34273,1381.5579,1216.0847,-136.25801,1166.8433,1210.1162,-106.40258,1472.4752,1263.8707,-350.48306,1050.0078,1271.8488,-313.83704
Screenshot_2021-02-11 at 15.18.07.png,squats_down,593.79095,333.01578,-117.39637,602.9976,319.5487,-105.30195,607.6181,318.63507,-105.3303,612.3212,317.65454,-105.395615,591.3371,321.95044,-89.75206,588.0298,322.23425,-89.783,584.68713,322.81482,-90.00544,628.76514,319.00037,-13.724324,590.6604,324.2397,54.78145,608.012,342.6752,-85.08741,594.6794,344.90262,-65.58274,677.47864,358.39673,29.265995,583.0229,372.00653,127.55604,686.2244,297.04733,80.280014,528.429,307.51758,173.1948,641.6148,312.99292,326.52795,591.91656,304.37192,323.86893,632.0038,314.3246,347.32126,605.15076,300.36633,328.68774,632.69653,323.92502,364.25366,609.3387,312.01004,353.37714,637.59576,326.64282,334.81122,605.3923,317.40234,333.01718,683.23285,540.09644,-24.683222,616.82056,539.7286,25.048426,715.4001,505.41772,-383.56284,505.79385,496.55362,-240.88094,721.6186,635.4239,-431.82736,562.1477,620.96765,-302.5268,720.2657,659.9931,-435.3489,590.7174,642.01904,-310.5884,734.66315,660.6568,-564.5107,518.87506,659.6657,-409.81134
Screenshot_2021-02-11 at 15.17.39.png,squats_down,591.77496,335.9224,-160.3104,602.38306,327.13397,-148.30853,606.9275,327.39984,-148.3131,611.57697,327.5305,-148.27151,591.5436,327.09763,-129.77307,588.2684,327.01407,-129.80754,584.9492,327.10507,-129.90567,626.32416,334.90497,-80.29852,590.1667,333.09183,2.3588996,603.5688,349.77786,-139.53253,590.0996,349.28052,-116.024734,665.4317,391.29727,-114.65094,562.1096,388.30505,35.176006,661.56635,462.43585,-317.0785,478.74817,417.86377,-24.0582,611.7177,401.48697,-481.2492,395.04648,414.7311,-108.87838,597.33405,387.11447,-514.70447,367.28525,410.14664,-110.3222,605.1826,374.17172,-500.0399,367.6698,402.5177,-121.537315,606.7411,382.9912,-479.04874,378.54987,408.13907,-119.22673,649.2746,548.11224,-35.44351,586.7313,546.2741,35.83101,678.00134,513.0337,-391.83694,492.75385,512.6662,-235.27312,696.6442,642.46783,-377.6425,526.6442,634.6435,-212.35356,694.79803,666.1537,-376.6194,548.2049,657.26715,-213.22058,709.0525,673.11066,-501.53635,486.68936,664.63574,-321.9995
Screenshot_2021-02-11_at_16.18.31.png,squats_down,1226.7666,586.3389,-1177.8224,1237.6896,558.557,-1124.9115,1247.6166,557.38,-1124.6649,1257.617,556.0382,-1124.7374,1207.1821,561.88446,-1130.8564,1196.7242,562.83215,-1130.9728,1186.2684,563.9545,-1131.4845,1269.4414,569.47675,-829.43854,1170.3506,580.22064,-865.4308,1244.467,614.3391,-1070.1213,1209.6228,617.84705,-1077.7476,1344.4465,693.03766,-578.8549,1097.8431,723.5392,-591.5666,1375.8768,870.8073,-751.96893,1078.9362,915.9934,-806.6038,1370.0365,878.4285,-1304.2655,1082.0394,878.7636,-1376.7676,1376.8839,877.33673,-1448.5431,1083.4762,868.917,-1537.0249,1367.1987,846.8941,-1448.842,1085.0044,825.94745,-1518.6317,1352.036,853.2986,-1322.9955,1098.0736,832.94977,-1391.7483,1288.4994,866.94415,-4.595236,1156.5197,878.2557,5.3595214,1359.8577,998.61725,-877.9507,1072.0756,1023.53534,-896.7737,1350.6572,1187.8315,-227.22058,1097.4817,1203.4175,-239.44653,1337.6223,1213.5598,-182.05426,1121.064,1227.776,-197.12018,1367.7823,1282.9556,-492.4873,1064.5035,1297.4592,-516.69385
Screenshot_2021-02-11_at_16.24.22.png,squats_down,1318.5513,650.9453,-212.75755,1331.1315,628.9082,-163.32642,1340.9235,628.8282,-163.1694,1350.8271,628.6883,-163.23839,1302.279,630.5843,-159.71849,1291.9915,630.86926,-159.24762,1281.7181,631.5216,-159.09435,1363.8694,643.524,82.88756,1265.7595,646.8433,107.58953,1336.013,679.74536,-128.09584,1300.0737,680.87225,-120.4909,1423.0833,760.4643,-49.591915,1209.2767,757.6969,-4.763331,1453.1925,781.92993,-783.6766,1200.2567,783.0647,-692.13135,1350.1652,771.2864,-1224.932,1295.5975,740.06213,-1109.0342,1320.2719,772.3409,-1332.4357,1319.3962,733.5133,-1200.9263,1305.8395,760.26263,-1284.2202,1332.0834,723.3997,-1158.9846,1312.9779,772.5664,-1220.1263,1328.1863,735.9935,-1103.8859,1381.8002,1088.8203,-8.117475,1246.1796,1083.1198,9.234045,1494.0446,959.9056,-761.1861,1143.7552,939.5854,-730.42487,1485.2095,1218.6348,-705.5425,1137.9174,1197.7666,-627.0012,1470.2634,1262.178,-709.8704,1159.4905,1253.9899,-628.5486,1504.2241,1293.6005,-981.7772,1072.3821,1263.2092,-858.90674
frame__fiWGWUl30I4__0026890.jpg,squats_down,691.7014,240.44354,-375.8676,699.75183,226.363,-348.84088,705.64124,226.28102,-348.72495,711.6085,226.06494,-348.73715,682.5561,226.74086,-348.52197,676.4133,226.66537,-348.266,670.2892,226.71661,-348.33926,719.6151,233.05698,-182.18874,661.0535,233.86136,-184.19487,701.97156,255.00667,-313.4039,680.3956,254.92781,-313.91937,758.6581,301.6427,-84.83269,624.1236,305.07947,-84.373535,784.3719,379.7081,-182.03674,603.41077,384.77798,-187.52728,789.44946,416.58875,-519.71,601.6903,418.90866,-524.6892,794.5869,431.1841,-609.0415,601.3725,432.63696,-606.6179,781.95123,418.7761,-624.09937,607.4967,417.54404,-630.1101,775.8972,414.66504,-536.929,613.33685,414.24374,-543.91187,740.2536,443.4607,5.931091,665.1366,450.99915,-5.006208,790.10077,487.9103,-477.464,635.611,488.2402,-483.5814,778.7224,624.4098,-263.7753,615.2863,615.8006,-253.11058,766.8341,641.30963,-250.0903,616.7192,631.9669,-236.0741,785.79956,684.88367,-425.47937,610.4389,672.114,-391.66965
frame__i1iVWZSPPe8__0005654.jpg,squats_down,939.5853,647.96576,-705.02527,949.93317,625.6877,-695.58154,957.51697,625.6207,-695.5696,965.2979,625.6027,-695.55975,928.37305,624.12067,-700.1775,920.0497,622.81494,-700.0351,911.6244,621.52435,-700.1747,971.1884,628.67865,-569.6821,896.6637,619.8585,-580.30194,949.88617,664.312,-652.4257,923.3726,662.3094,-654.0809,1010.6845,687.622,-434.93842,843.8276,678.70355,-434.16464,1051.753,812.9574,-606.88965,824.59515,810.8088,-439.47223,984.5788,752.3994,-848.2334,916.356,748.41846,-474.642,970.6944,734.3865,-898.24854,946.6659,733.79987,-502.2539,974.0995,710.852,-863.8517,947.07086,698.7679,-490.291,972.7271,722.70575,-837.4192,944.47125,706.44214,-472.9712,928.87665,765.5179,-1.502245,836.2647,766.3113,1.4494027,1018.12616,796.73944,-172.89445,784.90924,801.7623,-293.66833,1017.835,868.55664,67.75225,790.45984,900.9705,-20.98267,997.7131,883.9167,85.606964,793.7099,919.02856,3.0218391,1066.0444,916.2385,-14.629485,779.38983,952.53534,-111.59582
frame__FLGeX3l1_AI__0001511.jpg,squats_down,765.2284,483.132,-159.47182,773.43616,467.5232,-197.16107,776.665,468.05774,-197.24774,779.916,468.62115,-196.99722,771.2438,464.52634,-138.69235,772.49725,462.59137,-138.53183,773.98865,460.68167,-138.63913,805.1372,473.308,-268.4754,799.5979,461.6424,-3.80357,785.4315,500.7654,-187.8302,780.13135,497.19504,-111.52367,883.4193,563.50964,-411.86893,864.846,551.6706,207.67685,859.94354,738.0512,-262.8614,871.6015,685.2965,75.687546,799.04675,647.55914,100.069954,817.96454,630.73926,-326.0575,771.1992,630.2986,97.593636,792.3475,618.0395,-363.07648,796.7568,608.39984,63.14343,800.88763,603.49426,-341.8889,814.1105,612.83185,99.63188,812.3586,607.5738,-331.64304,1065.3287,714.10626,-210.87164,1032.0464,698.96155,211.29625,884.24347,704.00494,-445.44153,842.2776,695.8932,366.02753,951.65485,933.1085,-537.97577,933.6597,878.28314,386.2815,1001.1643,971.6176,-552.64026,968.13446,899.62244,385.76108,855.4915,987.2296,-634.7651,888.05914,953.5677,368.86435
frame__MythPbjCmZU__0008025.jpg,squats_down,971.055,511.39264,-699.8966,977.0287,493.06332,-676.1578,982.81726,493.30734,-676.1379,988.79596,493.55798,-675.9329,958.7756,491.10217,-699.2958,951.20276,489.54822,-699.1568,943.5576,488.18744,-699.01917,984.2736,493.3834,-466.18417,921.664,486.03262,-567.00885,973.57306,524.2715,-613.4796,950.8619,521.4196,-640.97894,987.5753,526.8923,-271.17163,861.5409,545.1194,-547.4057,1051.6176,598.80963,-512.3879,921.7231,676.11426,-758.4794,1071.83,604.75696,-942.9292,1024.6349,638.1759,-882.4169,1090.4435,610.3015,-1023.7238,1049.9684,631.7193,-951.7958,1070.6821,599.9185,-1026.0372,1052.4128,610.3722,-929.43567,1058.1919,603.504,-955.29834,1044.8872,617.9919,-873.5539,898.5682,671.735,80.72949,822.3416,682.4853,-80.46769,985.36194,702.8855,-389.15717,853.42993,723.9299,-684.5693,929.5331,842.25336,-54.625164,808.9022,872.8742,-323.80417,902.2139,868.17645,-31.4234,791.1958,893.00336,-298.35355,976.4747,894.1184,-187.14409,836.67523,935.15533,-496.48984
frame__gHdFxGA4g9o__0007955.jpg,squats_down,260.6161,452.40198,-80.52894,262.0494,440.958,-107.58342,263.2407,440.7516,-107.537735,264.57748,440.4979,-107.552216,262.9328,439.54047,-75.203735,264.71524,438.45963,-75.22771,266.69946,437.47968,-75.205666,279.32312,439.11432,-179.55124,281.69965,435.81232,-35.412815,271.2482,460.14288,-104.42229,271.9245,458.94443,-62.65432,310.58362,489.92465,-241.74492,343.8675,469.10312,65.87844,299.41022,588.5667,-272.21967,350.06384,545.705,87.950066,260.52142,647.8258,-243.93451,319.55594,584.01654,39.902695,250.52951,659.89514,-286.66,311.33105,583.9268,48.742996,246.71266,656.3035,-263.59763,307.79575,587.6084,18.408806,253.35863,652.4673,-237.93951,311.19434,589.4849,25.390305,402.88336,608.31866,-96.63504,418.94342,589.85876,96.94153,308.53598,538.911,-71.199486,340.8509,538.5814,168.93454,316.35654,644.35693,101.077194,362.7266,632.65704,272.7192,328.90094,663.57605,119.24135,373.84973,648.2656,284.09235,272.79025,647.5062,131.79112,329.3487,645.25385,318.93643
frame__zEbmezjb5_E__0004484.jpg,squats_down,314.94528,404.56268,-100.61166,307.82452,391.81818,-129.34671,309.15735,389.79947,-129.38449,310.69235,387.6137,-129.31216,306.91403,391.5525,-75.67987,307.66336,389.38345,-75.58464,308.88937,387.1866,-75.62148,327.30444,374.24258,-197.29185,324.2772,375.2867,49.357292,333.00797,404.94528,-123.42256,331.86935,405.51886,-51.3935,394.72742,410.09985,-294.3188,389.12643,370.30536,231.52626,336.03427,515.1456,-444.41837,333.95392,454.87405,376.85544,224.9134,538.4153,-383.79825,251.09459,473.8659,284.9699,194.91833,544.419,-440.27127,229.78717,466.91495,303.59372,192.05075,526.7757,-402.88763,227.9585,466.70453,250.35591,203.50955,526.2658,-370.32355,235.4142,472.70947,259.4714,562.83496,503.79523,-176.92325,554.84875,483.27438,177.34831,422.39935,468.48267,-319.71753,407.9441,458.41565,396.16757,455.80167,622.71686,-66.36056,459.80774,573.47614,728.975,473.17596,646.8943,-37.32469,477.36295,596.16437,757.2886,399.17633,650.1483,-64.88478,418.81537,586.14307,759.01196
frame__E4JICzRQz1o__0017185.jpg,squats_down,1242.8953,560.92096,-276.09583,1247.7246,545.8421,-232.46007,1249.3263,547.1255,-232.20235,1251.1134,548.5271,-231.726,1237.5029,539.93,-282.54114,1232.0327,536.1776,-282.3817,1226.4833,532.6828,-282.58313,1232.3387,548.9117,-13.326255,1203.9489,531.0162,-245.37134,1233.4359,579.06274,-199.93407,1219.5547,570.3981,-263.4794,1166.8284,628.6249,218.61923,1168.3003,635.56824,-355.50674,1216.1217,768.2196,129.96423,1245.209,777.52295,-205.10985,1250.8899,748.93994,-203.39014,1249.6212,751.64197,200.96367,1262.1809,739.22186,-214.47256,1246.48,744.1388,219.72253,1246.1179,729.6787,-197.29129,1231.3804,741.896,216.08537,1238.9846,733.6553,-206.84282,1226.5676,746.12244,216.86813,1031.098,837.8949,197.70323,1021.6904,845.4067,-197.6318,1209.5533,822.3423,298.70032,1244.7324,818.2723,-212.28905,1102.0879,938.9549,346.73135,1088.6848,952.46674,-109.81341,1076.3766,960.4894,350.3843,1050.1726,972.021,-104.92147,1142.1133,986.1492,387.01376,1108.5288,1021.16833,-69.53444
frame__dxA21IeBB8o__0006042.jpg,squats_down,1816.1401,870.56805,-1368.2301,1837.1206,834.1015,-1311.6401,1850.7352,833.4942,-1311.7393,1864.4675,832.59235,-1311.8198,1796.8612,834.79596,-1307.4111,1783.0784,834.43353,-1307.1432,1769.2101,834.26337,-1307.1952,1883.4543,842.6396,-916.33734,1752.3489,844.2417,-901.1848,1840.1038,904.30597,-1216.489,1792.9077,904.50507,-1211.205,1975.009,1026.111,-591.8574,1655.605,1005.02704,-580.93317,2008.5652,1312.4736,-951.161,1612.7976,1274.1129,-1008.7798,1870.3395,1163.6746,-1580.6199,1756.7091,1156.3198,-1702.6726,1823.4878,1119.5128,-1734.8546,1801.5001,1121.0952,-1839.2384,1838.2794,1064.2222,-1658.3743,1789.4028,1082.466,-1779.8743,1842.6123,1079.5325,-1560.3844,1790.2726,1098.0013,-1685.6033,1902.3115,1365.1262,-0.5703969,1708.4004,1352.6035,1.3023654,2101.0305,1535.7532,-1059.1355,1536.5571,1515.4446,-973.0779,2080.602,1819.5223,-257.99744,1518.1611,1809.5874,-209.3121,2046.7886,1867.24,-198.03314,1547.3707,1869.4484,-157.02782,2150.4302,1926.2675,-634.0663,1413.2634,1898.0425,-602.45056
Screenshot_2021-02-11 at 15.54.28.png,squats_down,594.6696,267.58597,-83.24939,600.2588,258.93875,-59.71149,604.682,258.49243,-59.59498,609.14923,258.0079,-59.509003,587.3618,261.2574,-61.27162,582.9468,262.12646,-61.252537,578.5481,263.12427,-61.441067,617.4671,266.31537,66.01221,574.2399,273.06143,60.5326,604.98175,280.13666,-38.50266,588.7334,282.6323,-40.05449,642.77075,310.93515,86.57768,554.92004,316.4135,70.947266,687.51056,307.70294,-85.32222,507.9797,316.21326,-182.3952,663.6285,302.915,-279.60806,531.5091,294.80786,-424.8327,661.65283,302.93286,-328.5139,531.2896,293.69492,-472.4736,650.6028,302.08514,-322.6141,544.9194,291.05722,-461.9991,651.4632,307.47757,-285.1455,546.9112,296.662,-427.47873,631.96924,442.6159,4.4087267,571.731,442.7265,-4.0594897,710.3822,431.5183,-293.40262,490.22687,442.5856,-278.0609,662.13916,542.3466,-186.82317,533.0541,533.39355,-157.29155,642.97375,560.55994,-181.77669,555.0784,550.38586,-151.78044,684.9876,581.80304,-284.90564,502.0312,571.9429,-248.84377
Screenshot_2021-02-11 at 15.33.07.png,squats_down,635.6119,401.39227,-574.15405,640.1657,387.4677,-560.542,644.4277,386.91003,-560.588,648.75543,386.3111,-560.47205,627.23035,387.55038,-566.7256,622.3073,387.04788,-566.6601,617.3766,386.56693,-566.57715,651.36316,384.963,-447.8183,607.7151,384.85825,-467.35208,641.6142,408.88843,-528.92676,626.1508,409.0518,-534.4153,678.6625,420.51862,-348.93484,574.5566,418.91443,-345.8068,694.95276,504.11523,-508.6218,559.53326,508.10394,-470.4429,651.793,451.3279,-682.0197,602.6715,448.63144,-607.8904,639.4994,433.25223,-711.8845,617.9576,429.66956,-630.09235,643.8917,422.10242,-678.77277,611.2982,414.7036,-609.25806,644.08685,430.22293,-670.33246,612.1123,422.31323,-601.45404,646.268,479.975,6.695673,590.58875,479.68533,-6.853481,689.01385,535.0158,-269.21954,577.5902,542.2688,-254.93762,693.73285,625.7636,-137.69257,572.192,633.39215,-99.17005,687.84906,642.38745,-130.21556,574.1827,647.24054,-91.47898,712.8435,657.94073,-229.85243,565.3794,671.00885,-211.8264
Screenshot_2021-02-11_at_16.03.20.png,squats_down,431.42355,171.14507,-147.9283,436.04916,163.75145,-129.91019,439.58334,163.80847,-129.91661,443.14648,163.80914,-129.94936,426.46173,163.91768,-130.37465,422.83234,163.96272,-130.31602,419.208,164.11723,-130.3026,447.88443,169.92358,-48.078938,415.014,170.4618,-48.70554,438.2521,180.69145,-119.94952,424.939,180.82956,-119.90857,466.8892,215.11151,-31.723629,396.40317,215.86644,-54.71734,459.18466,277.1425,-144.06973,420.34644,275.8095,-98.08421,455.8762,223.58482,-235.027,454.14,222.31917,-72.04496,458.29453,206.68279,-254.29253,464.09375,210.14812,-76.7239,464.86905,205.53362,-237.41525,457.31235,203.0488,-61.492954,460.64,210.85304,-230.9771,456.58124,208.09923,-64.07362,454.96497,315.18994,2.5330894,413.79086,317.84912,-2.248651,474.21957,303.46216,-230.81345,384.5699,309.14276,-254.79886,468.23288,363.6381,-50.74041,395.70596,369.9179,-69.05485,465.85104,369.62482,-33.72403,403.2667,376.7699,-51.30457,473.7895,398.29086,-101.76441,379.0397,403.57013,-120.54024
Screenshot_2021-02-11 at 14.29.32.png,squats_down,501.26114,321.06604,-291.2112,505.905,309.25443,-273.14105,510.28775,308.68707,-273.11258,514.75885,308.05124,-273.20578,493.8463,310.4615,-275.64917,489.22696,310.6595,-275.5745,484.63705,310.98895,-275.49365,520.5431,311.9024,-160.77348,479.663,315.7458,-169.87404,510.63864,330.9157,-249.13475,494.2215,332.30023,-251.59502,556.6478,357.51556,-91.33532,450.91675,365.77985,-99.079155,620.5439,401.7664,-222.18991,407.51355,415.39508,-240.16855,629.5003,363.14856,-409.94513,388.52133,362.58987,-422.25583,634.5078,350.02136,-440.91406,378.19897,344.88736,-453.8452,625.7629,342.65472,-422.1738,383.9684,338.85843,-435.64148,620.9544,350.79254,-407.10406,391.70154,347.562,-419.07666,550.8508,463.95035,6.8205075,490.7139,470.82822,-6.5374293,610.80096,490.8208,-283.9204,473.78003,473.23947,-281.81033,612.8738,585.7529,-241.75346,502.63205,515.3196,-185.92503,605.7256,600.7492,-240.76175,506.63004,522.3509,-180.32932,634.9473,609.6394,-360.01974,520.56146,524.39905,-272.9413
Screenshot_2021-02-11 at 15.55.40.png,squats_down,656.25226,315.04218,-174.1422,669.3417,306.19714,-149.44336,676.0119,307.31055,-149.32214,682.6809,308.3356,-149.28148,651.7173,304.54614,-148.28778,645.5014,303.9284,-148.1734,639.2309,303.52057,-148.21317,694.00354,322.2135,-30.126137,633.4581,315.56464,-25.268456,668.09796,336.4641,-134.53827,645.1846,333.59006,-132.83325,715.9689,389.54117,-61.631252,604.759,394.10788,-11.283574,733.3621,455.16248,-298.68567,592.25714,461.44662,-235.42015,722.0458,415.246,-516.2334,580.4832,409.5389,-469.7153,724.43176,404.23477,-557.9205,569.1036,396.09323,-511.15524,721.21954,397.9354,-545.92993,573.20825,388.76578,-498.36475,715.665,405.55637,-518.2392,583.30475,395.02057,-471.07318,707.3528,547.03644,-4.6728787,638.0438,549.4675,4.8307056,788.0351,506.54083,-262.94763,550.45734,511.16318,-215.90253,750.50555,644.2541,-157.2918,572.1429,634.6046,-167.11775,731.2089,666.8079,-150.95705,588.8573,655.814,-166.85562,777.9494,674.8229,-257.26807,543.3739,669.4474,-262.2415
frame__ku3vgejAZ0g__0010351.jpg,squats_down,1089.1763,536.872,-268.141,1080.819,520.58514,-219.33293,1082.7814,520.5341,-219.29965,1085.0695,520.47516,-219.34973,1069.2155,519.7435,-267.82208,1062.3063,518.7721,-267.77545,1055.421,518.07306,-267.96524,1065.0157,521.32306,-4.3183866,1025.4167,518.8583,-227.43492,1083.003,552.5854,-190.31644,1069.4648,552.39777,-253.91971,1063.004,603.24274,117.063805,962.9995,582.7078,-360.25955,1100.6001,679.3981,-76.52804,1026.0325,698.3313,-551.6274,1158.8086,659.1676,-424.56787,1136.405,653.316,-497.6107,1185.2947,655.23987,-463.9632,1164.414,644.1695,-546.68616,1175.5668,642.03534,-481.8151,1158.7162,626.609,-525.6171,1161.2743,647.01636,-444.6357,1145.4335,634.3524,-485.61115,948.6219,798.1707,143.38304,878.8669,789.33673,-142.36061,1087.707,745.66223,97.96406,965.4576,730.87213,-492.76434,991.551,862.258,239.30423,903.4224,893.3708,-287.05954,951.8606,882.296,251.27509,869.8579,916.3763,-268.42154,1054.814,917.6792,148.46362,953.6061,951.63074,-441.89398
frame__4zBnM_uozXM__0006346.jpg,squats_down,912.0396,468.82996,-83.099495,915.71967,445.34442,-113.75527,919.7457,443.74802,-113.61939,924.03937,442.01196,-113.52703,911.41,443.33823,-54.016537,911.93494,440.04288,-54.03214,912.8896,437.11948,-54.32088,953.76215,428.0739,-189.44096,936.3451,421.94235,74.54492,936.8128,476.84213,-111.30873,931.1723,474.09906,-34.792736,1034.0497,471.42297,-331.06772,982.375,480.50772,199.76115,879.3588,567.4179,-501.94495,829.72644,577.16766,172.44873,694.84204,588.14703,-466.2247,680.76715,600.43115,-15.541933,650.81464,593.58075,-544.4817,640.72003,591.40564,-27.266193,644.8103,577.2099,-516.82886,637.9703,584.14703,-99.46672,663.6092,579.5873,-461.08057,655.4302,593.5936,-55.773396,1173.9391,750.3837,-166.0862,1135.2749,747.0622,166.46594,977.0137,558.91565,-396.977,931.8652,567.47974,272.33902,1003.9556,803.097,-196.76366,972.7002,778.5916,448.2902,1035.5801,842.40234,-175.55019,1008.0144,812.1081,459.68826,912.4461,848.23236,-218.52985,885.438,829.53375,484.79672
frame__JSn5DY10dbA__0005040.jpg,squats_down,1003.0693,195.41663,-595.91327,1024.8713,175.0781,-564.87445,1036.2773,174.30069,-564.65424,1047.7714,173.39812,-564.7045,998.15137,179.61417,-530.03076,990.32904,181.16417,-529.74115,982.57654,183.2105,-529.7938,1082.8706,193.42206,-406.0095,994.7484,205.55016,-250.76419,1035.6758,229.29578,-541.4552,1001.82324,233.06003,-496.283,1172.4286,310.9668,-470.04187,975.486,362.01035,-198.3269,1109.0105,392.5028,-735.7692,835.8464,471.59503,-613.75934,984.59186,271.62897,-820.5203,887.09607,274.15033,-919.2685,952.4229,248.68799,-879.7028,887.8576,224.64899,-977.11224,966.3313,236.44563,-863.2378,912.58905,204.83385,-895.2587,981.1241,253.27512,-816.3001,921.0345,226.23143,-900.5902,1227.5356,614.2086,-63.865765,1101.6987,637.5921,64.02299,1250.819,597.89417,-783.64355,928.1278,646.94525,-421.77957,1288.7449,880.31995,-483.4913,1003.85974,876.32983,-240.85883,1282.8618,938.53796,-467.2115,1054.2368,919.1541,-232.66489,1310.1295,937.5218,-740.23926,890.6353,965.3988,-408.35794
Screenshot_2021-02-11 at 15.53.32.png,squats_down,181.2457,319.96588,-119.30942,183.36227,312.97287,-107.57338,186.52573,312.7294,-107.48516,189.73625,312.4551,-107.47218,174.0048,313.5022,-114.21376,170.00108,313.5872,-114.12447,166.01028,313.75803,-114.11259,190.55022,316.29126,-32.30489,157.25916,318.62802,-62.78676,185.48125,328.81433,-90.07932,173.41986,329.20242,-98.77729,198.2487,345.3012,-9.753522,142.18037,345.16678,-47.403885,211.80191,374.0356,-42.85668,139.98814,367.6527,-138.29042,221.07617,403.08725,-149.5297,150.94855,395.42844,-279.97092,229.60426,416.16953,-177.776,149.93056,410.7356,-310.0184,217.45377,415.04794,-191.77258,160.5702,405.11246,-320.3274,213.61511,411.89066,-157.70764,162.32954,402.5785,-286.16672,194.50314,419.238,3.8338125,162.70741,420.54214,-3.447775,206.16185,392.17746,-172.36807,134.69238,392.16672,-156.808,204.92252,432.52057,-69.99356,149.50302,435.61386,-62.45088,201.05957,441.53842,-61.3153,158.08177,445.7479,-55.139854,208.61479,445.59332,-117.12904,140.79276,451.38138,-98.608894
Screenshot_2021-02-11 at 15.29.23.png,squats_down,568.52216,306.21332,-158.68083,573.96857,297.16806,-133.57054,578.576,297.3675,-133.54427,583.23834,297.50925,-133.4997,560.3096,297.63022,-138.42299,555.1917,297.873,-138.32652,550.06793,298.254,-138.31891,587.96436,307.1808,-13.549839,542.2495,308.0763,-38.74737,577.03033,320.7157,-116.57769,558.59973,321.0889,-123.70214,608.88275,368.7121,23.078564,514.2842,361.54074,6.5425596,653.71826,391.08487,-33.44489,446.21674,360.91693,-58.32265,676.07574,335.9748,-42.824318,512.50836,345.2018,-78.77546,687.85974,315.43094,-56.528717,528.1664,342.65848,-85.275826,682.58215,312.22638,-37.214577,537.54474,340.77435,-69.01622,675.3741,321.79956,-41.837044,532.20807,345.99576,-73.200386,589.05304,508.70914,11.853202,527.96893,508.61505,-11.61281,680.80835,507.5417,-225.06992,465.8734,511.9342,-294.40573,633.36346,612.0962,-101.71079,479.18256,620.32776,-186.32872,613.38855,626.3001,-91.64533,489.8865,636.0479,-177.1175,664.63055,653.76465,-170.4594,458.70157,657.7,-274.7396
frame__8ghtQpeWov8__0004585.jpg,squats_down,957.49884,474.1373,-763.42163,967.35767,450.20145,-741.15985,975.34045,448.90244,-741.0927,983.3765,447.38416,-740.9919,944.51654,452.5616,-738.83044,936.2819,452.58997,-738.6686,928.07166,452.79953,-738.52765,995.9403,447.35764,-539.072,918.7821,454.3529,-522.68317,973.1092,488.31073,-682.63214,945.93835,490.8539,-677.616,1052.1462,521.5969,-351.56424,871.5408,513.33704,-329.71045,1135.6521,639.57245,-484.71194,782.13196,600.33167,-292.01437,1059.8157,641.02435,-792.82056,781.244,670.89923,-469.24127,1039.2308,641.5075,-872.1592,777.4826,693.76025,-507.79736,1028.1367,623.1558,-857.65,793.4562,684.35394,-536.1176,1030.8497,625.7903,-791.93524,801.83545,677.35944,-478.98474,1017.9682,695.3985,-1.9494627,914.15643,698.5377,2.430919,1146.6963,732.4262,-479.5763,796.22284,751.29144,-457.51254,1119.3346,868.29694,-40.74559,814.8216,887.85455,-42.86966,1096.8389,891.6491,-4.7464614,836.3593,911.1852,-9.867107,1171.8799,919.1696,-170.00424,768.5288,944.7508,-194.46701
Screenshot_2021-02-11 at 15.17.52.png,squats_down,593.501,337.67084,-39.052227,605.4996,327.2368,-29.775951,610.7842,327.7456,-29.687258,616.1807,328.1647,-29.73648,593.9798,326.55618,-6.8276405,590.6403,326.1344,-6.871863,587.19336,325.86102,-6.931928,631.7453,337.24527,21.212894,593.4091,333.26743,128.62259,605.57153,353.7512,-23.771343,590.73413,352.42477,7.1302805,673.1561,403.5548,-3.1526268,564.77966,401.97592,156.85031,661.2074,477.0978,-196.11053,525.4172,474.50876,-0.5467376,623.7662,390.98523,-324.31015,545.5833,397.1084,-159.864,616.2233,370.4779,-344.53754,547.84796,373.81708,-178.00615,620.9046,366.33267,-315.93115,550.83704,367.3702,-143.81049,619.0413,376.29788,-311.8992,556.4424,378.0648,-149.80357,650.44727,564.00946,-31.478777,580.8139,565.33307,31.770758,689.0734,523.1714,-393.39133,504.10754,522.5191,-244.15051,695.3634,653.2589,-318.12405,529.10547,640.94763,-196.04546,691.75995,673.7228,-310.27786,546.8283,662.5809,-193.18199,704.4898,701.4321,-435.46832,491.2835,679.32666,-296.64227
Screenshot_2021-02-11 at 15.23.45.png,squats_down,599.9967,322.7697,-234.96815,606.7789,313.03992,-206.14264,611.7288,313.02325,-206.19728,616.77014,312.94266,-206.15338,592.60315,313.75638,-203.64116,587.683,313.87244,-203.57133,582.7716,314.18027,-203.52443,625.36383,321.1088,-78.26213,577.2867,322.26843,-63.430286,609.87946,337.0592,-191.50983,592.5666,337.49677,-186.84932,664.6362,380.22275,-94.3344,545.4984,378.72006,-83.7646,732.5181,373.4138,-392.87582,471.72513,382.05106,-348.14352,643.2541,346.6418,-525.3892,565.75574,349.80313,-446.5408,621.37897,338.3651,-549.6626,587.8645,339.10245,-461.72568,617.36444,342.162,-497.0093,598.77686,339.83893,-410.8474,622.7943,352.67023,-508.90253,592.7388,350.0921,-427.94077,635.21136,540.43616,1.2943888,560.03143,539.7365,-0.8949692,709.9108,503.6313,-382.20343,491.91425,501.1584,-361.40735,697.45233,636.9934,-304.94388,515.1391,630.3372,-270.4223,683.89636,661.75104,-300.22662,530.67114,654.4954,-264.38635,726.20435,669.21466,-445.58353,488.97314,658.8001,-403.55032
Screenshot_2021-02-11 at 15.51.16.png,squats_down,215.11275,387.6314,-198.1269,221.72058,374.35614,-184.0018,226.92978,374.087,-183.91766,232.25996,373.76486,-183.95045,207.0521,374.89078,-185.51303,201.3179,374.8511,-185.43567,195.54521,374.95355,-185.52386,238.88774,380.27054,-82.07879,186.94667,381.5534,-90.204605,225.07452,400.54916,-159.47769,204.8261,400.7766,-161.71426,261.65173,425.63373,-53.1573,160.73169,419.7415,-43.055893,294.76196,471.74927,-166.80397,95.69197,434.57715,-163.34213,294.18118,500.6081,-373.04037,48.81151,427.17697,-336.99026,302.45023,519.55853,-422.0547,27.428955,431.5065,-371.6272,283.69296,510.18402,-431.73706,40.58457,421.70773,-384.72614,278.73383,506.49615,-383.9192,48.42332,424.89008,-348.82068,237.72704,554.6378,-0.69511986,186.149,552.94006,1.0255028,276.1855,516.4556,-293.60464,145.8542,514.00226,-263.35876,250.69267,603.6086,-107.17166,178.6729,595.95984,-58.74429,237.70341,619.4541,-93.86878,195.52782,611.7192,-42.421005,273.42523,641.01587,-191.02647,148.11002,636.67993,-120.22644
frame__4zBnM_uozXM__0005710.jpg,squats_down,983.2969,188.75082,-482.7785,992.5643,172.61496,-404.93387,1002.92474,174.6429,-404.66995,1013.4731,176.51094,-405.01782,959.5239,171.07663,-435.67825,946.33563,171.47491,-435.42914,933.15063,172.35843,-435.28424,1013.10974,211.05356,-86.82578,900.9824,206.38278,-216.99568,994.4283,236.97214,-373.924,951.9268,234.4249,-410.91025,1059.4642,382.16388,-116.14926,806.82886,361.99643,-378.50958,1174.6085,424.22247,-736.2966,809.3042,429.59985,-927.23517,1244.8003,432.8661,-1360.7511,1005.08057,401.12195,-1169.0558,1292.8832,451.01855,-1493.1561,1043.1919,412.11786,-1235.8177,1252.0751,441.95346,-1490.5258,1069.0,399.11502,-1204.4187,1225.2311,448.7007,-1384.321,1054.6924,409.88562,-1156.0641,986.18225,760.8079,49.900448,828.2257,750.21436,-49.958294,1221.5364,631.51184,-529.43085,690.08887,609.90826,-775.0792,1053.8141,895.93024,-197.41191,774.0629,892.00385,-321.20197,982.6012,947.8567,-174.9347,818.1572,952.67786,-286.75775,1166.7777,985.42804,-381.8975,685.451,972.3387,-512.4726
Screenshot_2021-02-11 at 15.57.08.png,squats_down,182.97452,286.71176,-185.22168,188.06578,276.85788,-180.02528,191.90968,276.93118,-179.98288,195.80594,276.95016,-179.96976,177.35971,276.40585,-182.21822,173.19885,275.98288,-182.20175,169.03058,275.62744,-182.21902,199.00647,279.84265,-109.727,162.09453,277.80475,-117.640854,188.10115,295.8418,-156.40141,174.69278,295.0182,-158.29004,214.3812,308.26526,-62.253216,138.345,310.4176,-69.24025,228.51003,349.2151,-126.98737,134.4225,364.72415,-134.74289,236.20189,328.35486,-274.86526,133.80502,336.47308,-268.61172,241.48196,325.54343,-303.3597,131.2242,331.98135,-293.62842,238.85423,316.4815,-309.52924,131.50919,319.6082,-292.80377,234.28427,318.5532,-281.58408,134.80544,322.2257,-271.3417,195.80298,397.7948,1.0934308,148.5667,398.20682,-0.97439134,244.53282,413.38623,-191.453,106.54336,410.48285,-182.25899,220.8233,476.34012,-53.67571,119.960945,476.0184,-42.57923,208.75421,483.52396,-43.549118,129.90451,485.14587,-32.485695,234.09038,513.3103,-117.69791,104.91976,511.20148,-102.05955
Screenshot_2021-02-11_at_16.12.36.png,squats_down,1462.7247,699.9712,-891.76166,1473.1001,668.5049,-884.29755,1480.6908,665.8377,-884.44977,1488.4908,663.036,-884.647,1448.0316,670.23914,-897.3804,1438.5238,668.4885,-897.2328,1428.9045,666.9407,-897.0172,1492.4724,643.5815,-685.64984,1408.4637,646.7397,-737.0836,1469.2502,703.9257,-804.3362,1443.6002,706.261,-817.8314,1549.6378,679.00507,-492.0584,1319.7731,687.62787,-512.6302,1623.4222,836.2869,-758.0481,1262.5922,876.5435,-734.056,1516.7179,784.3182,-1109.8088,1386.207,788.17535,-1005.67993,1492.7866,768.566,-1176.5472,1433.5868,770.05817,-1051.9642,1484.6946,751.5803,-1112.3026,1419.952,723.5809,-1007.03723,1484.6223,760.43524,-1089.4442,1415.3193,732.3492,-990.04584,1456.1393,866.6968,0.74213195,1333.0891,870.2441,-1.0492775,1624.1124,916.42773,-602.12524,1219.0709,901.3498,-610.739,1592.0822,1124.9576,-265.4228,1250.8026,1107.8263,-241.07968,1562.0057,1161.5548,-240.8137,1271.9653,1143.8282,-210.98813,1664.4576,1202.4718,-455.86105,1197.2764,1178.3339,-423.82895
frame__jFWW75URYbM__0001376.jpg,squats_down,1021.0029,531.22144,-967.5817,1030.5072,509.8142,-937.8234,1037.3494,509.06458,-937.86847,1044.2352,508.22125,-937.7742,1010.93756,510.83508,-937.05884,1004.08014,510.6894,-936.95734,997.1575,510.6193,-936.88007,1054.3762,510.67636,-721.6717,989.63995,513.925,-717.7918,1033.3777,546.22955,-885.8834,1010.2413,547.45953,-883.29694,1106.2355,588.40234,-538.8164,943.9029,585.7689,-549.3508,1142.6473,715.74347,-848.77246,891.5184,702.0886,-862.0684,1127.5007,650.45624,-1223.4082,923.4306,623.2921,-1238.6831,1129.1754,621.3326,-1304.169,931.90436,594.1448,-1317.2373,1129.1611,603.52686,-1252.6453,932.4737,577.23914,-1265.4701,1119.7775,614.8939,-1210.1958,940.05115,591.6735,-1224.2861,1075.721,726.01263,1.0623958,981.2503,720.9779,-0.5014061,1169.8666,771.1002,-618.9506,908.1292,759.0266,-642.9466,1143.578,890.8534,-114.640884,900.3897,893.82745,-157.40369,1128.6763,910.15454,-75.52841,910.8176,919.19244,-123.018654,1167.766,945.87427,-304.25446,864.2399,943.2741,-372.44653
frame__XJcoOdKlYqk__0022306.jpg,squats_down,1659.3796,956.8546,-351.14212,1676.7346,925.67456,-442.76697,1680.0947,926.11597,-442.854,1683.8602,926.4472,-442.93964,1682.9874,919.69495,-318.36597,1690.7856,916.41705,-318.10095,1699.0857,913.6328,-317.93903,1736.3877,927.0802,-628.34204,1757.075,909.9212,-61.561905,1689.0898,989.19824,-419.45673,1696.5502,982.0935,-254.56444,1847.5553,1091.0729,-816.8452,1878.0665,1096.2693,365.45102,1669.1342,1355.9225,-639.04083,1767.166,1305.2366,307.0449,1532.5408,1179.3501,-142.9137,1576.9858,1163.1996,-36.78929,1474.2104,1132.7311,-222.56197,1515.846,1108.192,-43.879612,1526.0369,1105.6051,-260.10883,1527.8987,1094.8285,-19.251915,1559.3102,1128.5934,-143.23254,1556.9103,1111.1506,-48.8448,2177.8364,1433.8042,-396.94693,2154.9194,1403.2499,397.9059,1880.758,1468.9893,-1059.1218,1869.3,1439.0741,1155.8744,2002.9808,1900.8746,-1085.9364,1936.0419,1762.9719,1678.2122,2067.8958,1985.4985,-1094.0911,1988.9053,1828.7461,1734.5747,1804.1887,1963.6445,-1258.8074,1758.0217,1842.2529,1765.8468
frame__8soywvU3l0w__0021627.jpg,squats_down,965.2605,665.5643,-587.8748,972.6101,649.8622,-567.34607,978.7721,649.5626,-567.3762,985.0491,649.17834,-567.4626,955.3118,650.75073,-565.5137,948.9194,650.83246,-565.41473,942.451,651.04376,-565.3384,994.1208,657.0952,-426.30322,934.39514,658.18286,-416.654,977.64246,681.12897,-534.62726,954.7337,681.80676,-531.06573,1033.7384,725.55035,-325.82022,901.7915,725.53625,-334.83847,1079.0729,828.74713,-458.2196,858.1751,836.24396,-439.66107,978.07056,830.9537,-591.54736,946.74945,849.0601,-585.67255,953.1269,835.8589,-631.5623,969.9454,857.72186,-634.86115,948.99176,819.1405,-609.12994,975.6863,836.8312,-614.2369,956.4781,819.6742,-584.6992,970.9075,834.6104,-580.0798,991.1838,852.7862,7.2751703,919.7475,850.027,-7.1756806,1107.787,843.42035,-405.71115,868.56433,829.48944,-492.04364,1066.9666,944.63824,-64.346436,866.0554,927.0116,-120.053375,1046.7539,959.5151,-36.049717,875.61084,942.654,-87.89264,1109.486,998.4556,-166.00146,832.5806,971.1435,-232.61682
frame__UwW586G8GnU__0022398.jpg,squats_down,644.0616,362.5655,-457.41284,649.3552,352.9372,-437.90634,653.2446,352.88834,-437.86383,657.1891,352.78064,-437.84552,638.19666,353.15094,-438.48343,634.1758,353.10858,-438.28458,630.13904,353.14523,-438.2246,662.28827,357.01825,-300.91504,624.0882,357.64984,-306.7423,650.7321,372.17728,-404.84827,636.23254,372.16544,-406.4159,682.9762,397.72296,-214.5765,599.0714,401.6361,-217.9118,699.38635,444.20264,-386.31134,585.1313,453.5862,-366.7024,675.98444,457.6959,-670.4095,618.9143,465.14117,-613.17926,673.09265,466.44064,-736.0056,626.9128,472.44263,-672.1375,663.8584,458.72614,-725.95856,634.4189,464.12683,-670.7032,662.8226,457.35684,-672.9107,633.9617,462.58804,-616.76953,667.6544,490.12515,2.0670397,618.6228,492.8327,-1.5724444,702.1711,504.70334,-375.44986,595.1192,508.6787,-386.5927,713.9259,607.8436,-214.33209,578.9396,609.5449,-209.72644,709.47076,622.82477,-207.0058,579.4269,623.0471,-199.96414,723.69214,644.53467,-364.01523,576.0386,648.03314,-350.34573
frame__4zBnM_uozXM__0007108.jpg,squats_down,905.32605,253.62476,-32.01108,920.1732,227.24161,-67.2358,925.2216,226.36691,-67.10982,930.52783,225.34685,-67.16246,918.3915,226.22377,-2.97544,920.9509,224.62532,-2.9297318,923.8739,223.47595,-2.8605123,970.67377,231.05426,-154.694,959.6606,228.19281,136.12057,929.98035,278.6484,-62.86543,925.1412,277.52917,21.00462,1037.538,343.00677,-312.54266,1011.7264,369.92688,306.0261,829.52765,437.28235,-428.9226,828.2601,470.84607,379.13843,616.99084,422.0319,-350.5639,633.8168,442.12436,256.1401,563.27954,412.7181,-420.2802,587.36255,412.39444,267.59543,560.94226,393.15097,-390.48254,577.7273,405.82928,190.59297,581.94336,405.0972,-341.81595,596.56085,423.67465,216.1954,1231.5131,719.21405,-203.30824,1194.2687,706.29553,204.22096,957.1795,569.1819,-294.519,922.1333,558.97784,269.0517,1111.8757,850.7274,9.534981,1035.8513,821.5391,474.72314,1174.8118,880.40515,38.852943,1094.0414,850.7153,490.8913,1039.15,935.3257,103.93984,946.8771,922.9581,582.9259
frame__0Wad9V2m4JI__0012916.jpg,squats_down,696.022,351.67413,-152.19284,703.872,341.68295,-121.83387,709.34607,341.96555,-121.84796,714.9139,342.1427,-121.92626,688.84436,341.65005,-122.752754,683.2732,341.66757,-122.67116,677.67664,341.77628,-122.7472,723.85834,351.5444,14.182044,671.24207,350.5136,12.199427,706.80176,366.46347,-106.09566,686.5276,366.066,-106.77321,754.7865,412.974,28.273632,637.1842,411.92233,9.634175,749.4288,500.46732,-104.63891,649.87616,502.68768,-123.74162,717.1833,495.4404,-289.5716,691.1599,491.25375,-277.17087,711.4951,502.60306,-332.35858,702.4633,492.25388,-313.50674,708.0401,488.74698,-326.8468,698.66064,477.074,-313.8519,705.9222,486.57568,-291.3787,698.397,477.66803,-278.77588,719.93665,565.5901,16.023472,646.81226,567.8685,-15.423757,788.8456,532.5856,-298.1436,616.8281,533.3341,-390.69952,758.62866,642.91925,-182.04001,625.0129,641.109,-222.2768,742.02527,657.8689,-172.0566,632.3696,661.71844,-205.58081,775.83105,693.88135,-293.99326,601.96094,677.19196,-310.49146
frame__mGvzVjuY8SY__0003053.jpg,squats_down,879.3353,444.00262,-513.6883,901.8752,419.73615,-509.8059,911.6291,419.62756,-509.74463,921.39777,419.37302,-509.6632,881.0497,419.15646,-465.68796,875.06586,418.16867,-465.39813,868.98535,417.48654,-465.17633,951.967,426.48038,-417.47278,883.617,422.5289,-219.11661,903.3679,467.83432,-478.43402,877.46594,465.0803,-420.131,1024.9235,525.6636,-376.3382,844.6256,520.135,-90.44048,1000.57983,678.407,-534.47156,749.3496,689.6903,-454.089,902.9732,539.1032,-588.2616,824.5098,550.9432,-846.5089,866.96515,512.7049,-602.07495,840.0467,511.49738,-883.62134,894.1496,488.85565,-581.7256,853.9755,487.19907,-783.70135,906.3282,501.4242,-569.4365,859.3142,507.3542,-812.396,1035.6711,738.1228,-77.13254,922.9179,733.3996,77.30481,1097.5315,776.8904,-828.69055,760.34644,749.136,-315.0829,1112.9025,973.27905,-490.40012,826.77386,908.0335,74.29909,1101.0436,1017.9094,-471.05902,860.7559,941.97235,104.69145,1148.2815,1029.3638,-744.8762,748.7403,976.0657,-55.691986
Screenshot_2021-02-11 at 15.33.34.png,squats_down,604.47754,307.79523,-216.9947,609.3876,298.78906,-200.78896,613.6377,298.78204,-200.74529,617.9854,298.73688,-200.73564,596.9059,299.03506,-201.97636,592.2999,299.13617,-201.98338,587.7176,299.36346,-202.01259,623.3381,306.39377,-116.89502,581.7033,307.3443,-120.90357,612.908,321.61096,-186.75066,596.3614,321.97897,-187.8167,653.7494,370.17026,-69.07383,553.30804,361.86084,-64.13696,714.70795,408.95795,-56.7944,494.8834,376.73062,-4.1698256,662.6647,440.7588,-75.96846,538.7967,424.62363,-17.575256,649.0233,451.6879,-84.218895,549.3523,444.32898,-26.616327,642.14954,441.64987,-79.86229,561.2973,437.09955,-26.630646,647.54254,440.46796,-70.52509,558.613,433.05725,-14.114649,637.8407,480.78687,7.467873,580.7775,482.77325,-7.346258,648.7981,488.05362,-282.2621,569.9854,527.93646,-109.09021,623.9461,552.30536,-110.6881,595.80066,563.0697,191.34294,619.8935,555.9374,-93.06652,599.2159,564.9263,222.4754,613.4817,580.5394,-172.38576,607.64954,588.8242,186.15672
frame__zLBFQ_mFl2E__0019168.jpg,squats_down,964.83673,523.86334,-454.24588,967.9177,512.3346,-413.85263,972.78314,512.2176,-413.91257,977.7555,511.981,-413.9927,951.1339,513.2959,-427.40665,944.6676,513.7682,-427.30875,938.24664,514.3759,-427.15256,979.5313,521.1196,-215.66513,923.8244,524.47723,-281.99924,972.1123,541.5863,-383.83835,951.84717,542.4137,-402.6285,1020.83813,608.70325,-111.70371,869.3502,609.26764,-209.66425,1081.1545,720.90704,-290.42667,845.6234,749.97797,-406.86752,1011.8475,674.83417,-586.5181,948.0578,693.99817,-623.69836,996.0877,663.60077,-643.6986,982.4885,683.6012,-659.631,987.3463,649.2588,-598.65314,973.87665,657.14075,-634.8256,985.82886,655.29736,-573.9815,967.3874,664.388,-608.8487,965.90643,762.4103,38.445736,872.08716,760.27704,-38.302284,1071.2526,784.77844,-462.41254,806.95795,784.70667,-599.155,1010.1501,914.5988,-46.59911,806.89954,935.47705,-218.93909,981.6106,936.4317,-10.7217865,813.609,958.6272,-187.85916,1064.9298,962.1073,-145.82701,788.94885,985.8918,-394.07916
Screenshot_2021-02-11 at 14.46.15.png,squats_down,334.32703,278.6572,-128.33849,340.43652,272.9961,-101.47014,344.85104,273.2391,-101.508316,349.37155,273.42154,-101.81305,328.15625,274.2118,-98.51917,323.7297,275.0198,-98.500916,319.2947,276.03705,-98.48177,358.01938,287.21176,5.7500916,314.6376,289.92654,19.08954,343.95465,294.06094,-93.79203,327.90036,295.42764,-89.73528,377.00418,338.48322,-46.164375,301.68228,331.88144,-47.053406,393.82855,301.47253,-313.90247,270.28772,298.64188,-314.64774,394.99915,237.41182,-424.9291,257.82327,243.53542,-506.02576,405.37808,219.6017,-455.4966,246.48448,230.4614,-554.69934,394.87656,220.95396,-442.41385,261.51764,230.11432,-541.66614,388.36523,232.43045,-429.3881,265.96262,241.20728,-510.50357,356.14398,479.72702,7.1259565,303.19788,473.79202,-6.838352,423.93643,408.25714,-268.2532,251.5976,401.93716,-294.28622,410.18097,515.61426,-154.76234,257.1475,494.46082,-140.92014,394.59122,538.8324,-146.69144,271.46817,518.67426,-129.84749,446.93094,538.6065,-226.40712,214.25859,510.77402,-211.06119
Screenshot_2021-02-11 at 15.09.38.png,squats_down,612.2003,385.37714,-383.70877,621.2381,370.1042,-381.76245,626.1585,369.72852,-381.69067,631.11005,369.26837,-381.6259,607.8472,369.68964,-379.12808,603.4685,368.7837,-379.15353,599.08716,367.95517,-379.43295,641.2692,365.3168,-278.60168,596.1218,363.18054,-269.8046,620.66724,392.1188,-338.04318,606.49243,391.51328,-334.58945,672.27625,397.89352,-135.96365,567.694,393.80365,-160.58441,672.35254,475.8174,-232.58049,555.86096,473.17023,-266.00464,656.7432,454.01782,-513.4822,579.23944,459.44504,-539.03687,654.09436,448.16785,-577.8428,587.1475,459.29382,-606.19836,654.2212,430.3933,-576.8066,589.9778,439.97534,-603.7105,649.1969,434.4988,-521.88885,593.8386,442.98093,-546.9986,648.71954,507.6225,-2.6589754,587.6071,507.78848,2.9463346,728.003,511.21225,-273.38464,502.95825,504.6212,-285.79407,706.9604,617.5698,-138.58131,518.8166,620.13965,-177.08568,690.45874,639.7697,-131.03528,533.7766,641.0838,-170.07124,739.7871,645.77734,-246.96672,488.80768,652.6194,-274.23062
frame__FsqhUFcjL8k__0002647.jpg,squats_down,1077.7301,460.07605,-223.17865,1066.0951,446.10858,-184.252,1064.0258,446.29108,-184.18896,1062.2849,446.6482,-183.91133,1063.0453,446.4753,-246.6471,1059.1885,446.3679,-246.46783,1055.194,446.42865,-246.52118,1038.7701,455.82504,-11.690988,1030.6561,454.01495,-290.47095,1067.9928,478.61606,-161.30643,1065.1306,479.18436,-238.23163,999.45636,542.96625,156.44244,990.2953,548.4634,-432.23245,1086.5513,628.30115,41.647343,1090.6947,652.9925,-408.2801,1131.3364,564.7048,-287.6926,1104.396,534.32587,-115.82199,1153.8473,542.5713,-296.27975,1120.3287,502.2785,-135.75575,1129.4761,529.74335,-297.10034,1088.0079,493.98932,-143.26341,1121.054,539.35675,-298.90826,1076.6149,507.28467,-108.341194,849.6115,710.1186,196.67657,824.13153,731.05615,-196.24237,1026.6545,750.2646,395.49567,1003.5758,818.06836,-259.42093,921.8899,859.3141,490.63608,942.0559,973.77295,-182.18956,896.1671,874.99255,501.29517,914.01733,1002.0251,-181.37636,968.29047,888.28955,512.2587,1017.9524,1006.5876,-246.1292
frame__nfRdTJY_xgM__0001239.jpg,squats_down,996.46045,480.4045,-263.90887,1007.02094,471.14993,-299.91278,1009.0061,472.18494,-299.64523,1011.043,473.25046,-299.73044,1008.7953,469.7515,-244.89369,1011.08777,470.00668,-244.73148,1013.48395,470.5584,-244.49217,1027.5885,487.7889,-377.96265,1032.6042,483.77582,-123.462494,1002.5109,499.53653,-287.17743,1002.7707,498.71527,-212.88164,1025.5364,567.00476,-477.2751,1061.4114,543.97015,88.85268,919.3526,563.98456,-601.4096,967.73517,538.4408,261.95425,810.3191,541.6422,-599.59265,879.8411,520.7209,212.86768,785.62396,536.26,-689.36694,866.86066,509.78705,233.70644,786.9762,528.2908,-659.2436,858.85565,509.4165,175.00858,797.15686,533.70966,-593.8646,860.0623,518.44824,187.15839,1102.257,753.5469,-185.59248,1113.1475,728.0438,186.16698,954.3084,747.37134,-145.46829,984.1839,726.1354,399.7641,1025.1576,869.5492,183.07053,1003.2469,852.86957,644.1548,1051.6017,893.3637,214.22995,1021.9131,878.08234,667.99084,978.06116,882.9989,221.2731,943.2515,870.40765,691.35864
frame___0CAcnhL5Sw__0015916.jpg,squats_down,857.5268,406.26248,-799.60974,873.67053,373.35986,-770.70734,886.07947,373.24942,-770.62897,898.55536,372.8419,-770.49414,840.53156,372.907,-772.2453,827.7066,371.66342,-772.051,814.83057,370.70013,-772.2081,913.20844,383.066,-537.3646,795.47955,379.20212,-547.41614,878.70105,432.58148,-705.80164,834.03503,430.9419,-708.3075,989.9439,491.4839,-340.15527,706.39764,487.9013,-379.08334,1109.6045,688.4175,-426.36063,617.7806,696.3331,-350.09665,913.4706,727.22205,-438.59158,784.76245,745.0238,-326.33966,870.43066,754.2215,-483.03198,825.8873,771.5679,-360.7411,847.32465,716.9319,-425.2927,843.1594,740.43787,-344.9859,865.0753,713.2627,-412.59912,835.4203,729.02405,-316.24457,921.0635,739.10913,18.590223,771.3465,746.92706,-18.319262,1173.2496,655.9075,-504.54968,545.93384,658.04205,-582.7176,1100.6711,913.37146,-185.32117,624.66833,926.3854,-236.2157,1054.662,956.5855,-157.36371,668.1704,968.5469,-205.5092,1216.528,1011.2834,-355.3655,537.91705,1025.7998,-413.53342
frame__TwOuh73cGGQ__0002302.jpg,squats_down,965.16724,481.63928,-233.99007,958.9374,472.1732,-189.74345,959.2682,472.31735,-189.84889,959.8867,472.54633,-189.74042,951.6018,471.22076,-231.68085,948.0204,470.9362,-231.61226,944.4613,470.73828,-231.40674,946.8341,478.41562,2.6725276,925.32477,475.15222,-183.43768,962.3103,495.06396,-168.09848,955.6497,494.4562,-219.98123,958.54236,552.40985,76.45076,879.2078,534.00977,-264.55243,1033.057,605.51935,-112.54492,945.2375,612.63055,-430.8214,1027.3824,538.76117,-350.8426,995.4517,528.57916,-325.5147,1029.3239,522.02094,-376.43475,1010.0362,504.07712,-336.7582,1010.2937,514.69006,-328.81784,988.8535,501.1702,-336.72913,1009.0741,521.8515,-337.79956,984.54333,511.23627,-318.1407,862.1262,695.20215,109.564186,799.81366,691.05255,-109.360825,983.50287,729.6706,-142.73036,846.5285,745.61084,-650.0755,928.703,840.7487,140.41777,803.5553,865.4923,-355.55615,904.3236,861.4385,165.87582,789.868,878.1315,-335.3975,987.4151,884.73834,52.425358,822.22076,916.94684,-528.05853
frame__YArvGEk8c6c__0002123.jpg,squats_down,1250.3633,554.93976,-724.51013,1265.1691,532.1065,-732.5111,1272.6324,532.0576,-732.4841,1280.3608,531.74524,-732.147,1240.8701,529.9033,-736.75586,1233.3674,527.87244,-736.65,1225.9772,526.2031,-736.7068,1293.128,522.83514,-537.2519,1214.2201,513.5898,-547.19006,1259.3086,565.25696,-632.67206,1237.6685,563.3386,-635.15094,1352.9335,556.99115,-179.1875,1167.6368,544.5123,-214.29712,1428.742,603.28,184.39474,1097.4104,580.01056,213.19955,1429.3296,685.7693,343.45972,1090.9911,674.73517,481.84598,1438.1648,705.932,343.43063,1075.4999,694.1122,510.05167,1420.188,701.49786,283.68082,1100.0833,698.7463,468.66678,1411.0858,704.208,323.82208,1110.8662,697.3092,475.79614,1314.1539,762.80365,-14.303471,1207.0519,762.5013,14.253958,1473.5598,757.5775,-418.3095,1061.4147,713.52234,-389.12717,1415.9062,948.54895,-478.6814,1103.698,921.0951,-200.02342,1386.4518,995.5207,-491.8935,1131.1661,967.33826,-186.62442,1472.4916,965.95905,-651.5574,1042.9812,955.1631,-336.45297
Screenshot_2021-02-11 at 15.28.33.png,squats_down,618.9405,276.98508,-300.17935,624.3057,265.3878,-279.5628,628.8311,265.08136,-279.5847,633.4163,264.68524,-279.6078,611.37427,266.442,-280.57663,606.47485,266.6762,-280.51294,601.57587,267.01535,-280.45386,639.1026,270.58734,-160.19188,595.39276,273.36917,-166.79358,627.78406,288.919,-257.41092,610.69946,290.01288,-258.9955,669.7045,325.86365,-97.468285,564.00116,327.883,-101.150536,701.5935,399.35715,-197.88724,528.7613,400.02808,-212.71619,732.8559,359.6147,-361.05002,507.97217,360.2346,-411.98743,747.52057,343.035,-405.03296,498.16357,348.6937,-451.8554,746.14746,332.48108,-397.11755,500.29843,333.88623,-451.31262,735.8995,338.56046,-365.70248,508.21866,339.6231,-416.32352,646.7696,450.22223,7.322051,585.7655,451.31616,-6.818625,708.7608,470.65378,-354.48672,550.6016,469.47128,-388.49808,672.15405,553.47815,-87.12991,565.15546,561.2957,-159.23447,655.89044,564.29504,-66.373276,575.51776,573.71497,-142.44339,696.95825,594.3364,-178.27943,549.4909,599.74286,-269.8115
Screenshot_2021-02-11_at_15.51.18.png,squats_down,1262.7028,548.63873,-451.85458,1276.9359,526.5138,-416.43185,1286.4746,526.2067,-416.24857,1296.1483,525.6757,-416.28665,1248.9088,528.56165,-416.5288,1239.1942,529.13806,-416.2128,1229.4567,529.9513,-416.4289,1312.3229,538.13074,-147.1418,1217.3883,543.59155,-152.53763,1281.5973,574.0546,-349.03397,1246.8749,575.5527,-350.33527,1377.695,629.14716,-41.98515,1152.4852,641.6494,-51.485687,1424.1062,713.6355,-432.36493,1110.6196,732.5025,-478.01147,1464.5199,717.92865,-1113.1915,1103.3711,702.92175,-1156.9712,1492.2836,734.9207,-1247.9282,1098.4469,714.7386,-1286.8737,1462.9127,717.3312,-1277.3221,1115.222,684.53735,-1297.9609,1447.1794,717.0731,-1141.6583,1125.7755,688.6607,-1174.3167,1351.6249,894.8241,-0.35477895,1207.6724,902.7744,1.5860529,1473.1101,961.4809,-755.7974,1062.2192,988.99506,-730.9823,1394.711,1176.42,-281.5518,1125.6042,1182.9011,-310.02634,1356.5792,1212.3436,-248.56017,1163.7704,1214.8793,-279.29605,1456.9689,1262.6714,-502.15137,1064.1046,1273.8712,-531.80493
Screenshot_2021-02-11 at 15.20.52.png,squats_down,603.681,330.32324,-361.75095,609.84406,317.9042,-342.23843,615.05994,317.66287,-342.20874,620.2571,317.34335,-342.1924,595.5765,318.63925,-340.89883,590.3192,318.68283,-340.80408,585.0295,318.85565,-340.86365,627.292,322.10553,-219.52791,579.1388,324.14786,-214.61986,613.928,342.0253,-317.12753,595.07086,342.57526,-315.2056,662.05963,380.8812,-177.4304,548.956,385.77625,-148.81857,652.5346,477.2979,-358.59616,549.51575,487.33102,-332.63757,611.2872,412.27563,-548.61993,582.46893,415.37756,-551.9264,600.3015,393.549,-589.36444,592.4235,396.2515,-590.1721,608.2008,380.38055,-557.7386,584.2806,380.9886,-563.24286,607.0933,386.452,-538.75323,587.71216,387.61868,-543.03613,642.3044,504.2238,-2.5711513,575.8065,506.1577,2.9593463,699.65436,489.03458,-410.94598,532.4174,487.245,-409.15213,669.6417,599.7742,-265.59296,544.53687,607.5444,-307.18616,660.32,610.96655,-256.93225,552.9538,623.5454,-303.23248,666.9503,646.832,-414.82758,539.4749,652.08575,-456.78073
Screenshot_2021-02-11 at 14.44.55.png,squats_down,464.2285,227.07672,-193.18462,468.9355,222.50934,-171.90903,471.65207,223.28914,-171.90858,474.43616,224.04419,-171.92023,460.36218,220.76712,-174.43817,457.32257,220.12114,-174.3833,454.26495,219.60735,-174.41937,476.90213,230.19247,-70.954185,448.144,224.17046,-85.532135,467.14404,237.64967,-157.88937,457.0705,235.26811,-161.6869,490.69913,268.9839,-93.19008,422.8095,257.53394,-121.57747,517.9603,266.54892,-280.76114,427.22006,274.5008,-297.82062,464.3268,248.57365,-365.29507,477.21533,258.01004,-367.1204,453.87402,243.75114,-392.0445,486.28745,253.36565,-394.16266,448.83685,245.41217,-368.33124,491.3522,250.65671,-374.97513,451.42114,251.08199,-360.4445,487.7501,255.65823,-361.24945,467.4291,364.50406,10.354838,422.13113,357.4191,-10.244105,511.29495,336.91495,-276.46042,390.09952,339.6767,-313.82126,491.80005,420.2462,-115.37131,384.8056,420.90195,-171.29259,478.21524,436.70242,-103.5837,389.6776,437.19937,-161.68726,519.805,441.3908,-209.4998,368.08545,440.34048,-274.596
Screenshot_2021-02-11 at 15.51.36.png,squats_down,205.28975,449.41492,-298.3568,212.00128,428.95398,-303.38388,218.82556,427.7771,-303.32294,225.61617,426.5247,-303.26035,194.224,430.1807,-304.48148,187.12828,429.7322,-304.34586,180.01735,429.4124,-304.33762,235.53903,424.28546,-239.62358,170.69492,428.33627,-244.2703,217.94981,458.82413,-265.93246,195.55411,460.02502,-266.7859,270.17984,452.44485,-167.00258,153.3565,454.17572,-167.29594,309.03882,530.3845,-215.53922,131.94711,523.2144,-199.28146,237.0353,513.1136,-308.5153,173.42595,514.34326,-321.7837,215.8757,518.71716,-329.18726,185.30783,522.0375,-344.3164,214.14755,498.38654,-314.32666,189.43355,503.98657,-341.49878,217.76675,498.21017,-303.39685,189.8903,502.38754,-321.40726,248.1576,548.07916,-5.592287,190.6271,548.42554,5.602694,282.21158,543.09814,-203.12091,138.52602,540.8304,-193.77158,247.33192,610.80255,-67.130875,178.03299,605.769,-52.018406,236.55093,621.3158,-54.937397,195.92526,615.448,-38.466446,258.1902,648.02094,-120.393005,153.59586,648.73834,-89.51183
Screenshot_2021-02-11 at 14.32.32.png,squats_down,351.85645,277.35986,-419.53403,357.14154,263.7699,-414.16037,361.40878,263.20435,-414.13342,365.6998,262.5527,-414.06906,345.30347,263.94897,-412.1019,340.95108,263.28488,-412.00644,336.55032,262.7201,-411.95105,372.50473,258.17218,-311.75647,330.32602,258.647,-304.54382,359.4129,281.82086,-374.73065,344.96228,281.75406,-372.1229,403.0604,279.101,-225.25804,303.73346,279.73758,-214.6972,467.71606,324.09735,-323.87097,243.66919,323.15784,-296.65268,448.2777,360.99554,-476.56973,260.24802,367.6163,-460.47552,445.60312,375.64282,-513.7209,262.0809,386.9685,-503.79,433.9459,366.07907,-518.29346,277.12943,377.94046,-509.56216,432.57983,364.81033,-479.7677,278.89578,374.48087,-465.85663,383.50888,388.27658,-5.5785513,330.7936,389.32028,5.9427714,415.98596,399.81158,-344.59445,293.8544,404.4879,-300.30997,398.7895,478.82822,-113.08784,305.88333,478.8719,-71.27258,391.427,489.16464,-95.327866,315.4076,489.72485,-53.29125,404.22736,516.46423,-203.5602,289.15692,513.9914,-161.45601
Screenshot_2021-02-11 at 14.33.03.png,squats_down,331.411,131.40019,-192.4449,336.91824,118.84446,-178.31804,341.45605,118.58009,-178.32532,346.04593,118.24243,-178.31583,323.79678,119.04737,-179.69499,318.8422,118.77467,-179.57904,313.87744,118.601204,-179.60109,351.21213,120.40867,-68.29126,305.52368,120.736336,-75.33869,339.02164,140.8016,-149.95757,322.06308,140.7451,-151.56676,377.8461,161.85675,-14.659033,274.3511,160.05902,-13.785877,412.74612,218.36197,-126.683586,242.91035,226.27208,-136.40053,385.6309,224.06146,-352.6589,269.10757,216.17497,-368.1245,378.12872,233.1708,-398.8251,276.89938,220.03635,-409.35583,371.00934,221.90802,-391.76422,283.9539,204.65489,-410.57004,370.71072,221.47897,-354.19232,285.11337,206.05669,-370.3625,350.4332,286.9766,2.7524157,292.052,286.73572,-2.4115283,389.37958,267.69736,-344.98877,254.11853,272.13254,-329.81607,372.63174,384.5345,-261.22513,265.51166,379.63724,-247.02235,362.0583,400.84833,-257.20456,273.28055,395.56412,-241.1387,383.94794,424.9196,-379.25107,252.47311,416.86295,-352.6672
frame__diFjQVUL7wk__0007470.jpg,squats_down,1071.2266,457.09882,47.011425,1064.345,439.65103,57.536884,1060.5698,437.83817,57.736797,1056.7969,436.07486,57.6717,1069.5271,443.1875,0.89381576,1068.9714,443.21014,1.0041982,1068.2163,443.3174,1.130819,1034.5717,433.84183,134.43181,1050.6912,443.03113,-124.25539,1056.487,465.39465,81.51531,1061.3069,468.04758,8.994949,959.8123,477.2007,308.5399,1022.04016,503.40097,-237.27522,955.8171,542.54584,526.3159,1045.1375,598.1842,-222.97546,1015.3624,495.49396,700.3472,1067.213,535.22437,-32.59576,1029.4669,474.33966,751.00195,1077.5542,515.46783,-44.79024,1028.7651,468.74088,740.0447,1071.3562,505.17758,-28.577625,1023.3665,477.40833,698.08435,1065.6642,514.5311,-18.409986,845.4755,603.09985,180.15736,874.7821,616.8541,-180.46912,955.3891,649.1398,556.8408,1021.19885,674.0133,-221.4225,896.8868,766.761,755.52374,968.57117,818.10266,-289.36166,871.9204,787.2806,775.98785,935.2046,844.74567,-290.04926,932.0621,789.38574,847.5855,1024.5763,851.7897,-264.341
frame__MythPbjCmZU__0019103.jpg,squats_down,773.70996,502.35754,-163.92694,780.26135,483.40698,-174.47209,785.73456,481.32358,-174.3884,791.2145,479.1357,-174.17114,770.8051,486.26404,-124.577866,768.55804,486.51395,-124.410614,766.34094,486.9146,-124.352905,814.1474,477.9826,-169.83127,783.1649,487.05377,50.903072,795.36273,511.835,-159.63937,781.04095,516.35986,-95.834305,887.7312,538.4062,-256.83838,809.3621,551.433,192.72237,842.61005,669.47156,-400.78513,780.819,648.4304,84.88618,770.7433,594.6739,-393.91125,752.68494,582.8164,-193.58908,750.2959,573.29584,-429.0629,739.5459,567.0668,-230.27718,766.12915,561.323,-413.80768,749.60016,557.10455,-212.20409,774.9462,569.54706,-384.16077,758.46,562.768,-192.66234,969.41766,680.31964,-116.26774,913.9458,687.3073,116.98449,894.9865,709.3405,-612.797,804.32635,677.3126,-279.0274,958.2903,869.79785,-491.90878,869.75275,823.2415,-249.73251,981.2549,892.3871,-485.1756,897.35876,846.91016,-249.985,922.8914,932.2289,-666.65906,832.61035,872.0101,-380.93228
frame__6g3BE11bR4s__0021022.jpg,squats_down,1120.106,287.31924,-595.35925,1115.5624,264.88168,-544.32574,1120.6587,265.0987,-544.4133,1126.0673,265.3343,-544.47125,1093.9502,263.88416,-591.87225,1083.775,263.0446,-591.7348,1073.6692,262.47357,-591.64014,1109.8575,270.84262,-270.64795,1037.7703,266.84888,-477.12436,1119.8433,310.38486,-492.61414,1094.337,309.5025,-549.7583,1138.1326,357.14175,-142.05743,943.213,384.00076,-491.06696,1297.1898,365.11447,-314.57806,960.12317,568.1455,-855.416,1341.9628,337.49637,-641.50275,1049.2971,437.2864,-1155.6224,1370.5458,330.04056,-701.6352,1079.1711,397.05652,-1233.9067,1340.5054,322.22058,-673.356,1059.8508,363.5343,-1220.999,1327.881,331.8306,-645.9637,1054.4221,380.33774,-1156.2565,1010.20776,615.6826,145.99614,891.3732,622.24176,-145.75119,1214.4241,646.23254,-283.2009,983.03754,672.65076,-914.0176,1111.0643,831.50214,110.323044,917.2298,885.80707,-476.11746,1059.9136,858.9173,140.94847,884.1131,914.1932,-447.2866,1189.615,913.124,-3.8945425,995.75555,960.0251,-711.3405
Screenshot_2021-02-11_at_16.26.32.png,squats_down,1264.1249,692.73505,-736.34125,1280.6533,670.4648,-702.867,1290.8246,670.2191,-702.68146,1301.0778,669.8975,-702.6804,1253.8097,670.59485,-684.53687,1244.755,669.973,-684.46643,1235.699,669.7256,-684.2963,1323.8191,677.0999,-475.47467,1231.7523,675.88544,-394.56845,1285.6393,713.74115,-651.67834,1252.6829,713.0849,-627.57776,1380.238,751.7789,-420.2268,1186.2379,750.6895,-331.8427,1534.7874,697.1789,-778.28204,1008.7222,720.5688,-740.9101,1387.9391,672.5496,-849.33435,1165.6848,673.21985,-956.07605,1356.9219,653.5058,-877.9817,1200.1418,654.1881,-1009.2222,1345.0682,667.03406,-785.5093,1226.4976,654.8023,-908.78375,1353.7584,688.66766,-816.90826,1215.7515,675.6561,-924.37585,1348.14,1027.0466,-35.443398,1229.0607,1019.67035,36.226307,1463.894,958.4151,-844.36847,1064.5361,961.706,-612.1737,1438.4469,1167.5303,-411.2613,1154.8622,1164.2969,-213.20782,1428.738,1189.6978,-375.13516,1197.5558,1188.8555,-179.36057,1435.4939,1252.1741,-676.4843,1090.7434,1253.1882,-424.76196
frame__ox0kCStCZHc__0006663.jpg,squats_down,905.45966,508.71823,-49.15662,920.35455,491.7257,-78.4699,924.2577,491.02194,-78.29271,928.23486,490.15738,-78.33303,918.65216,493.07373,-15.099057,920.5293,493.553,-15.1439705,922.7013,494.2763,-15.117749,955.8475,496.704,-145.30756,946.7314,502.64645,142.28001,918.48566,526.1035,-72.59266,915.2916,527.38257,11.106704,980.6105,568.4239,-302.8868,991.58887,577.7947,316.4592,839.7916,604.77,-489.28253,856.9383,632.7013,401.52533,744.696,641.4101,-426.06894,760.64417,657.69165,256.33667,721.9896,644.8816,-485.1501,737.7259,651.53937,263.68573,724.9624,637.3925,-447.12274,738.0184,649.0154,200.90462,736.2381,639.3055,-411.21942,746.05225,656.574,224.63965,1158.3673,756.50635,-191.80075,1156.9106,746.0442,192.53181,994.2304,847.5514,-202.96617,1022.2815,831.9276,327.34863,1017.8834,1032.0015,-50.74017,1047.9648,990.8938,512.3306,1039.974,1058.633,-37.47566,1070.1813,1010.96844,528.5907,950.24854,1081.4513,-119.00774,996.02734,1047.5917,477.26437
frame__fFQOVvvPXak__0019928.jpg,squats_down,643.6155,159.36835,-507.46732,663.6191,145.2375,-506.46085,670.90063,146.0963,-506.37363,678.2508,146.84532,-506.38992,649.01733,143.58153,-467.98657,645.66626,142.76903,-467.79645,642.3799,142.3055,-467.6305,704.85,155.72467,-453.5063,657.8264,148.53499,-285.54358,663.27423,179.43188,-488.26337,644.2297,176.32855,-439.76807,745.8844,231.07375,-504.4847,652.1859,226.82002,-179.34999,651.2115,299.80762,-646.0712,541.405,262.28348,-283.80917,519.6739,284.61618,-701.8142,446.82642,242.96329,-461.71082,487.15326,284.25858,-758.7759,418.5478,232.09874,-483.44864,489.0998,266.5566,-741.50073,422.4192,224.57542,-509.29504,503.03778,270.86105,-697.87036,434.8777,232.24103,-481.40012,811.8379,408.1343,-87.2251,751.4839,399.57263,87.60033,735.8523,430.25616,-540.49634,616.4771,377.98495,36.636063,769.4839,578.9978,-310.3198,637.68744,487.08533,332.55557,782.0188,605.83325,-296.5112,656.71014,510.71075,356.4835,716.75354,613.9475,-458.1467,561.2503,509.95764,289.03503
frame__QVNlEfFOWwg__0006900.jpg,squats_down,1062.9373,202.11026,-199.91566,1063.5378,171.88481,-175.33997,1062.7615,172.08307,-175.35562,1062.2509,172.40648,-175.4792,1054.503,169.10707,-235.4799,1047.1807,165.87755,-235.43922,1039.6893,162.90039,-235.36281,1023.2271,181.7735,-23.463327,993.0623,164.4253,-294.06268,1037.0996,234.2926,-139.2493,1024.9246,229.39421,-216.14922,889.5255,283.18924,247.83313,882.1817,310.64523,-429.52725,1040.6145,467.70972,369.31158,1024.3699,524.0057,-358.28577,1127.7827,335.45456,419.7376,1122.6202,335.9595,14.822318,1159.973,301.99326,442.75598,1165.1678,295.93622,-12.921925,1129.2329,274.8414,474.09308,1130.3948,262.238,-58.64986,1109.8616,292.11624,426.0155,1101.9247,276.05115,7.0844,540.12665,534.9418,224.84438,522.1802,561.9316,-224.04523,902.1011,584.04065,375.03046,892.28015,639.0336,-227.78616,734.5467,848.67755,655.5827,758.9048,920.143,76.54147,669.99,878.4567,687.50037,695.6441,954.02856,113.70583,812.5925,955.45197,746.06305,869.5348,1014.6321,132.2618
Screenshot_2021-02-11 at 14.44.11.png,squats_down,155.69533,252.64764,-107.93055,160.74161,245.6198,-92.34387,164.48972,245.607,-92.331,168.27588,245.5156,-92.26315,150.18149,245.93999,-91.62223,146.39508,246.02472,-91.64066,142.5868,246.1878,-91.62392,173.61124,250.99193,-22.392027,137.84938,251.76134,-15.615281,162.60612,262.80426,-83.48465,149.27757,263.07492,-81.53613,192.24826,289.7511,8.423273,118.61989,289.8803,-8.916538,233.87508,316.63034,-88.877144,75.52011,321.58112,-121.59901,175.975,290.7548,-118.726456,125.64742,292.9493,-184.97083,161.71152,282.80313,-122.97457,139.13457,287.0704,-198.97408,157.03183,279.76352,-95.65671,144.01656,280.42026,-167.91684,160.35466,285.80978,-107.694984,141.73448,286.19568,-173.15366,176.58408,378.066,3.2465036,129.45224,378.7917,-3.2520628,207.63783,421.0385,-171.82877,93.631584,426.6294,-195.49925,196.0682,472.0489,-2.208157,102.73373,472.53052,-19.057388,189.27711,477.26404,11.023533,111.74074,478.01874,-4.1100287,203.20634,505.74734,-67.62847,83.34977,503.6192,-81.61433
frame__bggX6ocjojk__0001935.jpg,squats_down,1859.1095,1095.5989,-453.49313,1872.804,1057.9626,-399.77512,1884.3014,1056.6838,-399.31458,1895.9153,1055.0732,-398.95044,1836.1495,1060.3733,-410.2691,1822.928,1060.15,-409.9072,1809.5524,1060.2083,-410.27213,1909.2698,1055.5143,39.147213,1784.9484,1061.4172,-14.151281,1877.0734,1121.2825,-283.05972,1834.9106,1123.6115,-298.38644,1982.9532,1168.5537,183.63593,1701.7216,1152.2522,118.669136,2011.136,1288.1533,-603.0467,1679.1642,1281.5103,-693.43005,1936.8977,1333.8514,-1583.1459,1773.0789,1318.7284,-1682.9596,1933.2998,1360.2358,-1800.0715,1789.8257,1344.0354,-1876.89,1892.3483,1333.2985,-1782.8125,1821.3748,1318.2784,-1861.1948,1887.6256,1333.4207,-1605.933,1825.1926,1321.794,-1690.7786,1920.2163,1504.199,23.43214,1740.8313,1489.581,-21.69405,2080.0085,1515.9297,-1258.7645,1611.4695,1465.3342,-1318.1958,2052.3071,1842.6945,-1064.8096,1592.0221,1820.2601,-1099.2168,2010.1721,1915.1881,-1077.889,1620.8447,1899.3888,-1104.1532,2152.039,1920.4263,-1527.4188,1513.1774,1909.4437,-1532.6194
frame__x5BuK8JqODU__0046768.jpg,squats_down,1081.9595,537.6567,-1178.2203,1084.6542,531.2569,-1160.8877,1086.2443,531.4128,-1160.7719,1087.5315,531.67725,-1160.7208,1077.6149,535.1383,-1171.0502,1074.4143,535.9345,-1170.789,1071.6738,536.9892,-1170.3132,1082.5138,536.93744,-934.5409,1060.26,546.23755,-980.4525,1081.3549,548.22314,-1087.0834,1073.8333,549.52185,-1101.033,1103.335,538.69226,-596.6615,1027.6652,606.97125,-633.44885,1091.1473,501.9262,-257.1269,990.1236,622.62714,-419.70728,1110.3966,537.97626,268.13217,1056.6431,599.3729,10.42975,1110.3835,541.67633,405.19748,1070.5394,595.2917,109.8668,1120.2838,549.5566,413.168,1088.6041,603.41455,115.81732,1120.0211,548.41614,295.8956,1082.5637,607.30615,28.538227,1154.4082,600.0222,-0.12709188,1107.2307,640.4208,0.2482024,1092.1299,616.368,-600.7718,1072.4963,744.947,-529.9095,1163.9104,720.4257,-338.55304,1157.3195,912.2478,-392.64163,1177.8711,744.0903,-322.60278,1178.9215,932.9592,-393.39072,1151.7499,732.3268,-556.87146,1165.216,948.2108,-633.9995
frame__1BZM2Vre5oc__0005146.jpg,squats_down,864.7505,537.9567,-681.2796,871.9003,525.4553,-657.46423,877.4856,524.91144,-657.6102,883.13403,524.3793,-657.61786,856.26904,526.88495,-657.3025,850.7906,527.43,-657.145,845.26416,528.0079,-657.15607,892.87836,531.7356,-503.34253,840.3039,535.12067,-500.12537,876.95935,551.79254,-624.1312,857.13885,553.3709,-622.3453,929.91614,603.9806,-404.48166,805.4062,588.67883,-414.23856,960.2527,698.7007,-659.8946,765.44586,669.74097,-617.1486,930.55347,647.9789,-931.5825,798.506,641.86053,-834.7935,927.2383,632.7237,-986.7186,804.39606,627.40283,-881.5178,925.9838,622.0915,-942.9045,806.5709,618.96344,-855.3069,920.6707,630.66986,-918.55054,809.56006,627.1825,-828.30774,872.4868,708.03644,12.241214,800.279,697.89105,-11.799542,919.87366,763.7948,-276.98575,771.82855,735.21155,-505.85468,914.8557,836.4441,41.182793,796.7517,806.36554,-45.036163,904.40436,850.91315,66.172165,804.31946,812.3599,-7.4838324,942.3277,872.07776,-48.677994,795.8409,849.08453,-128.37274
Screenshot_2021-02-11 at 15.37.06.png,squats_down,488.6062,187.37756,-193.06203,495.08987,178.01768,-160.35512,500.26694,177.95746,-160.25742,505.55832,177.79893,-160.23047,478.65332,179.46611,-163.79843,472.7923,180.20848,-163.72252,466.9253,181.07968,-163.73749,511.29373,190.02011,-13.498097,456.63217,194.18886,-25.859303,497.79062,206.00237,-141.5884,478.03934,207.6234,-144.89685,547.8874,262.31357,-6.581866,421.93524,267.23184,-52.711437,600.95917,293.22046,-302.75754,403.74585,295.04602,-391.62402,563.7889,286.4767,-571.3185,475.74744,291.517,-647.6733,556.88007,289.6601,-624.3208,487.92615,294.68552,-702.55853,546.0903,282.09027,-606.4344,500.53412,293.90546,-672.7596,545.6413,287.5653,-571.56384,500.14172,299.19724,-641.2414,533.10345,431.15472,10.97953,449.77203,437.81583,-11.002323,616.75494,494.88586,-344.3675,390.47488,516.1909,-395.75015,579.6779,598.89923,-37.98968,427.5612,607.5211,-72.2022,557.0418,616.93506,-16.532806,446.07483,623.81067,-47.06305,621.50433,646.3765,-157.32208,395.43817,653.8243,-186.0038
Screenshot_2021-02-11 at 15.04.13.png,squats_down,566.3978,327.57526,-187.9749,573.42914,316.19147,-167.43916,577.84766,316.2549,-167.44243,582.30615,316.22443,-167.50807,561.0669,315.945,-168.38751,556.56616,315.54776,-168.41281,552.04486,315.27856,-168.41472,589.5871,321.45947,-49.070362,547.0074,319.83212,-51.528984,574.89374,338.65192,-144.95723,558.64014,337.9749,-145.736,615.27844,368.6304,20.51097,521.13806,362.61398,-7.0237217,666.4465,420.2721,-77.31269,481.27905,422.75995,-150.92099,637.96857,349.6283,-146.16997,507.07645,361.54758,-308.26968,636.0131,326.4843,-170.69376,513.11127,344.2199,-332.1981,628.9629,322.4175,-130.86305,516.5598,335.85287,-320.2829,624.82996,334.34808,-134.17477,518.97614,346.4557,-304.49612,593.63763,489.3806,10.621829,538.71735,487.913,-10.205791,658.5382,481.55283,-352.41818,503.31824,478.8953,-373.58078,628.60864,560.9966,-115.92587,499.32855,562.5394,-169.14383,614.60956,569.34314,-94.96009,506.5571,573.52466,-150.59407,651.07056,606.20776,-200.26833,477.99408,599.9583,-270.5466
Screenshot_2021-02-11 at 15.21.25.png,squats_down,276.27982,308.39914,-257.83228,282.78644,298.73087,-234.13199,287.2403,298.9523,-234.15263,291.71042,299.07498,-234.08109,269.80627,298.55542,-236.69485,265.09586,298.33487,-236.56152,260.37274,298.23138,-236.49268,295.84418,305.40195,-103.1405,252.66066,303.97717,-113.61289,282.47226,320.9923,-210.2675,266.8641,320.26645,-213.27345,318.8687,349.69406,-43.25013,222.41289,351.12677,-38.7167,356.07065,409.96463,-164.0711,193.64049,410.20844,-205.93335,375.4811,362.47562,-288.42123,180.34024,362.92157,-405.99564,386.25836,343.85132,-320.01614,170.37143,346.93628,-442.12195,382.9312,335.27225,-307.42233,175.09766,337.64542,-431.91818,376.14758,344.10898,-289.12582,182.16417,345.00623,-407.37247,300.43185,464.513,-3.0234869,243.55685,463.99448,3.378607,382.0118,441.0707,-357.43182,182.0952,428.18918,-372.39508,359.91693,537.3178,-259.76596,183.86507,531.4535,-276.23996,346.74902,556.8764,-255.61357,196.91975,555.06604,-272.11392,385.14435,553.88654,-383.70142,143.60881,547.0901,-392.71036
Screenshot_2021-02-11_at_16.11.54.png,squats_down,1422.3136,591.01746,-1367.561,1434.6613,563.6803,-1335.726,1444.098,562.5699,-1335.9045,1453.4901,561.31866,-1335.8947,1407.4131,565.92487,-1333.7991,1397.7672,565.9231,-1333.5192,1388.0306,566.1441,-1333.3931,1467.3722,562.7494,-1038.5947,1374.369,569.0736,-1037.5392,1440.1469,609.11676,-1246.9092,1406.5012,610.7693,-1246.4019,1537.0753,655.9856,-764.4274,1309.3673,663.41956,-758.3259,1607.7302,830.15875,-1027.7003,1252.3519,838.7234,-1028.786,1484.3357,812.2536,-1451.5781,1374.7133,806.151,-1487.279,1442.6936,812.8858,-1547.4545,1407.7228,804.0569,-1592.1837,1438.6425,781.46967,-1511.9053,1419.4331,776.1224,-1556.802,1445.2102,784.0953,-1440.885,1414.7025,779.75,-1475.024,1487.7528,847.1521,-0.8858117,1363.44,849.8505,1.2382777,1557.9309,942.73566,-830.67694,1323.1165,948.31396,-832.7349,1580.0554,1127.2379,-225.94232,1275.6322,1124.298,-219.94849,1569.2963,1157.3768,-183.95763,1280.0387,1150.5973,-178.13593,1623.2091,1191.191,-540.0912,1239.976,1198.6956,-517.0311
frame___0CAcnhL5Sw__0013435.jpg,squats_down,741.8344,561.48145,-813.19257,754.88873,535.3263,-815.43225,763.55914,533.5121,-815.39075,772.1792,531.6252,-815.38257,736.8332,538.8185,-774.10547,731.69415,539.196,-773.76685,726.7018,539.7899,-773.3967,801.45807,533.0497,-734.6089,743.93744,541.75885,-558.1527,770.0992,578.5094,-778.66797,745.4742,581.64404,-727.94104,887.452,612.85864,-727.0865,749.03375,615.7628,-382.26608,841.3709,789.30304,-838.5313,672.4623,767.3013,-612.55457,700.5447,706.7065,-870.0532,654.17944,697.20074,-1021.3903,656.96277,693.83636,-913.81793,643.9342,683.39984,-1082.0952,681.74915,656.03436,-923.4066,659.6665,656.3594,-1045.7595,702.38367,656.98956,-869.30743,669.4953,664.3123,-1016.88666,1005.73926,747.98035,-98.04599,921.13434,744.9479,98.942505,947.77264,812.265,-675.8047,735.91437,794.7737,72.682236,1016.8325,999.178,-483.09293,773.3386,906.6882,368.57907,1039.2242,1026.4126,-473.7662,799.6835,925.0659,393.1043,983.6625,1070.0002,-699.1498,699.05725,972.9303,303.9759
Screenshot_2021-02-11 at 15.27.41.png,squats_down,685.6486,379.66525,-137.73438,691.0072,368.3183,-119.34609,695.5416,368.26614,-119.36278,700.14734,368.12085,-119.4741,678.0974,368.64008,-122.06843,673.0774,368.62854,-121.994774,668.0395,368.71936,-121.96602,704.8213,373.79996,-19.600147,660.414,374.50803,-25.864017,693.4829,391.89755,-102.13088,676.38367,392.06516,-103.91083,733.8504,421.74777,22.497416,627.0535,424.8101,15.446921,782.5,480.3668,-109.88736,586.6971,490.43573,-107.40977,780.168,420.35938,-262.06277,581.9796,422.2543,-241.20639,784.46173,400.93173,-291.2904,576.1003,403.5475,-258.70828,778.42065,392.28494,-268.67792,581.05005,394.7877,-243.9328,771.4078,402.49426,-257.10037,589.0242,404.6121,-236.10077,718.0292,549.2172,4.194096,654.44226,550.5609,-3.7758303,796.9171,544.67096,-278.55643,607.36505,532.08997,-312.68033,744.4742,623.3518,-109.43964,629.878,624.2926,-166.59389,726.8803,629.3919,-94.38012,640.535,636.70496,-154.78589,758.5109,668.65314,-180.67096,620.2944,665.5788,-252.38217
Screenshot_2021-02-11 at 14.53.08.png,squats_down,210.73312,227.08426,-211.61356,215.18115,217.20679,-205.6956,218.54672,216.73929,-205.63174,221.95691,216.21631,-205.54701,205.7221,217.82599,-204.91246,202.36726,217.7158,-204.89128,198.9801,217.69922,-204.96452,228.23395,215.99072,-132.13525,195.48953,217.60309,-125.43587,217.51639,233.02914,-180.99866,206.39853,233.67834,-178.75758,251.57268,241.29042,-83.6492,180.46265,234.48303,-93.30255,268.63452,272.74765,-227.14484,149.05675,258.66498,-231.67267,239.52646,264.58923,-385.1058,186.84647,258.77933,-368.1647,232.93211,266.56833,-415.11438,195.79086,263.35983,-393.11993,225.868,259.1371,-406.33337,205.02855,257.62857,-380.58713,226.74783,261.87805,-384.6305,203.26175,260.2096,-364.09924,234.87424,322.2165,-2.0922594,191.72588,319.33725,2.0723586,265.9875,341.58746,-212.5585,152.51743,330.5562,-232.97424,249.92125,391.88824,-49.917297,169.6967,379.58978,-37.061516,242.83736,397.58066,-36.909042,180.6106,388.11267,-19.231028,251.49327,425.44226,-116.79868,145.96373,407.47668,-86.14427
Screenshot_2021-02-11 at 15.07.48.png,squats_down,622.11176,271.32245,-130.33641,627.3251,261.39252,-104.602844,632.03644,260.99695,-104.534294,636.82733,260.55792,-104.70699,613.27423,263.58908,-105.1387,608.15625,264.4775,-104.978455,603.03894,265.53394,-104.9454,643.51855,270.04477,12.17637,596.2708,276.71344,10.597123,632.2022,285.7682,-90.615074,613.7894,288.2053,-90.9308,674.88275,328.48135,-6.303882,570.4359,337.66946,-4.8328004,713.0153,354.41077,-281.86072,543.46936,363.27124,-293.5596,710.70416,332.48257,-546.0422,532.60657,326.61014,-582.6307,720.45703,327.95947,-597.8163,525.5183,323.4616,-626.8655,707.9432,327.1561,-578.3613,533.1438,316.61267,-620.64813,701.1988,332.3164,-546.4752,539.92584,321.6598,-585.77155,657.8777,485.3134,-2.5743368,595.6815,485.43454,2.9576752,704.3641,466.56,-395.79514,538.4845,462.83734,-351.40387,670.72485,569.28217,-202.2851,571.51733,558.00543,-171.88965,659.17206,581.4282,-188.98196,586.4614,571.26526,-156.93843,679.9229,610.82825,-314.77396,554.44666,602.41425,-260.57242
Screenshot_2021-02-11 at 14.39.30.png,squats_down,356.00873,178.092,-127.864044,363.07983,170.14766,-104.2359,367.53363,170.58441,-104.12943,372.06323,170.96573,-104.07512,349.43845,169.7097,-109.3527,344.78882,169.6098,-109.29869,340.13397,169.60335,-109.45169,377.50543,179.33086,25.82098,332.03198,177.20184,3.526522,362.64963,192.18611,-79.969536,346.70065,191.49637,-85.92863,401.54993,230.75856,24.139418,303.4233,224.17506,-22.807026,428.8894,243.25053,-210.45088,303.9316,237.26425,-284.66583,406.24023,231.07532,-445.58313,348.58044,222.29099,-478.9695,404.0735,231.91212,-507.6154,356.8035,221.1283,-530.76636,394.18768,225.2535,-501.6347,361.34677,218.2171,-524.2691,394.09576,229.16124,-453.41788,358.87363,223.06755,-482.92596,387.99423,371.25134,12.710328,320.2587,373.18686,-12.349103,470.83954,408.75766,-219.73529,250.33957,413.31583,-282.04382,445.93826,503.22818,-31.07502,257.0877,510.75537,-104.315056,425.62473,520.50165,-19.266186,271.11633,530.2818,-94.74577,486.16058,541.797,-131.12726,220.3248,545.6926,-216.62625
Screenshot_2021-02-11 at 14.56.30.png,squats_down,467.46484,300.08658,-424.15588,474.23013,287.92783,-406.35788,479.0151,287.9441,-406.28647,483.77148,287.8907,-406.20926,461.09515,287.54654,-406.29977,456.2653,287.10004,-406.19336,451.4243,286.75604,-406.20004,489.31375,290.89368,-288.77505,444.96576,289.4032,-291.68097,475.30594,310.85837,-380.12814,458.58344,309.9373,-380.62994,515.27637,337.76807,-210.19818,412.00464,340.90637,-224.58586,538.93335,420.30283,-385.01236,407.16153,431.58212,-405.70325,488.22382,373.0934,-562.4491,453.65042,367.00876,-598.34155,472.07462,359.69922,-594.8654,467.32098,348.91364,-630.7531,476.45413,342.89227,-558.3748,460.6043,334.7051,-596.88574,476.7957,348.97116,-550.3389,461.7483,342.1101,-585.3037,490.99008,428.07724,2.5791113,433.34872,430.1533,-2.3991435,526.84595,437.83908,-373.66254,403.94534,445.6045,-361.19034,505.02887,544.135,-203.74817,420.179,545.5294,-213.60284,494.45444,558.93604,-193.67535,428.11133,560.4717,-206.50874,518.99255,582.97546,-338.90814,413.39697,584.4006,-348.12552
Screenshot_2021-02-11_at_15.54.28.png,squats_down,1372.9904,625.82574,-333.20868,1385.4489,597.9428,-302.04218,1395.835,596.8096,-301.6786,1406.2941,595.5077,-301.78735,1355.703,601.77826,-306.00818,1344.6001,602.6013,-305.62347,1333.5383,603.7329,-305.77893,1420.4731,605.71185,-47.322536,1317.3619,616.7409,-62.953148,1392.4412,649.4026,-235.04625,1353.7863,652.7294,-239.652,1472.315,680.8088,1.2412318,1246.5239,709.2425,6.0477786,1556.1796,770.403,-483.55582,1184.0404,782.90356,-462.87125,1603.9088,753.325,-1181.5709,1149.4613,754.42535,-1127.5326,1629.7914,758.78436,-1296.742,1127.7854,767.5327,-1242.2812,1606.3291,739.58887,-1326.6663,1153.4896,737.78485,-1247.7485,1593.2664,745.57086,-1211.21,1167.0549,740.8318,-1144.9038,1461.7101,1006.8119,-11.387663,1325.8405,1017.7154,12.374415,1602.2776,990.69916,-609.95575,1121.8711,1029.703,-508.93304,1517.1747,1208.2672,-198.9532,1237.1244,1203.3475,-100.86522,1485.3147,1242.8513,-166.59428,1293.3169,1230.8351,-69.7688,1563.672,1294.9989,-347.66092,1156.3773,1311.5813,-213.30649
frame__jPO_jp4Sb00__0008071.jpg,squats_down,934.4716,547.78876,-104.87844,942.29285,523.94507,-73.87928,950.00885,522.5507,-73.93296,957.78894,520.9622,-73.98016,920.02057,526.4876,-70.79121,911.77295,526.4591,-70.80731,903.489,526.5964,-70.99292,969.71063,520.4283,115.71597,892.6598,527.3736,132.4744,949.86237,562.2802,-34.064693,923.2947,564.761,-30.26155,1026.952,590.2207,169.69208,839.138,589.5027,164.59875,1061.844,712.3833,-144.3844,776.3769,704.5669,-164.73212,957.84503,606.54443,-343.30634,883.46906,591.9864,-398.85986,939.0493,571.5036,-393.38007,903.55524,560.2829,-447.29556,934.2516,558.9212,-317.28006,912.29956,545.8225,-385.2697,931.4782,574.6993,-318.21692,913.90656,563.414,-374.39502,982.96564,813.7943,2.771325,870.1517,815.8589,-1.9793476,1081.1161,798.07007,-749.02527,764.2254,800.3749,-728.3328,1025.1523,968.42426,-295.2902,806.36005,967.96014,-247.56827,1003.75305,990.2439,-256.1902,832.9182,995.9462,-207.02165,1041.2274,1054.1099,-485.176,755.7071,1036.319,-434.0357
Screenshot_2021-02-11 at 14.30.15.png,squats_down,477.95422,296.474,-335.56345,482.18164,284.05746,-313.50293,486.7914,283.59552,-313.3899,491.4465,283.0304,-313.2969,468.778,285.03464,-317.5182,463.30872,285.10123,-317.40567,457.86966,285.3318,-317.28943,495.3528,287.72696,-177.65869,449.4786,290.8863,-193.78009,485.99603,307.826,-284.4194,468.37927,308.75656,-289.47736,529.72424,337.32812,-96.99307,413.1436,340.49554,-96.54691,587.8216,394.9789,-248.99965,364.43408,400.9289,-253.25502,594.70734,340.4169,-470.19727,351.4151,345.328,-447.80438,601.52905,318.03513,-509.82812,342.78024,324.86,-481.29776,596.3343,310.42496,-486.45502,345.8213,318.42123,-460.30682,589.55194,320.53943,-466.80466,354.79718,326.94122,-444.28864,512.28503,448.21863,-1.8130931,443.3588,452.61954,2.264332,580.9221,444.80743,-416.51978,371.2618,465.14633,-437.16815,577.09973,548.962,-229.06534,375.32104,558.18494,-286.77087,567.812,567.2184,-216.56815,384.82123,573.92786,-277.77893,601.24927,573.6746,-368.88828,358.17682,582.3125,-419.3984
frame__H21pTB9nJ7I__0002366.jpg,squats_down,900.0728,458.72742,-45.395405,914.5866,445.90976,-51.09355,920.3639,446.25467,-50.96106,926.3339,446.4757,-50.776375,906.01605,445.7546,0.833297,905.0518,445.55267,0.9062071,904.03894,445.6012,0.65485644,953.5167,459.80206,-59.920624,923.7745,457.8982,168.56828,918.6307,481.79214,-51.126396,905.7625,481.27966,14.875542,1021.1996,548.1081,-172.53557,911.35223,564.3854,246.82317,919.15515,620.42505,-222.28252,809.91064,649.24677,6.5960035,866.6015,514.2179,-30.19184,840.1436,530.56836,-295.60556,854.0125,488.04654,-28.455835,838.05597,496.6845,-329.1897,867.97565,488.3314,-10.988538,860.50464,487.29208,-275.5295,874.5475,501.75732,-13.223733,867.5415,502.49548,-282.17627,1070.6135,745.95135,-91.48497,987.5703,758.0854,92.20792,1019.72455,720.48865,-787.9546,885.7001,718.62317,-407.23022,1075.6926,910.2927,-688.8417,955.7361,881.924,-352.17532,1091.8977,942.7651,-683.12115,985.18054,907.89624,-347.85745,1044.439,970.91064,-889.6885,916.3634,935.75836,-500.8743
frame__4e8N8lz6lio__0006459.jpg,squats_down,1007.6775,471.5586,139.85979,998.8764,463.9082,146.28288,997.2744,464.74997,146.4574,995.8192,465.5449,146.32953,999.79297,464.51346,109.317825,997.8803,464.9428,109.29437,995.8159,465.61044,109.27409,978.5741,479.58572,174.1016,978.5499,479.61505,6.8756933,998.5756,489.26157,155.00615,997.8406,489.29016,107.093475,949.12054,549.6333,291.72183,954.3715,551.4718,-67.900406,994.284,650.96497,533.22876,1011.5705,634.629,131.16943,994.28125,632.28687,709.5342,1029.3572,552.17834,512.3902,999.11615,631.67737,748.9285,1035.6018,532.0231,545.9974,984.55365,625.3745,747.0061,1029.5078,520.98303,545.3181,977.3257,628.9049,709.8593,1025.4883,529.32074,523.789,911.8397,697.9119,81.35197,893.2579,706.6539,-81.666695,980.8302,686.03345,-62.926933,848.29047,746.84503,-314.73053,914.5818,799.37933,-202.51085,920.93787,804.2453,-106.31157,900.5559,820.12354,-210.13342,929.6502,808.3398,-79.65184,919.5673,818.0397,-255.16637,972.8641,828.16223,-100.584335
frame__Spc5yl47h1Y__0009967.jpg,squats_down,2027.6833,1176.2946,-1755.2755,2052.246,1135.4718,-1693.9233,2068.0405,1136.363,-1693.8916,2083.7664,1137.0416,-1693.6106,2009.2762,1132.4249,-1697.0559,1993.4409,1130.5494,-1696.7411,1977.4669,1128.9042,-1696.5311,2102.684,1149.282,-1265.3872,1955.5724,1137.9766,-1288.1022,2050.9893,1213.4126,-1593.2181,1996.5612,1208.9281,-1598.5717,2175.535,1305.0552,-967.37134,1848.2535,1300.1918,-978.8555,2147.1829,1601.7677,-1506.2018,1850.5104,1600.3282,-1507.086,2093.5881,1419.3959,-2164.0173,1951.1912,1421.6664,-2159.5986,2083.314,1362.7423,-2305.1287,1980.9613,1368.5525,-2306.198,2103.7607,1321.7616,-2218.2312,1961.3022,1320.9928,-2220.5781,2087.967,1338.0776,-2136.8567,1974.5529,1341.8801,-2132.4263,2106.511,1584.629,5.8059626,1923.956,1583.6012,-4.426164,2248.716,1558.6907,-1355.334,1780.4371,1580.843,-1336.348,2250.8062,1828.6044,-413.3054,1757.5005,1839.7822,-417.09537,2233.6482,1870.0056,-342.08255,1775.7285,1882.1791,-353.20984,2290.8557,1942.0892,-797.8706,1704.3168,1947.1642,-831.13416
Screenshot_2021-02-11 at 15.03.16.png,squats_down,520.98517,321.96558,-271.7203,528.3013,313.504,-251.69846,532.43134,313.81784,-251.72481,536.5915,314.02463,-251.6845,516.3548,313.15817,-250.70172,512.3716,312.9725,-250.6311,508.37256,312.8634,-250.71158,543.1582,319.14545,-142.05785,504.0652,317.14517,-139.82642,528.61115,333.61252,-231.95386,514.1313,332.7058,-231.04686,571.5592,373.40717,-78.79878,473.6271,375.67154,-76.31363,593.654,452.52084,-186.62093,464.6135,459.02554,-190.15991,555.65625,421.4806,-356.10895,501.347,419.94058,-364.72357,542.26465,413.20364,-392.7734,513.7252,408.29556,-399.83054,544.7442,397.90616,-371.025,508.36063,393.8449,-383.15146,545.3341,401.7601,-351.46014,509.04907,398.78568,-360.30078,550.2841,478.5288,1.0266224,491.28955,482.51428,-0.83629745,608.62445,503.21506,-340.22864,443.64252,511.0942,-345.77832,605.8694,610.119,-151.59743,447.10617,614.7432,-168.75366,596.3883,627.9483,-139.43669,454.51553,630.568,-155.64682,632.83124,637.8686,-266.6565,428.50537,643.63153,-279.66135
Screenshot_2021-02-11 at 15.35.59.png,squats_down,577.66833,228.63445,-333.7315,587.51196,216.1837,-311.46887,593.5262,216.25244,-311.41785,599.58484,216.20659,-311.35416,570.4618,216.36015,-311.3051,564.5539,216.2817,-311.25516,558.6502,216.31311,-311.21277,608.53625,223.97708,-173.1709,551.6549,223.24353,-170.05615,587.8098,244.51344,-281.91235,567.594,244.30708,-280.67126,641.0643,293.5634,-76.15014,515.9526,294.2529,-87.410904,671.5586,396.33322,-200.68983,485.3549,396.5592,-221.99817,632.7709,354.57275,-466.94785,528.7235,357.0087,-472.89523,617.78064,348.00842,-519.50854,542.2165,348.34592,-521.61475,618.6023,326.52267,-504.9544,544.05255,328.98917,-505.22226,618.1533,331.46588,-464.8553,545.56824,334.78085,-469.87445,615.87,445.6175,-1.9554213,536.5102,446.46494,2.1118453,727.88965,466.87024,-304.70602,417.23178,466.59967,-290.13205,720.2943,587.462,-42.396015,417.88965,584.82477,-63.526054,704.11816,610.295,-20.496338,434.2401,608.1702,-42.78231,759.7876,621.3674,-131.85876,367.52927,613.3732,-140.8638
frame__nfRdTJY_xgM__0001146.jpg,squats_down,925.96356,506.93222,-384.82095,938.2816,495.95157,-416.30273,940.9722,496.62692,-416.18878,943.8131,497.13934,-415.91852,937.5205,496.13724,-359.39825,939.07666,497.09528,-359.5006,940.94104,498.2538,-359.44678,962.26636,508.8201,-457.20447,959.0365,511.531,-201.43536,934.3356,525.26294,-401.05664,931.82806,525.9736,-326.6367,978.4115,596.34937,-533.8331,1001.5189,583.7194,31.781347,942.45917,715.3783,-610.34937,964.39874,698.8195,52.9506,878.5564,804.7664,-548.5179,908.7275,776.23065,-104.93704,861.79846,817.41455,-636.8788,892.89557,784.0984,-94.487595,857.7089,811.486,-602.0765,895.93756,782.78613,-164.18149,867.5687,809.29034,-541.7648,902.13306,783.22504,-137.35532,1129.0205,741.12256,-183.5654,1128.8799,726.02795,184.04799,1014.1286,701.63947,-287.8303,992.70776,683.9005,377.64676,1042.5176,873.58966,-70.094345,1011.50995,853.60004,629.2064,1061.3873,905.9016,-49.49568,1026.9647,886.058,651.6612,976.4677,896.24036,-155.27322,956.04944,875.69836,624.15784
frame__8ghtQpeWov8__0013339.jpg,squats_down,1145.2465,525.3618,-49.847683,1143.3698,505.65573,-24.049858,1140.791,504.0619,-24.094934,1138.3804,502.59412,-24.240763,1142.03,506.59665,-86.79312,1138.8048,504.69403,-86.70768,1135.3672,502.98532,-86.68001,1111.4556,501.26096,96.82441,1107.428,498.3576,-189.94653,1125.957,538.24493,1.0149599,1124.0879,539.0415,-80.230156,1029.097,540.3582,315.74713,1049.3141,579.2766,-331.06598,1131.8356,618.0836,455.1011,1149.2759,691.0125,-298.90802,1191.5438,541.5811,470.72,1204.9164,539.9478,-1.648685,1211.3131,527.8411,509.11343,1228.8861,511.17493,-23.547304,1196.7815,512.12354,500.23984,1205.8073,492.7309,-37.845234,1188.0114,520.7109,463.72577,1188.7887,500.7078,2.7330797,841.93744,704.0243,218.3973,847.80444,729.46924,-218.10352,1053.6848,718.13196,394.62833,1084.7241,744.1743,-240.48326,967.56683,866.06226,569.23145,978.07526,898.20264,-68.63406,929.27356,884.8081,586.3316,932.2311,917.96436,-49.223984,1022.3231,915.1517,633.68384,1045.2842,945.26324,-9.995928
Screenshot_2021-02-11 at 15.19.45.png,squats_down,224.4958,186.35951,-169.18526,228.25328,181.5992,-141.12737,231.3259,181.97101,-141.082,234.47147,182.3037,-141.06711,217.99643,181.5788,-146.83218,214.34491,181.72182,-146.7707,210.68092,181.97554,-146.8055,236.52486,190.45047,-16.130838,202.74455,190.06798,-42.205723,228.67702,199.206,-125.67636,216.63524,198.91054,-133.08867,255.88995,239.62141,-45.46259,176.34564,240.10884,-56.97015,265.93866,263.25775,-316.72662,162.42155,260.79453,-310.51956,247.39404,268.908,-555.8269,200.31195,275.98358,-505.70416,248.5846,273.06992,-613.0385,203.86563,283.57657,-549.63617,239.4187,269.63245,-603.90375,216.2458,281.40012,-540.14984,237.69896,272.5223,-560.2462,215.09424,282.30093,-505.944,247.78293,354.57562,5.9312963,193.32689,353.49594,-5.832512,303.24228,347.89038,-306.67618,148.30138,346.15942,-324.35095,292.89432,454.09927,-247.57285,149.22585,457.40878,-272.31003,278.1694,479.03375,-250.56862,161.34035,482.31696,-274.01196,327.89346,473.06747,-368.71484,117.04192,483.23047,-383.5098
Screenshot_2021-02-11 at 15.02.44.png,squats_down,835.9879,253.06226,-313.7768,838.6182,247.26427,-286.78143,841.51447,247.21864,-286.76117,844.49744,247.08762,-286.76453,828.2594,247.82951,-292.73758,824.6174,248.0877,-292.68045,820.9687,248.41965,-292.59613,846.14185,253.2364,-163.31358,813.2412,255.07129,-189.65926,840.6487,265.1156,-269.5121,829.2491,265.66,-277.10062,876.37744,311.08493,-120.7972,779.42303,312.79956,-154.28613,918.0465,371.93124,-291.76804,744.6149,369.9592,-341.6788,854.49207,335.81146,-434.24097,808.82306,334.52142,-484.84964,839.1794,327.01242,-468.63132,823.6012,324.7495,-513.5847,834.7509,319.67343,-429.38733,827.17676,316.95746,-485.42407,837.5985,325.78357,-421.87448,823.92145,323.62485,-474.27902,849.1291,431.86313,14.065119,786.27435,434.3801,-14.039665,901.5162,504.22726,-285.68143,753.0117,516.4555,-325.43054,900.2776,612.41364,-103.27281,749.4082,616.55884,-103.21573,890.6215,630.705,-91.77377,753.87146,631.36127,-89.53262,928.9048,645.3099,-226.91835,737.8427,652.67615,-241.70634
Screenshot_2021-02-11 at 15.34.24.png,squats_down,538.26196,320.55453,-392.95197,543.7058,309.8381,-372.53458,548.2734,309.66495,-372.47644,552.82025,309.41577,-372.39807,530.62115,310.4713,-372.51028,525.8705,310.57324,-372.37323,521.10474,310.77423,-372.34512,558.1177,313.71185,-247.48586,514.5392,315.6798,-249.77536,546.4495,331.2036,-347.03238,529.9471,331.7353,-347.38336,584.2746,364.47577,-186.31403,484.24008,364.82837,-182.6192,593.9251,441.1118,-390.43387,478.71283,437.6437,-375.01666,558.2197,387.80453,-608.3814,516.4371,389.61972,-588.9229,547.54626,371.13968,-651.68616,525.9054,375.92975,-628.3759,552.9536,357.76404,-620.92834,522.5252,365.7213,-600.2982,551.5256,364.4041,-600.1159,524.1744,371.3841,-580.2833,561.6267,467.30566,1.480431,501.24194,468.92984,-1.2150388,619.42487,485.0215,-353.64502,460.0464,492.88696,-360.72702,595.78094,579.9658,-146.64511,467.6618,583.2109,-160.10078,584.10016,590.10767,-132.57681,473.72598,595.7215,-147.2152,607.32605,625.1671,-270.57364,459.2848,621.4825,-290.01752
frame__x0BK_DnHsso__0002186.jpg,squats_down,860.7588,506.3556,-148.37886,877.3328,491.3814,-158.92209,883.565,492.49118,-158.71646,889.85626,493.48767,-158.61322,866.78015,488.68033,-107.447014,865.281,487.22275,-107.33133,863.7701,486.07675,-107.5486,916.70337,504.66074,-163.92262,881.5736,494.0054,62.84079,879.6279,530.4302,-151.37749,864.98596,526.3771,-86.183876,980.6717,593.42456,-242.90494,875.35736,603.8566,160.6699,908.27637,734.35315,-188.18407,784.4245,726.3524,-143.58752,876.18243,653.4237,20.51375,835.3482,639.2058,-573.4053,862.9563,634.7457,33.87028,835.11633,620.8512,-616.2339,884.9917,623.3936,20.83757,864.0354,604.0852,-553.1749,891.88275,633.1163,28.479092,869.924,613.72784,-557.7674,1067.9567,781.8902,-118.76588,987.97064,786.32166,119.02928,1036.2638,790.109,-811.2069,843.40906,777.60706,-190.84183,1095.2104,979.8237,-655.2418,928.8224,933.67535,-38.28518,1112.8151,1007.62976,-650.00073,963.77094,956.9489,-27.402267,1048.032,1040.8033,-895.8881,858.9418,995.66376,-157.6118
Screenshot_2021-02-11 at 15.43.05.png,squats_down,632.25745,255.80832,-51.753716,626.3196,247.92802,-89.4978,621.65204,248.53784,-89.17447,617.1467,249.29385,-89.37727,638.54803,248.36047,-88.44962,642.6248,248.49606,-88.24471,646.7609,248.97302,-88.209366,608.5018,261.88922,-179.58832,651.4261,261.08997,-174.5425,624.93646,268.502,-74.385544,637.3701,267.9433,-72.70574,559.8993,306.75485,-150.00491,695.32715,311.52332,-147.5779,539.95013,206.98071,-96.69597,722.327,209.37714,-119.45145,535.05646,99.8226,-142.02562,737.1765,111.24388,-201.82178,516.68756,74.544945,-177.868,750.0995,89.090675,-255.06606,538.0293,69.06783,-192.51797,733.1623,82.562996,-260.8166,552.079,81.04164,-150.32632,722.56885,91.44553,-209.32558,566.9564,536.93396,7.1928425,654.867,539.5981,-6.4051876,529.2178,546.50995,207.74974,750.6134,528.093,123.96171,509.71066,646.50836,313.11166,720.22577,637.84424,175.21132,512.0157,665.7756,325.8725,704.31354,656.2692,182.17697,489.77426,658.53503,335.18723,728.1737,661.0246,216.88533
Screenshot_2021-02-11_at_15.38.48.png,squats_down,1332.2609,551.61633,-689.54816,1346.4049,531.57544,-628.6201,1356.0269,532.0337,-628.76025,1365.7024,532.3044,-628.6559,1319.0818,531.2983,-631.45557,1309.3679,530.9625,-631.2868,1299.6367,530.8874,-631.1128,1378.7408,546.9511,-344.50745,1287.3998,544.6068,-360.11847,1349.2644,579.13574,-591.27716,1314.1238,577.94617,-595.2392,1438.5812,668.48846,-227.39133,1216.4176,661.9713,-286.5521,1520.1575,817.32135,-712.5775,1125.6099,817.7033,-816.49316,1417.0387,690.64954,-1030.9269,1244.3887,694.3716,-1226.9685,1394.8512,646.2403,-1082.3818,1273.719,658.9547,-1275.1691,1392.9545,631.3846,-966.4742,1277.4026,637.44434,-1178.31,1389.2743,651.965,-988.6136,1277.4257,658.4597,-1185.809,1384.2556,891.969,23.92286,1251.8988,892.2771,-23.023926,1492.4088,885.99603,-867.23535,1187.523,890.4091,-994.29456,1453.4208,1102.2677,-403.4084,1196.9966,1112.6655,-550.8156,1427.006,1139.7712,-373.8373,1211.7736,1146.6411,-523.8041,1518.3625,1172.4054,-679.1037,1176.3813,1188.5226,-863.51135
frame__mGvzVjuY8SY__0001209.jpg,squats_down,892.9453,489.82913,-684.51874,909.9114,465.9719,-674.89984,918.91504,465.22083,-674.8249,927.88434,464.41483,-674.86926,890.3401,467.6465,-631.8003,884.712,467.57147,-631.42474,879.20386,467.7427,-631.03357,955.4876,470.63425,-552.254,892.9074,473.60797,-365.1737,917.4844,508.995,-637.51825,890.80743,509.8723,-583.7513,1027.6913,557.4596,-557.3788,888.9436,564.28033,-185.54337,980.1759,713.0089,-685.4696,793.30096,723.55994,-554.57776,885.01843,595.2842,-713.87396,829.5971,591.3409,-1042.1327,854.56287,567.4296,-758.81903,823.51196,559.0087,-1111.8877,884.3595,547.8855,-754.31445,852.12805,537.5885,-1035.243,899.6383,555.9954,-703.8778,862.48114,551.4516,-1023.16327,1123.8077,745.3576,-123.18399,1037.8148,740.1275,124.00493,1005.2947,799.9735,-847.28577,836.9447,775.1537,-212.86845,1103.927,979.0198,-473.14233,894.5967,939.66565,181.75732,1136.9448,1007.12805,-453.34683,929.4204,967.906,212.81184,1051.4369,1052.2758,-722.0988,798.1291,1011.08484,70.97562
frame__J_8p7qnpUe8__0005093.jpg,squats_down,843.25275,491.49304,-288.6453,859.90546,475.87958,-327.6941,864.6552,476.16803,-327.67572,869.35535,476.47626,-327.66202,858.8821,476.19397,-262.23685,861.6975,476.4943,-262.10425,864.9074,476.93225,-262.02994,901.5118,485.1646,-382.42078,895.21625,486.14368,-79.93819,860.6012,513.4312,-313.774,857.83167,513.6175,-225.40984,946.2438,604.67035,-469.7456,925.3324,582.67224,138.93208,835.8736,713.3335,-409.77158,827.57446,687.29016,243.03566,781.6875,598.8528,-140.64984,779.3454,606.34265,224.26958,760.0646,561.9003,-175.24734,761.7371,571.44354,260.80972,785.4174,553.8219,-201.93391,782.51746,566.03,277.27145,798.30817,569.1662,-143.86577,793.0504,583.42786,228.21362,1159.0828,718.0387,-207.94034,1124.0947,702.4871,208.47974,966.9978,758.2924,-404.613,939.13336,740.3397,592.15063,1043.4215,976.65546,-465.1134,1006.1342,899.8839,857.7388,1081.39,1019.6854,-475.39197,1041.3899,931.5818,886.8766,945.15955,1020.94165,-568.9986,921.52814,951.3849,880.40826
frame__26X9x2ta4Dw__0005706.jpg,squats_down,924.0094,495.93832,-261.64343,935.96497,478.4026,-244.3842,943.65326,477.28806,-244.14757,951.43854,476.1574,-244.02377,917.4124,481.9852,-225.03156,910.856,482.91193,-224.95029,904.3467,484.07812,-224.88397,971.2305,486.06512,-106.39194,909.87134,495.46527,-24.795267,945.32635,512.29706,-208.92429,918.8567,515.8181,-185.53537,991.9765,554.0873,-226.27335,948.6914,565.3212,203.84427,896.1498,584.87445,-227.90369,859.9108,598.93787,126.14598,863.1668,567.3672,20.977386,853.9915,578.2141,-140.20673,858.28986,559.26526,9.682695,844.70557,578.2215,-175.16542,861.9617,563.38086,1.5582509,860.28986,569.89185,-178.93875,869.00366,572.3504,22.668987,863.58624,577.4454,-150.73001,1055.167,783.83655,-144.71283,1020.4719,773.3725,144.60095,922.5524,785.01154,-357.01825,881.392,766.28204,24.590538,995.3715,958.2809,-283.71222,954.87866,917.1709,30.9321,1034.2616,988.3853,-275.4511,989.78735,939.903,30.165638,923.6113,1009.4722,-337.4285,900.7876,968.9808,1.3568829
frame__8ghtQpeWov8__0011734.jpg,squats_down,985.2182,495.50763,-885.15155,992.0216,475.48016,-850.1677,998.87146,474.4895,-850.149,1005.90753,473.3969,-849.8683,970.9412,477.99753,-862.72125,962.9313,478.5954,-862.6547,954.891,479.30887,-862.6422,1012.0667,481.21204,-618.121,941.04486,487.9721,-671.9508,996.913,513.30084,-797.87427,970.4647,516.3297,-812.1931,1053.331,554.1555,-446.42657,887.26025,563.468,-552.5352,1158.0759,637.5494,-683.7308,796.40015,661.8377,-700.48047,1108.0012,685.77747,-1094.0748,788.365,747.94965,-905.13745,1105.9484,710.4741,-1190.9849,776.5528,779.0369,-980.9919,1075.3293,697.2056,-1185.9348,805.9882,772.1964,-996.503,1072.1959,698.7059,-1103.6499,811.736,764.85364,-913.6002,993.13214,719.06067,32.25701,895.1149,726.1727,-31.695177,1127.0298,721.0405,-384.73755,820.1146,751.954,-641.9093,1094.3977,872.33026,-22.531837,825.477,916.22864,-245.3427,1067.8928,902.27484,1.8797855,835.64825,943.5862,-220.46939,1160.3018,929.555,-181.27145,806.752,975.3414,-460.5398
Screenshot_2021-02-11 at 15.25.22.png,squats_down,590.5596,335.7018,-108.91583,593.2295,327.25012,-89.45054,596.6883,326.75003,-89.37893,600.23645,326.21887,-89.30544,582.4426,329.23254,-92.69146,578.39014,329.90326,-92.704544,574.3523,330.71326,-92.79763,603.9514,332.35324,14.35345,567.7409,338.53992,1.3168985,597.41437,346.46176,-71.4715,583.9021,348.64902,-74.94024,627.85175,375.64996,-1.3850251,546.56537,377.54648,-25.250404,663.7974,376.628,-275.89273,508.2973,378.99277,-302.73953,659.1339,381.4802,-526.4477,523.8935,374.77274,-546.8491,665.09595,387.7586,-574.72546,522.7699,380.1761,-577.49567,651.9383,388.146,-561.64185,535.97504,380.78766,-568.8704,647.93445,391.30392,-529.0609,538.54724,384.30588,-546.11755,611.6646,497.8878,4.3701005,561.79834,495.225,-4.02319,666.16724,480.23868,-276.46548,505.88855,465.56766,-288.13104,632.4819,578.18945,-170.08884,534.5492,565.2696,-186.94052,616.672,595.2995,-166.90114,549.6337,581.61084,-179.02466,656.32935,608.9041,-277.31427,513.71857,598.2882,-272.53998
frame__cTTtZM2I8Ro__0003534.jpg,squats_down,891.09283,545.0077,-225.62822,900.4771,531.25793,-266.51178,903.0323,531.40735,-266.38657,905.66187,531.5187,-266.38773,902.66455,530.2985,-205.08986,905.82184,530.40216,-205.1287,909.40283,530.6599,-205.13322,927.899,538.77783,-358.74557,932.55524,538.64185,-80.3994,901.1371,561.7352,-256.44006,902.744,561.64606,-174.60585,955.3254,606.7809,-451.94156,968.89215,598.3234,91.1241,829.33704,634.3023,-618.9359,865.21844,635.8965,109.94727,702.0955,604.9425,-605.5706,745.9142,604.50653,-88.64542,668.46136,588.27954,-700.6231,722.84216,574.33887,-77.707214,674.24115,575.384,-649.5592,712.32794,581.3472,-157.36757,685.96326,584.88116,-593.0659,719.19745,594.18353,-128.08742,1132.3716,756.8888,-190.89627,1125.9897,738.72174,191.67197,994.7873,739.7088,-257.1322,953.92004,714.21277,347.6969,1045.3394,913.1581,-63.20214,1022.58856,869.7801,602.1852,1068.5214,943.8634,-51.547634,1051.2622,894.4499,624.5274,969.2735,937.075,-108.98924,955.7121,905.14795,650.46875
frame__VusCUj61wDA__0003802.jpg,squats_down,908.16754,441.1526,-748.0093,918.66345,425.2144,-737.58514,925.35913,424.91278,-737.5062,932.0,424.63235,-737.5791,902.3738,426.1893,-707.79694,896.9321,426.0179,-707.491,891.6807,425.94363,-706.9701,947.4315,428.6556,-625.5524,895.9573,429.59647,-498.3537,924.7212,454.68903,-703.238,902.4149,455.52438,-667.08374,998.947,489.17917,-614.47144,892.3036,490.8797,-316.43826,997.3352,622.6329,-754.40564,884.1362,615.05457,-572.1472,894.6705,557.25165,-888.0126,873.3799,551.8473,-1018.39886,859.7702,544.82776,-942.69885,864.3457,537.13586,-1079.1621,876.25116,517.254,-940.3047,873.7566,513.43976,-1054.9518,890.5137,516.9832,-885.31146,879.33997,519.49554,-1018.91486,1086.5012,609.45734,-100.744675,1016.9564,602.4641,101.86813,1049.621,739.1377,-629.5203,885.3969,707.29865,-34.701546,1113.1875,850.6462,-364.7444,885.42755,817.37085,266.9538,1132.5719,866.941,-349.62183,899.12787,836.8315,291.2946,1091.7484,901.1289,-560.39197,830.5193,865.2706,179.6917
frame__XJcoOdKlYqk__0010324.jpg,squats_down,2596.3877,997.33655,-1829.0626,2615.3213,960.1097,-1779.758,2628.6282,959.877,-1779.7601,2642.1414,959.5156,-1779.7944,2574.1025,959.55835,-1796.8954,2559.147,958.7439,-1796.8354,2544.1626,958.132,-1796.8715,2650.5964,965.5721,-1375.1661,2517.308,963.07166,-1448.668,2613.1694,1029.1715,-1666.8024,2566.6167,1027.5189,-1686.6727,2719.0151,1104.0164,-984.4598,2402.58,1108.7416,-1125.472,2795.8193,1354.13,-1527.2643,2385.9172,1374.3054,-1642.5299,2686.9702,1178.1404,-2292.3945,2560.2346,1186.3146,-2223.5676,2657.782,1126.4412,-2429.7288,2607.2437,1128.9958,-2340.0957,2658.5051,1086.541,-2339.4197,2601.5542,1091.8729,-2249.0312,2654.4517,1111.4122,-2270.4692,2601.8037,1119.0647,-2194.4917,2592.7957,1359.5164,42.748055,2409.5586,1356.8365,-43.10127,2739.19,1519.9615,-933.0137,2318.032,1532.147,-1008.2288,2649.3384,1793.0575,-243.9727,2316.4524,1810.0677,-360.6229,2605.8264,1839.7289,-194.78247,2326.7268,1858.1053,-319.8063,2712.9424,1914.5802,-545.6629,2288.7236,1922.3973,-740.2425
frame__RjnyMfZb00M__0002138.jpg,squats_down,1000.82416,575.49817,-292.60123,993.8554,560.2963,-259.99097,994.4822,560.44977,-260.18726,995.3135,560.58655,-260.28363,986.3498,560.58105,-310.76135,981.1593,560.5686,-310.80338,976.10834,560.68475,-311.14844,975.3913,568.7019,-84.31223,948.45953,567.72766,-319.8561,994.19196,592.2513,-227.10826,984.1895,592.10693,-293.7103,984.3954,645.29736,6.5848403,871.0054,654.69244,-353.78546,1021.75256,747.20294,-171.99174,904.66235,802.6451,-539.835,1052.7761,672.74365,-540.37964,992.6387,705.8826,-722.9458,1072.867,655.0496,-593.7743,1016.7239,685.8578,-787.4574,1064.199,640.7569,-599.16736,1000.4743,660.67377,-784.66766,1053.0752,648.31586,-552.85535,994.5235,669.0277,-720.1587,909.30536,824.57043,137.42006,838.3181,843.5465,-136.9681,1050.702,774.4634,51.153294,907.5834,781.13043,-647.8169,997.38385,880.5201,220.80916,888.0319,958.96515,-336.8406,967.4087,898.65955,234.21054,867.62506,986.5788,-311.69888,1049.8599,931.9516,127.502716,939.9404,1011.0275,-496.21555
frame__LMEb5jsIokU__0007373.jpg,squats_down,1092.3529,465.7778,-90.57695,1084.251,449.91266,-79.68928,1081.8519,449.91528,-79.56976,1079.6259,449.98068,-79.40558,1083.556,450.50964,-137.9289,1080.5894,450.01593,-137.7751,1077.4766,449.8164,-137.68896,1057.7632,460.37738,6.301577,1054.503,459.57062,-251.57802,1079.8396,487.3632,-55.719078,1078.4227,487.34,-128.87073,997.6254,548.087,220.43987,1026.6727,570.7417,-393.57785,1075.7837,650.38196,394.55106,1101.3589,687.4588,-219.74272,1113.4209,617.12244,495.61392,1116.2667,605.2833,199.14207,1133.601,605.0714,538.6198,1125.8177,583.3182,199.73526,1111.177,597.62976,538.2702,1110.4667,572.19806,195.75092,1098.3174,604.48413,493.05313,1101.484,583.65967,211.15201,850.48254,750.124,196.31866,858.4768,759.9509,-195.98642,1046.8662,776.80505,300.0368,1070.5675,755.87445,-138.33965,943.6046,898.51135,276.30734,938.4695,908.1655,36.695396,912.647,915.69745,281.3006,902.7296,933.52924,57.17639,975.7761,947.71716,376.63477,970.30676,960.3378,149.92824
Screenshot_2021-02-11 at 15.40.26.png,squats_down,589.0234,264.0198,-321.1562,598.24524,250.06671,-308.82974,603.3957,249.5325,-308.8276,608.6348,248.88853,-308.9133,584.1649,251.18388,-304.47916,579.56335,251.27463,-304.52808,574.9328,251.41925,-304.5352,620.1108,252.45126,-198.89156,573.7901,254.75983,-176.58696,600.0989,276.04736,-277.85455,584.1895,277.2711,-271.18088,661.5589,316.43204,-92.06385,547.1798,317.09915,-80.603584,669.8921,428.69122,-157.55493,527.5624,430.13943,-170.37865,616.90344,370.5349,-317.46616,572.3873,378.8719,-371.35205,601.3843,354.05368,-361.1202,587.80176,364.825,-410.23386,604.31415,334.3697,-341.1273,582.9449,345.22186,-399.05545,605.20135,340.7197,-312.45956,584.4531,352.23514,-369.75412,642.4554,455.23608,-3.0491111,570.50214,453.4777,3.2081923,738.4834,505.84094,-279.4857,467.74585,493.25253,-237.84682,721.2794,615.10187,-72.68289,488.46765,615.3226,-77.682236,702.70715,638.3538,-56.438267,508.91144,639.3496,-66.88061,768.2329,641.66547,-182.80132,442.52042,646.3337,-184.58876
frame__FsqhUFcjL8k__0016706.jpg,squats_down,1097.1498,489.7636,-333.356,1097.485,473.2066,-289.74353,1100.3212,474.48325,-289.60883,1103.3811,475.85468,-289.22153,1084.6625,469.77048,-336.80582,1078.4569,468.03934,-336.6128,1072.1328,466.52542,-336.70282,1093.2576,482.60257,-74.251495,1054.4326,470.46396,-285.82538,1098.433,510.8888,-253.87282,1083.0037,507.11963,-311.10107,1043.5197,557.74805,190.35028,1044.2649,568.1624,-406.29517,1147.7079,645.6744,175.1235,1177.0029,671.5268,-371.0684,1176.9225,558.6718,18.900646,1189.6898,551.8606,-109.57033,1201.9373,531.7715,29.433989,1208.8573,522.526,-140.84528,1174.0801,524.3733,45.136993,1173.5101,515.78546,-156.44022,1164.7462,536.06445,15.687241,1159.8419,530.08813,-105.63687,888.84344,729.3938,201.00046,872.0979,753.25104,-200.53793,1066.6759,770.3742,416.21445,1066.6765,818.1793,-271.7283,983.39685,892.54236,553.9316,997.0999,976.0257,-178.18028,963.0463,915.9886,564.1631,970.97955,1006.865,-174.8685,1038.9983,912.9744,596.7388,1072.2137,1001.444,-199.82217
Screenshot_2021-02-11 at 14.47.20.png,squats_down,433.40555,269.3609,-82.813255,438.8905,254.7968,-69.26043,443.36142,254.036,-69.04074,447.93765,253.15251,-68.950516,425.90448,256.43002,-69.82172,421.1667,256.42996,-69.68332,416.40973,256.53552,-69.87852,453.72092,251.50754,47.828445,409.42056,255.7693,53.211956,441.32834,277.34863,-35.74601,425.7039,278.8302,-33.887848,480.82428,287.87732,102.3369,382.12915,291.67734,90.48432,527.3247,312.24835,-191.72334,360.25485,324.8621,-171.09877,515.2428,294.16568,-495.0523,379.0497,284.32913,-412.64154,517.8522,285.69458,-553.5055,378.81522,271.5213,-459.4921,507.64508,282.3856,-534.79065,386.57367,269.55634,-435.24768,503.77942,288.88226,-496.60416,391.5057,277.8926,-407.75354,457.27057,412.84662,-2.4336977,389.95938,410.1941,3.2211697,525.35175,375.19675,-431.62277,331.45105,368.92004,-428.8643,506.8972,510.05997,-417.02902,344.61597,529.0608,-455.20224,496.92267,532.1414,-423.20068,356.05243,555.81995,-461.9636,521.83594,535.4259,-577.3516,326.8993,565.2836,-602.7529
Screenshot_2021-02-11_at_15.50.12.png,squats_down,1256.3136,523.2117,-481.3694,1270.2327,500.47476,-443.75067,1280.0791,500.52322,-443.61392,1289.9557,500.36768,-443.79913,1240.7343,501.87186,-449.75027,1230.2344,502.2668,-449.2918,1219.7623,502.87152,-449.25797,1301.9186,514.4899,-167.21869,1203.8624,517.9622,-201.66545,1273.2976,550.42896,-375.09167,1237.054,550.87714,-385.22873,1360.862,614.401,-27.404387,1137.917,629.68286,-41.656887,1422.1085,723.0734,-282.51758,1118.5543,744.3929,-354.23395,1478.5852,710.8574,-909.94556,1096.8757,698.4101,-1011.0594,1505.9327,719.32465,-1029.3132,1088.1614,701.63184,-1137.0161,1484.5735,700.8876,-1066.647,1097.8898,669.888,-1146.1887,1467.4788,701.2121,-936.9094,1109.2926,673.77655,-1026.7329,1355.2075,871.78955,1.5634444,1216.3254,881.90936,-0.56654894,1473.1381,966.2376,-617.5035,1070.8417,1000.1093,-595.39435,1411.1498,1184.4476,-154.83519,1132.0873,1177.3486,-173.26848,1379.6488,1219.9623,-118.8945,1171.5817,1206.0065,-141.05153,1468.5507,1266.7767,-342.97052,1061.3739,1265.033,-363.76645
frame__ku3vgejAZ0g__0000864.jpg,squats_down,917.7085,339.51636,-1046.441,928.55664,317.7728,-1021.363,936.23334,316.88513,-1021.39185,943.96344,315.88016,-1021.4761,906.45197,319.65228,-1022.3614,898.72546,319.86536,-1022.13525,890.94305,320.22476,-1022.09265,957.7019,319.28168,-790.67236,882.6714,324.487,-798.9164,933.40063,355.5794,-954.95953,906.927,357.23636,-956.40906,1020.9872,399.53067,-580.3483,834.40564,402.10934,-582.32025,1055.6564,551.98663,-801.3349,762.29315,534.52924,-856.6228,960.12866,510.40396,-1210.1432,843.2261,492.82367,-1294.6732,928.13403,503.36057,-1280.5948,870.4091,487.59363,-1363.1428,931.8522,473.8353,-1250.2761,874.6714,457.67645,-1337.8441,936.0584,478.12146,-1198.4597,873.2262,462.9431,-1285.4047,990.7902,570.4017,7.2499685,884.57153,575.2162,-7.682526,1058.6062,685.9891,-456.40762,825.4927,723.8325,-530.09247,1023.84467,844.24194,-57.505028,873.02124,866.9068,-99.22171,1006.33234,870.3715,-28.342337,893.248,892.4717,-69.38155,1052.3763,904.2953,-241.26918,830.938,920.60956,-288.74783
frame__8ghtQpeWov8__0000791.jpg,squats_down,1072.8373,484.57135,-589.9622,1072.857,463.04773,-550.02,1077.7705,462.79062,-549.91943,1082.9767,462.6167,-549.7005,1054.3778,462.27798,-587.6894,1045.9591,461.3892,-587.5316,1037.4731,460.64764,-587.57056,1073.9548,465.06946,-325.59348,1012.40546,461.19763,-491.40903,1074.0,502.56528,-506.28638,1051.6316,502.48404,-552.0893,1074.3082,535.46246,-133.81683,943.2231,536.8517,-548.0829,1152.0286,606.7998,-282.14078,939.6936,681.7469,-619.5233,1181.0997,668.1368,-691.757,1044.8485,722.3349,-525.6271,1199.8615,689.22595,-756.8419,1071.2839,735.806,-585.8388,1185.3395,674.6287,-784.0709,1080.7415,712.8497,-569.50653,1171.0122,674.7273,-717.11115,1068.1488,712.21844,-515.7444,926.2519,707.7104,124.48936,845.2156,709.4287,-124.546364,1081.9658,723.034,-124.97342,953.43866,741.29016,-699.5696,981.3786,871.7074,66.01198,875.55273,897.5578,-400.99573,938.7555,896.3154,77.32204,841.8934,916.79376,-382.16217,1042.2034,935.6849,-49.3176,930.21716,965.9882,-598.0759
frame__4zBnM_uozXM__0006727.jpg,squats_down,963.6898,85.96756,-196.18823,983.4327,65.23298,-222.77805,989.23517,66.12457,-222.54575,995.30585,66.72881,-222.8261,977.9875,64.080765,-171.5235,978.2158,64.25187,-171.64313,978.79236,64.85784,-171.67816,1026.4448,86.37095,-245.55124,1007.2335,81.50751,-11.560344,982.55927,118.04524,-197.45784,971.4053,117.44512,-129.63597,1058.8676,232.20293,-348.25076,1064.3145,227.96394,252.13727,849.5164,355.14032,-413.69058,866.5945,329.80402,355.82776,644.18036,414.59845,-324.22195,670.2111,345.33755,216.4718,591.6414,423.26846,-394.6029,632.71295,322.0703,234.44588,595.72626,400.0337,-350.94708,616.89343,323.83655,152.95012,619.4153,401.29385,-307.5721,631.383,343.6624,179.18266,1297.8654,605.86774,-206.28555,1286.2026,581.24426,206.67369,1024.3082,571.7013,-227.19589,1029.7422,552.2706,341.39536,1114.5037,885.70087,54.259388,1095.3838,853.43005,591.8904,1166.3687,935.2176,80.070145,1139.6487,903.1357,612.83276,1004.17,947.22345,46.042713,988.34735,932.56177,621.95856
frame__MG69sFM1UIw__0005616.jpg,squats_down,922.065,596.5781,-961.76447,930.6007,578.32776,-937.9278,936.98083,578.2857,-937.87604,943.4159,578.1772,-937.728,911.8943,577.56714,-944.99915,905.03253,576.8493,-944.8267,898.141,576.1811,-944.7939,949.03754,582.4226,-747.55774,886.15674,579.1457,-773.0934,931.003,611.16656,-886.18835,908.74835,610.1898,-892.6424,984.2468,640.2131,-558.57056,840.7277,641.4983,-580.1786,983.2425,772.27844,-749.1403,835.9328,782.9387,-785.3152,947.6495,701.717,-1034.2411,897.6611,700.6357,-1072.9551,939.6025,679.8169,-1092.4404,914.39343,671.25336,-1141.1427,945.31067,657.2147,-1061.5011,910.1496,651.83234,-1096.804,942.3574,664.25867,-1024.7244,913.8384,662.67413,-1059.8617,956.251,729.53986,3.76337,875.47955,734.7981,-3.8350031,1036.7186,784.477,-502.11874,794.9465,812.9223,-506.1565,1088.353,900.486,-122.65555,768.12244,918.8079,-112.96174,1086.5986,920.0675,-93.585236,774.5521,935.1967,-88.78218,1120.414,944.8803,-286.9378,745.1842,970.1576,-295.15356
Screenshot_2021-02-11 at 14.24.58.png,squats_down,621.14435,265.75598,-635.1445,628.0769,250.14865,-611.9321,633.7781,249.30061,-611.89557,639.60156,248.26099,-611.7568,611.7414,252.39592,-609.235,605.8517,252.97658,-609.1124,599.96643,253.64754,-609.041,649.42377,253.75266,-469.19318,594.3962,260.6132,-454.68344,633.80096,278.82834,-581.9129,612.70795,281.3906,-577.2585,696.7112,318.53632,-370.41113,560.68195,323.8759,-336.76282,776.3006,393.31348,-396.26285,485.17642,399.3404,-363.25528,789.9546,486.58685,-489.97342,482.8528,484.3527,-462.2896,803.5555,512.3906,-535.4169,474.44818,510.7603,-504.8553,781.1296,515.9005,-559.7969,496.41724,509.77948,-530.7519,772.4293,508.82645,-501.85968,504.03934,502.2933,-474.42752,668.39154,459.62473,-4.5466046,593.5282,460.6307,4.6453934,761.9833,511.8147,-374.45468,525.1595,514.50226,-320.50262,750.29987,630.7397,-80.81982,531.4048,630.5217,-43.58037,736.2021,646.1034,-56.6297,546.32275,648.19214,-22.48592,782.885,685.2262,-190.81052,495.89285,682.31305,-163.82738
frame__NsCiNjVEzTM__0009996.jpg,squats_down,1180.4945,315.47253,-6.5863533,1173.9401,293.51675,-5.037045,1169.892,291.7081,-4.9328504,1165.9252,290.05966,-5.129271,1178.402,296.33224,-66.613106,1177.6014,295.90778,-66.453735,1176.5557,295.77454,-66.464905,1143.434,288.8557,62.51004,1155.8413,294.41815,-228.47981,1164.4614,329.0767,27.829866,1170.0448,332.52228,-54.019615,1059.9241,360.24774,330.9012,1122.3414,374.62637,-381.5934,1190.8843,390.71506,709.99615,1283.1501,414.12012,-319.06363,1218.4503,354.99667,979.3189,1225.0974,339.1756,157.8862,1238.1475,347.6312,1042.2043,1211.8608,318.08548,173.33366,1209.1965,348.08936,1031.7307,1200.2412,331.0134,172.65608,1197.9664,353.93124,981.9363,1198.806,339.92896,175.97267,917.34973,617.1081,237.66264,954.91284,627.70166,-238.00156,1038.9086,694.69995,777.3525,1191.6799,710.65765,-152.8248,981.3281,834.6734,1021.77295,1103.9629,909.77045,-125.99698,952.48865,859.47046,1051.243,1056.8005,944.3768,-119.721306,1036.6226,865.6262,1174.653,1188.3785,952.04266,-39.673065
frame__8sbJpaXfYwM__0011892.jpg,squats_down,954.63916,506.05252,-164.49495,959.2512,482.2601,-134.02457,962.6858,482.4734,-134.1046,966.2668,482.6882,-134.11879,946.05786,479.657,-181.47743,939.1715,477.25497,-181.39859,932.27295,474.9761,-181.69427,951.07837,481.96033,37.674297,908.4885,472.88864,-174.08846,949.1747,524.0728,-97.88185,930.9753,520.0396,-156.94716,890.97015,551.18945,268.24286,864.4551,567.5921,-276.91522,933.4789,665.1367,284.0744,914.78107,730.06824,-189.25356,999.1031,596.5568,66.87644,996.8603,623.9068,108.536835,1018.4769,575.5098,51.677597,1022.93005,596.016,97.29426,1016.30194,556.82117,38.236294,1013.15356,566.0819,96.10374,1007.89056,570.44,54.03483,1002.19,581.18085,118.09116,776.9033,763.1699,200.36725,746.7786,782.7025,-200.42253,972.52386,714.21875,339.86276,966.8178,765.3271,-437.273,899.9934,868.4852,397.0954,850.9173,966.2164,-473.74518,859.5552,899.88275,402.15656,795.24146,996.90234,-475.87604,977.4897,908.735,399.7203,938.59674,1037.368,-531.25806
Screenshot_2021-02-11 at 15.05.25.png,squats_down,551.467,210.4827,-413.1437,560.5717,197.04532,-385.2728,566.5038,196.55356,-385.25565,572.46796,195.92213,-385.32666,543.38727,199.33908,-383.98425,537.6261,200.07991,-383.88486,531.85364,200.92345,-383.8114,582.8748,203.17303,-230.60417,527.0734,209.08502,-219.61148,564.1195,226.36922,-356.03482,544.10065,228.44215,-353.02258,633.17114,282.10535,-128.78049,493.91473,292.50626,-124.9969,659.64197,404.2255,-281.11136,484.82385,412.05487,-268.89474,595.8296,346.27228,-555.3054,537.6284,351.39572,-539.51587,575.2754,334.83154,-613.68304,551.83093,335.96063,-593.9713,578.4625,310.00125,-592.76685,547.4654,316.81683,-577.96796,581.0589,315.38284,-551.94696,548.6448,324.07816,-537.6485,621.25586,454.92804,-5.7344723,532.48315,461.57346,5.994367,755.3999,488.17947,-324.5247,407.1693,505.363,-316.9156,782.83325,642.5492,-99.75598,392.39468,644.88574,-94.39934,769.6866,672.05493,-82.41911,406.6371,672.0448,-75.949715,836.3435,679.2333,-225.17467,338.11453,679.4642,-198.69963
frame__zbt1g9WX6bA__0009416.jpg,squats_down,1845.2277,1100.7185,-1328.8918,1867.4148,1071.7982,-1259.6674,1880.0458,1072.9076,-1259.6442,1892.7346,1073.7439,-1259.4264,1830.1288,1069.4286,-1261.1898,1817.4253,1068.3745,-1260.854,1804.6378,1067.5409,-1260.938,1909.6586,1089.3142,-847.01025,1786.9071,1079.4332,-858.6364,1863.7971,1137.5183,-1175.6277,1820.4777,1133.9491,-1178.8599,1988.1956,1264.1593,-563.7739,1682.217,1238.5764,-603.24286,1984.7848,1528.9954,-1022.27466,1634.3458,1492.8215,-1098.76,1891.2672,1385.6077,-1674.6154,1766.9667,1396.5394,-1755.2023,1867.2762,1340.6594,-1834.6755,1798.9587,1363.7631,-1903.3257,1884.1938,1297.545,-1746.7054,1794.2207,1326.3826,-1839.0873,1877.5647,1311.9087,-1653.5109,1800.8302,1341.4407,-1738.9734,1922.8374,1548.8947,10.282632,1745.7234,1540.9946,-9.152322,2118.2944,1571.8514,-1175.2207,1593.0283,1541.8368,-1249.6526,2073.4636,1876.4667,-397.77325,1549.8104,1858.1122,-465.16187,2035.9877,1933.7361,-347.49518,1571.5194,1920.1376,-417.23764,2155.3599,1968.7831,-810.2776,1455.4697,1939.9423,-895.7947
Screenshot_2021-02-11 at 15.16.55.png,squats_down,482.88248,350.64536,-538.0018,490.46887,335.9975,-519.1931,496.23584,335.39313,-519.1396,502.00983,334.73694,-519.0034,475.81375,337.08078,-515.2368,470.539,336.9884,-515.1725,465.23065,336.97903,-515.0297,513.6578,337.1624,-391.43558,462.12042,340.03616,-366.9986,496.2124,360.21274,-490.3198,476.79025,361.22415,-482.70352,554.5507,379.70865,-285.03662,440.93063,380.662,-282.83334,575.75183,461.1904,-457.6216,406.81815,462.1137,-482.66202,508.64923,407.3151,-602.6878,452.42728,406.18652,-655.5373,490.056,394.8169,-629.10425,466.19873,391.85114,-678.3454,489.76776,381.17828,-583.9929,465.83997,378.03076,-645.89545,492.4107,388.59036,-583.0045,467.12323,386.64297,-642.835,528.7891,481.22766,-2.3954697,464.9971,482.554,2.52048,563.6848,492.30508,-403.55063,443.73846,518.26874,-364.84366,541.5402,594.882,-182.03577,463.98038,600.39233,-126.087814,535.0108,604.1467,-163.85402,470.5374,606.6262,-106.34467,535.057,651.99567,-318.73587,461.7658,653.92444,-247.90967
frame__4e8N8lz6lio__0003708.jpg,squats_down,1334.1996,597.2565,-43.827114,1329.3942,576.49255,-21.148804,1326.104,575.11816,-21.129618,1322.9314,573.7969,-21.246187,1332.3098,576.61005,-76.61685,1330.9991,574.97144,-76.46584,1329.7781,573.5767,-76.38647,1299.4976,568.34845,72.01807,1308.4463,567.65106,-178.02417,1318.258,607.3364,-7.9368668,1321.083,606.9088,-78.68474,1236.8445,626.94543,205.91196,1273.1533,626.38696,-332.3426,1356.6611,691.29565,217.22923,1381.6337,697.9949,-468.5342,1471.6837,729.39374,28.829258,1484.6892,719.932,-427.02502,1499.571,727.4214,27.261696,1514.9321,719.7984,-490.45874,1497.3676,722.90875,-27.096403,1509.3021,708.3641,-453.36047,1489.2931,728.06525,0.5649997,1496.738,710.6079,-411.86053,1113.6655,814.69586,164.57141,1125.9277,825.3506,-164.33165,1241.979,717.0878,366.00473,1280.6737,720.0008,-198.77042,1207.4541,859.52936,638.7261,1221.8892,884.4169,23.305841,1195.5496,878.1122,668.74347,1201.7783,909.46954,43.720028,1241.6584,905.0763,776.0652,1262.447,917.8209,102.23629
frame__R6Bbis0z-o4__0005000.jpg,squats_down,873.02325,520.7624,-446.05682,881.232,505.37775,-456.63605,886.0947,503.9134,-456.62006,891.2487,502.4242,-456.55585,872.6206,509.43427,-421.77124,870.6513,510.41916,-421.67255,868.5858,511.53708,-421.65015,916.12726,503.80853,-420.63892,885.13434,515.2394,-251.54535,890.8909,532.044,-429.06854,880.6644,537.1394,-379.2031,995.5277,571.3817,-387.8557,888.9486,562.09357,-121.774734,992.92523,674.607,-523.2693,862.73596,649.7282,-235.16669,889.9838,627.6518,-650.9361,837.38,624.4646,-585.5102,856.7009,626.96204,-690.01,827.7635,621.3715,-641.6206,859.87195,598.47845,-681.5714,833.0087,606.0825,-657.3498,870.9409,602.9184,-642.6466,842.53546,610.432,-600.53455,967.96454,717.7386,-79.33633,902.53876,710.77484,79.732544,1015.8587,742.45905,-523.69275,888.3843,731.3495,78.28158,1038.1641,872.9645,-465.6412,936.9054,790.2436,427.40665,1042.784,901.08655,-461.0257,952.06305,804.6721,463.03592,1025.8986,903.5315,-638.891,924.16473,814.61127,364.9761
frame__dxA21IeBB8o__0001291.jpg,squats_down,1808.3934,1120.7311,-2057.0894,1830.7594,1081.8647,-1997.0555,1844.6312,1082.672,-1997.2585,1858.474,1083.2361,-1996.785,1790.3583,1078.3644,-2001.28,1775.9519,1076.1223,-2000.8175,1761.4073,1074.0375,-2000.579,1873.3438,1087.0198,-1559.6458,1739.6643,1074.8611,-1573.3698,1826.6699,1152.9196,-1888.3254,1780.2708,1148.3053,-1891.7952,1957.2986,1223.8628,-1251.8137,1628.1053,1212.4268,-1278.0079,1968.0673,1488.5378,-1866.6641,1616.3678,1479.445,-1838.9695,1850.1609,1301.8229,-2422.6707,1756.628,1306.4999,-2297.1245,1829.2457,1232.5348,-2562.7922,1788.5458,1239.8572,-2411.756,1840.0804,1200.9209,-2436.8425,1772.7188,1210.5336,-2318.341,1830.4857,1224.5911,-2379.6345,1780.235,1234.7815,-2265.2463,1892.029,1495.7562,11.76943,1697.0132,1491.7699,-11.303694,2098.211,1524.7804,-1121.8102,1527.1685,1525.3956,-1161.7074,2090.9805,1805.0243,-278.24564,1480.2933,1804.2084,-318.65585,2066.4185,1857.9185,-217.30112,1498.1923,1860.9731,-263.9747,2150.541,1902.2018,-658.64746,1400.0043,1893.8359,-736.75
Screenshot_2021-02-11_at_15.47.07.png,squats_down,1239.8582,637.4296,-1338.5043,1252.1573,611.51074,-1292.7896,1261.7687,610.8391,-1292.6888,1271.3193,609.9992,-1292.4857,1223.2429,614.26874,-1297.6354,1213.1115,614.95233,-1297.2744,1202.9396,615.8611,-1297.369,1280.2653,616.4197,-994.4226,1187.2023,624.0611,-1012.20734,1255.5319,661.5787,-1224.3759,1222.7494,663.4551,-1229.7567,1346.5771,714.7051,-779.60767,1118.2108,740.7695,-829.82,1407.6112,870.45166,-1271.3291,1086.3308,896.5119,-1358.4352,1294.4417,783.7126,-1823.9824,1200.8563,786.4627,-1835.2365,1258.7898,763.38684,-1914.4198,1221.6525,753.2563,-1924.8467,1263.6569,731.29285,-1841.5891,1227.2161,736.60565,-1837.657,1267.0391,745.6803,-1799.1729,1230.979,752.12665,-1803.392,1309.8888,892.3249,-0.8059434,1177.9979,907.0103,0.7706969,1389.5565,973.8944,-842.2989,1096.9493,1002.14954,-848.6132,1371.4312,1199.2964,-455.93848,1092.6914,1206.1554,-437.56888,1355.3966,1236.2338,-435.6572,1105.2102,1240.9359,-417.8185,1403.8441,1275.7358,-771.06006,1060.9878,1279.3132,-756.5516
Screenshot_2021-02-11 at 14.42.01.png,squats_down,475.03043,244.11755,-430.4767,482.32745,231.77994,-410.79333,487.64865,231.83902,-410.66504,492.95468,231.83333,-410.47043,468.13812,231.36963,-410.92838,462.8792,230.9124,-410.8179,457.591,230.55804,-410.62387,499.2766,236.96376,-275.47983,450.91095,235.50745,-271.71613,484.16864,255.27051,-380.04803,465.1839,254.59227,-378.55408,521.15247,283.1476,-176.95914,421.47583,285.57782,-189.20439,520.6509,359.6805,-356.55975,425.00156,368.9007,-380.77075,523.9158,294.49323,-594.5641,434.8983,304.8449,-615.8056,526.8332,274.28177,-645.4522,434.13077,283.90784,-661.11816,530.92847,264.75708,-628.2388,430.45316,273.8983,-637.58795,525.6997,271.61307,-594.143,435.05786,281.6354,-612.08545,495.90482,379.50504,6.6395082,438.61804,383.70038,-6.3378115,523.0494,404.03317,-403.46252,435.38977,426.98892,-361.49646,517.2859,512.9815,-177.87894,432.5991,525.2906,-146.82396,511.70572,519.86566,-160.6008,435.8191,533.07745,-132.09816,514.7438,578.36523,-308.08762,430.86,585.22015,-270.08426
frame__8ghtQpeWov8__0014360.jpg,squats_down,1165.2162,575.99786,-84.055435,1168.7113,557.5744,-60.407074,1166.8846,554.9232,-60.228195,1165.235,552.48584,-60.24122,1167.9094,561.5214,-112.10029,1165.8309,561.19354,-112.04128,1163.6216,561.2056,-112.20929,1145.4648,555.1477,31.484549,1142.7036,563.94604,-202.85112,1147.9595,589.80554,-47.355164,1146.6339,593.22864,-114.03752,1072.2517,603.5532,212.2573,1084.4188,630.74884,-369.73126,1222.3951,633.7856,276.65097,1232.7147,661.05994,-574.93427,1323.052,600.2162,74.97082,1358.6392,613.20245,-545.4284,1345.6572,577.61005,81.12425,1398.3257,598.947,-607.5902,1345.8132,572.10114,20.57316,1380.4656,577.7437,-575.77423,1339.5763,588.9489,42.206615,1362.6405,581.99426,-531.53253,852.77185,772.30426,194.9143,850.5247,790.73663,-194.3318,1070.6006,766.921,317.1814,1077.2096,755.72437,-236.93677,955.0558,892.0233,626.7751,948.0571,899.8996,92.60584,927.861,910.00476,658.6083,914.5365,917.4871,125.031364,968.2584,927.1799,724.1157,971.9531,941.8207,164.32198
frame__NTng60w9N7w__0001999.jpg,squats_down,832.95044,510.34985,-658.67645,840.4175,488.6741,-666.81995,846.7012,486.3586,-666.7321,852.97437,484.01462,-666.7561,826.6078,492.3442,-630.9161,822.3975,492.6548,-630.55396,818.26086,493.20422,-630.2283,872.6629,476.16153,-595.2278,828.2643,487.79074,-432.09552,852.0437,515.815,-623.98785,834.8084,519.46655,-576.57764,946.9878,510.59012,-515.6764,813.02155,523.4012,-284.41364,954.38904,633.55255,-694.81506,753.03906,629.12067,-569.47375,848.9993,537.83966,-839.31494,768.06665,517.06903,-915.7377,818.2875,519.6268,-878.2523,768.131,488.72256,-956.96173,834.5761,492.72412,-868.7632,781.3322,473.65286,-903.5462,846.4191,498.10468,-831.916,788.1932,485.91983,-901.35876,1000.5967,655.12714,-85.02514,920.9355,656.77045,85.394,989.1839,695.59283,-661.9648,786.6933,681.3213,-134.841,1019.2324,850.4759,-387.16647,798.0661,809.7276,92.39041,1030.0088,875.6548,-371.57843,818.09534,835.0469,108.18826,985.9455,903.6734,-597.9139,725.3107,855.21454,-17.897259
Screenshot_2021-02-11_at_15.58.03.png,squats_down,1361.8796,473.46875,-375.3339,1374.3231,449.1617,-316.57147,1384.7694,447.88248,-315.8559,1395.2555,446.59903,-316.48212,1343.2909,454.77365,-321.02866,1332.3907,456.9141,-320.71573,1321.4606,459.39166,-320.9038,1413.8383,465.97818,-52.604584,1312.8568,482.50134,-68.22486,1388.4462,502.9603,-285.10876,1347.7815,509.44077,-289.4545,1469.4465,597.1859,-124.44368,1277.1418,610.84955,-83.898705,1492.9001,685.8279,-680.08295,1214.4733,656.8016,-648.2171,1500.4856,621.3787,-1145.1521,1181.1908,573.1774,-1208.1428,1532.693,596.63464,-1253.0737,1151.5731,552.6132,-1305.4116,1506.4418,597.9284,-1212.7742,1165.504,542.0255,-1307.7223,1487.1431,609.88074,-1151.3972,1184.9539,554.7157,-1223.4286,1445.2098,895.24115,-2.114866,1323.9225,894.17664,1.8795991,1521.5023,856.61896,-759.0601,1220.2384,894.44965,-707.3673,1476.7522,1081.0104,-361.7964,1262.4078,1081.2269,-322.59644,1458.3262,1113.5126,-336.27628,1287.2488,1097.767,-297.22537,1507.9303,1170.949,-593.83795,1226.054,1187.5011,-557.104
frame__mGvzVjuY8SY__0009296.jpg,squats_down,955.8465,545.56274,-800.1119,968.5429,522.5263,-774.9392,976.169,522.3722,-774.96515,983.84503,522.0894,-774.87384,946.42914,521.8105,-774.6644,938.778,520.8642,-774.51196,931.0831,519.99286,-774.5332,993.9871,522.40967,-572.9846,921.423,519.1448,-569.27075,967.83093,561.78973,-721.1936,942.4504,560.4563,-719.7147,1045.211,603.1679,-419.7964,868.12573,601.1622,-415.3198,1058.4955,756.44403,-681.1902,847.49835,750.4445,-674.351,988.20374,667.3198,-1005.7458,915.4862,665.76056,-983.4422,966.6526,639.0297,-1075.1357,934.042,637.50037,-1048.3329,976.28265,613.6004,-1018.9738,926.54395,617.06726,-998.1188,975.84827,624.69006,-987.067,931.017,628.90326,-967.27124,1009.76245,780.3525,-5.308931,907.39703,779.73804,5.7851634,1096.817,831.1055,-614.8232,824.0613,821.05457,-595.51697,1100.057,994.91113,-237.86589,809.1381,983.99524,-219.14003,1091.9221,1021.57404,-211.6201,819.2072,1010.52795,-195.47298,1117.1611,1049.3569,-460.19162,777.3884,1040.3717,-443.5574
frame__exXWoE0ZUME__0003930.jpg,squats_down,977.95465,441.25784,-948.1458,988.5711,423.73822,-915.9898,995.1632,423.54172,-916.10034,1001.8658,423.1841,-916.13525,968.9494,424.2553,-918.5033,962.16956,424.32697,-918.3597,955.3719,424.5095,-918.4895,1011.9183,430.05463,-692.22046,947.8194,431.22546,-710.784,989.7094,460.29425,-862.54297,966.7576,460.16013,-867.5428,1064.5006,521.71765,-473.54077,894.7229,522.96277,-504.8235,1095.5901,643.32825,-596.8056,856.867,652.14844,-634.98035,1043.9137,630.21277,-973.1118,938.37854,647.59296,-988.145,1030.045,629.2856,-1066.5627,970.624,651.9501,-1069.2384,1022.1681,606.3078,-1057.208,969.5183,622.99854,-1065.5914,1021.5942,605.63464,-978.32654,964.3095,622.6896,-988.2207,1022.4163,654.50134,8.432075,926.20544,654.2888,-8.219311,1057.9332,758.73083,-576.26776,902.2543,748.2028,-610.7368,1063.0354,965.28546,-386.3759,885.2733,951.90137,-376.6256,1051.8813,1000.38544,-382.3949,889.62714,984.5473,-368.61642,1087.7722,1012.338,-656.0539,870.68,1006.3096,-642.60266
frame__Rs9IdyUQwlY__0002144.jpg,squats_down,1047.9293,613.077,-70.31682,1047.8047,587.18713,-49.43847,1044.6791,585.14325,-49.37758,1041.774,583.1566,-49.31908,1049.0531,588.2857,-118.315445,1046.4152,585.9706,-118.41205,1043.7867,583.9851,-118.368996,1016.64984,575.2948,61.24247,1019.1755,575.9182,-258.2099,1028.6082,624.83075,-25.797369,1029.6122,624.866,-116.67589,956.9947,645.00964,259.41074,954.36145,640.0103,-459.8372,1096.5128,679.3659,329.15292,1085.8674,701.2943,-692.8467,1213.757,668.6556,80.81321,1218.271,677.55383,-660.9371,1236.1726,653.9552,70.19894,1255.995,662.0404,-755.2601,1238.0493,641.0194,-10.240944,1245.664,639.9768,-710.07,1233.672,652.4064,39.037846,1231.7983,648.84924,-645.113,826.34644,878.9208,230.66838,816.6389,888.2764,-229.76526,1026.9044,784.7637,486.84705,1028.2513,793.0945,-319.4181,967.5056,948.98975,809.59766,945.19684,964.9838,43.795773,941.93274,976.23376,839.08405,916.26556,990.75275,79.55443,1016.4161,977.5301,920.60626,982.3909,989.32214,145.07317
Screenshot_2021-02-11 at 15.22.02.png,squats_down,677.6394,293.78833,-175.1901,680.4515,287.5624,-151.63666,683.6814,287.18954,-151.57732,686.98584,286.7911,-151.68266,670.26526,289.69217,-155.08661,666.51276,290.62497,-154.99037,662.75586,291.6912,-154.9034,691.19763,295.64398,-37.9349,657.34564,302.1234,-54.88473,684.9677,305.47742,-135.53168,671.99457,307.93448,-140.28078,712.9866,344.28732,-52.06885,640.3153,347.90167,-65.60773,732.39636,361.9184,-286.8664,611.5165,357.80392,-319.54916,747.026,331.47104,-481.85086,623.7918,335.83478,-542.03687,761.82385,319.77615,-525.39575,620.06995,332.27615,-580.11456,754.3907,322.53845,-515.98553,627.58246,331.74615,-571.59143,747.0128,329.0391,-487.01614,630.55005,336.6477,-543.73047,701.9833,471.23508,8.708115,651.8561,471.20288,-8.749758,761.2408,498.4505,-282.6257,597.2617,498.30835,-316.475,741.7681,572.09546,-73.47037,615.72327,570.19226,-94.76776,728.2718,584.1139,-58.325275,629.0028,581.0827,-76.069435,769.1478,603.5047,-152.13445,588.7306,605.51874,-163.38887
frame__7lVFsE7WJSE__0011255.jpg,squats_down,1063.8981,524.8302,-1158.4465,1076.8058,496.52905,-1145.3992,1084.5956,495.96652,-1145.3969,1092.4681,495.29834,-1145.3928,1054.0664,495.21576,-1151.0734,1045.9357,493.4244,-1150.8317,1037.7219,491.69846,-1150.6487,1102.7765,491.38568,-925.9916,1024.9641,484.83258,-943.6374,1074.0289,538.214,-1067.0809,1048.6902,537.0962,-1070.0857,1154.5193,557.5417,-675.03046,963.7017,540.61145,-733.9864,1167.5245,709.0256,-938.9655,935.7416,703.9463,-949.71423,1107.9387,669.55786,-1372.663,1030.783,674.85034,-1274.4403,1096.6375,660.43884,-1468.84,1059.6113,667.7311,-1362.004,1092.9669,632.9273,-1443.3169,1059.7506,638.0926,-1337.1616,1088.1819,636.4285,-1370.8799,1058.754,642.6641,-1271.1963,1097.3008,692.5787,2.4903145,994.40686,687.71405,-2.4187796,1228.3496,688.7838,-529.57495,869.8204,687.8836,-589.5665,1177.3593,819.3236,-45.260654,886.92975,832.0546,-94.521576,1148.2585,844.94293,-6.555493,902.13055,864.13696,-55.780502,1226.1232,886.09686,-205.11154,831.64355,892.8167,-254.28337
Screenshot_2021-02-11_at_16.31.06.png,squats_down,1390.3772,671.35657,-895.9186,1400.8329,647.2697,-864.6072,1408.9376,646.34155,-864.5169,1417.0126,645.2884,-864.43726,1377.2803,648.69165,-861.5311,1369.0607,648.4637,-861.3214,1360.8059,648.40735,-861.27277,1427.4713,644.99396,-634.16876,1350.6489,649.5179,-624.4129,1405.3171,687.4121,-806.774,1377.8754,688.1914,-803.502,1488.2644,729.109,-464.96805,1294.2446,732.82355,-466.48242,1545.3773,870.45996,-828.7957,1250.7346,862.31226,-841.3929,1457.2972,803.1721,-1201.8612,1336.035,778.66583,-1225.161,1429.5817,781.4234,-1270.1387,1357.8479,752.95514,-1293.6895,1431.1947,755.73615,-1202.8896,1358.0951,736.22485,-1224.9824,1432.7826,767.4592,-1178.1736,1359.7191,749.8959,-1200.5297,1451.5411,920.0272,-2.505481,1336.6876,924.0752,2.8723576,1533.7013,1014.80023,-618.95874,1252.3799,1028.7505,-601.54877,1528.853,1190.3215,-236.00067,1251.2021,1183.1641,-219.17429,1515.3989,1216.2551,-210.45436,1260.6388,1208.7219,-196.05238,1556.0361,1259.5513,-475.73303,1229.3196,1240.3088,-461.20828
frame__GauW8uJtvFs__0016681.jpg,squats_down,925.3057,417.7319,-297.1941,937.74493,399.82974,-336.82266,941.5742,399.42285,-336.80792,945.39496,398.95505,-336.85315,938.2583,399.52487,-267.10785,941.8874,399.84705,-267.2637,945.8457,400.34775,-267.18625,974.5252,404.82745,-436.6172,976.44965,405.551,-120.80362,942.2099,436.10602,-331.30655,942.66565,436.01324,-239.74837,1037.8212,492.70258,-530.2368,1013.578,485.18933,65.79198,917.44525,573.8021,-659.12317,895.4147,560.8279,107.171715,767.37067,594.17224,-674.4059,761.8449,590.16754,-43.84883,725.0948,588.42554,-788.33264,727.9891,574.34607,-37.2323,725.4823,569.12646,-750.2675,723.9012,579.38416,-126.53085,739.7358,576.0348,-668.92725,737.04846,588.2788,-89.26603,1253.5228,617.0422,-206.54134,1219.0432,601.2879,207.35721,1103.5675,753.60614,-244.2745,1058.2186,723.6397,262.55682,1138.4915,956.0364,-68.976036,1107.0338,909.8418,451.975,1164.5565,1001.2839,-67.04513,1130.4056,946.8393,467.61337,1029.5022,988.95215,-234.17776,1024.4777,947.15186,395.3826
frame__BiYyOx9x7ls__0009707.jpg,squats_down,1090.9182,379.21082,-49.395603,1106.4891,363.23123,-91.08761,1109.017,365.8747,-90.878624,1111.6188,368.46936,-90.58792,1108.1139,356.5373,-30.176594,1111.35,354.04782,-30.025188,1114.8052,351.6282,-30.107876,1137.6989,385.6913,-196.81224,1142.5084,364.54984,82.85542,1102.4479,409.13507,-93.152695,1101.3193,400.81845,-12.48727,1199.8251,514.77386,-342.79083,1177.2338,521.3558,287.59027,1110.5502,718.04816,-100.092514,1176.4198,698.5208,206.72585,1065.5098,610.5844,260.16522,1100.277,612.9954,-139.5046,1041.4224,588.12396,248.3016,1075.3525,579.9594,-181.67583,1077.4752,579.8055,205.3115,1075.8163,571.30475,-165.57256,1092.7562,590.33276,255.67886,1089.37,581.0223,-150.75046,1355.8333,779.575,-195.28886,1317.0363,764.46124,197.09099,1137.7917,636.86774,-329.50256,1096.8163,633.54895,345.67352,1250.7645,878.58984,-189.84389,1216.0764,838.3703,384.68152,1306.782,910.951,-170.95096,1261.6426,854.66364,386.88815,1164.3865,942.6926,-142.10417,1171.896,928.8834,412.6202
frame__NsCiNjVEzTM__0019290.jpg,squats_down,1026.4064,507.03534,300.58057,1021.69775,490.97748,298.7839,1017.01746,491.43607,298.92456,1012.53076,491.88544,298.93042,1029.2699,490.54294,251.64073,1028.4718,490.37057,252.02199,1027.5115,490.63763,251.92023,991.50146,501.03464,316.76096,1008.45667,498.1461,85.14247,1010.6301,525.7309,313.20398,1017.9648,526.45703,247.5842,916.1089,561.52625,455.59943,994.6829,590.3575,-47.349472,1037.5725,617.1048,734.0151,1174.0366,666.3923,76.056366,1060.7156,561.58966,1026.631,1084.9689,557.6207,598.0869,1080.4738,538.09644,1077.318,1067.0308,527.4044,616.0575,1061.3492,544.41534,1085.4413,1056.7202,538.6822,599.3544,1050.3364,559.09894,1039.0847,1057.828,558.5594,605.95905,755.25757,810.97845,195.72989,811.2415,817.2212,-194.8904,934.6342,749.3619,579.531,1057.2803,734.21466,-215.70789,862.70886,919.1393,627.7637,966.618,971.6355,-227.71242,832.4199,941.0996,641.91797,925.2965,1019.1417,-233.04498,924.44855,964.4456,755.3492,1063.6985,1016.977,-152.50026
frame__H21pTB9nJ7I__0007372.jpg,squats_down,844.8275,517.2237,-237.34901,852.8302,494.63654,-218.15842,853.3603,493.67117,-218.09064,854.1767,492.75574,-218.09465,848.3409,493.2735,-266.31897,845.17725,490.15707,-266.31717,841.97565,487.34326,-266.36026,837.0052,478.50995,-62.396706,819.94995,472.3553,-287.21106,829.3336,521.3951,-175.04343,823.08154,518.6011,-239.14049,804.0531,533.5333,102.12878,733.34766,493.8316,-412.4362,903.84094,600.89734,123.22699,833.2947,587.0702,-617.90674,998.3092,628.1594,-61.41981,959.95734,616.5553,-677.4262,1024.1027,640.4256,-91.25753,986.1384,630.5569,-769.8611,1021.0419,623.6296,-143.32321,996.0576,617.0358,-753.5844,1009.15845,623.6163,-95.08026,982.4146,614.23895,-674.8036,656.9304,714.9252,166.61462,596.679,713.6772,-166.33234,838.10486,694.64746,220.63615,805.0051,734.6616,-521.02466,778.5881,862.89166,372.10767,711.98535,897.0764,-288.87018,742.46436,890.0338,385.8656,670.1924,911.91516,-264.07565,834.2017,923.6552,343.86624,768.84,966.8105,-334.78848
frame__X2uZY0XRYKI__0005823.jpg,squats_down,594.2059,420.031,-1.4734313,594.41504,409.687,-29.746552,595.57446,409.6621,-29.763233,596.80457,409.56915,-29.744091,595.0134,406.77707,9.136512,596.5595,404.75198,9.239777,598.3082,402.7684,9.194794,611.4112,406.67487,-107.89563,613.05566,398.76483,66.97394,605.65546,428.43127,-29.049929,606.1211,424.9782,21.622355,656.8208,443.28903,-192.50526,660.06067,434.45236,186.31514,636.8979,513.8749,-161.90855,646.19806,493.63516,341.45813,596.49396,466.98077,19.393734,597.7097,464.5756,436.02222,580.7903,456.92804,10.647699,583.69934,454.2198,462.17178,592.20135,443.59644,1.9653192,584.95776,448.70258,459.84082,600.7472,447.84857,21.126461,589.721,453.36575,433.54312,785.39856,517.9563,-120.063644,778.1881,509.8182,120.38949,674.53485,536.7905,-183.71559,666.4963,537.91187,229.15831,720.4986,643.8923,-101.9657,710.3113,629.51434,350.8389,739.8987,661.869,-94.82823,725.4292,642.4488,361.6159,686.3169,671.64014,-108.94127,690.61096,662.8251,363.0891
Screenshot_2021-02-11 at 14.48.00.png,squats_down,462.59427,258.16278,-558.85736,469.23224,245.92328,-542.54663,473.53558,245.89436,-542.5994,477.8836,245.7049,-542.4657,456.55057,245.4758,-542.9129,452.01236,245.01662,-542.74713,447.46332,244.66,-542.7884,483.62152,247.88023,-422.42032,440.37,246.17876,-423.59543,469.5617,267.96844,-511.378,453.8932,267.40662,-511.47888,511.85828,289.35403,-334.66977,406.0349,286.29666,-326.17157,539.49567,359.23022,-341.10245,364.78577,351.81876,-356.9221,547.9143,436.79132,-402.51993,349.23865,425.42258,-420.26352,557.9042,456.80695,-442.56192,336.9989,443.2886,-458.18335,545.542,457.50198,-466.80783,349.88278,446.11945,-486.65195,537.6084,451.3879,-415.2423,358.06195,441.58713,-434.39154,485.89563,378.85065,-6.459825,429.2597,378.18704,6.546063,528.2037,407.55722,-390.495,388.94986,399.0551,-377.1215,513.6115,467.29208,-61.47987,402.70102,472.3024,-58.83315,503.55038,474.53723,-34.247204,413.86624,484.04993,-33.792965,529.05835,505.8774,-144.75792,382.05347,507.966,-164.11124
Screenshot_2021-02-11_at_16.24.45.png,squats_down,1323.414,639.54535,-61.819195,1337.9736,623.1841,-12.60709,1347.7759,623.819,-12.419044,1357.6631,624.3243,-12.495009,1310.101,624.05115,-7.522454,1300.5195,624.3781,-7.0480437,1290.9095,625.03,-6.8666253,1373.5482,642.61584,215.85991,1278.5748,642.90076,242.5808,1341.736,669.70056,15.594617,1306.7856,669.736,23.467636,1428.8414,754.3564,84.44834,1219.0933,753.32404,166.79828,1434.8873,798.0356,-591.6892,1191.4333,800.7965,-475.67438,1358.6182,757.6171,-1050.0605,1255.1506,750.03094,-961.2382,1338.3022,753.1671,-1149.1902,1268.4945,743.3132,-1048.6392,1329.3658,738.11816,-1106.6343,1282.6223,730.6659,-1017.1962,1331.8695,749.76086,-1044.6893,1283.979,742.3541,-959.09155,1386.9761,1069.1688,-10.95197,1248.8544,1067.1238,12.112725,1522.7196,961.0403,-701.0394,1110.5531,951.89185,-707.20026,1502.3716,1210.4767,-722.549,1151.7914,1191.7278,-632.569,1486.3522,1250.6158,-734.9618,1181.6143,1241.5624,-634.99164,1512.5773,1285.6216,-1004.4804,1094.8079,1253.8439,-851.37427
Screenshot_2021-02-11_at_16.20.32.png,squats_down,1326.004,720.7076,-257.7466,1334.277,702.7931,-226.31635,1341.0077,702.47955,-226.1845,1347.887,702.0381,-226.32306,1313.554,704.2789,-232.43002,1305.6716,704.6024,-232.33485,1297.8013,705.15375,-232.25986,1355.6296,712.6689,-22.947746,1284.0515,716.40704,-48.48539,1337.5474,740.29565,-181.50955,1311.3408,741.25574,-189.1567,1400.6409,782.44745,25.956701,1239.4451,784.42725,4.374214,1481.0945,836.58826,-332.6543,1175.1682,846.22504,-302.34845,1454.4739,818.26794,-697.9868,1193.8142,829.543,-680.6839,1456.9705,822.64685,-767.158,1189.9352,836.40094,-740.0799,1436.7052,811.76025,-747.20844,1213.2896,823.3935,-735.49304,1432.5559,819.2055,-701.71265,1219.0088,828.21106,-682.3171,1374.8335,992.8688,7.3050275,1281.0475,992.4554,-6.9182777,1465.1006,965.1206,-491.30484,1190.7297,940.5186,-549.3194,1432.4443,1132.2703,-212.53334,1226.893,1109.6033,-236.6445,1407.4716,1163.8746,-192.87762,1258.358,1148.9368,-207.93143,1482.0178,1197.2101,-376.15588,1137.7875,1161.1803,-370.01852
frame__8ghtQpeWov8__0012026.jpg,squats_down,974.1487,438.54498,-812.6236,981.22156,417.13757,-775.80115,988.54456,416.0168,-775.7986,995.8586,414.76096,-775.69586,959.2406,419.60187,-779.641,951.17163,420.1136,-779.47107,943.13464,420.7332,-779.4001,1004.50916,418.3278,-547.44916,931.3645,426.83667,-567.24115,987.9873,454.68613,-726.9176,961.5661,457.57312,-732.44946,1056.6924,507.2219,-367.1957,882.6733,500.29382,-419.4769,1106.3094,640.6308,-614.25793,859.09247,622.6363,-679.17505,1028.1431,588.7692,-940.15106,956.8807,574.7375,-970.5716,1007.97534,570.67914,-1002.7193,984.9851,564.7529,-1023.1185,1007.04895,552.11176,-948.2329,983.9379,546.6196,-987.73535,1007.80347,558.4781,-923.72205,980.4435,551.95886,-955.9262,1008.60376,671.00946,13.482793,904.56714,669.2056,-13.202712,1110.4323,727.22186,-523.4322,834.3117,758.5792,-558.3568,1113.1211,885.8059,-161.87982,837.3272,912.61743,-182.28418,1098.8248,913.9784,-136.59956,847.1439,937.4216,-157.53368,1159.4014,932.8991,-358.80774,807.3866,966.6596,-411.77365
Screenshot_2021-02-11_at_15.39.15.png,squats_down,1330.6171,571.3591,-532.7838,1345.6616,545.46063,-482.55267,1356.5096,545.1071,-482.6912,1367.4441,544.5784,-482.6382,1316.2051,546.7411,-482.8958,1305.3677,546.8543,-482.81577,1294.5001,547.2083,-482.50204,1382.4486,557.81573,-236.61464,1282.0754,560.42175,-236.88986,1350.5356,598.4753,-445.2737,1312.2357,599.2761,-445.4969,1435.9436,672.1329,-121.43693,1219.5735,672.11383,-156.94113,1533.5443,818.3388,-458.46396,1119.3658,843.7776,-553.3193,1412.4062,701.7002,-589.68054,1242.6963,719.49866,-801.6908,1389.5673,657.2041,-612.95483,1272.5745,684.578,-832.2352,1377.9624,645.10364,-498.4808,1280.9469,658.3203,-730.3085,1376.5538,667.9142,-542.68036,1281.9132,680.4965,-756.4357,1391.0558,914.21594,22.694078,1259.7343,916.16956,-22.196762,1523.3691,895.026,-858.65405,1161.7441,922.7335,-908.76086,1467.088,1101.279,-281.59488,1197.6045,1105.7003,-344.7169,1437.6332,1134.8868,-235.76541,1219.0706,1133.6321,-300.58286,1526.2491,1180.899,-494.77618,1167.1337,1182.2294,-591.48804
Screenshot_2021-02-11 at 15.30.02.png,squats_down,155.14902,272.76022,-245.82588,163.14967,262.0225,-223.39528,168.73596,261.57013,-223.29205,174.37973,261.0381,-223.35475,148.73569,264.85654,-217.45793,143.7154,266.02313,-217.41963,138.679,267.36032,-217.49228,186.50917,272.01196,-126.571526,138.59236,279.79135,-96.87954,169.27386,289.3856,-212.5297,150.70753,292.12335,-203.90613,233.21481,345.46777,-121.96551,114.92998,351.52054,-68.1487,214.35672,434.90338,-246.63872,50.727516,420.01553,-238.97609,160.13104,334.42398,-299.20132,106.93473,320.83566,-376.35278,148.5796,309.036,-315.23813,114.49813,295.75372,-400.3826,156.16743,298.32693,-291.8688,127.3991,285.53116,-352.65768,159.5538,309.08478,-291.4433,129.41008,298.58685,-361.3169,231.09833,490.05362,-14.409351,159.98944,498.12692,14.476683,285.5375,466.16772,-358.97275,75.83336,478.97263,-238.52124,294.8958,609.2528,-207.39427,93.180176,601.8298,-82.73266,288.86313,632.74884,-195.22334,111.23908,624.21765,-69.85453,316.13596,663.78076,-317.62634,49.583393,652.03845,-152.40443
Screenshot_2021-02-11 at 15.48.48.png,squats_down,616.37274,400.30075,-487.74332,622.71967,387.7055,-474.9773,627.95557,387.5279,-474.94473,633.3231,387.3298,-474.84177,608.05286,388.1278,-476.03784,602.8003,388.1624,-475.92725,597.45953,388.2221,-475.89157,640.4351,393.4578,-368.91962,590.1625,392.91614,-365.39413,625.5827,413.46106,-446.02774,607.44763,414.11377,-444.26425,669.5308,438.26257,-262.9252,563.4353,440.70355,-302.735,722.1781,515.0878,-434.41068,532.6368,522.615,-448.9345,649.1552,481.8863,-635.6092,596.30664,487.96588,-604.0947,631.1094,477.25836,-669.9212,615.6574,481.09564,-639.0186,627.19104,462.42758,-645.4211,613.57135,463.6534,-625.1522,629.7745,470.2866,-628.01227,609.96173,469.3808,-601.2267,608.5237,534.67615,18.849226,550.5735,534.8245,-18.729822,701.3104,541.72577,-222.69066,553.52734,539.1254,-443.2975,692.6399,642.8988,-56.356197,539.45636,649.3413,-217.98131,677.4507,664.629,-47.332,541.50806,668.3329,-201.52075,726.84357,677.37616,-142.18912,522.0311,683.04645,-329.7367
frame__awBQVJ39sKM__0001470.jpg,squats_down,1876.044,1086.8092,-1989.9949,1891.2302,1048.2725,-1931.583,1903.9103,1046.0978,-1931.6588,1916.801,1043.6992,-1931.0499,1854.2933,1053.2487,-1928.2823,1840.441,1054.6095,-1928.0354,1826.697,1056.1621,-1927.8835,1933.1697,1056.1985,-1534.877,1810.5952,1072.4669,-1512.3572,1900.3815,1115.8724,-1838.9011,1852.0308,1121.2318,-1833.1013,2004.0404,1206.2362,-1280.6381,1752.5269,1217.4984,-1222.2133,1953.1357,1463.68,-1402.3463,1828.8333,1477.3867,-1376.302,1811.3741,1665.3805,-1582.2916,1922.8721,1717.6356,-1601.2255,1803.5359,1735.2435,-1713.4547,1927.2917,1799.4626,-1729.655,1752.2444,1733.2837,-1741.3115,1963.9529,1793.6324,-1774.1389,1753.1697,1705.0785,-1596.2251,1964.2864,1760.1709,-1624.8569,1961.291,1461.3196,-25.078856,1806.347,1467.3033,25.47482,2136.9287,1633.6257,-1136.8545,1613.024,1636.4011,-1031.3428,2142.8167,1872.8851,-290.20926,1580.2671,1870.7386,-171.3712,2121.1687,1900.7988,-218.05154,1601.4658,1909.4673,-105.53912,2202.095,2000.9493,-632.4092,1503.9269,1977.241,-572.15674
frame__fH_1skamnFk__0011049.jpg,squats_down,1490.6439,529.4112,79.177795,1484.2457,508.34692,92.52392,1480.3179,507.8421,92.58306,1476.5055,507.39587,92.6942,1487.0757,507.409,35.566216,1484.7633,505.31503,35.690887,1482.4844,503.49567,35.735046,1447.9589,512.30414,165.51308,1456.8375,507.6078,-94.88902,1472.083,549.8251,105.40509,1472.5227,546.42017,31.221445,1373.8479,623.14075,306.6864,1410.0536,619.52423,-268.2527,1422.2064,747.9147,298.05695,1466.4464,774.44916,-181.86598,1511.171,730.01587,16.339231,1511.8767,730.0023,165.94617,1521.9326,717.8948,-5.172564,1521.0492,710.6092,162.79329,1526.0221,705.64886,-33.45927,1507.9706,692.6492,170.2465,1522.7715,712.7022,-2.2950249,1503.3828,699.71246,178.67494,1247.051,861.64,193.00534,1265.1732,858.1197,-192.78677,1449.2057,741.12933,303.37213,1501.7549,691.7745,-231.18314,1353.7281,913.1717,473.96823,1384.5377,938.2295,-71.301216,1322.1177,936.5089,490.56177,1344.4962,970.757,-50.926945,1376.5764,968.5909,528.5564,1409.6604,1016.70685,5.2028837
Screenshot_2021-02-11 at 14.57.35.png,squats_down,490.98444,316.2595,-363.80463,499.32074,305.18445,-344.894,503.78992,305.70312,-344.89066,508.2787,306.13205,-344.7601,486.2715,303.7282,-347.39447,481.764,302.9273,-347.3228,477.25116,302.18542,-347.3784,513.2777,309.02258,-227.08836,470.7931,303.40457,-238.6821,497.09332,327.41885,-319.41583,481.8912,325.13953,-322.93207,536.3748,359.96057,-158.59325,434.35385,349.6333,-163.75334,540.56903,445.9737,-310.85315,429.37277,436.7517,-329.7637,501.44867,384.16647,-468.78625,474.7563,384.14282,-495.0336,490.96973,366.10532,-506.54868,483.5723,365.64587,-529.5424,495.87366,352.39304,-467.9298,480.7577,354.88242,-503.9584,496.26822,359.41922,-456.92313,483.0151,362.2508,-487.649,505.404,456.02173,5.299692,445.84457,454.57227,-5.0634665,582.9295,457.13354,-325.445,396.25095,447.77637,-349.3597,578.26624,562.5587,-167.9355,376.3528,555.2898,-186.22287,567.30817,582.1605,-159.83838,380.92252,574.45953,-178.11192,607.20215,594.62897,-284.2274,349.89758,585.74176,-308.6744
Screenshot_2021-02-11 at 14.51.02.png,squats_down,176.37714,187.5016,-42.491596,183.6399,181.15813,-19.514025,187.91031,181.87473,-19.451176,192.21465,182.48872,-19.456085,171.69102,180.51309,-20.747272,167.37387,180.38673,-20.763924,163.06012,180.39493,-20.824871,198.33899,192.12338,72.44724,157.9849,189.0913,68.211075,183.79187,202.65816,-11.612133,168.60071,201.34787,-13.017949,228.39917,245.58083,80.27325,124.507576,249.40297,67.402824,265.23364,297.50833,-83.464035,92.75667,305.72345,-105.83998,202.21805,230.18277,-182.13234,143.48433,231.81145,-201.80634,187.87427,212.57712,-201.37042,152.8284,212.42093,-215.8639,184.33598,204.96536,-165.49112,157.99704,205.39902,-183.20747,184.79547,215.23575,-169.99347,159.07922,215.90941,-189.38593,210.06772,372.23813,4.4495053,144.62631,375.57642,-4.3717127,271.40594,359.47052,-279.57272,94.06002,363.49533,-255.2955,261.08942,497.32852,-227.56342,101.6281,496.13986,-201.83435,249.19203,519.4504,-226.38657,112.70084,520.9595,-199.63171,281.8654,535.08527,-343.83426,75.77191,529.2712,-295.5624
frame__ZwbX1A-LlTs__0010261.jpg,squats_down,1086.991,488.63126,-394.52734,1085.0267,467.9639,-372.2298,1083.7534,466.16003,-372.27295,1082.6195,464.2575,-372.53293,1083.5696,471.94864,-429.71454,1080.7157,471.6914,-429.87985,1077.8429,471.65613,-429.58676,1058.9324,457.28537,-211.11487,1054.0929,466.06662,-478.5288,1069.7898,496.50156,-330.7591,1068.7977,500.49222,-405.02875,1032.6626,532.03925,-28.09909,960.4761,509.21045,-587.08844,1100.0565,598.4197,107.676834,989.8321,645.11127,-882.18677,1185.4923,612.8462,95.710434,1115.8649,641.0623,-1080.431,1204.8024,618.37744,104.43724,1149.2971,650.156,-1162.9282,1200.0083,603.78284,64.17647,1154.957,630.3528,-1152.3761,1189.4332,607.026,79.07712,1142.1251,633.65485,-1077.7784,841.26843,670.70984,175.6105,776.7677,669.85706,-176.55971,1004.30365,666.14777,479.67114,873.62036,730.6619,-727.7375,943.0726,785.3349,795.4467,830.68964,927.8528,-642.5161,900.492,806.0963,833.3862,795.6382,963.61975,-634.0143,1013.0301,842.0031,828.90106,899.5835,992.8526,-796.1312
frame__h9E_JHENdNI__0002052.jpg,squats_down,563.7284,259.43985,-248.98332,573.51306,252.60234,-250.54767,576.90063,253.13779,-250.56319,580.3874,253.5805,-250.48799,567.34766,251.61194,-218.63916,566.20483,251.17604,-218.44952,565.0744,250.85623,-218.3653,595.5484,260.51816,-223.84808,575.80426,256.48764,-78.949104,574.2714,272.62277,-241.59882,566.09064,270.80038,-199.44641,628.2809,308.17657,-281.1831,582.4517,311.5166,12.125722,589.0963,376.36972,-342.90308,548.1619,375.07928,-181.9563,555.18744,317.24496,-250.93825,543.6817,319.54123,-460.09128,541.9059,302.26685,-251.29926,531.26514,302.98285,-489.82092,561.8287,296.60638,-247.00854,543.4644,297.17072,-454.63315,568.8311,303.39767,-240.41574,552.3328,303.176,-454.1719,686.3956,412.17773,-82.62341,650.1971,416.59018,83.03405,671.0753,465.26242,-437.26556,601.1516,484.2709,29.396322,689.0931,551.59125,-299.5404,620.45404,542.8616,249.4474,699.3759,568.05756,-291.9996,635.0788,557.333,267.77557,657.97186,579.8443,-425.04672,572.03577,563.8348,178.72827
frame__iPCJs2jh4Hk__0001964.jpg,squats_down,1089.3254,577.07025,81.34874,1080.7065,563.388,101.48709,1076.082,563.5619,101.468285,1071.5908,563.73,101.65307,1085.6769,562.42816,45.36801,1084.5117,561.1887,45.4296,1083.1659,560.1466,45.28993,1046.973,569.1539,196.521,1063.0905,563.92206,-66.121506,1072.9552,594.3651,115.13812,1078.7769,592.97925,41.297165,980.3318,650.1519,378.37033,1037.5558,657.1761,-221.7198,1066.9918,743.6549,466.5383,1134.0999,759.2622,-82.53133,1103.6907,672.1943,511.8448,1126.0037,660.1176,275.09103,1125.9093,646.3412,545.1814,1135.144,630.6089,252.45229,1108.8995,647.01215,565.95465,1113.5979,630.0517,230.41632,1098.5469,656.4386,517.6623,1104.3926,647.55475,276.8316,843.35175,808.3167,195.11574,865.6859,817.19714,-194.88652,1002.84863,789.5484,441.21826,1063.6765,825.6935,-253.69812,945.0067,934.19116,493.4572,970.4548,982.7044,-256.19815,925.63617,964.69293,500.71082,941.96466,1017.7016,-259.08038,997.08685,956.6492,587.70984,1024.2091,1004.2839,-201.48634
Screenshot_2021-02-11 at 14.40.44.png,squats_down,406.39246,207.91615,-345.40448,414.3551,196.01793,-318.18372,419.7902,195.9661,-318.2178,425.2718,195.76955,-318.13187,398.3083,196.86627,-318.5621,392.77164,197.23082,-318.54443,387.22855,197.71121,-318.46066,433.22888,204.25453,-193.14107,380.97687,206.79373,-195.89142,417.51724,223.1135,-302.203,396.84183,223.99477,-302.49948,468.06955,279.3822,-125.87753,342.93518,274.29834,-129.34428,539.9518,335.26428,-92.317696,269.76245,344.98532,-85.796074,477.76077,398.23557,-25.141766,332.7617,395.81104,10.955142,464.20514,413.6627,-28.317501,353.11176,413.4284,11.659438,449.1357,409.38815,-15.471722,365.6441,401.74268,21.93783,452.99783,405.54254,-15.218464,359.93335,398.2164,20.708431,441.10068,422.77594,6.893874,362.22626,422.55212,-7.0778813,550.14764,451.23373,-247.7336,262.481,464.4998,-266.06543,547.29456,571.3799,-6.8295593,238.67226,572.1611,-53.46837,534.36304,590.2755,14.298043,245.63414,589.36743,-35.152878,588.8609,609.7904,-81.0689,204.32669,606.9667,-152.94078
frame__QVNlEfFOWwg__0007191.jpg,squats_down,1056.1178,224.18138,-24.78703,1054.712,193.23975,-12.437555,1052.6187,190.87517,-12.202885,1050.8894,188.95609,-12.409791,1049.6882,194.2152,-68.33284,1044.2292,191.44235,-68.142136,1038.563,189.02052,-68.33197,1014.9251,186.8741,84.61275,997.6403,187.21721,-168.20439,1028.4517,248.37462,14.479186,1022.0232,246.87689,-57.566364,886.5723,297.79306,283.33267,903.23065,275.3778,-362.36267,1121.9044,372.8434,449.5483,1154.5867,344.31436,-556.45276,1315.1708,378.789,315.943,1367.977,332.33176,-445.19052,1350.1716,355.02234,320.9533,1426.8617,318.0921,-510.5016,1350.2102,343.5371,260.33838,1416.6584,286.6904,-462.67307,1340.9875,358.8777,286.13623,1394.2568,293.7167,-428.03357,512.036,572.3694,214.52466,506.90237,564.5737,-214.04425,848.21344,626.08215,325.09485,872.4845,665.507,-231.0354,705.2313,845.0359,518.9113,725.0132,884.3383,143.31676,653.2799,869.8322,539.6122,669.91095,898.3929,186.37457,768.0154,921.711,568.765,791.8903,979.8822,249.52435
Screenshot_2021-02-11_at_15.51.55.png,squats_down,1322.8125,553.037,-392.20584,1335.2059,537.3824,-328.75885,1344.8959,537.2856,-328.91608,1354.6904,536.96985,-329.0324,1305.7683,540.6334,-326.7765,1295.7278,542.3935,-326.663,1285.6777,544.40045,-326.71048,1371.5703,559.6745,-83.84457,1275.0555,569.26843,-74.64002,1344.3951,587.612,-313.3461,1309.0853,591.1953,-310.6578,1463.1914,719.0368,-57.116386,1221.8464,729.69885,-43.79653,1527.7963,898.4031,-375.09637,1200.6334,922.56946,-412.16812,1382.6007,778.00946,-611.41016,1318.4756,779.6036,-755.0874,1347.8876,741.3553,-673.8936,1348.7427,738.7171,-806.8799,1345.8176,720.4788,-580.2406,1335.8564,710.01324,-748.82446,1348.1287,738.1582,-578.32544,1337.1316,730.53375,-732.96497,1433.3038,996.4717,7.329498,1284.2479,1000.87244,-6.814107,1569.9792,997.0548,-797.04266,1162.8417,1010.4041,-856.8943,1498.5742,1229.4452,-229.93492,1190.8604,1240.0048,-305.1731,1463.0975,1268.8059,-184.02867,1217.9291,1279.3955,-259.7673,1565.651,1309.6521,-441.3525,1125.2346,1317.999,-531.78864
frame__miPKBTdcCIY__0005579.jpg,squats_down,945.861,490.77112,-154.9197,947.41046,470.3013,-143.96205,946.48474,467.76547,-144.08728,945.7698,465.4857,-144.1627,945.8048,474.36008,-199.9664,943.53345,473.52985,-199.91708,941.3369,472.95093,-200.19682,931.20056,453.11563,-32.08327,925.4612,463.45346,-290.31787,934.8436,492.22464,-110.30838,933.2761,495.78766,-184.08969,901.6669,502.93008,126.15846,842.4997,487.7276,-379.20038,974.867,471.2089,288.12772,790.7352,456.06924,-602.77496,1004.7074,436.77893,402.77652,777.3452,394.43417,-913.6734,1012.2413,433.08902,429.29996,764.04443,376.12988,-1005.9686,1005.38806,435.5887,393.08752,780.885,370.27295,-1007.00433,1004.07587,439.1569,387.93814,784.34595,377.85898,-925.81555,775.30566,703.475,179.9075,730.2757,709.0833,-179.5047,931.9716,693.55457,300.99768,887.7877,733.23517,-342.15448,846.55023,844.00867,428.09146,779.73773,866.05426,-142.04831,809.0572,865.2122,441.68866,733.60156,869.71014,-112.35144,881.406,891.9812,456.71817,833.7106,937.5939,-133.15439
Screenshot_2021-02-11 at 15.00.10.png,squats_down,666.9811,275.0581,-575.66907,675.0563,262.4071,-542.6969,681.3156,262.97763,-542.6002,687.5624,263.44113,-542.44055,657.09534,261.87738,-547.40466,650.3866,261.67566,-547.32434,643.6445,261.62183,-547.2664,692.26074,273.17682,-370.8497,632.78125,271.13214,-389.36127,676.3876,293.2074,-514.1522,653.65674,292.05713,-519.26184,726.459,339.3898,-325.22403,591.7787,352.1289,-328.00433,740.365,431.6573,-623.7713,605.20715,454.0639,-639.3981,691.4289,343.0404,-838.5933,648.03455,351.84744,-863.3021,681.3267,315.91162,-883.2578,652.3254,318.63873,-904.3945,685.9974,305.52344,-827.8726,646.8695,310.33127,-853.293,683.6578,317.6574,-820.5802,651.9687,322.45535,-847.8524,705.49194,477.74103,7.9456344,623.2308,485.50815,-7.6731415,769.2293,484.64517,-474.57333,569.74176,497.84656,-519.85474,758.23175,620.89777,-181.39056,566.1231,629.4279,-211.87512,747.8375,639.7509,-161.16939,572.5135,646.71454,-193.47968,777.4386,680.3417,-334.3564,557.5805,689.90826,-377.1292
frame__S6J5twMTzGA__0021021.jpg,squats_down,986.3324,509.6296,-767.7388,992.2387,492.16028,-760.10297,998.2689,491.88333,-759.95734,1004.17053,491.61118,-760.13477,976.2031,492.4109,-750.57495,970.4433,491.6991,-750.26776,964.7623,491.2248,-750.0884,1009.9963,490.51273,-598.5799,957.4059,491.2044,-557.3289,996.05347,521.8541,-701.5756,975.9714,520.4743,-690.707,1052.9524,521.977,-457.74942,918.4199,554.74786,-397.461,1101.8492,622.5374,-661.62756,917.94354,652.6177,-588.63324,1036.7025,606.4881,-967.26434,955.56934,612.3877,-911.00977,1016.767,611.72485,-1024.9242,962.43005,608.6475,-970.71216,1010.0043,585.2183,-1035.1349,964.56104,593.4864,-958.67664,1015.8188,589.062,-973.6608,966.5506,597.2049,-910.4664,1094.7158,688.787,-26.028296,1006.22546,700.1102,26.445969,1150.6449,648.7697,-497.86017,857.4172,669.0929,-153.51427,1152.4581,824.5577,-296.07025,862.1147,819.8424,-75.93167,1141.6211,846.59607,-278.17722,881.364,847.8817,-74.83924,1178.0491,881.42804,-434.24915,813.2586,874.93536,-198.32507
Screenshot_2021-02-11 at 15.12.15.png,squats_down,720.1791,519.0098,-338.25833,721.0165,515.41815,-354.66803,723.59906,514.6529,-354.4918,726.10846,514.06775,-354.56808,713.25165,517.0734,-343.46228,710.2184,517.47675,-343.31726,707.0872,517.8033,-343.1212,726.7553,513.1832,-358.4745,700.18115,518.0016,-301.6652,723.1253,518.2924,-333.38614,713.96814,520.50696,-317.70078,733.84863,502.6743,-272.84583,682.9312,530.5764,-171.85133,728.2758,515.1352,-188.5306,655.59344,546.29156,-98.34783,673.0456,510.53018,-116.91911,624.5584,531.5477,-81.084496,659.48975,508.24725,-111.83624,614.1495,523.635,-79.536125,652.3227,507.02142,-129.64241,618.2739,519.8253,-92.65562,654.4199,508.8111,-118.57689,625.2843,521.4447,-85.5589,683.57715,464.55655,-34.10899,659.67004,495.5599,33.953823,636.5908,498.1041,-150.82175,611.9926,552.4917,35.27444,693.08746,612.8731,-64.786705,642.31494,657.25995,159.82619,707.5276,635.7764,-57.922504,653.2776,669.27356,164.76875,696.9604,643.9786,-99.08331,644.85376,700.7648,94.8927
Screenshot_2021-02-11 at 14.26.20.png,squats_down,637.6488,326.9885,-442.75858,645.809,308.7406,-433.58542,652.37225,308.14798,-433.53986,658.9033,307.44717,-433.56064,628.06995,309.4049,-431.59122,621.49725,309.13745,-431.42313,614.90125,308.9819,-431.53162,668.1604,308.12604,-317.23047,607.21246,310.0277,-314.3224,649.6903,338.9089,-394.4702,627.5563,339.1692,-393.22964,709.8438,364.96432,-211.32774,568.4391,369.43973,-202.93968,750.18945,485.16254,-332.8349,553.5481,491.57474,-310.78708,682.22327,443.88574,-540.9038,610.499,446.43323,-539.6075,657.4326,437.71628,-581.3895,633.32996,437.2406,-575.6087,658.94196,407.34622,-554.0786,626.1572,411.80136,-554.5205,660.7283,410.93478,-531.0651,624.43134,416.17014,-530.74713,689.64825,498.96887,-3.5381367,610.4883,501.93173,3.826958,772.195,535.983,-334.5682,533.95154,549.9446,-294.28375,716.768,646.2678,-141.5714,579.0837,653.13904,-110.21891,698.63354,658.1998,-125.22949,596.7814,669.6444,-96.43718,728.9253,695.2253,-249.7646,558.23926,696.2607,-215.39531
Screenshot_2021-02-11 at 15.52.19.png,squats_down,204.77391,369.38672,-341.66962,212.90767,354.29758,-332.19382,218.90868,353.1651,-332.03983,224.9722,351.99878,-332.04132,197.48363,357.34573,-323.4768,192.10262,358.17715,-323.46625,186.80777,359.2491,-323.5047,239.80063,356.33658,-242.41063,186.088,365.9372,-204.72743,220.15651,379.81207,-308.56937,199.84071,383.28638,-297.0985,276.62277,397.977,-177.64755,174.5284,411.5054,-151.2053,334.5381,320.54175,-288.083,85.213036,387.80374,-212.82506,240.7722,311.40866,-301.85394,167.76947,335.88727,-201.34637,217.47433,305.2148,-317.99417,187.92998,321.2535,-202.95662,217.88087,314.35095,-277.20966,197.65219,322.21527,-162.2295,224.41138,321.72382,-290.23724,193.24509,331.1184,-185.28242,266.69925,550.0883,-17.023165,208.45964,548.00006,17.343645,270.76096,545.9838,-308.61615,140.08665,535.0737,-196.65819,258.13174,604.1355,-80.580055,198.27852,598.4441,15.901836,252.13472,610.09247,-56.85713,223.96852,608.9223,34.289326,271.81946,643.7268,-104.15468,153.92473,644.18353,-7.647079
Screenshot_2021-02-11 at 14.51.26.png,squats_down,481.86185,275.148,-457.4672,487.70987,262.27048,-443.10727,492.37387,262.00186,-443.0401,497.0776,261.61612,-442.87344,473.6294,263.05524,-450.0952,468.30508,263.01624,-450.05972,463.00446,263.08765,-450.1496,501.31546,265.9369,-306.27087,453.04257,267.31448,-335.9715,488.77945,286.3013,-401.8413,471.24933,286.9004,-410.55414,526.8015,308.34326,-178.90129,420.54425,316.36694,-200.20946,544.4343,374.40793,-137.66602,408.93185,383.66956,-123.67151,535.63763,428.05118,-309.21298,435.3109,431.04706,-219.12039,541.8825,450.09387,-365.5221,433.72192,452.10754,-268.34512,525.5274,445.3284,-400.9368,453.43985,444.79285,-295.2005,520.7748,438.9556,-328.43936,456.37097,436.70624,-231.91255,504.56772,420.2476,1.2286965,445.65628,423.6927,-1.1514597,591.3353,408.68365,-260.52408,358.45865,411.52356,-243.57715,566.7768,520.9699,-169.62071,388.64874,524.2862,-120.08435,550.69275,545.5845,-166.63809,407.52417,547.99915,-113.1719,603.3388,543.4561,-273.24994,352.79297,555.0064,-221.49324
frame__g9QFlwHD_oQ__0005238.jpg,squats_down,509.19873,594.258,-335.4155,503.62003,578.74097,-307.3858,504.95172,577.22864,-307.5737,506.49222,575.9251,-307.4375,493.73376,581.98334,-346.09528,488.0624,583.1364,-346.15683,482.39932,584.4144,-346.15015,490.41412,580.6728,-164.11131,459.04382,590.2437,-333.24982,504.75253,606.8103,-286.2718,493.27777,612.97894,-332.77264,479.6491,658.9298,-54.598145,399.57678,645.1375,-400.24838,508.8719,744.3612,-291.25555,429.014,756.50793,-476.49954,526.0908,700.2879,-668.20526,511.63852,696.81744,-403.36462,540.5659,693.21094,-710.1291,541.024,687.22144,-434.6427,524.9453,670.22003,-686.11694,524.94714,667.81744,-435.63757,513.69836,676.38544,-670.52734,511.09897,671.2376,-398.54068,337.73022,755.45667,120.67381,274.03625,746.5167,-120.239296,454.76257,811.30994,1.6653482,347.15607,805.7267,-608.7005,388.14355,901.1059,97.7818,271.84094,938.58124,-466.12204,361.68555,911.9409,107.026306,247.87686,953.96405,-456.57736,418.65582,948.1884,34.35423,300.65607,1003.1273,-611.5608
Screenshot_2021-02-11 at 14.21.10.png,squats_down,798.76263,383.7053,-391.31445,811.2369,369.57504,-350.70587,818.8659,370.45667,-350.5723,826.4944,371.1552,-350.43918,790.0614,368.03766,-350.96744,782.4705,367.28256,-350.70535,774.87164,366.6781,-350.54776,837.0341,381.84177,-129.40367,765.1883,376.1303,-130.78017,811.4346,402.93304,-312.85965,783.943,400.22424,-313.33594,874.0643,454.0692,-81.67504,714.4146,448.56332,-50.016045,853.6957,562.36847,-492.64352,718.07697,542.6301,-449.509,820.6561,453.6404,-856.39056,759.5561,443.59775,-822.1191,816.0597,424.6491,-925.84454,766.58655,416.6979,-882.549,824.1146,416.65665,-875.1316,764.5411,405.8722,-839.4705,818.35815,426.94998,-841.3278,770.028,417.57104,-808.5446,846.90356,615.88947,-0.10870997,746.3496,621.861,1.1373407,905.9213,644.2168,-654.4349,704.25916,650.63824,-633.3216,911.3102,843.8747,-503.53247,717.41473,849.7198,-484.06564,901.25946,868.80725,-498.7226,726.89905,877.78796,-477.61264,924.4757,925.46173,-753.9144,707.48883,919.4048,-720.21686
1 01338b3b-f73c-4e63-bc84-be6bdd40837f.jpeg stand 389.7267 247.94125 -264.43634 406.27042 225.80411 -236.9401 416.62958 226.72127 -236.8483 427.2979 227.43481 -236.74728 378.55472 223.88675 -238.42633 367.77124 223.01537 -238.54451 356.99094 222.27875 -238.81108 440.0898 246.53671 -97.68469 343.8399 238.54362 -96.09021 407.5842 279.01675 -212.82106 368.42514 275.96442 -211.97318 498.71536 400.62344 -43.706997 264.8486 385.69046 -84.93724 521.41064 579.72876 -21.775429 238.99564 574.0299 -93.045586 526.9173 747.5886 -97.39348 238.07462 744.3348 -151.61134 539.2994 799.82776 -111.68041 227.18439 795.78394 -160.25676 519.44104 805.31866 -162.17755 247.85585 801.6729 -211.17049 503.40662 786.0217 -116.9125 266.5936 784.19977 -170.12921 439.11868 741.9931 14.44758 310.7089 737.21277 -14.055946 449.47382 975.891 47.365284 290.94458 964.8243 -26.88653 456.41232 1157.4519 181.32881 303.73703 1150.066 209.28322 440.12607 1179.4993 185.86288 324.34125 1175.8534 220.10696 503.46704 1252.9767 38.300613 248.24026 1243.3026 72.74212
2 03b4ec6a-b4db-4501-a41e-35756f2f3f77.jpeg stand 365.67728 193.08655 -677.8226 384.37854 167.78903 -638.8231 396.25952 168.81172 -638.633 408.4464 169.64847 -638.68475 353.61508 165.62146 -635.9324 341.4739 164.50546 -635.731 329.29816 163.68729 -635.74695 424.44263 191.61484 -399.1728 315.99734 182.29538 -374.97556 387.36548 225.34271 -588.2703 341.90298 221.92242 -581.30835 492.62894 367.20505 -259.87485 239.77841 355.929 -255.4333 516.7384 561.37024 -197.69073 228.49408 556.25806 -185.9494 514.09314 738.00226 -442.6644 221.31967 738.66486 -381.59033 522.1214 796.344 -506.1171 209.18118 796.21326 -429.60684 501.2409 796.83594 -578.19214 230.03479 802.2818 -510.68988 484.78363 774.3037 -474.09717 250.67789 781.84265 -415.3512 433.88498 733.9658 -11.801481 302.7232 732.7235 12.975706 422.73254 962.54834 213.78822 304.07825 959.00415 157.55281 417.53635 1135.366 684.60895 315.71924 1128.3198 715.90485 407.10474 1149.1436 721.8095 327.53647 1143.4432 757.6398 434.98895 1254.4335 508.6994 298.3523 1247.4624 547.18414
3 04a9ce1f-52d5-4084-9b48-8ffc00dc54cd.jpeg stand 374.33243 190.60677 -416.1696 389.95276 172.6405 -381.75543 399.42273 173.98816 -381.65942 409.1974 175.1519 -381.56787 364.61835 170.14865 -384.4192 354.80743 169.34822 -384.41995 344.9579 168.73975 -384.58972 421.73544 196.52443 -199.39957 333.2373 187.07019 -206.4797 390.8666 221.76155 -349.66882 354.19357 218.26587 -351.15356 480.87488 349.6436 -102.06991 263.53415 340.8748 -121.36439 511.54306 513.4498 -26.341213 250.52965 517.387 -87.39977 505.33508 663.2699 -134.40762 244.35504 674.3815 -190.40916 511.48096 710.96106 -165.21436 234.06773 720.8368 -210.48575 493.22134 714.2075 -219.5955 251.12549 724.88403 -273.0696 479.6411 697.6575 -155.15675 267.90677 709.4944 -214.94086 428.5153 681.3744 9.036524 307.82605 676.1079 -8.580687 440.81744 892.64124 131.50333 282.09036 885.19104 50.667347 437.31705 1047.1462 431.08505 292.86554 1049.592 395.2787 417.8409 1064.9128 450.4874 310.2457 1067.7814 416.89185 483.57056 1143.762 282.68195 249.59174 1152.1515 237.69936
4 105155b7-352e-456b-8a4d-b4ea75d691ef.jpeg stand 381.76505 145.4672 -617.5876 398.21518 123.35911 -577.9756 408.3801 123.93467 -577.84955 418.86298 124.3182 -577.7515 370.23715 122.48661 -576.61383 359.70416 121.92516 -576.43805 349.1067 121.58516 -576.4865 433.1639 142.9496 -332.82477 336.59744 137.77245 -319.97174 400.41586 174.24171 -527.1284 361.29868 172.43893 -522.69495 496.93604 295.807 -197.40921 267.00763 292.16077 -186.16704 516.17035 477.4785 -115.68622 253.37732 482.3709 -145.91971 514.2199 650.654 -277.6981 251.45903 656.317 -308.40253 527.074 704.1753 -324.21545 239.02757 710.974 -360.2233 503.61234 709.2831 -392.72137 261.12604 714.483 -427.25235 488.7442 689.16986 -305.2838 276.70798 695.6804 -338.6826 445.7598 640.4951 -9.5422535 315.10428 639.9563 10.135519 442.9896 870.531 42.84861 294.18478 861.29004 -237.4802 421.16296 1058.4474 437.00452 324.3784 1069.2251 192.51102 408.44202 1074.3938 463.23737 335.03833 1085.678 220.83371 430.2053 1170.9497 212.3566 331.8566 1185.8844 -55.499863
5 10a327e6-5092-453a-bc83-95dae327d4f1.jpeg stand 378.97498 215.5635 -349.3426 394.7228 192.68227 -318.4756 405.29825 193.43536 -318.3801 416.18515 193.99808 -318.32678 366.45538 191.31421 -322.26877 355.30826 190.68723 -322.2564 344.1567 190.2256 -322.40198 428.64365 213.9138 -147.5785 329.76938 207.84103 -156.73526 397.01492 247.09988 -285.2198 356.77386 244.85352 -287.48428 490.85416 376.26685 -68.13328 254.80269 361.30875 -109.37881 514.5121 562.3438 -23.753578 237.75067 549.7451 -98.637505 510.9137 740.4928 -137.65625 218.93015 724.0567 -198.03322 520.9251 797.8895 -157.71252 202.18684 777.4889 -204.10645 500.69766 801.8999 -217.30429 217.33098 785.2924 -275.84686 485.17517 780.64667 -159.84802 239.49792 768.99384 -224.8248 436.71762 728.7112 14.548225 303.4832 723.4562 -13.692798 438.3902 966.1427 31.005993 276.9282 958.92426 -53.525684 424.24988 1155.71 228.84824 294.5745 1149.0415 233.97942 405.66583 1176.4419 237.77664 314.2332 1171.7092 248.74852 462.6436 1262.2104 64.03453 248.33919 1254.3372 74.84657
6 16449016-d6b1-4186-9add-a3bfef6cadef.jpeg stand 380.5319 188.21053 -523.2215 396.26605 167.93835 -484.87143 406.4656 168.41382 -484.73923 417.02615 168.70987 -484.52518 368.6379 167.75546 -485.32297 358.4302 167.7013 -485.13895 348.20218 167.81522 -485.11957 433.19797 188.96198 -274.2743 337.79416 186.53415 -270.21484 401.22934 217.48035 -446.95016 362.21872 216.62442 -445.65942 498.09015 345.5083 -141.82957 266.1065 337.85278 -193.54471 516.5654 515.2662 -54.55545 230.15363 511.98093 -174.35269 508.16583 679.8187 -259.34155 235.27068 684.0674 -332.06976 517.2051 735.1232 -321.03497 224.367 738.4569 -380.84857 491.64093 737.90515 -385.67017 255.26103 740.5694 -442.362 478.3579 717.4895 -286.7044 269.56622 720.3632 -357.63486 443.06128 671.0428 21.870045 312.0364 670.00354 -21.320774 439.08084 919.11224 39.360355 307.2989 921.63513 -37.412685 426.2686 1116.5282 304.07437 304.9659 1123.4348 308.43613 410.77112 1130.316 317.91574 310.56763 1137.6309 327.08856 444.1543 1235.2263 98.00633 311.90887 1247.918 83.493904
7 1ac79916-571a-4edc-9467-e324f56f5306.jpeg stand 372.24963 183.74588 -413.07138 386.16327 160.33719 -376.15283 396.36728 160.36575 -376.13977 406.87097 160.2132 -376.1064 358.02896 160.71597 -383.10333 347.17188 160.73254 -382.9971 336.3033 160.91022 -383.04425 419.36417 178.42853 -165.68651 322.86844 178.48285 -191.51836 391.2902 212.98734 -333.6637 352.25937 213.24684 -340.96622 481.48682 333.00195 -39.06463 259.01086 339.6565 -103.615654 501.84818 516.7951 50.319736 253.32816 542.8075 -71.88688 521.98126 671.53986 -146.63167 245.03838 709.3487 -203.10886 538.4984 721.9653 -193.06032 234.31874 758.8098 -222.77264 523.0358 723.75903 -262.82565 250.21213 761.50214 -296.8991 505.04733 706.9555 -176.52075 268.1333 743.76807 -231.26558 452.23685 691.4892 21.374928 322.59845 695.33624 -20.740667 477.83658 937.33167 48.2458 295.30582 942.5277 -40.547417 468.43414 1133.5494 305.81784 301.43344 1144.9323 282.02567 445.09354 1160.988 319.18243 320.11386 1170.0151 298.85248 533.9328 1228.1436 130.9585 259.27585 1250.8329 90.87672
8 1aecd199-f46e-4ee5-be7a-418d09842d9e.jpeg stand 380.5319 188.21053 -523.2215 396.26605 167.93835 -484.87143 406.4656 168.41382 -484.73923 417.02615 168.70987 -484.52518 368.6379 167.75546 -485.32297 358.4302 167.7013 -485.13895 348.20218 167.81522 -485.11957 433.19797 188.96198 -274.2743 337.79416 186.53415 -270.21484 401.22934 217.48035 -446.95016 362.21872 216.62442 -445.65942 498.09015 345.5083 -141.82957 266.1065 337.85278 -193.54471 516.5654 515.2662 -54.55545 230.15363 511.98093 -174.35269 508.16583 679.8187 -259.34155 235.27068 684.0674 -332.06976 517.2051 735.1232 -321.03497 224.367 738.4569 -380.84857 491.64093 737.90515 -385.67017 255.26103 740.5694 -442.362 478.3579 717.4895 -286.7044 269.56622 720.3632 -357.63486 443.06128 671.0428 21.870045 312.0364 670.00354 -21.320774 439.08084 919.11224 39.360355 307.2989 921.63513 -37.412685 426.2686 1116.5282 304.07437 304.9659 1123.4348 308.43613 410.77112 1130.316 317.91574 310.56763 1137.6309 327.08856 444.1543 1235.2263 98.00633 311.90887 1247.918 83.493904
9 1c3f7d61-46e0-44d5-a43b-6dbd575a5439.jpeg stand 381.44162 137.4783 -610.7363 397.51038 113.18321 -573.4886 408.30872 113.74699 -573.4187 419.4163 114.102516 -573.3037 367.18845 111.94641 -581.5094 355.67358 111.19949 -581.38104 344.17844 110.62565 -581.4501 431.182 131.96658 -325.58328 327.33295 126.23951 -357.86554 399.63412 167.58934 -514.4801 358.1782 165.26065 -523.7148 500.51788 286.93127 -173.46155 246.91476 284.6658 -228.37592 542.5506 477.56403 -73.05144 228.02435 482.63867 -181.29254 557.53925 663.1455 -261.66388 219.97461 667.8271 -339.0916 571.0158 723.25793 -313.00552 208.0202 727.7587 -374.52585 549.4376 726.4857 -389.3861 229.47255 730.736 -457.64328 531.8245 705.8568 -293.53168 247.72801 709.40186 -371.52484 457.48663 661.0412 16.216253 314.9232 664.6027 -15.387465 464.61523 923.4376 50.700348 282.91998 933.58716 -49.814102 444.13898 1138.6753 356.95834 297.59262 1148.7954 314.03802 423.03384 1165.233 373.75793 319.20868 1174.799 333.60193 489.74887 1246.8895 153.64873 249.4179 1261.3657 95.83816
10 1e8f27a0-0277-4a99-9e3b-d7f3a29c6c77.jpeg stand 361.7743 218.73634 -621.88855 377.22678 195.02296 -580.5153 387.7899 195.5175 -580.43195 398.66595 195.8244 -580.3755 348.6042 194.3175 -582.60187 337.46478 193.79623 -582.48175 326.27838 193.45825 -582.4952 411.80774 215.71907 -347.7278 312.83588 211.63821 -347.78888 381.2707 249.0931 -536.7344 340.2071 247.5661 -536.6008 472.70285 377.0319 -196.57109 241.69759 379.9924 -235.19673 501.12213 560.955 -139.72131 226.95604 575.0941 -189.13396 513.55585 735.08514 -362.21683 220.91931 738.56323 -384.6073 526.37854 788.346 -417.84073 210.63649 790.62964 -440.6017 509.9767 793.0393 -488.44846 233.46896 789.27826 -508.6441 493.98285 774.84064 -394.93655 249.74048 770.7044 -414.00064 426.12268 717.42487 9.687338 297.9811 724.3903 -8.97547 438.27155 957.56226 37.207626 320.1244 964.3285 7.6252203 426.15768 1140.1387 386.33035 334.89377 1142.2544 447.13638 408.00583 1154.1143 408.80856 340.78055 1156.55 475.83286 456.92596 1260.4877 180.1903 350.59088 1261.7537 239.3858
11 20e8c60b-fe49-4512-aa37-85b004ec1d8c.jpeg stand 353.11963 154.18835 -526.8299 374.9694 128.70334 -493.03607 387.04898 130.71988 -493.01117 399.47534 132.50694 -493.03253 343.81094 123.59852 -494.687 331.71185 121.28189 -494.57986 319.56595 119.18762 -494.52856 416.15274 153.1472 -281.26984 305.65335 134.08124 -280.15308 373.08228 188.58902 -445.67987 328.20715 181.17184 -445.08743 487.13156 316.6496 -156.99583 212.25946 299.86493 -175.86702 531.4074 513.3789 -73.76863 168.8077 505.1281 -120.0341 539.2387 690.08496 -257.5497 149.01073 683.8492 -294.51633 550.1753 750.2396 -310.04504 133.85358 742.57623 -335.25107 526.19604 749.8925 -375.17828 160.1101 743.75525 -417.63736 507.9984 728.9099 -283.68137 182.5127 724.49426 -327.00107 426.84973 709.9164 7.532188 276.66074 709.55316 -6.534713 431.64224 958.512 39.517822 257.16885 956.54407 24.284414 420.94284 1133.8385 374.82745 254.88266 1132.4822 469.79285 401.7682 1151.0891 398.51913 271.6373 1153.6573 500.8363 458.32016 1256.2443 210.6998 209.75076 1250.2285 305.14343
12 2ee9a5ea-de3a-4696-82b3-bb13e253eb73.jpeg stand 326.04813 117.09396 -525.2729 342.2222 94.21528 -481.5386 353.29837 94.86317 -481.37375 364.72845 95.30422 -481.29453 312.35458 93.71605 -482.63403 300.81525 93.543625 -482.5451 289.2164 93.5836 -482.64136 379.326 119.1972 -256.78653 276.0814 115.75863 -254.24155 347.3114 150.876 -445.2482 303.98798 149.78177 -443.93558 451.7491 294.7946 -144.78094 205.99582 296.70294 -163.77939 476.43445 487.9849 -73.06393 199.36324 502.46606 -137.5752 484.61746 678.5873 -234.69812 192.67896 691.8084 -271.88947 500.02188 739.4214 -279.15778 179.62224 750.00494 -300.75558 475.72488 746.52686 -349.13956 199.81625 756.9397 -374.77353 457.76398 724.5094 -263.43585 218.65904 737.50336 -302.57706 415.4532 667.1258 8.028597 277.48477 671.09814 -7.3779564 429.99792 914.6988 105.9589 263.04724 905.1016 -202.2809 417.33972 1104.7168 478.01248 310.20813 1103.5356 235.80229 400.77695 1116.1157 502.68094 324.86755 1113.7072 267.0361 438.89917 1237.3342 272.4107 317.1198 1238.9795 27.541353
13 328f83e0-3632-4a5b-a4af-3967ab9f69c8.jpeg stand 355.4883 162.98938 -619.76355 370.24423 142.42703 -573.43634 380.59674 142.47174 -573.3449 391.30362 142.32266 -573.3067 340.91553 143.35442 -572.47974 330.3815 143.55682 -572.23224 319.7911 143.99284 -572.2133 407.84116 161.4434 -307.93085 308.23087 162.90443 -292.9763 377.00586 191.46497 -522.5829 337.30215 191.94485 -518.5996 487.07645 322.04932 -150.46562 238.9511 320.71823 -153.61095 513.08203 499.37537 -53.881626 223.75262 506.28403 -70.40352 515.9181 660.37024 -318.04962 214.65594 665.61163 -325.44617 526.26685 714.018 -377.08197 204.14674 718.10175 -383.74548 509.70764 718.1137 -460.61057 221.28354 718.67316 -474.7425 495.40167 699.6908 -352.70135 238.03073 701.1243 -364.88596 437.3441 686.9032 6.7416787 294.22217 688.95105 -5.8340955 445.39703 925.3972 41.84317 293.49655 938.79144 15.041781 432.64084 1117.4408 468.32202 300.15118 1143.0626 469.36575 416.0676 1135.944 495.9592 312.86334 1164.8713 497.05035 456.60458 1226.515 225.24736 281.53033 1254.6233 203.69496
14 3707ba7f-b225-46e3-bfa2-34be331ba1ec.jpeg stand 390.03412 184.4352 -664.44366 405.34637 164.98802 -617.92377 415.40402 166.61389 -617.94147 425.70215 168.06313 -617.7794 377.83365 161.54971 -628.0771 367.26303 160.32275 -627.99164 356.63757 159.23419 -627.9267 434.81445 189.24603 -366.9344 340.26376 177.0261 -404.76907 406.05615 214.9277 -570.47125 366.02844 209.98825 -582.48926 483.7799 341.61566 -199.41348 256.49356 326.01202 -324.11633 516.34314 534.3473 -130.13142 228.2502 525.04565 -325.92896 449.59442 667.5115 -350.9134 304.46414 674.06683 -475.5035 434.51785 716.90497 -433.593 314.57684 728.5658 -553.29803 408.56235 703.5291 -470.33188 347.5493 715.5437 -583.65875 407.7077 683.499 -370.16415 346.3143 693.80457 -488.11594 435.63315 662.9226 34.751114 306.08688 660.96344 -33.75692 430.92734 928.9851 -26.86933 321.3207 925.01855 -65.85137 422.79044 1145.239 303.03677 333.31866 1138.4644 321.3215 414.19754 1164.0275 324.5952 334.0856 1161.248 344.35284 422.38605 1258.7395 93.00885 349.8999 1249.4722 79.86595
15 38972223-ce9f-4941-8905-59ce73678131.jpeg stand 372.1585 143.13138 -489.41528 386.85452 120.58899 -441.32968 397.8475 120.41557 -441.36093 409.22086 120.06771 -441.3999 356.06046 122.29637 -440.87308 344.56894 122.9509 -440.6483 333.0076 123.82717 -440.65747 425.15295 142.31972 -215.50601 320.6985 146.29128 -200.0513 395.34225 176.24161 -409.0345 352.69485 177.89188 -404.86066 508.28455 331.91382 -106.270744 245.5878 332.30588 -124.478424 523.6927 528.811 -12.782409 225.39418 544.1915 -93.02354 533.1498 711.776 -251.9963 214.39032 720.7871 -298.77634 545.04425 772.87604 -309.74713 204.14667 779.4769 -348.31592 525.9442 775.7569 -395.69296 222.06686 781.182 -429.1808 509.8043 752.75793 -287.13226 242.06331 759.745 -334.38443 455.44394 723.0506 3.8162014 301.4658 722.8884 -2.3796887 446.7353 992.8345 24.438004 295.6257 997.91077 -23.889019 425.1051 1206.2245 431.30615 309.70917 1206.1914 463.52225 412.94397 1227.0431 457.02673 321.97128 1227.2146 495.7944 429.4223 1318.133 224.56146 300.81482 1320.1226 262.52994
16 38ab7055-5326-436c-a920-8436a87c6a33.jpeg stand 404.4453 127.9401 -572.07794 421.13007 103.62785 -537.1293 432.08344 103.70098 -537.1545 443.37204 103.60222 -537.16095 391.45343 103.842354 -534.192 380.3134 103.694725 -534.05585 369.15353 103.7347 -534.00757 459.4337 121.849785 -324.36356 357.23584 120.368576 -295.30597 425.816 157.63995 -491.82794 384.50186 157.11899 -483.31073 530.62494 291.93207 -209.94032 283.6916 282.43005 -161.11234 552.2567 496.21783 -134.9441 274.0507 490.95868 -83.48136 542.3799 673.7545 -269.48795 254.70317 667.44293 -213.10202 549.31604 729.6769 -302.6491 243.56358 719.8724 -220.08563 528.1168 731.62604 -370.88785 252.5332 725.22485 -304.42682 512.29315 710.3586 -292.6772 272.78415 707.8881 -246.53041 451.9389 660.2276 -16.943089 314.4875 650.95764 17.392178 452.38138 925.88226 18.79783 299.61124 916.38135 45.485645 442.41034 1127.5455 344.31995 323.02115 1123.9491 410.9158 427.73587 1148.1366 364.01434 346.68896 1151.4265 433.94858 465.38614 1241.8843 145.79976 264.8155 1232.1088 219.69788
17 3a58a866-558f-4153-9738-8068eedf29e5.jpeg stand 369.80835 206.63933 -458.36664 382.61026 188.33305 -424.16446 391.89172 188.2565 -424.06625 401.49072 187.99957 -423.9738 357.39832 189.83711 -424.27814 348.07053 190.46628 -424.21066 338.7324 191.26144 -424.37842 417.90002 206.84094 -239.93402 330.85583 210.36438 -235.69228 390.77612 234.24716 -391.89066 355.51556 235.77625 -390.03503 491.95667 357.87866 -127.077545 275.7432 360.18555 -167.44753 521.9874 522.7998 -54.646008 255.07 532.91797 -140.01047 532.2189 680.28674 -211.98563 250.24313 680.3523 -283.35916 545.89264 729.2634 -251.0339 240.10088 727.7972 -321.59677 527.88617 734.20013 -315.2149 261.54352 727.956 -386.32196 513.0069 717.3514 -238.39055 277.0128 711.4985 -309.8033 452.8403 674.9368 17.756298 330.73923 676.7926 -17.18436 449.72394 890.07935 66.62514 331.04587 894.2819 -8.440869 435.01532 1068.9358 316.78503 336.6886 1084.641 287.4552 417.87863 1089.5442 328.81378 345.40964 1104.6558 300.38446 469.77115 1159.4025 128.38535 334.03943 1182.3107 77.374695
18 3b8589b1-2512-4436-9f6f-d172c2e7b4f1.jpeg stand 370.62643 123.2238 -648.6418 386.25397 99.19182 -597.592 397.94055 99.61319 -597.5149 409.94586 99.87141 -597.4826 355.30368 99.09847 -600.0766 342.92554 99.00421 -599.9523 330.46973 99.18087 -600.077 424.55167 124.49257 -337.67105 316.01816 122.632904 -339.43066 393.0478 158.05829 -555.7063 347.2866 157.49306 -556.13873 491.62137 316.7995 -184.44086 239.00148 308.8593 -225.40582 506.83575 527.32874 -113.55224 221.18646 525.1893 -177.97948 505.6291 711.25885 -355.73853 221.03325 715.5558 -379.92813 512.1426 769.93713 -420.118 211.24478 774.6762 -440.13617 497.28085 768.82385 -499.20016 233.97012 774.3415 -511.6824 481.17743 745.7862 -391.28317 251.68622 751.4944 -410.85507 425.2677 704.4313 9.824201 287.58206 699.806 -8.702945 423.94547 923.4203 262.45914 270.05112 928.6081 105.67311 404.71036 1095.4717 785.1126 298.97806 1099.346 709.5315 383.43057 1112.464 823.7281 316.41574 1115.3369 753.9465 444.56476 1212.7809 588.9155 272.13245 1222.9653 518.0771
19 3cc3b5eb-4698-4a74-be04-9b6fe3f0f719.jpeg stand 391.12332 135.83153 -552.42615 404.20505 110.680084 -515.9846 414.41684 110.25993 -515.8767 424.94485 109.68128 -515.80634 375.4544 111.83895 -518.5226 364.3979 111.92867 -518.43854 353.30322 112.223816 -518.6331 437.16785 125.83443 -284.28275 339.33972 128.16364 -288.68466 410.70193 163.62613 -464.65353 371.2053 164.78177 -465.15878 510.71844 285.87827 -145.89545 272.92276 291.1668 -165.56993 532.4917 480.2201 -49.255745 269.231 498.57935 -102.85986 545.5049 667.13995 -199.73909 250.29733 670.09424 -227.02472 558.95654 722.4536 -233.15451 237.7535 721.00775 -246.34215 545.5482 728.61 -311.99423 245.5019 726.5436 -325.8621 528.5909 709.02704 -231.93886 264.442 709.6073 -259.55594 471.39542 652.98346 8.807428 334.2683 653.1994 -8.177152 471.92017 899.92255 106.967224 309.8348 897.718 -65.72919 444.89978 1074.6721 561.59985 332.6113 1095.9849 376.23526 424.46164 1093.3912 593.83594 344.79416 1114.4683 405.07874 479.01132 1176.1201 372.6407 328.16953 1207.669 155.76007
20 3febc4d9-31fc-4418-8e7d-9f11864aecae.jpeg stand 378.51587 145.18318 -471.79712 395.8882 122.512436 -433.98978 406.60422 123.8702 -433.86032 417.70514 125.03075 -433.7835 367.1446 119.637985 -437.44547 356.06207 118.37788 -437.34204 344.96054 117.30835 -437.36636 430.83368 146.3245 -222.39021 331.45474 135.12581 -233.77429 397.09448 178.66138 -394.3199 355.8034 174.23846 -397.32288 502.1021 320.86307 -103.801605 245.39624 314.29913 -152.93452 542.8383 518.79663 -0.36310756 229.91486 535.96796 -124.35922 537.4849 690.31934 -189.54828 217.78868 709.936 -299.002 545.81055 747.7937 -246.91388 204.4321 764.39636 -340.29416 516.40546 749.35175 -309.34848 226.86708 765.2479 -414.04822 500.981 727.86 -214.14677 246.15936 745.58655 -328.58536 449.8968 695.5863 27.340609 304.82013 699.43494 -26.426264 452.50354 951.4592 64.18408 278.7937 974.0479 -44.992775 426.64075 1137.2325 385.15222 283.24487 1176.229 337.8028 404.57144 1152.8358 407.10175 291.42603 1189.1907 360.24942 465.4002 1260.1008 225.4977 289.08957 1314.6736 143.59647
21 450bcdd7-7c12-4216-a217-f6c01fa9bf99.jpeg stand 387.70178 172.34314 -562.4622 402.6218 148.22388 -529.7919 413.4107 148.69118 -529.68677 424.52664 148.95825 -529.59235 374.40814 147.70602 -535.30206 363.05878 147.225 -535.35315 351.71057 146.93784 -535.49445 437.94232 168.98389 -332.1228 337.69678 164.96269 -347.08942 407.35062 202.74208 -487.71182 366.199 201.38092 -491.30618 504.5951 325.38925 -205.27753 266.0895 326.70532 -265.43555 533.3423 521.91125 -130.01802 255.51707 538.5312 -228.37799 523.46265 703.8865 -235.96663 241.23515 709.32043 -324.5877 531.8709 759.7783 -261.3515 228.48256 762.2665 -346.0096 509.0944 762.3526 -323.57553 244.04962 764.28357 -418.2846 494.1044 742.5015 -258.3506 264.0842 747.384 -351.67514 450.76627 687.2528 25.400768 320.01004 689.4508 -25.029484 455.1618 919.7027 103.60155 289.99292 921.56104 35.491447 450.01624 1099.308 341.60086 285.45108 1092.8547 402.06686 428.07962 1118.9857 355.88934 299.59634 1109.6753 425.5209 511.43784 1207.783 175.39494 249.81352 1206.7952 243.4582
22 4636085a-a4d4-49ac-8153-60e7cfd578c2.jpeg stand 369.80835 206.63933 -458.36664 382.61026 188.33305 -424.16446 391.89172 188.2565 -424.06625 401.49072 187.99957 -423.9738 357.39832 189.83711 -424.27814 348.07053 190.46628 -424.21066 338.7324 191.26144 -424.37842 417.90002 206.84094 -239.93402 330.85583 210.36438 -235.69228 390.77612 234.24716 -391.89066 355.51556 235.77625 -390.03503 491.95667 357.87866 -127.077545 275.7432 360.18555 -167.44753 521.9874 522.7998 -54.646008 255.07 532.91797 -140.01047 532.2189 680.28674 -211.98563 250.24313 680.3523 -283.35916 545.89264 729.2634 -251.0339 240.10088 727.7972 -321.59677 527.88617 734.20013 -315.2149 261.54352 727.956 -386.32196 513.0069 717.3514 -238.39055 277.0128 711.4985 -309.8033 452.8403 674.9368 17.756298 330.73923 676.7926 -17.18436 449.72394 890.07935 66.62514 331.04587 894.2819 -8.440869 435.01532 1068.9358 316.78503 336.6886 1084.641 287.4552 417.87863 1089.5442 328.81378 345.40964 1104.6558 300.38446 469.77115 1159.4025 128.38535 334.03943 1182.3107 77.374695
23 49f91976-b336-446a-b5aa-487bdaec7c7b.jpeg stand 385.96872 162.91306 -382.76248 405.65677 138.65811 -346.62793 417.53848 139.81186 -346.6009 429.78232 140.75839 -346.62643 374.68332 136.33975 -345.55008 362.87787 135.3318 -345.44122 351.0132 134.51663 -345.39426 447.48923 163.52039 -166.62944 339.4812 154.16135 -145.86017 408.40002 197.65582 -317.36572 363.52185 194.07428 -311.55786 519.35944 338.3219 -85.24983 255.85464 327.53726 -90.35191 557.87933 517.0727 -37.315178 218.16406 528.7362 -65.17488 570.906 685.80414 -197.14189 196.77312 698.2229 -210.51976 585.3351 744.1906 -241.43234 181.35849 752.8592 -232.74965 562.5829 747.52655 -303.2763 202.35623 757.8155 -310.33582 544.30096 726.72766 -222.89487 225.76343 740.2282 -241.37413 458.47617 721.14813 -2.4534042 310.0958 720.4468 3.7250166 479.86508 973.50275 -20.69719 299.521 973.6483 1.6793091 469.36914 1148.1532 296.09918 310.44382 1160.1697 377.43802 454.46265 1159.2649 319.07724 325.29584 1179.5071 403.66086 484.6755 1274.7539 155.33253 278.6114 1280.366 223.15222
24 4d57da70-cf56-49a6-9a16-b75e0af40b20.jpeg stand 353.11963 154.18835 -526.8299 374.9694 128.70334 -493.03607 387.04898 130.71988 -493.01117 399.47534 132.50694 -493.03253 343.81094 123.59852 -494.687 331.71185 121.28189 -494.57986 319.56595 119.18762 -494.52856 416.15274 153.1472 -281.26984 305.65335 134.08124 -280.15308 373.08228 188.58902 -445.67987 328.20715 181.17184 -445.08743 487.13156 316.6496 -156.99583 212.25946 299.86493 -175.86702 531.4074 513.3789 -73.76863 168.8077 505.1281 -120.0341 539.2387 690.08496 -257.5497 149.01073 683.8492 -294.51633 550.1753 750.2396 -310.04504 133.85358 742.57623 -335.25107 526.19604 749.8925 -375.17828 160.1101 743.75525 -417.63736 507.9984 728.9099 -283.68137 182.5127 724.49426 -327.00107 426.84973 709.9164 7.532188 276.66074 709.55316 -6.534713 431.64224 958.512 39.517822 257.16885 956.54407 24.284414 420.94284 1133.8385 374.82745 254.88266 1132.4822 469.79285 401.7682 1151.0891 398.51913 271.6373 1153.6573 500.8363 458.32016 1256.2443 210.6998 209.75076 1250.2285 305.14343
25 50e0ba5a-c235-442e-8442-14d95865a33e.jpeg stand 378.97498 215.5635 -349.3426 394.7228 192.68227 -318.4756 405.29825 193.43536 -318.3801 416.18515 193.99808 -318.32678 366.45538 191.31421 -322.26877 355.30826 190.68723 -322.2564 344.1567 190.2256 -322.40198 428.64365 213.9138 -147.5785 329.76938 207.84103 -156.73526 397.01492 247.09988 -285.2198 356.77386 244.85352 -287.48428 490.85416 376.26685 -68.13328 254.80269 361.30875 -109.37881 514.5121 562.3438 -23.753578 237.75067 549.7451 -98.637505 510.9137 740.4928 -137.65625 218.93015 724.0567 -198.03322 520.9251 797.8895 -157.71252 202.18684 777.4889 -204.10645 500.69766 801.8999 -217.30429 217.33098 785.2924 -275.84686 485.17517 780.64667 -159.84802 239.49792 768.99384 -224.8248 436.71762 728.7112 14.548225 303.4832 723.4562 -13.692798 438.3902 966.1427 31.005993 276.9282 958.92426 -53.525684 424.24988 1155.71 228.84824 294.5745 1149.0415 233.97942 405.66583 1176.4419 237.77664 314.2332 1171.7092 248.74852 462.6436 1262.2104 64.03453 248.33919 1254.3372 74.84657
26 51e1cbd6-cad5-4a80-a11c-5e50c7b1272c.jpeg stand 404.4453 127.9401 -572.07794 421.13007 103.62785 -537.1293 432.08344 103.70098 -537.1545 443.37204 103.60222 -537.16095 391.45343 103.842354 -534.192 380.3134 103.694725 -534.05585 369.15353 103.7347 -534.00757 459.4337 121.849785 -324.36356 357.23584 120.368576 -295.30597 425.816 157.63995 -491.82794 384.50186 157.11899 -483.31073 530.62494 291.93207 -209.94032 283.6916 282.43005 -161.11234 552.2567 496.21783 -134.9441 274.0507 490.95868 -83.48136 542.3799 673.7545 -269.48795 254.70317 667.44293 -213.10202 549.31604 729.6769 -302.6491 243.56358 719.8724 -220.08563 528.1168 731.62604 -370.88785 252.5332 725.22485 -304.42682 512.29315 710.3586 -292.6772 272.78415 707.8881 -246.53041 451.9389 660.2276 -16.943089 314.4875 650.95764 17.392178 452.38138 925.88226 18.79783 299.61124 916.38135 45.485645 442.41034 1127.5455 344.31995 323.02115 1123.9491 410.9158 427.73587 1148.1366 364.01434 346.68896 1151.4265 433.94858 465.38614 1241.8843 145.79976 264.8155 1232.1088 219.69788
27 598a4566-b4a5-48fe-993d-685269dd8334.jpeg stand 357.99945 241.93336 -699.693 369.80795 220.73444 -667.54425 378.4691 220.09549 -667.4093 387.3627 219.28607 -667.2056 346.11816 222.61993 -664.7232 337.26114 222.98795 -664.5868 328.39014 223.55156 -664.59607 401.2976 231.78497 -448.2197 320.0708 236.3104 -429.31476 376.94968 263.15448 -616.4931 344.20187 265.0134 -610.46246 467.21368 357.09225 -287.7918 264.56772 364.77917 -300.38647 497.65012 516.8527 -206.49835 239.75328 530.72546 -256.066 486.0918 665.693 -379.27972 260.6466 676.03156 -401.95563 490.913 712.25653 -438.9632 258.90356 724.4625 -454.92715 469.2094 712.2283 -498.29852 282.3514 721.0102 -507.22208 458.89584 694.0854 -404.8499 290.90152 700.86145 -425.21988 426.3754 663.5957 4.157757 315.158 665.6672 -3.8273292 423.2988 875.30365 91.168915 313.82068 879.87646 25.152723 411.51437 1045.7017 431.90845 322.93448 1053.7006 418.60336 398.01376 1066.6246 453.10266 333.65088 1074.4478 441.59567 439.15384 1128.3849 228.1741 310.97903 1142.946 201.91856
28 5bc3b6c7-e7cb-46b0-b9ba-0b720d4befc9.jpeg stand 359.01294 179.01624 -728.103 374.16455 152.31793 -689.18994 385.91888 152.42856 -689.04767 397.98163 152.35542 -688.99817 343.1337 152.64793 -692.53235 330.7359 152.54242 -692.3917 318.3039 152.719 -692.4741 413.01624 173.72948 -448.8341 304.10422 173.3536 -455.34222 382.04288 211.39224 -637.6893 336.8233 211.45581 -639.0795 495.89795 354.27728 -293.23965 229.56744 357.88318 -332.92728 524.5202 560.78766 -197.294 223.2648 580.2703 -279.84525 537.8217 745.144 -423.7998 216.47523 754.32745 -498.6315 550.60175 803.9635 -484.3557 205.86143 809.187 -551.5637 533.3524 807.6217 -566.56995 222.5059 811.1945 -639.9706 514.8345 786.1594 -458.50098 243.79315 790.2835 -536.5008 457.06445 743.12384 17.794886 313.53372 752.09595 -16.7916 466.03592 969.4608 157.57158 304.42447 998.8545 56.70276 438.04886 1125.7974 653.8237 334.47214 1130.135 724.6533 416.62512 1141.8728 693.5356 347.19165 1137.2865 779.795 479.3506 1233.5427 512.24384 332.2175 1248.1227 615.7997
29 61e8c949-e446-4ef5-94dc-efca65b01fb1.jpeg stand 381.44162 137.4783 -610.7363 397.51038 113.18321 -573.4886 408.30872 113.74699 -573.4187 419.4163 114.102516 -573.3037 367.18845 111.94641 -581.5094 355.67358 111.19949 -581.38104 344.17844 110.62565 -581.4501 431.182 131.96658 -325.58328 327.33295 126.23951 -357.86554 399.63412 167.58934 -514.4801 358.1782 165.26065 -523.7148 500.51788 286.93127 -173.46155 246.91476 284.6658 -228.37592 542.5506 477.56403 -73.05144 228.02435 482.63867 -181.29254 557.53925 663.1455 -261.66388 219.97461 667.8271 -339.0916 571.0158 723.25793 -313.00552 208.0202 727.7587 -374.52585 549.4376 726.4857 -389.3861 229.47255 730.736 -457.64328 531.8245 705.8568 -293.53168 247.72801 709.40186 -371.52484 457.48663 661.0412 16.216253 314.9232 664.6027 -15.387465 464.61523 923.4376 50.700348 282.91998 933.58716 -49.814102 444.13898 1138.6753 356.95834 297.59262 1148.7954 314.03802 423.03384 1165.233 373.75793 319.20868 1174.799 333.60193 489.74887 1246.8895 153.64873 249.4179 1261.3657 95.83816
30 63a1400a-12d1-4c24-96d2-ceb41b4e0347.jpeg stand 332.6406 180.23415 -518.6097 345.73972 158.13968 -479.08527 356.4402 157.44244 -479.11176 367.39825 156.55942 -479.04022 317.73602 161.09485 -480.89917 307.1335 162.2863 -480.7967 296.47906 163.65036 -480.8723 385.90305 176.68343 -273.24857 288.0291 185.21545 -271.13278 357.92334 208.55472 -442.86597 316.70523 212.12585 -442.79868 463.80914 332.7029 -153.33023 231.05927 340.39767 -200.39449 477.0893 521.9101 -119.853584 209.07747 524.4861 -188.64655 385.8871 657.21344 -302.71857 299.10565 660.2002 -308.7481 369.32996 711.37177 -376.07626 314.31195 713.4186 -367.5077 342.40427 696.8988 -409.8835 347.1852 698.00446 -395.78577 343.39615 674.3248 -318.69043 345.35153 676.7999 -318.89575 422.5962 680.0549 8.151012 290.82846 683.2809 -7.668976 438.98026 933.62604 33.910263 283.50085 936.7994 5.003742 426.6733 1134.5582 312.75983 308.2062 1139.1254 348.94843 409.214 1157.293 328.28656 329.96304 1164.8557 368.22696 463.38913 1245.4213 126.76574 261.51517 1251.259 144.04271
31 647b3837-4948-4616-9a16-0d5c162cda10.jpeg stand 365.21323 192.67563 -519.25415 380.79044 170.6052 -479.52756 391.13586 171.18248 -479.47058 401.79102 171.60092 -479.51733 351.9531 169.91977 -481.32816 341.0666 169.56311 -481.2033 330.1549 169.41937 -481.26065 414.862 192.23297 -251.6102 317.00006 188.41171 -254.66289 384.5453 223.99792 -434.79373 344.35562 222.66919 -435.538 481.11453 354.06183 -117.59383 244.10776 353.63202 -118.55698 510.06372 524.0011 -32.447933 218.0563 532.92834 -23.214136 519.79956 678.5432 -289.76385 209.4793 688.61743 -220.36804 530.04443 732.02875 -362.3694 199.01059 738.67883 -264.7112 510.45416 730.55853 -432.41202 217.84552 739.29297 -346.6424 496.33536 711.7545 -321.29398 234.39897 721.0186 -253.946 439.06976 703.0402 12.582499 303.83777 703.47546 -11.767031 450.78143 926.6089 86.81883 279.28384 931.3958 -100.82349 422.6317 1081.5394 561.34314 299.67145 1097.3926 393.25708 400.97607 1093.288 596.1149 309.92007 1107.6989 429.0456 451.21307 1191.7605 386.76068 303.82364 1215.1239 209.3664
32 67a5f36e-1714-46e3-ad74-4e8e74a89c97.jpeg stand 390.22467 167.45471 -528.9127 403.46527 144.00017 -488.29086 413.73285 144.70044 -488.18835 424.33252 145.22662 -488.17612 374.7912 142.76608 -496.05032 363.20523 142.1997 -495.99234 351.56406 141.8292 -495.98166 432.1219 166.66003 -269.43814 333.3329 161.55185 -297.1535 407.00406 200.05704 -448.46616 365.50034 198.05382 -456.41116 493.50885 341.6476 -150.137 253.34431 338.44952 -214.38434 516.5269 537.3391 -67.78617 248.85046 545.8103 -182.31134 524.421 728.661 -237.60474 251.64648 726.7591 -307.17307 537.06305 790.2948 -281.72192 242.05347 785.0731 -343.15604 516.439 797.4628 -352.3898 264.82852 788.2232 -408.11273 499.0091 775.59644 -267.78503 281.671 767.06555 -333.85156 447.8228 708.32275 16.817722 310.987 711.71313 -16.03961 458.05164 960.8971 80.19294 308.84186 968.9877 -23.573542 444.43036 1148.945 432.7691 324.2232 1152.8282 402.93665 427.10843 1166.2135 456.14133 333.5794 1168.222 431.56064 471.96686 1265.9315 255.78047 323.24503 1272.4541 217.59135
33 68f21b09-8c0c-4be2-8209-a93a103fd85e.jpeg stand 332.6406 180.23415 -518.6097 345.73972 158.13968 -479.08527 356.4402 157.44244 -479.11176 367.39825 156.55942 -479.04022 317.73602 161.09485 -480.89917 307.1335 162.2863 -480.7967 296.47906 163.65036 -480.8723 385.90305 176.68343 -273.24857 288.0291 185.21545 -271.13278 357.92334 208.55472 -442.86597 316.70523 212.12585 -442.79868 463.80914 332.7029 -153.33023 231.05927 340.39767 -200.39449 477.0893 521.9101 -119.853584 209.07747 524.4861 -188.64655 385.8871 657.21344 -302.71857 299.10565 660.2002 -308.7481 369.32996 711.37177 -376.07626 314.31195 713.4186 -367.5077 342.40427 696.8988 -409.8835 347.1852 698.00446 -395.78577 343.39615 674.3248 -318.69043 345.35153 676.7999 -318.89575 422.5962 680.0549 8.151012 290.82846 683.2809 -7.668976 438.98026 933.62604 33.910263 283.50085 936.7994 5.003742 426.6733 1134.5582 312.75983 308.2062 1139.1254 348.94843 409.214 1157.293 328.28656 329.96304 1164.8557 368.22696 463.38913 1245.4213 126.76574 261.51517 1251.259 144.04271
34 7694c496-bbe7-45ec-974a-5e1aa177c0d3.jpeg stand 389.7267 247.94125 -264.43634 406.27042 225.80411 -236.9401 416.62958 226.72127 -236.8483 427.2979 227.43481 -236.74728 378.55472 223.88675 -238.42633 367.77124 223.01537 -238.54451 356.99094 222.27875 -238.81108 440.0898 246.53671 -97.68469 343.8399 238.54362 -96.09021 407.5842 279.01675 -212.82106 368.42514 275.96442 -211.97318 498.71536 400.62344 -43.706997 264.8486 385.69046 -84.93724 521.41064 579.72876 -21.775429 238.99564 574.0299 -93.045586 526.9173 747.5886 -97.39348 238.07462 744.3348 -151.61134 539.2994 799.82776 -111.68041 227.18439 795.78394 -160.25676 519.44104 805.31866 -162.17755 247.85585 801.6729 -211.17049 503.40662 786.0217 -116.9125 266.5936 784.19977 -170.12921 439.11868 741.9931 14.44758 310.7089 737.21277 -14.055946 449.47382 975.891 47.365284 290.94458 964.8243 -26.88653 456.41232 1157.4519 181.32881 303.73703 1150.066 209.28322 440.12607 1179.4993 185.86288 324.34125 1175.8534 220.10696 503.46704 1252.9767 38.300613 248.24026 1243.3026 72.74212
35 77bf888e-fff2-4e61-a167-350852d5ccc0.jpeg stand 357.99945 241.93336 -699.693 369.80795 220.73444 -667.54425 378.4691 220.09549 -667.4093 387.3627 219.28607 -667.2056 346.11816 222.61993 -664.7232 337.26114 222.98795 -664.5868 328.39014 223.55156 -664.59607 401.2976 231.78497 -448.2197 320.0708 236.3104 -429.31476 376.94968 263.15448 -616.4931 344.20187 265.0134 -610.46246 467.21368 357.09225 -287.7918 264.56772 364.77917 -300.38647 497.65012 516.8527 -206.49835 239.75328 530.72546 -256.066 486.0918 665.693 -379.27972 260.6466 676.03156 -401.95563 490.913 712.25653 -438.9632 258.90356 724.4625 -454.92715 469.2094 712.2283 -498.29852 282.3514 721.0102 -507.22208 458.89584 694.0854 -404.8499 290.90152 700.86145 -425.21988 426.3754 663.5957 4.157757 315.158 665.6672 -3.8273292 423.2988 875.30365 91.168915 313.82068 879.87646 25.152723 411.51437 1045.7017 431.90845 322.93448 1053.7006 418.60336 398.01376 1066.6246 453.10266 333.65088 1074.4478 441.59567 439.15384 1128.3849 228.1741 310.97903 1142.946 201.91856
36 84e720bb-f9b1-451b-a331-116659d0af5c.jpeg stand 395.24338 120.49957 -510.07407 409.66794 96.405334 -468.78555 421.0687 96.632996 -468.8655 432.76804 96.64562 -468.82446 380.27985 96.8964 -472.41064 368.36996 97.03602 -472.27243 356.37122 97.40662 -472.40717 447.97406 120.2026 -264.2242 342.44446 120.23781 -273.66888 418.35565 153.83644 -435.8874 373.10217 153.81447 -438.44217 522.2667 294.05502 -149.00648 262.98932 290.44055 -213.94666 555.4445 490.87573 -98.87927 211.35081 480.65628 -203.62747 477.82446 629.7515 -271.8894 300.6095 630.57007 -321.45624 463.47113 684.8684 -334.54007 320.70483 684.4657 -373.32898 435.66055 667.73804 -379.14148 348.94217 661.7699 -406.55234 432.76306 645.09094 -288.8178 347.67026 641.6542 -330.1555 455.7448 690.6221 17.157642 317.1008 689.9445 -16.397741 446.6441 934.3783 171.51373 298.77795 936.9251 87.29631 445.97922 1112.1233 442.1982 303.01996 1119.3259 460.24704 427.47894 1133.0247 459.00146 321.19208 1140.9154 483.39615 498.4961 1222.1683 282.8409 248.6338 1237.2 291.5015
37 86aa9e6d-bf2e-46dc-b435-72a3eb7b3f07.jpeg stand 361.7743 218.73634 -621.88855 377.22678 195.02296 -580.5153 387.7899 195.5175 -580.43195 398.66595 195.8244 -580.3755 348.6042 194.3175 -582.60187 337.46478 193.79623 -582.48175 326.27838 193.45825 -582.4952 411.80774 215.71907 -347.7278 312.83588 211.63821 -347.78888 381.2707 249.0931 -536.7344 340.2071 247.5661 -536.6008 472.70285 377.0319 -196.57109 241.69759 379.9924 -235.19673 501.12213 560.955 -139.72131 226.95604 575.0941 -189.13396 513.55585 735.08514 -362.21683 220.91931 738.56323 -384.6073 526.37854 788.346 -417.84073 210.63649 790.62964 -440.6017 509.9767 793.0393 -488.44846 233.46896 789.27826 -508.6441 493.98285 774.84064 -394.93655 249.74048 770.7044 -414.00064 426.12268 717.42487 9.687338 297.9811 724.3903 -8.97547 438.27155 957.56226 37.207626 320.1244 964.3285 7.6252203 426.15768 1140.1387 386.33035 334.89377 1142.2544 447.13638 408.00583 1154.1143 408.80856 340.78055 1156.55 475.83286 456.92596 1260.4877 180.1903 350.59088 1261.7537 239.3858
38 8b856a0d-bc4d-40b7-81aa-1f9623c2c3b6.jpeg stand 385.96872 162.91306 -382.76248 405.65677 138.65811 -346.62793 417.53848 139.81186 -346.6009 429.78232 140.75839 -346.62643 374.68332 136.33975 -345.55008 362.87787 135.3318 -345.44122 351.0132 134.51663 -345.39426 447.48923 163.52039 -166.62944 339.4812 154.16135 -145.86017 408.40002 197.65582 -317.36572 363.52185 194.07428 -311.55786 519.35944 338.3219 -85.24983 255.85464 327.53726 -90.35191 557.87933 517.0727 -37.315178 218.16406 528.7362 -65.17488 570.906 685.80414 -197.14189 196.77312 698.2229 -210.51976 585.3351 744.1906 -241.43234 181.35849 752.8592 -232.74965 562.5829 747.52655 -303.2763 202.35623 757.8155 -310.33582 544.30096 726.72766 -222.89487 225.76343 740.2282 -241.37413 458.47617 721.14813 -2.4534042 310.0958 720.4468 3.7250166 479.86508 973.50275 -20.69719 299.521 973.6483 1.6793091 469.36914 1148.1532 296.09918 310.44382 1160.1697 377.43802 454.46265 1159.2649 319.07724 325.29584 1179.5071 403.66086 484.6755 1274.7539 155.33253 278.6114 1280.366 223.15222
39 919ad234-1b5d-4b4c-adec-c5bb49bdfc6e.jpeg stand 391.12332 135.83153 -552.42615 404.20505 110.680084 -515.9846 414.41684 110.25993 -515.8767 424.94485 109.68128 -515.80634 375.4544 111.83895 -518.5226 364.3979 111.92867 -518.43854 353.30322 112.223816 -518.6331 437.16785 125.83443 -284.28275 339.33972 128.16364 -288.68466 410.70193 163.62613 -464.65353 371.2053 164.78177 -465.15878 510.71844 285.87827 -145.89545 272.92276 291.1668 -165.56993 532.4917 480.2201 -49.255745 269.231 498.57935 -102.85986 545.5049 667.13995 -199.73909 250.29733 670.09424 -227.02472 558.95654 722.4536 -233.15451 237.7535 721.00775 -246.34215 545.5482 728.61 -311.99423 245.5019 726.5436 -325.8621 528.5909 709.02704 -231.93886 264.442 709.6073 -259.55594 471.39542 652.98346 8.807428 334.2683 653.1994 -8.177152 471.92017 899.92255 106.967224 309.8348 897.718 -65.72919 444.89978 1074.6721 561.59985 332.6113 1095.9849 376.23526 424.46164 1093.3912 593.83594 344.79416 1114.4683 405.07874 479.01132 1176.1201 372.6407 328.16953 1207.669 155.76007
40 9347db4b-ee6c-454f-955a-c4cfad162671.jpeg stand 374.33243 190.60677 -416.1696 389.95276 172.6405 -381.75543 399.42273 173.98816 -381.65942 409.1974 175.1519 -381.56787 364.61835 170.14865 -384.4192 354.80743 169.34822 -384.41995 344.9579 168.73975 -384.58972 421.73544 196.52443 -199.39957 333.2373 187.07019 -206.4797 390.8666 221.76155 -349.66882 354.19357 218.26587 -351.15356 480.87488 349.6436 -102.06991 263.53415 340.8748 -121.36439 511.54306 513.4498 -26.341213 250.52965 517.387 -87.39977 505.33508 663.2699 -134.40762 244.35504 674.3815 -190.40916 511.48096 710.96106 -165.21436 234.06773 720.8368 -210.48575 493.22134 714.2075 -219.5955 251.12549 724.88403 -273.0696 479.6411 697.6575 -155.15675 267.90677 709.4944 -214.94086 428.5153 681.3744 9.036524 307.82605 676.1079 -8.580687 440.81744 892.64124 131.50333 282.09036 885.19104 50.667347 437.31705 1047.1462 431.08505 292.86554 1049.592 395.2787 417.8409 1064.9128 450.4874 310.2457 1067.7814 416.89185 483.57056 1143.762 282.68195 249.59174 1152.1515 237.69936
41 97f44108-b70d-4aa8-a0e1-1320b7b38e1b.jpg stand 1583.837 1987.9663 -2270.9307 1633.8121 1913.6721 -2148.5322 1665.9675 1913.094 -2148.9548 1698.9863 1912.1045 -2148.4756 1546.2537 1914.506 -2136.4653 1513.5226 1913.5548 -2135.6033 1480.6581 1913.1287 -2134.935 1747.5507 1959.7506 -1401.765 1451.5396 1957.1455 -1287.4432 1649.7023 2065.323 -1992.0559 1528.7078 2064.1519 -1962.5275 1930.5742 2390.7131 -955.50385 1274.422 2408.5176 -739.7695 1985.6155 2946.0344 -682.20905 1241.7478 2990.8276 -572.43146 2069.2212 3456.1472 -1306.9539 1186.2573 3501.2449 -1061.9646 2114.4883 3592.507 -1456.2192 1159.9081 3632.8135 -1144.5203 2093.533 3605.2922 -1695.7671 1176.214 3656.9214 -1405.268 2044.601 3557.981 -1414.9004 1233.3884 3607.7068 -1178.8728 1809.207 3382.9768 -181.80103 1426.897 3395.6086 184.14377 1749.9998 4196.88 -439.43246 1456.7056 4185.226 117.40159 1725.9614 4845.5796 540.9979 1572.1752 4713.905 1698.8184 1737.4122 4911.978 587.3692 1619.0238 4769.197 1810.7388 1645.0177 5160.6636 -231.17072 1545.8601 5019.9365 1130.4395
42 9d2bd651-71c0-45cb-a3d2-6cff005bb88b.jpeg stand 372.1585 143.13138 -489.41528 386.85452 120.58899 -441.32968 397.8475 120.41557 -441.36093 409.22086 120.06771 -441.3999 356.06046 122.29637 -440.87308 344.56894 122.9509 -440.6483 333.0076 123.82717 -440.65747 425.15295 142.31972 -215.50601 320.6985 146.29128 -200.0513 395.34225 176.24161 -409.0345 352.69485 177.89188 -404.86066 508.28455 331.91382 -106.270744 245.5878 332.30588 -124.478424 523.6927 528.811 -12.782409 225.39418 544.1915 -93.02354 533.1498 711.776 -251.9963 214.39032 720.7871 -298.77634 545.04425 772.87604 -309.74713 204.14667 779.4769 -348.31592 525.9442 775.7569 -395.69296 222.06686 781.182 -429.1808 509.8043 752.75793 -287.13226 242.06331 759.745 -334.38443 455.44394 723.0506 3.8162014 301.4658 722.8884 -2.3796887 446.7353 992.8345 24.438004 295.6257 997.91077 -23.889019 425.1051 1206.2245 431.30615 309.70917 1206.1914 463.52225 412.94397 1227.0431 457.02673 321.97128 1227.2146 495.7944 429.4223 1318.133 224.56146 300.81482 1320.1226 262.52994
43 a77bde41-76bc-4b5e-82e1-5d02ff41b1d5.jpeg stand 380.4886 119.93408 -558.88873 396.2214 96.23123 -518.1397 407.20892 96.340256 -518.15247 418.53546 96.2933 -518.09546 366.2821 96.83815 -518.305 354.78665 97.04113 -518.17126 343.23877 97.432556 -518.23096 433.14548 118.151474 -299.9618 329.77533 118.42331 -289.13208 401.9382 152.04773 -479.7552 359.0638 152.28218 -476.41452 502.33905 298.67358 -188.23036 255.83008 294.6509 -201.49983 517.81866 505.0741 -114.600365 242.35728 507.90024 -161.5698 515.6235 698.0201 -265.76324 235.99828 699.71606 -262.00085 525.0217 757.1332 -303.9811 224.72475 757.1268 -278.61697 504.51236 761.2467 -374.07446 243.1147 762.91284 -352.399 487.703 739.0696 -292.59003 262.80246 742.932 -291.2076 442.3101 675.1317 -0.6316261 303.29504 671.25146 1.5729328 428.58017 942.8488 70.1189 302.5004 939.9453 -6.342039 404.6663 1154.6484 403.4602 326.15485 1155.0142 361.21304 389.41434 1173.345 422.13083 338.34616 1174.8534 381.64612 420.38623 1275.5597 191.83961 318.96863 1277.6941 143.15004
44 a875cbae-59dc-4eaa-b7af-8c2ed373f794.jpeg stand 355.4883 162.98938 -619.76355 370.24423 142.42703 -573.43634 380.59674 142.47174 -573.3449 391.30362 142.32266 -573.3067 340.91553 143.35442 -572.47974 330.3815 143.55682 -572.23224 319.7911 143.99284 -572.2133 407.84116 161.4434 -307.93085 308.23087 162.90443 -292.9763 377.00586 191.46497 -522.5829 337.30215 191.94485 -518.5996 487.07645 322.04932 -150.46562 238.9511 320.71823 -153.61095 513.08203 499.37537 -53.881626 223.75262 506.28403 -70.40352 515.9181 660.37024 -318.04962 214.65594 665.61163 -325.44617 526.26685 714.018 -377.08197 204.14674 718.10175 -383.74548 509.70764 718.1137 -460.61057 221.28354 718.67316 -474.7425 495.40167 699.6908 -352.70135 238.03073 701.1243 -364.88596 437.3441 686.9032 6.7416787 294.22217 688.95105 -5.8340955 445.39703 925.3972 41.84317 293.49655 938.79144 15.041781 432.64084 1117.4408 468.32202 300.15118 1143.0626 469.36575 416.0676 1135.944 495.9592 312.86334 1164.8713 497.05035 456.60458 1226.515 225.24736 281.53033 1254.6233 203.69496
45 b33a2837-200c-4670-baae-306b5ded90f7.jpeg stand 383.06445 135.25833 -330.5698 395.24753 105.762215 -300.74866 406.24316 104.93748 -300.70126 417.59665 103.99372 -300.67722 364.8938 107.38098 -305.465 352.78128 107.44785 -305.52753 340.6224 107.62146 -305.65546 429.13422 118.19645 -121.42367 324.0527 122.1566 -127.31995 404.19016 162.37506 -261.10953 361.34457 164.03195 -263.01593 500.36124 279.79446 -34.400845 249.62126 278.2151 -70.87299 511.52325 479.76062 40.063984 231.85992 495.83496 -56.818886 508.49878 654.7168 -96.43836 223.101 669.4683 -131.62344 516.9722 711.0999 -136.97649 213.42586 720.93274 -136.67438 500.6852 713.0078 -192.73708 223.66728 727.0477 -201.33698 485.27518 692.2639 -121.67599 242.96129 708.313 -155.60551 450.3281 658.1579 8.938811 304.89407 654.07526 -8.066939 455.61496 963.77795 -36.168903 317.6358 931.0205 -26.073944 425.83887 1131.8003 318.30325 328.3333 1134.5977 373.91046 411.23242 1139.5581 346.89746 332.60187 1151.234 404.42346 432.14148 1243.0536 198.83261 339.87137 1253.123 230.81488
46 b68cb35a-c793-4ee3-9355-9c80832f8713.jpeg stand 359.9546 250.25067 -411.491 370.53366 229.86462 -381.78317 379.69626 229.08023 -381.80798 389.0818 228.1253 -381.7388 346.2954 232.44095 -381.52658 337.10965 233.34674 -381.49307 327.90158 234.35349 -381.51056 403.30692 242.7528 -219.94998 319.5118 250.23624 -208.0407 380.48727 272.90494 -350.91638 345.6188 276.169 -347.7953 464.26498 365.29327 -123.2214 273.69025 375.62097 -134.30626 499.01 523.50543 -110.48995 260.7463 533.91046 -120.97428 420.0143 625.1587 -246.18546 340.58707 641.8518 -238.98618 403.61456 665.4278 -302.1886 355.05197 685.5331 -292.91385 382.5096 649.91223 -322.40298 380.17142 670.53033 -312.31073 385.27466 635.0455 -254.52766 377.2855 654.38715 -246.90933 426.67548 653.297 -4.2988887 315.09583 655.9617 4.524504 455.8536 873.7981 -17.80097 293.16043 871.60364 9.529244 466.06082 1051.6816 200.7178 286.9232 1046.4191 290.4863 458.11444 1068.5374 213.33192 299.68848 1066.7572 306.1756 481.96558 1149.7014 37.89238 254.78374 1142.6561 120.63157
47 b78f2884-2a62-45ee-bf6b-4c4c2099cf92.jpeg stand 359.9546 250.25067 -411.491 370.53366 229.86462 -381.78317 379.69626 229.08023 -381.80798 389.0818 228.1253 -381.7388 346.2954 232.44095 -381.52658 337.10965 233.34674 -381.49307 327.90158 234.35349 -381.51056 403.30692 242.7528 -219.94998 319.5118 250.23624 -208.0407 380.48727 272.90494 -350.91638 345.6188 276.169 -347.7953 464.26498 365.29327 -123.2214 273.69025 375.62097 -134.30626 499.01 523.50543 -110.48995 260.7463 533.91046 -120.97428 420.0143 625.1587 -246.18546 340.58707 641.8518 -238.98618 403.61456 665.4278 -302.1886 355.05197 685.5331 -292.91385 382.5096 649.91223 -322.40298 380.17142 670.53033 -312.31073 385.27466 635.0455 -254.52766 377.2855 654.38715 -246.90933 426.67548 653.297 -4.2988887 315.09583 655.9617 4.524504 455.8536 873.7981 -17.80097 293.16043 871.60364 9.529244 466.06082 1051.6816 200.7178 286.9232 1046.4191 290.4863 458.11444 1068.5374 213.33192 299.68848 1066.7572 306.1756 481.96558 1149.7014 37.89238 254.78374 1142.6561 120.63157
48 bf07abdd-110c-4899-8d8a-21f9bca50833.jpeg stand 390.03412 184.4352 -664.44366 405.34637 164.98802 -617.92377 415.40402 166.61389 -617.94147 425.70215 168.06313 -617.7794 377.83365 161.54971 -628.0771 367.26303 160.32275 -627.99164 356.63757 159.23419 -627.9267 434.81445 189.24603 -366.9344 340.26376 177.0261 -404.76907 406.05615 214.9277 -570.47125 366.02844 209.98825 -582.48926 483.7799 341.61566 -199.41348 256.49356 326.01202 -324.11633 516.34314 534.3473 -130.13142 228.2502 525.04565 -325.92896 449.59442 667.5115 -350.9134 304.46414 674.06683 -475.5035 434.51785 716.90497 -433.593 314.57684 728.5658 -553.29803 408.56235 703.5291 -470.33188 347.5493 715.5437 -583.65875 407.7077 683.499 -370.16415 346.3143 693.80457 -488.11594 435.63315 662.9226 34.751114 306.08688 660.96344 -33.75692 430.92734 928.9851 -26.86933 321.3207 925.01855 -65.85137 422.79044 1145.239 303.03677 333.31866 1138.4644 321.3215 414.19754 1164.0275 324.5952 334.0856 1161.248 344.35284 422.38605 1258.7395 93.00885 349.8999 1249.4722 79.86595
49 bf77887e-eb57-4589-9d9b-2092ec651cc3.jpeg stand 326.04813 117.09396 -525.2729 342.2222 94.21528 -481.5386 353.29837 94.86317 -481.37375 364.72845 95.30422 -481.29453 312.35458 93.71605 -482.63403 300.81525 93.543625 -482.5451 289.2164 93.5836 -482.64136 379.326 119.1972 -256.78653 276.0814 115.75863 -254.24155 347.3114 150.876 -445.2482 303.98798 149.78177 -443.93558 451.7491 294.7946 -144.78094 205.99582 296.70294 -163.77939 476.43445 487.9849 -73.06393 199.36324 502.46606 -137.5752 484.61746 678.5873 -234.69812 192.67896 691.8084 -271.88947 500.02188 739.4214 -279.15778 179.62224 750.00494 -300.75558 475.72488 746.52686 -349.13956 199.81625 756.9397 -374.77353 457.76398 724.5094 -263.43585 218.65904 737.50336 -302.57706 415.4532 667.1258 8.028597 277.48477 671.09814 -7.3779564 429.99792 914.6988 105.9589 263.04724 905.1016 -202.2809 417.33972 1104.7168 478.01248 310.20813 1103.5356 235.80229 400.77695 1116.1157 502.68094 324.86755 1113.7072 267.0361 438.89917 1237.3342 272.4107 317.1198 1238.9795 27.541353
50 c2d99509-dfa6-4aa8-b196-52bf9b6ff5f4.jpeg stand 365.67728 193.08655 -677.8226 384.37854 167.78903 -638.8231 396.25952 168.81172 -638.633 408.4464 169.64847 -638.68475 353.61508 165.62146 -635.9324 341.4739 164.50546 -635.731 329.29816 163.68729 -635.74695 424.44263 191.61484 -399.1728 315.99734 182.29538 -374.97556 387.36548 225.34271 -588.2703 341.90298 221.92242 -581.30835 492.62894 367.20505 -259.87485 239.77841 355.929 -255.4333 516.7384 561.37024 -197.69073 228.49408 556.25806 -185.9494 514.09314 738.00226 -442.6644 221.31967 738.66486 -381.59033 522.1214 796.344 -506.1171 209.18118 796.21326 -429.60684 501.2409 796.83594 -578.19214 230.03479 802.2818 -510.68988 484.78363 774.3037 -474.09717 250.67789 781.84265 -415.3512 433.88498 733.9658 -11.801481 302.7232 732.7235 12.975706 422.73254 962.54834 213.78822 304.07825 959.00415 157.55281 417.53635 1135.366 684.60895 315.71924 1128.3198 715.90485 407.10474 1149.1436 721.8095 327.53647 1143.4432 757.6398 434.98895 1254.4335 508.6994 298.3523 1247.4624 547.18414
51 c73ae4c5-983e-4178-bc48-1715ed8a41f3.jpeg stand 381.76505 145.4672 -617.5876 398.21518 123.35911 -577.9756 408.3801 123.93467 -577.84955 418.86298 124.3182 -577.7515 370.23715 122.48661 -576.61383 359.70416 121.92516 -576.43805 349.1067 121.58516 -576.4865 433.1639 142.9496 -332.82477 336.59744 137.77245 -319.97174 400.41586 174.24171 -527.1284 361.29868 172.43893 -522.69495 496.93604 295.807 -197.40921 267.00763 292.16077 -186.16704 516.17035 477.4785 -115.68622 253.37732 482.3709 -145.91971 514.2199 650.654 -277.6981 251.45903 656.317 -308.40253 527.074 704.1753 -324.21545 239.02757 710.974 -360.2233 503.61234 709.2831 -392.72137 261.12604 714.483 -427.25235 488.7442 689.16986 -305.2838 276.70798 695.6804 -338.6826 445.7598 640.4951 -9.5422535 315.10428 639.9563 10.135519 442.9896 870.531 42.84861 294.18478 861.29004 -237.4802 421.16296 1058.4474 437.00452 324.3784 1069.2251 192.51102 408.44202 1074.3938 463.23737 335.03833 1085.678 220.83371 430.2053 1170.9497 212.3566 331.8566 1185.8844 -55.499863
52 cb4c87b6-d29f-4d12-8258-6e2dcd17872a.jpeg stand 383.06445 135.25833 -330.5698 395.24753 105.762215 -300.74866 406.24316 104.93748 -300.70126 417.59665 103.99372 -300.67722 364.8938 107.38098 -305.465 352.78128 107.44785 -305.52753 340.6224 107.62146 -305.65546 429.13422 118.19645 -121.42367 324.0527 122.1566 -127.31995 404.19016 162.37506 -261.10953 361.34457 164.03195 -263.01593 500.36124 279.79446 -34.400845 249.62126 278.2151 -70.87299 511.52325 479.76062 40.063984 231.85992 495.83496 -56.818886 508.49878 654.7168 -96.43836 223.101 669.4683 -131.62344 516.9722 711.0999 -136.97649 213.42586 720.93274 -136.67438 500.6852 713.0078 -192.73708 223.66728 727.0477 -201.33698 485.27518 692.2639 -121.67599 242.96129 708.313 -155.60551 450.3281 658.1579 8.938811 304.89407 654.07526 -8.066939 455.61496 963.77795 -36.168903 317.6358 931.0205 -26.073944 425.83887 1131.8003 318.30325 328.3333 1134.5977 373.91046 411.23242 1139.5581 346.89746 332.60187 1151.234 404.42346 432.14148 1243.0536 198.83261 339.87137 1253.123 230.81488
53 dcf596d1-1135-4f2d-8cb7-f564d666044c.jpeg stand 357.54355 182.94235 -432.8557 371.23 155.37933 -408.22165 382.13055 154.25189 -408.06805 393.37247 152.93053 -407.94104 342.8995 158.39038 -405.58594 332.02762 159.11664 -405.5397 321.17877 160.01935 -405.66687 413.27786 167.48761 -240.00018 313.62457 175.75829 -218.52756 382.9044 209.52881 -369.24872 342.72086 213.15051 -362.5902 501.8357 324.89185 -135.67728 257.63364 334.83588 -143.31418 527.58344 515.53174 -76.713066 246.29915 535.4534 -104.53895 539.3625 680.8075 -248.21918 233.96648 699.42804 -253.51944 555.6378 734.203 -296.59006 222.22652 750.792 -283.65717 531.7355 736.37177 -358.09793 240.31128 751.76794 -356.76984 514.07294 718.44214 -271.10156 260.1964 733.7934 -282.68625 459.31863 690.25757 12.682616 324.08606 692.75977 -11.8982525 449.96866 934.36743 30.427004 301.85788 939.7641 -14.796194 427.92847 1120.4617 270.305 312.24857 1127.6895 307.6853 409.94437 1134.2866 282.24976 323.50916 1141.0215 324.5045 449.14096 1243.1134 85.454346 310.51425 1255.6895 117.56367
54 e0743c57-a10b-4270-bebd-958db3ce90bb.jpeg stand 372.24963 183.74588 -413.07138 386.16327 160.33719 -376.15283 396.36728 160.36575 -376.13977 406.87097 160.2132 -376.1064 358.02896 160.71597 -383.10333 347.17188 160.73254 -382.9971 336.3033 160.91022 -383.04425 419.36417 178.42853 -165.68651 322.86844 178.48285 -191.51836 391.2902 212.98734 -333.6637 352.25937 213.24684 -340.96622 481.48682 333.00195 -39.06463 259.01086 339.6565 -103.615654 501.84818 516.7951 50.319736 253.32816 542.8075 -71.88688 521.98126 671.53986 -146.63167 245.03838 709.3487 -203.10886 538.4984 721.9653 -193.06032 234.31874 758.8098 -222.77264 523.0358 723.75903 -262.82565 250.21213 761.50214 -296.8991 505.04733 706.9555 -176.52075 268.1333 743.76807 -231.26558 452.23685 691.4892 21.374928 322.59845 695.33624 -20.740667 477.83658 937.33167 48.2458 295.30582 942.5277 -40.547417 468.43414 1133.5494 305.81784 301.43344 1144.9323 282.02567 445.09354 1160.988 319.18243 320.11386 1170.0151 298.85248 533.9328 1228.1436 130.9585 259.27585 1250.8329 90.87672
55 e3ea3f3f-8a8e-4313-bddf-90338185c5cf.jpeg stand 395.24338 120.49957 -510.07407 409.66794 96.405334 -468.78555 421.0687 96.632996 -468.8655 432.76804 96.64562 -468.82446 380.27985 96.8964 -472.41064 368.36996 97.03602 -472.27243 356.37122 97.40662 -472.40717 447.97406 120.2026 -264.2242 342.44446 120.23781 -273.66888 418.35565 153.83644 -435.8874 373.10217 153.81447 -438.44217 522.2667 294.05502 -149.00648 262.98932 290.44055 -213.94666 555.4445 490.87573 -98.87927 211.35081 480.65628 -203.62747 477.82446 629.7515 -271.8894 300.6095 630.57007 -321.45624 463.47113 684.8684 -334.54007 320.70483 684.4657 -373.32898 435.66055 667.73804 -379.14148 348.94217 661.7699 -406.55234 432.76306 645.09094 -288.8178 347.67026 641.6542 -330.1555 455.7448 690.6221 17.157642 317.1008 689.9445 -16.397741 446.6441 934.3783 171.51373 298.77795 936.9251 87.29631 445.97922 1112.1233 442.1982 303.01996 1119.3259 460.24704 427.47894 1133.0247 459.00146 321.19208 1140.9154 483.39615 498.4961 1222.1683 282.8409 248.6338 1237.2 291.5015
56 e98e5bd8-8705-47b8-afe1-e0419f32ec3d.jpeg stand 380.4886 119.93408 -558.88873 396.2214 96.23123 -518.1397 407.20892 96.340256 -518.15247 418.53546 96.2933 -518.09546 366.2821 96.83815 -518.305 354.78665 97.04113 -518.17126 343.23877 97.432556 -518.23096 433.14548 118.151474 -299.9618 329.77533 118.42331 -289.13208 401.9382 152.04773 -479.7552 359.0638 152.28218 -476.41452 502.33905 298.67358 -188.23036 255.83008 294.6509 -201.49983 517.81866 505.0741 -114.600365 242.35728 507.90024 -161.5698 515.6235 698.0201 -265.76324 235.99828 699.71606 -262.00085 525.0217 757.1332 -303.9811 224.72475 757.1268 -278.61697 504.51236 761.2467 -374.07446 243.1147 762.91284 -352.399 487.703 739.0696 -292.59003 262.80246 742.932 -291.2076 442.3101 675.1317 -0.6316261 303.29504 671.25146 1.5729328 428.58017 942.8488 70.1189 302.5004 939.9453 -6.342039 404.6663 1154.6484 403.4602 326.15485 1155.0142 361.21304 389.41434 1173.345 422.13083 338.34616 1174.8534 381.64612 420.38623 1275.5597 191.83961 318.96863 1277.6941 143.15004
57 eb8bf5ed-1c43-47c5-8ff8-ff32a9c70ac9.jpeg stand 359.01294 179.01624 -728.103 374.16455 152.31793 -689.18994 385.91888 152.42856 -689.04767 397.98163 152.35542 -688.99817 343.1337 152.64793 -692.53235 330.7359 152.54242 -692.3917 318.3039 152.719 -692.4741 413.01624 173.72948 -448.8341 304.10422 173.3536 -455.34222 382.04288 211.39224 -637.6893 336.8233 211.45581 -639.0795 495.89795 354.27728 -293.23965 229.56744 357.88318 -332.92728 524.5202 560.78766 -197.294 223.2648 580.2703 -279.84525 537.8217 745.144 -423.7998 216.47523 754.32745 -498.6315 550.60175 803.9635 -484.3557 205.86143 809.187 -551.5637 533.3524 807.6217 -566.56995 222.5059 811.1945 -639.9706 514.8345 786.1594 -458.50098 243.79315 790.2835 -536.5008 457.06445 743.12384 17.794886 313.53372 752.09595 -16.7916 466.03592 969.4608 157.57158 304.42447 998.8545 56.70276 438.04886 1125.7974 653.8237 334.47214 1130.135 724.6533 416.62512 1141.8728 693.5356 347.19165 1137.2865 779.795 479.3506 1233.5427 512.24384 332.2175 1248.1227 615.7997
58 ef8b857c-90ec-4875-bdd9-b3d6e0cbef48.jpeg stand 370.62643 123.2238 -648.6418 386.25397 99.19182 -597.592 397.94055 99.61319 -597.5149 409.94586 99.87141 -597.4826 355.30368 99.09847 -600.0766 342.92554 99.00421 -599.9523 330.46973 99.18087 -600.077 424.55167 124.49257 -337.67105 316.01816 122.632904 -339.43066 393.0478 158.05829 -555.7063 347.2866 157.49306 -556.13873 491.62137 316.7995 -184.44086 239.00148 308.8593 -225.40582 506.83575 527.32874 -113.55224 221.18646 525.1893 -177.97948 505.6291 711.25885 -355.73853 221.03325 715.5558 -379.92813 512.1426 769.93713 -420.118 211.24478 774.6762 -440.13617 497.28085 768.82385 -499.20016 233.97012 774.3415 -511.6824 481.17743 745.7862 -391.28317 251.68622 751.4944 -410.85507 425.2677 704.4313 9.824201 287.58206 699.806 -8.702945 423.94547 923.4203 262.45914 270.05112 928.6081 105.67311 404.71036 1095.4717 785.1126 298.97806 1099.346 709.5315 383.43057 1112.464 823.7281 316.41574 1115.3369 753.9465 444.56476 1212.7809 588.9155 272.13245 1222.9653 518.0771
59 f9e10803-1fa7-4566-8a25-7addb86826ee.jpeg stand 365.21323 192.67563 -519.25415 380.79044 170.6052 -479.52756 391.13586 171.18248 -479.47058 401.79102 171.60092 -479.51733 351.9531 169.91977 -481.32816 341.0666 169.56311 -481.2033 330.1549 169.41937 -481.26065 414.862 192.23297 -251.6102 317.00006 188.41171 -254.66289 384.5453 223.99792 -434.79373 344.35562 222.66919 -435.538 481.11453 354.06183 -117.59383 244.10776 353.63202 -118.55698 510.06372 524.0011 -32.447933 218.0563 532.92834 -23.214136 519.79956 678.5432 -289.76385 209.4793 688.61743 -220.36804 530.04443 732.02875 -362.3694 199.01059 738.67883 -264.7112 510.45416 730.55853 -432.41202 217.84552 739.29297 -346.6424 496.33536 711.7545 -321.29398 234.39897 721.0186 -253.946 439.06976 703.0402 12.582499 303.83777 703.47546 -11.767031 450.78143 926.6089 86.81883 279.28384 931.3958 -100.82349 422.6317 1081.5394 561.34314 299.67145 1097.3926 393.25708 400.97607 1093.288 596.1149 309.92007 1107.6989 429.0456 451.21307 1191.7605 386.76068 303.82364 1215.1239 209.3664
60 fba9f5e0-7a3d-4c26-bd6e-fa1524d79d32.jpeg stand 357.54355 182.94235 -432.8557 371.23 155.37933 -408.22165 382.13055 154.25189 -408.06805 393.37247 152.93053 -407.94104 342.8995 158.39038 -405.58594 332.02762 159.11664 -405.5397 321.17877 160.01935 -405.66687 413.27786 167.48761 -240.00018 313.62457 175.75829 -218.52756 382.9044 209.52881 -369.24872 342.72086 213.15051 -362.5902 501.8357 324.89185 -135.67728 257.63364 334.83588 -143.31418 527.58344 515.53174 -76.713066 246.29915 535.4534 -104.53895 539.3625 680.8075 -248.21918 233.96648 699.42804 -253.51944 555.6378 734.203 -296.59006 222.22652 750.792 -283.65717 531.7355 736.37177 -358.09793 240.31128 751.76794 -356.76984 514.07294 718.44214 -271.10156 260.1964 733.7934 -282.68625 459.31863 690.25757 12.682616 324.08606 692.75977 -11.8982525 449.96866 934.36743 30.427004 301.85788 939.7641 -14.796194 427.92847 1120.4617 270.305 312.24857 1127.6895 307.6853 409.94437 1134.2866 282.24976 323.50916 1141.0215 324.5045 449.14096 1243.1134 85.454346 310.51425 1255.6895 117.56367
61 fce3eb76-78ff-4828-8475-074445321a7c.jpeg stand 390.22467 167.45471 -528.9127 403.46527 144.00017 -488.29086 413.73285 144.70044 -488.18835 424.33252 145.22662 -488.17612 374.7912 142.76608 -496.05032 363.20523 142.1997 -495.99234 351.56406 141.8292 -495.98166 432.1219 166.66003 -269.43814 333.3329 161.55185 -297.1535 407.00406 200.05704 -448.46616 365.50034 198.05382 -456.41116 493.50885 341.6476 -150.137 253.34431 338.44952 -214.38434 516.5269 537.3391 -67.78617 248.85046 545.8103 -182.31134 524.421 728.661 -237.60474 251.64648 726.7591 -307.17307 537.06305 790.2948 -281.72192 242.05347 785.0731 -343.15604 516.439 797.4628 -352.3898 264.82852 788.2232 -408.11273 499.0091 775.59644 -267.78503 281.671 767.06555 -333.85156 447.8228 708.32275 16.817722 310.987 711.71313 -16.03961 458.05164 960.8971 80.19294 308.84186 968.9877 -23.573542 444.43036 1148.945 432.7691 324.2232 1152.8282 402.93665 427.10843 1166.2135 456.14133 333.5794 1168.222 431.56064 471.96686 1265.9315 255.78047 323.24503 1272.4541 217.59135
62 fea69922-71a8-4e13-8dfd-903db1723709.jpeg stand 332.6406 180.23415 -518.6097 345.73972 158.13968 -479.08527 356.4402 157.44244 -479.11176 367.39825 156.55942 -479.04022 317.73602 161.09485 -480.89917 307.1335 162.2863 -480.7967 296.47906 163.65036 -480.8723 385.90305 176.68343 -273.24857 288.0291 185.21545 -271.13278 357.92334 208.55472 -442.86597 316.70523 212.12585 -442.79868 463.80914 332.7029 -153.33023 231.05927 340.39767 -200.39449 477.0893 521.9101 -119.853584 209.07747 524.4861 -188.64655 385.8871 657.21344 -302.71857 299.10565 660.2002 -308.7481 369.32996 711.37177 -376.07626 314.31195 713.4186 -367.5077 342.40427 696.8988 -409.8835 347.1852 698.00446 -395.78577 343.39615 674.3248 -318.69043 345.35153 676.7999 -318.89575 422.5962 680.0549 8.151012 290.82846 683.2809 -7.668976 438.98026 933.62604 33.910263 283.50085 936.7994 5.003742 426.6733 1134.5582 312.75983 308.2062 1139.1254 348.94843 409.214 1157.293 328.28656 329.96304 1164.8557 368.22696 463.38913 1245.4213 126.76574 261.51517 1251.259 144.04271
63 00c976ce-9a5b-4511-bd18-530ee710ace8.jpeg sit 407.8619 246.32312 -422.01352 422.209 223.29147 -386.5489 432.93045 223.45706 -386.59058 443.8753 223.4571 -386.34402 393.44775 223.22502 -388.6214 382.24127 222.85281 -388.48737 371.06204 222.64264 -388.45035 457.48117 240.53528 -170.50096 356.789 238.457 -172.83754 428.76282 273.0197 -340.46317 386.4107 272.0683 -341.2488 516.5533 371.22107 -70.22612 299.40536 364.42502 -46.280624 549.5882 544.423 -62.98751 269.00793 532.6477 -34.436443 456.77295 649.38257 -227.73846 358.3542 640.0672 -209.5638 440.053 692.504 -298.81262 371.19208 687.0777 -268.30222 411.01007 674.6289 -310.7444 401.54388 669.28845 -292.93466 413.5615 659.5456 -233.68518 399.9273 655.25397 -217.9294 470.7991 638.10443 -19.31819 348.57568 631.47516 19.73593 423.15607 777.37427 -480.40173 328.2783 754.38544 -538.5161 378.07095 1086.5615 -314.67758 345.10812 1070.3599 -417.35794 370.97284 1113.5835 -305.12167 354.4747 1100.039 -411.35074 347.61642 1229.7787 -510.47116 352.9305 1217.364 -627.4616
64 083595aa-c8ee-473a-bfa7-db8645682ddf.jpeg sit 379.59085 187.3718 -443.00543 394.52127 162.19098 -403.6341 405.45984 161.89816 -403.72165 416.67468 161.39267 -403.84827 363.7396 163.69534 -404.1126 352.3473 164.0477 -403.8161 340.9622 164.60751 -403.67972 433.06955 180.9946 -167.53024 327.53464 184.58008 -160.37706 400.8611 219.79831 -355.84122 359.55557 220.98587 -354.17807 504.41898 339.7084 -31.29903 263.45972 339.91467 -47.499588 530.8181 516.05975 -32.802197 246.43317 524.5702 -67.38655 541.3446 656.15845 -431.3189 219.81175 667.0334 -390.0998 561.22205 708.8982 -534.3722 199.17636 719.45374 -450.7568 533.4691 702.0786 -597.7789 215.38872 710.4813 -526.1108 516.48224 682.58594 -468.5183 235.79333 693.7664 -423.41287 458.54587 681.7252 -0.31345266 311.6719 676.8213 1.3662832 570.9189 840.8469 -593.82385 179.77477 817.37177 -615.23706 461.45557 1058.406 -127.606415 279.1586 1046.1211 -150.59325 421.3771 1074.4907 -87.672264 321.86108 1069.0272 -111.87106 496.0819 1197.2191 -278.3511 215.13234 1180.2285 -320.30463
65 0a95c2e4-0f44-4134-8b9b-b94f196c8466.jpeg sit 378.57684 148.95602 -392.54538 392.80157 127.57954 -346.69635 403.94318 128.17828 -346.85205 415.38422 128.56873 -346.8234 361.95547 127.81643 -351.5548 350.0053 128.1173 -351.36176 338.06934 128.57109 -351.37506 428.70383 153.8578 -117.90292 321.36096 153.42194 -135.62822 399.52948 184.60406 -311.52994 355.27975 184.20682 -316.39963 494.95468 327.94205 1.3142784 246.46175 311.93225 -46.62953 508.91977 503.61588 33.820576 211.53589 487.61053 -54.870544 497.16534 620.9631 -332.16336 235.41487 604.2113 -367.8495 503.8793 674.8581 -440.88095 231.99007 656.5046 -446.8353 475.63593 658.34204 -490.89902 262.53857 637.2013 -500.87692 463.5939 637.58923 -360.68958 273.89676 618.6598 -390.88562 446.681 633.8497 22.485004 297.89914 630.6564 -21.715199 519.6293 799.31305 -430.01343 228.76164 794.51746 -625.0012 442.36807 1049.4891 -97.13642 281.2153 1049.7336 -232.43295 408.71298 1060.8682 -71.649864 305.6686 1063.5999 -198.77667 463.01215 1221.1334 -280.95496 258.81903 1214.31 -424.26672
66 0d3b883b-8bb3-4839-9963-2445938cb756.jpeg sit 347.00177 263.04233 -336.73737 359.4896 237.75372 -306.66238 369.8641 236.93646 -306.6465 380.5137 235.92029 -306.64587 331.55853 240.12729 -307.72537 320.75543 240.67365 -307.48303 309.98602 241.3779 -307.31033 397.19843 250.38681 -122.80594 299.07373 256.99448 -120.0775 369.5118 288.7918 -267.5723 330.20972 291.35333 -266.81738 467.99045 382.41956 -42.42228 247.46555 384.47998 -20.570154 483.9725 539.217 -28.139517 234.49721 542.3883 0.94491893 484.59027 670.8821 -267.656 234.0136 684.91797 -225.70467 502.3436 723.03595 -341.53317 219.23222 737.5174 -273.20303 470.89105 721.1443 -385.96436 245.52205 734.8656 -334.89438 455.21747 702.1378 -288.27927 263.07736 716.81934 -251.53468 427.503 673.0484 3.1869345 297.38092 673.10266 -2.578064 508.92456 819.6878 -390.37912 212.98328 823.72095 -428.08606 453.47348 1037.4746 -134.03992 270.8339 1034.2156 -113.71756 425.14917 1052.4364 -114.565094 298.22217 1050.3052 -88.92806 481.0054 1171.9216 -277.62567 239.90665 1164.8405 -252.94609
67 1f6cd1a9-f128-4f98-9a59-0e7df7285c7e.jpeg sit 391.71225 205.93152 -369.61746 409.40353 185.22087 -330.79095 420.95816 186.50223 -330.8772 432.8152 187.59827 -330.76968 379.4872 183.46634 -327.39868 368.10562 182.8671 -327.17014 356.697 182.43518 -327.0699 450.6376 212.82193 -134.554 344.51135 205.29564 -113.334854 414.40683 241.1393 -299.98853 369.74994 237.93088 -293.85764 520.9572 383.5169 -43.716095 267.4202 368.14236 -47.620544 532.6958 560.50024 -34.48385 238.70139 552.1136 -72.664444 519.5117 691.8035 -320.55927 250.44554 674.89264 -380.23245 526.5059 749.01825 -409.26566 242.26598 728.1451 -454.8224 496.05786 736.90643 -455.14868 273.81537 713.3826 -510.85632 482.66528 715.5582 -343.81024 287.90125 695.741 -404.5342 458.66125 705.5344 5.093533 313.4202 700.6891 -3.871488 465.09756 866.3803 -409.45166 282.056 856.3953 -556.3305 424.87213 1124.1737 -117.3412 315.77985 1124.7325 -216.20604 407.27725 1139.7694 -95.57779 332.65167 1144.5753 -189.35548 423.1661 1281.4268 -297.68045 303.25223 1279.3828 -405.27002
68 3759877e-2623-4d0b-8208-3ecbff2f3551.jpeg sit 377.35056 191.9643 -477.05457 395.0051 169.45544 -438.4188 406.08597 170.03792 -438.4573 417.41248 170.38277 -438.46982 363.6894 169.56647 -442.43588 352.28323 169.7155 -442.21048 340.88464 170.06955 -442.04324 433.75336 194.89685 -218.76503 327.15015 193.3414 -230.29901 397.559 227.94777 -396.2315 355.97226 227.32635 -399.42615 494.98703 350.47174 -90.56577 261.0587 354.31055 -120.775856 514.6832 521.95874 -74.61471 243.76202 539.93317 -125.83783 521.5732 655.7258 -418.56296 244.08084 679.41003 -416.20285 539.82574 705.61255 -514.2407 230.40215 729.356 -481.6741 512.9305 700.6811 -576.48865 255.20819 723.0591 -552.4609 495.9843 683.0863 -452.93335 274.08908 706.00244 -448.02313 456.04288 648.78894 14.684502 318.21832 652.413 -14.39413 569.80396 825.676 -368.75217 196.45547 832.7284 -518.3255 487.29517 1025.5768 -8.560403 291.03375 1021.05786 -92.12482 443.4073 1052.7769 16.631615 334.70538 1046.2758 -59.00676 563.56885 1137.4022 -156.38545 217.51286 1134.43 -236.64867
69 3f888c92-a65e-45dd-90c9-67cf57ab9908.jpeg sit 358.05222 404.31982 -278.2012 367.2179 385.9806 -256.3073 375.30566 384.99072 -256.31473 383.55438 383.86966 -256.47937 344.60193 389.49933 -254.46951 336.3605 390.7395 -254.24045 328.16708 392.1408 -254.16368 397.09787 397.17694 -114.96216 320.05237 407.49084 -99.674675 376.0338 426.00867 -223.50587 346.66888 430.02905 -219.16844 457.50226 504.5184 -37.034607 277.71417 509.51462 -32.264004 482.1369 620.7214 -3.1651154 251.47078 627.4887 -2.4041405 495.57858 724.57434 -237.26091 251.78938 728.1347 -211.19495 509.83652 763.70886 -305.11844 242.30681 768.4929 -255.35312 488.97433 758.0138 -348.76474 264.40717 760.3479 -304.1457 477.5182 746.0965 -258.41946 277.1015 747.2046 -231.2283 422.39484 736.76666 -4.9916096 315.95294 734.3891 5.6246724 518.9714 825.7736 -344.5046 195.89372 821.4633 -340.0531 417.12796 942.1943 -76.54037 320.11395 942.5733 -46.744213 390.0245 948.6313 -52.04601 356.689 950.93494 -20.354898 423.11554 1014.4043 -174.70152 294.09695 1023.7384 -119.72557
70 49b4fb63-f998-42ac-b2e2-9a5c476a669c.jpeg sit 380.59006 152.74701 -416.4559 396.91583 131.0419 -378.86597 408.07153 132.20975 -378.93903 419.5161 133.15097 -378.9348 366.46082 129.64478 -381.29962 354.6896 129.20074 -381.15646 342.91464 128.92921 -381.12415 433.09256 157.52274 -173.1706 326.829 151.1132 -181.16989 400.06018 188.4656 -341.22403 356.61874 185.89252 -343.2763 493.402 318.0444 -71.83233 248.55911 310.29852 -92.30538 518.0432 486.8187 -42.673878 215.2461 492.45285 -103.40453 520.6103 619.2815 -340.49115 226.48622 629.0998 -376.18393 534.133 674.8552 -429.6862 219.01086 687.0508 -445.56067 503.72855 664.1574 -480.0509 249.84653 670.4593 -499.92053 487.9137 645.068 -366.9066 263.24014 650.7581 -399.24982 437.64157 637.42175 14.089479 291.72162 635.6648 -13.19551 537.67615 805.2237 -433.19006 210.3451 784.0636 -552.36334 458.943 1013.03577 -58.70358 303.89908 1002.5365 -142.61603 425.3973 1024.2225 -28.844748 332.57825 1014.42413 -107.74351 488.25067 1157.5862 -204.50552 293.67563 1147.0726 -298.11212
71 4c697401-f0c7-4d76-a97d-a00b01d68c98.jpeg sit 363.06348 137.88617 -485.85852 379.11334 115.72552 -441.46762 390.147 117.08881 -441.5718 401.42606 118.21304 -441.4708 348.55865 113.83572 -444.129 336.6667 113.26256 -443.8435 324.7761 112.86049 -443.71603 412.94577 142.13428 -200.98975 305.40543 134.29028 -211.63992 381.14697 172.61188 -398.95215 336.84457 169.41754 -401.51117 474.23502 292.10803 -92.510475 222.96219 294.89163 -90.56616 525.8338 444.34982 -115.55806 193.40903 482.99728 -164.71877 501.99384 553.7285 -499.2782 252.2306 580.2804 -515.0491 508.45657 609.28467 -617.1689 266.30603 630.1977 -603.6568 465.0363 594.75195 -650.1685 292.15833 600.825 -644.9166 453.0715 575.97205 -517.83344 296.33423 585.4878 -533.14404 427.91635 585.6052 9.258024 285.0967 593.81433 -8.481063 500.20242 695.46295 -600.33527 278.80588 698.9493 -679.1669 448.9172 979.1614 -258.51758 336.3983 978.5153 -341.1984 426.37674 995.4419 -231.21614 347.03598 997.3485 -313.1577 446.97302 1140.3091 -461.78033 369.49786 1129.5068 -550.85095
72 4e9e3f80-7772-4ee9-b117-b969a4a76bf7.jpeg sit 422.81287 149.462 -430.67676 443.51965 127.796555 -384.43466 455.50287 129.4119 -384.53204 467.80557 130.82565 -384.51047 412.1429 125.333824 -383.27747 400.52673 124.49242 -383.1169 388.85114 123.890495 -383.04172 487.6713 157.10889 -125.65171 376.5378 146.40988 -118.09003 445.63464 186.37149 -336.57507 399.70248 182.02911 -333.8718 549.92303 320.5102 4.921459 292.20895 294.57184 -18.671646 588.59863 490.50226 -36.14186 232.26437 464.78104 -100.05209 551.08856 617.1698 -434.97058 242.34334 589.13416 -496.9152 555.5557 677.7158 -552.2312 226.7709 644.2494 -593.9936 511.43597 661.7742 -591.2541 269.3089 631.6565 -648.97424 500.8168 640.3583 -458.5855 284.38806 615.4291 -521.49115 467.39572 667.26807 29.839891 314.8236 656.5143 -28.805525 562.6629 745.2819 -645.6168 244.3374 721.6254 -768.10004 545.03375 1037.343 -310.21353 266.9173 1016.0965 -419.08197 514.9896 1070.2047 -286.05817 291.52557 1052.3442 -392.83234 608.207 1182.5381 -533.80884 219.23798 1153.1196 -641.2884
73 5082d201-3eb1-47eb-9373-ab57cc640fad.jpeg sit 390.6871 263.04828 -353.69757 404.8028 243.98557 -310.2494 414.4474 244.27707 -310.38782 424.38876 244.37085 -310.4815 377.6378 244.5681 -313.94565 367.60965 244.89433 -313.66376 357.5841 245.39223 -313.5509 438.8421 265.32346 -88.859726 345.35092 265.81232 -101.25499 409.42062 293.73206 -274.6198 372.14124 293.78912 -278.28253 497.34128 413.98303 25.634851 281.5924 403.85785 -17.644005 526.9783 566.6324 54.09051 248.1229 557.5554 -34.876762 541.38763 695.8161 -293.40533 232.21605 699.87354 -330.62134 559.4746 745.1873 -388.97296 214.72383 750.3931 -395.8428 531.38446 739.3627 -447.1582 240.39545 746.34827 -464.90887 515.61774 720.1087 -326.28915 257.5861 729.93256 -360.19214 445.78128 711.7527 19.414827 312.9813 705.7108 -18.46199 556.99414 865.7345 -438.9564 219.0876 839.4896 -591.8413 482.92075 1080.0367 -89.9242 261.444 1070.0507 -203.52068 445.98923 1102.8785 -63.18442 292.46362 1100.812 -172.72372 543.10284 1197.2096 -223.91748 190.79036 1179.5691 -365.41953
74 5644de97-accf-47ad-b344-5faad1569b7b.jpg sit 1983.4562 1120.5737 -2391.2717 2025.5265 1040.382 -2232.6733 2058.3433 1040.334 -2232.9631 2092.0974 1039.8079 -2232.866 1928.8407 1040.0405 -2259.8489 1893.6234 1038.7849 -2258.8972 1857.9324 1038.0494 -2259.228 2132.2583 1087.4279 -1231.1488 1804.8016 1081.8315 -1324.0662 2044.4209 1213.8291 -2008.4199 1915.2556 1211.7537 -2031.2877 2337.9778 1565.905 -415.33408 1497.0841 1529.9045 -762.0731 2302.5957 2118.4727 -18.846903 1249.4675 2109.1934 -789.3895 2078.7969 2538.7927 -1328.8181 1380.0742 2464.083 -1928.1669 2047.585 2709.1765 -1813.2131 1399.3138 2600.166 -2302.0632 1950.2991 2656.4065 -2023.6895 1480.9937 2533.4746 -2485.3923 1939.6797 2586.369 -1456.8981 1495.311 2478.344 -2014.842 2080.476 2656.008 182.54524 1557.1868 2663.1086 -179.69711 2768.5493 3147.6196 -2373.6328 1360.968 3351.7427 -2317.7104 2181.1365 3699.723 -630.683 1355.1028 4184.3564 -573.70026 2041.7883 3663.876 -492.10587 1386.3025 4278.1245 -452.6673 2089.379 4138.2803 -1471.6631 1314.8634 4559.283 -1624.0197
75 59836e93-d10e-431c-80c2-b08a4aa741bb.jpeg sit 402.97305 254.45366 -466.3939 415.88547 224.8494 -439.13474 427.8696 224.57318 -439.1208 440.0097 224.06909 -439.21024 383.47385 225.53574 -442.2838 370.39743 225.32315 -442.2279 357.25748 225.26344 -442.24725 451.4683 240.4526 -235.57756 337.44345 241.11847 -247.02077 423.7774 284.89 -385.11978 378.11374 285.3241 -387.9755 526.1073 365.9173 -105.78133 266.67273 378.96948 -140.33363 586.0578 533.9657 -35.84927 249.96063 587.257 -111.58465 466.86285 653.5462 -84.506744 376.53888 660.5879 -276.84567 444.92023 707.2866 -126.21689 408.69693 703.7763 -330.83865 416.1973 679.692 -141.07874 427.4084 669.5786 -345.22418 421.45944 660.6217 -87.619644 422.53503 655.6012 -278.85797 493.84625 694.93335 -6.3945136 334.16306 694.95917 7.0264473 614.0949 881.38416 -456.06085 174.81194 875.76904 -566.0115 437.8568 1072.4893 -78.09553 327.98425 1085.3425 -169.18373 399.46585 1071.322 -39.908726 369.36224 1091.2278 -125.81051 407.89362 1231.1813 -195.77654 309.07254 1241.5974 -268.7178
76 6499205e-b449-4a97-99ad-08675f98803a.jpeg sit 372.97858 265.2971 -421.3818 385.12985 245.81744 -383.7321 394.24246 246.28781 -383.7326 403.58994 246.61343 -383.81708 359.74335 245.38406 -386.43314 349.9807 245.13168 -386.33447 340.18375 245.06284 -386.2813 413.76117 264.3579 -176.08806 327.08298 261.92184 -182.72629 389.30267 293.1224 -345.95535 353.97903 292.27237 -347.8635 472.11646 402.7166 -37.089046 259.90063 401.80786 -97.514366 483.7094 562.7953 79.30329 246.68295 578.8594 -43.643906 493.5646 698.29767 -85.582344 237.23778 725.397 -157.91042 505.60413 738.19574 -123.92546 226.4408 766.0448 -170.59207 498.82104 736.8369 -181.41313 234.36319 765.98145 -236.64162 485.9541 723.9486 -113.49196 249.51968 752.87805 -182.65778 435.19528 690.5487 25.203337 305.36728 689.6259 -24.459726 500.83282 854.9337 -468.27182 284.89926 822.71533 -618.0132 417.22925 998.1853 -21.502672 317.13757 1014.24567 -214.5869 388.67096 1003.32214 15.803047 327.98373 1028.5719 -183.4897 437.84207 1108.8135 -166.69122 320.92596 1127.4011 -417.7695
77 6578fde1-186f-4e58-9411-8adf51ce5d8e.jpeg sit 381.0925 163.41382 -351.08258 397.51038 134.89368 -318.48508 410.009 134.4878 -318.50507 422.8033 133.85277 -318.39655 365.07166 136.4402 -316.19495 352.33762 136.87274 -316.15143 339.6074 137.44388 -316.11252 442.27798 154.88441 -143.8563 326.97043 158.74954 -125.62088 407.33344 195.7832 -287.70798 359.34033 197.61975 -282.23764 517.145 306.5765 -86.853386 263.75748 318.41733 -57.80457 565.1552 485.36047 -90.93287 241.72012 512.92804 -48.186203 542.15295 657.9678 -256.47842 283.77094 670.0491 -233.25163 554.65753 722.0948 -319.35056 280.97174 730.089 -286.05734 512.09174 716.9239 -351.8285 316.49036 718.1332 -326.64282 498.69022 691.49164 -269.02835 327.30862 694.3795 -248.22816 474.41333 657.16644 0.72342205 330.95697 659.17676 -0.07574698 554.1511 872.4077 -211.3607 267.55853 866.5084 -289.38937 508.9377 1038.0057 56.41613 312.60956 1036.391 69.16002 483.34717 1042.7203 78.7896 340.08386 1048.2839 97.49959 535.5304 1181.105 -49.936543 265.38278 1175.8981 -43.01557
78 6be03f2c-39f0-4ccb-b631-3dc455c9bd51.jpeg sit 385.18265 263.01907 -469.22583 398.33932 242.07886 -428.7628 408.55142 242.66159 -428.83575 418.97925 243.02483 -428.90396 370.10614 241.74854 -434.45816 359.2984 241.52542 -434.33762 348.47507 241.49777 -434.25287 430.19717 263.46924 -197.97531 333.3068 260.56778 -219.18465 403.3216 294.09012 -382.3218 363.89062 292.6581 -388.98856 495.57162 406.63458 -80.82745 261.2315 402.0389 -132.55492 515.94 602.7078 -73.811676 233.79297 596.97986 -139.17699 435.06177 721.25635 -327.8491 325.13824 715.3425 -338.65106 424.10986 774.1106 -424.10742 336.9166 768.4181 -407.8204 393.95883 754.29315 -448.5161 369.7719 748.33374 -431.39658 393.7754 735.74585 -343.4869 369.77136 729.9958 -347.9016 450.64612 710.5708 13.749327 305.6658 712.1824 -13.130692 607.26776 808.5556 -447.61322 142.05925 798.9198 -608.2249 465.37424 1018.3904 -111.00869 315.20496 1026.7361 -220.7586 423.5878 1026.6436 -79.01264 361.24432 1033.386 -181.38115 480.7038 1168.6183 -274.97223 307.6853 1185.9161 -380.5666
79 744a7fce-f7b5-4ac6-aa36-064e4884fba8.jpeg sit 388.38547 206.92981 -362.54352 403.96423 187.15294 -316.87827 414.4814 188.07239 -317.02176 425.31165 188.79066 -317.1703 375.34998 186.2973 -320.66653 364.53925 186.1837 -320.34323 353.73322 186.2634 -320.08633 440.65067 213.10992 -96.84899 340.77866 209.2202 -110.22391 408.38336 241.69003 -284.88455 367.32806 240.01843 -288.87497 502.7412 377.26303 -7.502675 273.9907 370.22974 -48.515694 518.1097 542.11676 11.3148155 262.931 541.20294 -69.86015 514.0872 690.3147 -324.54785 262.90402 690.34485 -347.94843 531.4559 751.23535 -423.0907 249.1016 747.9034 -415.85037 491.77237 746.9811 -476.06488 278.14865 740.0394 -481.205 475.76074 722.0008 -351.17917 292.70944 720.5088 -374.5082 460.78772 703.2654 19.51452 322.97723 702.52997 -18.488611 532.7383 879.0445 -436.21713 232.45613 876.4391 -618.6633 484.8051 1076.2448 -82.35216 269.11496 1072.3729 -162.6516 456.82294 1088.4165 -53.84319 295.8701 1087.8203 -125.45479 522.17883 1210.8848 -245.77336 219.07738 1202.0203 -334.67337
80 75ca2e24-5000-4077-81ad-a5dce2f22cda.jpeg sit 1628.4333 1336.3588 -1316.8612 1663.4115 1268.499 -1238.1573 1692.5647 1267.8607 -1237.8182 1722.3325 1266.721 -1237.6357 1583.3218 1269.3531 -1236.0868 1552.9208 1268.2959 -1235.6511 1522.4989 1267.72 -1235.8718 1763.1707 1299.6176 -608.7758 1482.2888 1298.4242 -593.2753 1685.3743 1405.621 -1069.4601 1575.9331 1405.2139 -1063.8005 1955.543 1623.8711 -260.22433 1316.019 1599.1486 -270.2822 2066.5273 1991.9508 -594.26196 1175.2307 1944.5934 -641.8094 2177.4304 2276.0813 -1865.2816 995.4737 2181.5466 -1900.7067 2244.3372 2400.75 -2122.7139 905.79614 2286.1348 -2100.369 2180.7793 2359.9163 -2288.05 937.6972 2255.6458 -2306.2986 2135.626 2322.2458 -1962.3259 995.81525 2237.1892 -2007.7227 1794.3356 2521.826 23.752394 1413.5947 2497.4844 -20.988955 1943.8397 3067.4136 -914.39575 1187.4353 2944.7449 -1668.0708 1814.0371 3462.3665 433.8731 1374.4762 3399.4155 -42.18938 1734.7662 3486.6199 536.1932 1458.031 3429.8208 89.730774 1921.8005 3813.4175 -35.79652 1277.3191 3746.1528 -541.12744
81 79786f49-51a6-4b84-b7fa-ae08671ad3e5.jpeg sit 387.6957 159.12738 -512.3996 407.00647 136.31416 -464.8134 418.56525 137.78465 -464.9096 430.38324 139.00363 -464.8312 374.73163 134.01085 -471.5125 362.69333 133.29724 -471.4333 350.64722 132.82138 -471.62512 445.92026 164.21567 -198.03494 333.95734 155.05714 -229.07935 407.37305 197.07443 -414.54846 362.6906 193.29964 -423.17072 507.72595 325.21124 -66.10266 251.38689 316.21082 -102.384285 546.29364 504.95874 -74.4104 217.87737 496.28198 -131.65828 522.4461 639.94403 -502.35468 246.9039 635.46826 -480.04 531.38165 699.1489 -631.8697 242.82224 694.1223 -573.7724 489.94174 685.3388 -679.93555 276.13788 676.6185 -637.1439 476.61752 662.70984 -532.87836 287.3014 656.01434 -506.3641 462.8669 660.9088 22.445988 315.8939 665.0277 -21.759645 563.4391 805.9468 -490.49448 229.59328 810.0979 -633.8037 487.4653 1025.9258 -63.94384 293.28296 1017.1998 -107.20113 446.6219 1053.164 -31.842405 333.17914 1044.2374 -66.49198 562.71967 1153.0519 -241.11465 211.17328 1140.4346 -295.77448
82 7f79e6a9-0f85-4847-92ee-27e3bbcfa349.jpeg sit 397.41077 235.58505 -629.88763 408.82596 217.29129 -580.46967 418.37143 217.72556 -580.54297 428.15894 217.98813 -580.6389 381.3162 217.47925 -584.07635 370.8277 217.69211 -583.6722 360.33572 218.10428 -583.3478 439.0393 238.41354 -329.55603 344.70905 238.125 -341.04816 415.47412 265.58337 -540.1381 377.0626 265.4552 -543.3714 501.39078 388.74518 -198.50139 272.38852 383.67346 -240.1275 515.5654 548.4286 -140.53802 249.44676 547.2725 -222.68898 509.3721 692.74817 -470.2163 255.73254 695.24976 -492.13312 521.3743 747.76245 -574.05743 243.74272 748.36334 -577.2713 489.45255 743.8244 -636.0148 274.41794 743.3387 -640.2811 476.26257 721.4735 -502.54697 287.95517 723.124 -521.272 446.15353 663.74536 17.254433 307.66962 662.4453 -16.402224 541.45294 853.6531 -535.9142 242.31947 838.46936 -591.619 473.8721 976.517 70.39243 254.84593 1000.7234 -5.0413957 446.25894 978.32605 124.26377 264.34857 1010.83527 42.20031 497.07294 1086.8376 -60.525692 261.06482 1115.3898 -204.54648
83 81071db1-e627-4e9a-b5bd-5538ad10ed5f.jpeg sit 381.7238 339.14594 -368.3118 390.6865 319.51962 -338.44995 398.96463 319.11304 -338.4962 407.44904 318.5342 -338.522 367.20187 321.30554 -342.3647 358.05118 321.9475 -342.22754 348.92075 322.72174 -342.22507 417.40173 332.3972 -166.22485 335.55582 337.57114 -181.45987 397.55527 362.99548 -304.0951 365.38287 365.03873 -308.0851 475.56433 447.77023 -89.93579 279.03055 451.7296 -95.00439 514.74567 574.90814 -80.841705 245.34355 585.1829 -100.86474 495.68906 691.2988 -350.2081 264.5741 697.70874 -324.43436 502.41956 737.73224 -429.87875 263.98825 742.9013 -382.59644 469.1961 729.75195 -467.2217 286.5392 729.7114 -424.64664 459.55823 713.12317 -368.17752 294.64117 714.58057 -341.2041 438.61148 706.6275 8.40028 323.09265 707.0141 -7.833404 510.04855 852.70087 -363.59674 262.9221 843.158 -392.44504 453.48083 987.38403 -3.8481135 312.20245 989.41345 -26.725676 429.95157 999.3273 26.16136 337.35242 1007.0062 0.6418618 481.72754 1072.7299 -105.52865 272.1316 1074.7078 -155.02501
84 85512558-dec2-4384-b4d4-22aa2db8f6cf.jpeg sit 391.5164 224.04953 -368.77725 406.7856 200.47096 -335.8961 417.7493 201.02165 -335.95007 428.9298 201.3818 -335.7967 377.91092 199.39069 -335.28372 366.58038 198.6456 -335.14447 355.23798 198.0405 -335.04935 442.3984 219.00967 -140.41765 340.01978 213.53955 -126.55505 411.59656 251.98346 -295.07025 368.85425 249.82846 -291.5654 502.60562 349.75348 -52.21972 273.013 342.16858 -21.085903 569.65125 507.46338 -83.2711 229.8869 510.85858 -37.325317 468.05023 603.76495 -258.30618 324.8768 592.77576 -219.66293 449.0982 645.0491 -328.37036 344.31177 630.7773 -277.4716 416.38535 623.3743 -329.18463 368.37167 609.9247 -294.46008 420.13852 610.1875 -258.42935 364.8514 599.9588 -225.29802 443.96204 640.28595 -24.230589 313.2002 635.5988 25.038408 436.6608 803.8751 -406.10553 315.4794 789.4868 -454.2782 418.8208 1082.3832 -261.50946 315.44727 1067.6283 -274.1997 415.5551 1102.6824 -253.29967 320.23383 1087.7821 -263.03708 389.57977 1229.934 -461.138 326.6691 1221.576 -466.63257
85 86ef1ecc-6049-43e8-9cc6-b78b8e77b66a.jpeg sit 380.2423 264.87256 -454.88742 393.4711 244.36615 -416.1528 402.91516 244.60971 -416.25812 412.65512 244.66397 -416.32764 366.92825 244.3732 -419.7614 356.85953 244.23798 -419.44785 346.7847 244.25705 -419.16772 425.56967 262.21408 -195.53497 333.23077 260.69702 -204.0445 398.26834 291.93173 -374.07782 361.128 291.12076 -376.31912 482.28452 395.7515 -83.82228 274.5916 386.37878 -75.79888 501.27225 551.41693 -59.35965 247.42589 541.66437 -64.34865 525.8854 688.95703 -301.83545 217.47289 681.65625 -297.71277 550.38275 737.62054 -371.53427 193.26234 726.5227 -336.01437 526.886 739.27435 -430.04596 212.66647 727.5064 -410.58157 509.02606 720.8164 -330.7299 232.40353 713.3364 -329.06073 440.0228 649.2235 10.2415695 312.50345 646.9061 -9.745946 537.1854 790.0165 -497.92752 213.57793 785.6343 -575.6936 490.99503 1007.1744 -187.76924 227.43373 1004.76135 -218.06166 462.44293 1022.3755 -163.36227 245.88605 1022.1933 -188.51434 529.7818 1135.4667 -351.6345 198.09354 1128.7502 -394.0031
86 949c18f0-1895-4466-8668-3a16ae0ee0bd.jpeg sit 361.81366 382.40558 -297.42157 371.09778 367.92996 -262.48648 378.34598 368.05286 -262.53 385.80362 368.00458 -262.49405 350.31363 368.94946 -267.24146 342.4735 369.51495 -267.07248 334.63766 370.22314 -267.19058 395.59445 384.0022 -88.268616 323.52588 386.5872 -108.14429 375.93716 406.3111 -234.83336 347.24973 407.27847 -240.26883 442.5916 495.99176 -14.937802 273.43665 494.64746 -37.27826 462.89435 611.58624 -4.4173927 253.55373 609.2115 -53.180126 467.7523 707.9783 -285.59726 269.49326 710.2334 -286.55872 481.40402 748.7623 -369.69998 265.41373 752.2614 -350.60397 454.25903 741.6073 -414.2256 288.5739 742.07104 -397.69342 442.60168 725.8099 -308.8727 296.78247 728.0645 -306.785 414.22217 722.53735 11.335061 314.04733 725.365 -10.664209 492.51846 806.2873 -408.42914 259.35516 808.5254 -450.56946 461.43372 993.2327 -146.5426 290.54605 986.13525 -146.66313 438.2819 1016.7718 -129.04456 313.4556 1011.5433 -125.93221 504.0275 1076.9753 -290.46167 246.63972 1063.8292 -291.01874
87 af7c1136-b621-4449-ac16-28a4599bc6ff.jpeg sit 406.0133 159.16187 -672.2652 423.4239 138.45604 -614.89923 434.5622 139.17259 -614.96106 445.95184 139.66138 -614.9929 391.63428 138.33102 -618.7963 380.25623 138.47928 -618.7062 368.82416 138.87296 -618.7927 462.3374 165.63962 -331.2525 356.10394 163.49377 -344.70932 428.44238 195.22728 -571.6537 384.6516 194.0509 -575.92523 532.1499 348.11908 -211.8809 281.48596 330.30026 -252.14204 531.3917 574.4912 -221.56444 260.2495 533.4989 -277.9529 452.90158 717.3956 -561.09656 341.71356 695.5409 -555.45703 442.27652 774.65015 -678.0368 347.35406 761.49536 -660.672 412.32227 759.3407 -719.4878 392.7948 744.3053 -696.69904 412.35165 735.7563 -588.5419 394.99734 720.52686 -573.6985 474.45154 675.62524 11.948661 325.81094 671.68604 -11.436217 584.57074 868.13416 -549.96497 198.33243 859.87195 -674.6997 501.61026 1070.5153 2.5851915 268.0456 1049.3186 -56.819916 464.59332 1091.7532 48.329174 304.50555 1073.5262 -5.3105574 554.4792 1204.172 -176.00977 197.6168 1173.7959 -252.80391
88 b630e32a-21d6-4589-95f2-6d962be162b7.jpeg sit 384.6787 374.1333 -449.6552 395.46643 357.4958 -411.93552 403.687 357.53766 -411.96796 412.10977 357.41147 -411.95663 372.08307 358.41718 -413.5233 363.4891 358.76538 -413.26712 354.90775 359.27625 -413.13107 424.35324 373.21033 -197.94643 343.81705 375.30014 -202.29062 401.46622 397.97705 -371.6099 369.2656 398.6467 -372.70496 485.45364 493.0815 -86.4195 291.52335 491.91315 -94.27333 516.2121 619.99896 -53.602806 265.69104 617.7428 -69.57848 507.60208 734.89984 -375.69354 276.95465 739.33527 -340.70575 517.12976 780.61487 -479.62018 269.75186 783.57874 -405.9576 485.7531 775.2509 -522.99274 293.62787 776.6688 -464.55478 475.38666 756.7124 -400.77463 303.99988 760.10406 -365.46106 457.31845 739.54584 10.604684 344.42728 741.54144 -9.872224 514.22766 880.0072 -448.61066 285.01636 880.8412 -551.4202 453.84787 1045.3114 -58.47896 320.25247 1047.477 -125.33641 429.3064 1054.4839 -26.309423 338.67648 1059.6223 -90.38892 474.32468 1154.6233 -204.80867 300.6226 1153.5143 -291.5725
89 bb3a260c-de2a-4c32-ac24-95ce3f5a8fa4.jpeg sit 378.65317 223.11615 -301.57758 393.04156 204.35254 -255.12283 403.1171 205.2432 -255.14484 413.52594 205.92323 -255.11478 365.74478 203.49472 -261.56186 355.20782 203.24704 -261.28247 344.69867 203.17741 -261.03415 428.0446 228.78258 -33.385593 332.16992 224.79149 -59.302666 399.12738 254.65874 -222.82889 358.6466 252.66986 -230.3011 495.3096 378.71606 51.148857 267.35095 366.62317 -3.8899765 512.7524 546.80273 90.291824 239.28192 533.0941 -5.289145 515.174 696.84375 -182.50044 254.14986 691.3063 -232.16986 534.57776 759.4854 -274.00983 240.0726 752.7442 -280.67038 497.403 758.6496 -321.7784 278.60046 747.5978 -341.0974 480.1463 734.22 -207.7252 291.78598 724.75336 -254.28737 464.36758 677.2976 28.149424 326.98975 676.91675 -27.473524 546.6288 834.1134 -429.18115 235.23097 831.02527 -634.2499 456.21432 1086.613 -162.97708 293.297 1085.0884 -280.07587 419.51514 1097.0269 -138.91734 317.71176 1093.6571 -247.01015 490.84048 1258.6202 -302.4585 279.66202 1260.3661 -441.7682
90 bfa0d47b-2937-46ea-b347-38136d319ace.jpeg sit 366.51068 237.15533 -402.8559 382.72308 209.43748 -362.8555 394.57452 209.1941 -362.8596 406.74408 208.75705 -362.80893 351.10864 210.32562 -365.37918 338.90787 210.2431 -365.1788 326.7277 210.34584 -365.0385 424.95752 226.84674 -126.139755 313.4407 227.9271 -132.6761 390.47964 267.2401 -314.65112 345.2025 267.5394 -316.42767 494.8084 372.32175 -5.2995477 246.8455 371.77625 -29.657944 504.86728 545.66943 27.869625 225.2595 558.53796 -28.346405 493.6812 698.659 -294.9327 219.74158 711.045 -317.8658 510.91254 762.62256 -389.1957 202.08171 769.6626 -377.01688 473.5042 760.60474 -443.0873 232.80017 762.83014 -447.53265 456.22684 736.434 -322.89334 251.54176 742.72095 -345.8862 438.73746 700.3073 17.913296 291.57367 698.44116 -16.991392 530.6564 872.3691 -477.64606 194.98935 872.5876 -608.5643 426.54196 1091.3575 -133.38823 282.63162 1100.2745 -200.37376 387.709 1103.6284 -103.84323 316.69632 1115.8809 -164.6294 461.76602 1244.5906 -270.72238 245.11867 1250.3314 -358.61368
91 c298683c-6d01-4531-931a-2065607f033b.jpeg sit 370.80798 264.78485 -426.82828 388.03503 241.85162 -390.7488 399.28564 242.63832 -390.78876 410.81726 243.21945 -390.7633 357.70807 240.93701 -391.068 346.35666 240.50667 -390.85782 335.01196 240.24353 -390.71146 427.8042 265.15955 -174.58496 321.89972 260.23926 -169.95401 392.0885 297.78506 -346.00208 349.39923 295.6349 -344.78827 493.9587 414.5636 -64.09226 253.3739 405.6811 -72.28152 512.36847 577.8879 -84.95826 225.5206 574.0955 -83.34551 503.98514 707.8325 -472.12073 237.49866 712.2399 -405.21384 518.1916 767.39294 -581.94543 227.507 772.39856 -476.36172 482.75797 759.51575 -632.0323 259.94943 760.6586 -541.61664 466.57623 738.0459 -500.2917 274.86996 739.0936 -433.16187 445.86914 724.0397 5.6470075 303.33908 723.41406 -4.7567945 544.9308 892.58575 -405.67526 176.19789 891.10266 -562.5706 459.86954 1079.8181 -27.168373 288.69992 1081.8799 -102.32713 428.00726 1084.4973 5.470771 328.02277 1086.7555 -58.474007 475.646 1234.6023 -162.98596 253.22495 1236.4312 -228.68163
92 c6df439f-008e-4e90-8f17-c00336eace83.jpeg sit 371.33438 191.14413 -432.19022 389.60254 166.80305 -389.3217 401.74142 167.92636 -389.30396 414.2147 168.79956 -389.12543 357.18414 164.9863 -392.60773 344.4654 164.19823 -392.5001 331.76004 163.56392 -392.48358 429.44818 193.60065 -169.52916 314.60242 185.34698 -177.78706 392.84552 226.8557 -352.74768 345.33878 223.50949 -354.62866 493.27768 350.79315 -74.709496 233.0028 341.0672 -105.00281 522.2651 534.28894 -47.22616 193.43881 535.1883 -120.03545 530.1292 709.80457 -271.9542 195.67448 715.4586 -328.22183 551.12866 774.512 -344.1168 176.51363 778.8984 -383.14288 513.08923 774.07404 -399.7868 217.84077 777.5347 -439.6395 493.7986 749.7721 -298.37872 236.48889 754.57117 -350.0355 436.84268 670.7447 12.745606 283.69128 668.0453 -11.999661 515.562 866.9671 -358.01062 187.15494 847.84045 -566.6172 481.83075 1119.4808 -63.617733 230.1003 1097.2634 -150.09459 454.53513 1139.5143 -42.79846 261.66357 1118.342 -115.8602 524.21497 1275.158 -243.63762 172.76791 1249.352 -314.32834
93 ca26fd77-f5a0-436c-bae6-c6ce9ef2594c.jpeg sit 379.23477 186.04901 -553.5127 397.1055 160.80142 -509.2236 408.82993 161.72516 -509.22522 420.80478 162.4104 -509.02225 365.4823 159.0625 -513.465 353.278 158.25081 -513.3237 341.0887 157.60709 -513.3251 436.57974 183.7125 -255.518 324.64587 176.59253 -272.30362 400.4883 218.87794 -460.22223 354.4923 215.82527 -464.80145 504.50885 332.16705 -132.58965 246.12148 324.72733 -137.01782 558.903 511.95264 -104.658394 201.52205 514.7699 -145.88501 521.60126 667.254 -398.10458 240.01462 671.4286 -408.3161 527.516 730.0779 -509.7272 235.78224 730.8539 -478.93875 482.24127 723.90106 -542.32587 272.96512 717.9347 -528.9102 469.59082 699.0596 -417.49957 282.85767 694.66724 -427.4792 456.4864 629.15686 11.886659 313.05786 631.1271 -11.184102 531.4326 779.5184 -502.17694 241.52228 805.19965 -571.5431 464.47098 1031.2891 -174.61543 286.30115 1025.2578 -126.02702 431.85864 1046.0806 -147.48987 312.0646 1040.1421 -88.25466 494.63586 1198.4701 -357.26407 247.11385 1180.9741 -295.83902
94 d12d6c13-7956-4744-95e1-c985dc9b56ae.jpeg sit 402.04288 188.31757 -363.4021 415.56 167.4263 -323.70807 426.23834 167.92908 -323.73303 437.21722 168.23425 -323.64706 386.93204 167.49687 -326.1925 375.73093 167.65778 -326.001 364.51282 167.9934 -326.04648 451.83936 191.17566 -129.52818 350.79868 190.48058 -135.34589 423.40262 221.46935 -294.7724 381.2991 221.22739 -296.18088 522.5512 356.7303 -58.900818 283.26358 352.0075 -70.93505 534.88275 531.491 -19.393646 256.69876 526.67786 -77.43631 509.25095 680.4196 -286.61325 268.4715 677.853 -314.76752 516.78394 742.9114 -377.9808 258.31064 737.8082 -375.22992 476.85916 734.33154 -420.03027 291.08862 729.23816 -431.03168 464.33084 709.7129 -305.89404 304.99548 707.9425 -336.8882 477.07263 688.4124 14.630445 335.3896 683.5031 -13.534476 522.93726 897.04346 -352.7075 261.19067 848.1239 -590.0055 459.93405 1065.0981 45.26821 305.48926 1046.2827 -133.52408 434.8228 1067.9357 79.335266 322.0375 1053.6956 -95.52608 475.81628 1199.1895 -81.59203 305.64716 1188.4917 -300.10983
95 dad37701-0140-4c47-93ed-00aa4440faa9.jpeg sit 404.07443 182.53029 -601.69507 417.62433 157.6897 -564.61755 428.6785 158.00525 -564.64746 440.03265 158.1311 -564.53705 387.2185 157.36046 -567.5306 375.16507 156.93738 -567.3274 363.0996 156.66125 -567.1308 451.36725 177.5621 -340.41382 345.87054 174.6746 -346.7907 423.87338 213.41061 -516.7911 380.18915 212.1536 -518.3415 518.9416 331.25153 -226.13298 273.3284 330.76035 -217.91011 535.18097 520.8373 -164.37453 244.38177 525.91235 -194.60243 516.77496 692.6953 -391.22977 257.06824 693.0578 -408.1475 524.0484 753.3998 -471.5993 247.74756 754.9738 -471.63126 493.95758 749.62225 -525.0021 280.88153 746.5424 -519.60596 480.6414 726.3291 -417.18213 293.6408 722.7515 -427.83643 468.28787 645.02386 -12.190959 327.91086 642.85156 12.802048 524.6323 878.4413 -422.40372 242.25583 843.00183 -486.81708 418.28183 1049.1799 20.837042 321.74515 1049.9908 -43.214935 393.70215 1045.3401 60.136204 347.26984 1057.2247 -5.227859 397.96915 1198.203 -111.360756 315.16693 1198.218 -212.26056
96 e8b7f595-ca6c-499f-84ed-9c32814ebd06.jpeg sit 373.37518 215.79109 -459.77136 386.1 194.89307 -412.20554 396.27408 194.51678 -412.29004 406.71204 193.95047 -412.09982 358.03214 197.04185 -413.30838 347.36627 197.80902 -413.11276 336.69254 198.72635 -413.1377 421.81796 213.98029 -171.51495 324.4476 219.57535 -172.36656 395.5676 244.05927 -374.735 354.77087 246.20654 -374.76486 482.4303 365.85327 -47.232616 265.95505 361.8782 -58.626266 491.3924 541.7542 -4.2763815 240.21716 532.9351 -64.96278 464.93698 669.0359 -329.43842 289.2278 661.5701 -355.0829 468.9457 720.12695 -441.7427 292.9858 715.40155 -437.28488 441.9747 709.65015 -485.4602 323.57523 698.1769 -487.68207 433.4039 688.87427 -355.90607 328.2887 678.07007 -378.0526 430.83026 637.4373 11.7768 303.03583 635.4151 -11.035817 484.32138 790.1365 -460.89523 271.51688 775.02026 -629.5442 451.77252 1039.586 -146.57532 294.80905 1031.2594 -299.8646 427.56897 1057.3752 -125.36124 307.18008 1051.796 -275.58456 477.32092 1186.7592 -369.8479 298.64136 1176.8005 -538.0126
97 eff9f99b-e786-4d13-87e7-0530d285c7b1.jpeg sit 365.93005 379.0464 -406.45 377.36093 362.0794 -379.03088 385.42386 362.3502 -379.04938 393.6938 362.4443 -379.04205 354.42426 362.25458 -380.1763 345.84683 362.24994 -380.04056 337.2759 362.39407 -379.90585 404.02335 379.0019 -208.27473 325.46957 377.71866 -206.37427 380.21674 404.03308 -341.85468 349.58197 403.61417 -341.1531 454.42682 489.94836 -119.43925 272.44363 490.44342 -111.36653 487.4226 627.82965 -114.599365 247.47212 630.6696 -108.22397 492.21686 749.8512 -353.19653 231.10619 744.43604 -319.98312 505.50592 791.1091 -424.91946 215.62923 781.9575 -368.63947 479.06085 786.8733 -468.65872 235.8914 780.0952 -419.61185 466.70798 773.41376 -375.964 251.78947 769.0366 -342.40363 416.6954 728.97217 -2.7357638 309.87595 729.1206 3.0765715 490.83008 866.446 -348.02573 209.20969 859.3268 -406.75568 427.76233 1002.93097 -22.778606 306.83417 1008.1973 -64.15417 400.14307 1018.29034 3.0449724 344.64465 1027.4534 -36.244686 465.1656 1090.3785 -144.3239 252.85599 1092.7316 -180.05197
98 f04088a1-9fd1-44d6-b59a-65502aaf1408.jpeg sit 406.0133 159.16187 -672.2652 423.4239 138.45604 -614.89923 434.5622 139.17259 -614.96106 445.95184 139.66138 -614.9929 391.63428 138.33102 -618.7963 380.25623 138.47928 -618.7062 368.82416 138.87296 -618.7927 462.3374 165.63962 -331.2525 356.10394 163.49377 -344.70932 428.44238 195.22728 -571.6537 384.6516 194.0509 -575.92523 532.1499 348.11908 -211.8809 281.48596 330.30026 -252.14204 531.3917 574.4912 -221.56444 260.2495 533.4989 -277.9529 452.90158 717.3956 -561.09656 341.71356 695.5409 -555.45703 442.27652 774.65015 -678.0368 347.35406 761.49536 -660.672 412.32227 759.3407 -719.4878 392.7948 744.3053 -696.69904 412.35165 735.7563 -588.5419 394.99734 720.52686 -573.6985 474.45154 675.62524 11.948661 325.81094 671.68604 -11.436217 584.57074 868.13416 -549.96497 198.33243 859.87195 -674.6997 501.61026 1070.5153 2.5851915 268.0456 1049.3186 -56.819916 464.59332 1091.7532 48.329174 304.50555 1073.5262 -5.3105574 554.4792 1204.172 -176.00977 197.6168 1173.7959 -252.80391
99 f5169d21-b83c-4ec5-818f-ca9f285eb5ce.jpeg sit 359.01715 173.49109 -489.26834 372.85706 149.51596 -439.2572 384.3615 148.99223 -439.41528 396.17218 148.22891 -439.32172 342.0345 152.3959 -436.1884 330.2739 153.41214 -435.83588 318.53012 154.63596 -435.67847 415.0016 170.63107 -183.96674 306.7373 178.41617 -163.3888 385.17093 205.32132 -399.47897 339.53864 208.22803 -392.79913 492.6491 340.8041 -46.46174 243.25833 340.86523 -42.988304 530.5822 530.32776 -29.72486 213.59465 526.1843 -49.81377 496.87524 680.11993 -388.51617 237.64839 672.27527 -418.33533 502.47705 741.7935 -511.9608 232.87433 737.0386 -515.07355 460.0403 734.3857 -553.04254 270.45645 718.0298 -579.2626 448.56628 710.723 -411.99777 281.93283 696.0359 -446.60733 429.791 665.40894 13.509525 286.11835 669.5035 -12.692025 500.44077 790.38135 -572.6284 244.6727 794.8284 -731.0938 454.42557 1080.7078 -206.7413 272.9176 1090.2883 -332.55453 427.60385 1091.2433 -175.46815 285.59064 1103.1078 -297.74533 474.5894 1273.5881 -414.30374 289.7227 1281.1669 -564.006
100 fb80b9e5-261f-40d4-a4e3-2bb3d596d938.jpeg sit 417.4476 209.55197 -405.69818 432.80112 189.26105 -358.86563 443.57376 190.28232 -358.92865 454.65854 191.0965 -358.96973 403.43484 188.12111 -361.24567 392.2097 187.82565 -360.9362 381.0129 187.71594 -360.75714 468.8292 214.85431 -125.33277 366.29623 209.94415 -129.29266 437.16998 242.82382 -323.1242 394.60147 240.61928 -324.27872 531.03174 374.84827 -42.14414 295.1226 360.57803 -25.326107 557.5067 544.5326 -14.596463 257.06522 529.41473 -16.431646 566.03375 695.55237 -310.00726 242.17522 685.6507 -301.791 585.2523 755.62744 -406.2721 222.30617 743.4193 -362.62128 548.5091 752.51807 -456.8352 254.21382 740.3745 -434.35895 532.0254 730.06586 -335.35806 271.98047 721.12665 -330.08694 485.1983 690.2805 7.6970553 344.46545 687.4793 -6.7887073 579.86346 801.72266 -549.139 241.11841 789.52075 -659.5387 493.127 1002.5705 -156.57678 293.16425 1011.3085 -242.94637 465.34528 1002.7217 -118.776436 317.78903 1020.4019 -203.83076 489.99084 1161.9503 -303.13205 271.10895 1162.6609 -411.29276
101 fb8859d6-eaba-4185-8418-26ed48a30db6.jpeg sit 396.99692 245.4586 -489.63605 411.05905 222.81696 -446.8902 421.6049 223.05087 -446.95087 432.4096 223.0809 -446.9837 381.6692 223.28564 -450.66876 370.5996 223.40569 -450.31567 359.53964 223.7265 -450.1519 447.14365 242.72255 -195.78261 344.73923 242.85388 -210.58627 417.25302 275.92685 -396.76056 376.1291 275.8866 -400.9335 516.682 387.87933 -76.793205 278.02466 387.64508 -95.41232 551.2809 547.2216 -82.15584 249.87433 550.782 -132.92674 542.0243 689.3716 -486.4466 256.9096 692.60693 -490.3018 556.8365 748.0909 -604.7251 244.64903 748.87146 -573.6651 516.6084 742.778 -654.3224 275.55725 740.0781 -639.29144 502.08154 720.5179 -515.10156 290.79022 721.0394 -519.0094 477.06696 702.1138 14.37734 334.8102 703.17773 -13.412461 576.98926 871.5216 -557.33716 233.80708 859.36755 -675.3098 487.6913 1050.4601 -66.35637 310.07114 1054.026 -161.0899 453.85596 1059.3413 -22.631863 339.49377 1066.7168 -116.664795 519.478 1180.6182 -197.31705 284.18094 1184.8044 -332.48383
102 fbb68ea8-865a-4a79-b606-ca8b479a2c88.jpeg sit 361.80786 320.9165 -320.30823 374.58713 302.49554 -288.90057 383.59955 303.17886 -288.9135 392.84613 303.69293 -288.78882 350.4436 301.75583 -288.1232 341.05753 301.441 -287.92654 331.68314 301.26694 -287.79617 404.28906 322.02176 -124.93909 319.2166 318.127 -115.0346 378.47592 347.6787 -260.81696 342.69385 346.08777 -257.83807 458.02353 450.9405 -74.87076 257.9484 444.3902 -40.441345 470.34192 592.07446 -60.772243 240.70358 592.3443 -48.39327 446.38974 712.7406 -245.10576 264.18192 699.902 -229.57095 453.62454 763.2003 -323.46347 259.53326 744.78705 -283.18115 418.50168 756.7009 -352.87024 286.4945 735.23364 -319.12534 408.66672 738.5121 -258.68695 294.4388 720.5146 -244.37097 410.25305 704.18097 -9.55984 299.99335 702.3084 10.282098 426.6322 791.0115 -465.8383 283.9202 785.51483 -462.91187 393.81424 1017.0491 -215.7117 322.78204 1018.70935 -235.0395 385.50885 1030.0682 -194.57158 336.56027 1034.9309 -218.16432 375.4271 1141.9553 -358.7341 329.88107 1143.7279 -391.76324
103 fc826f65-2e25-4338-a7e5-fc5c6ca5d4c9.jpeg sit 379.07434 182.37384 -426.73367 393.71378 160.54497 -384.07245 404.35547 160.49126 -384.26935 415.35855 160.18005 -384.48016 362.54187 162.18712 -388.79425 351.1648 162.85042 -388.3538 339.8615 163.68991 -388.04428 430.292 182.21489 -154.84259 324.42957 186.07475 -167.94629 398.78195 216.36269 -344.0034 358.2887 217.40344 -347.65063 499.658 335.44623 -37.516243 259.12885 336.20502 -53.12708 540.9611 512.42053 -17.682583 200.6434 514.4596 -78.312996 578.26776 689.167 -238.72032 148.81937 668.19006 -282.27365 609.9092 743.79425 -307.1347 116.45542 716.6023 -319.4282 579.9142 748.4757 -371.36407 144.9084 715.57184 -388.2267 558.2028 731.8808 -270.0567 167.99423 702.7379 -308.81766 461.2181 646.895 3.2258654 315.79083 647.0426 -2.456012 574.31854 736.8189 -582.5034 154.5504 731.2568 -584.0172 476.90485 1010.55164 -280.86148 184.46461 1023.3967 -272.29935 431.54633 1044.9072 -256.91315 226.00674 1062.3286 -250.27663 548.26483 1144.3627 -428.3166 85.67583 1163.3792 -443.91632
104 037c9e49-3a1a-4312-b253-026f2c3ffcf3.jpeg face_left 483.29144 159.53171 -316.8497 481.72644 140.44498 -287.8286 486.73645 140.80661 -287.72046 492.1518 141.03275 -287.85352 463.39816 139.68971 -313.73395 454.4085 139.23149 -313.8009 445.40054 138.93997 -313.8576 480.28812 156.6085 -153.7912 415.95358 155.38422 -262.55853 484.73013 189.55426 -266.74884 458.3524 188.25668 -298.20032 523.45667 330.48016 -89.87536 318.62982 315.45673 -221.7639 537.5997 519.0536 -11.939924 284.5098 512.16425 -195.90942 551.246 683.30475 -75.57402 272.25586 677.0725 -227.05376 560.2571 730.13904 -83.48811 255.99956 723.99603 -233.68059 554.90533 736.3739 -140.76234 275.87198 729.4568 -280.3462 540.8097 719.8235 -99.52995 293.92685 711.78284 -241.83876 468.21735 658.0527 37.45734 356.19257 652.7766 -37.09309 444.9313 884.18005 188.58041 356.27213 874.51843 55.11309 420.38248 1062.2917 433.43527 362.80942 1060.2772 351.41544 399.8847 1080.8148 447.90692 365.77902 1079.3191 369.58548 456.202 1152.8021 307.7846 366.0386 1156.6982 211.30908
105 0d5a7071-de44-4fa4-bc62-1e43513e4539.jpeg face_left 509.5532 145.24768 -343.5382 505.0749 112.95242 -306.78854 510.18954 113.307076 -306.80453 515.80255 113.554306 -307.00272 483.7467 109.59526 -358.15237 471.3098 106.91582 -358.2613 458.82993 104.41212 -358.23062 484.4884 119.077835 -110.186775 408.07635 108.89149 -337.10153 499.17163 174.47754 -265.14908 468.33353 169.34781 -330.57416 519.0733 294.6954 -37.105156 249.79314 267.71027 -255.31978 548.9091 495.33832 101.05901 176.13313 478.04993 -255.38141 556.2802 676.5496 -114.943794 164.70944 659.89496 -426.8082 562.3988 742.71375 -175.28409 148.90262 727.2207 -473.95135 543.6322 740.9722 -251.26277 183.1996 721.4409 -535.19904 525.536 714.1692 -148.66455 203.65973 694.3564 -447.9265 450.2608 693.5946 48.188217 301.11874 693.22516 -47.461826 457.17172 929.5835 238.56343 268.0536 940.0281 36.837418 430.7129 1096.7273 630.6784 284.43634 1090.1501 592.21265 408.4783 1107.654 664.6641 297.61072 1101.9354 640.9819 460.41052 1227.0238 530.5255 254.73386 1215.1101 499.69873
106 0d7df90c-ed37-498c-b0c2-3b3e0e5c0b1b.jpeg face_left 431.16678 135.7795 -349.90775 434.64197 114.690895 -309.58414 441.94452 115.78789 -309.3886 449.68826 116.69193 -309.3943 410.2201 111.75251 -336.2336 398.83792 110.32719 -336.2358 387.44202 109.05487 -336.20932 438.90384 133.59189 -120.968765 355.17654 124.63867 -233.6134 434.57996 169.31076 -280.8668 400.27008 165.01312 -313.4408 489.03113 310.5069 -39.6847 250.87148 297.96332 -182.56793 507.98468 498.60724 48.933094 239.29364 506.65848 -170.51157 514.5786 672.70154 -109.72468 224.66548 693.153 -270.6747 527.70544 732.2845 -150.50545 205.74959 750.5701 -291.36847 503.3626 737.9078 -215.18307 229.7521 759.26306 -351.7759 486.0006 715.13794 -135.77608 250.42831 737.15515 -291.7148 447.83444 665.19196 35.311783 310.18423 666.3409 -34.918457 454.4574 916.5902 78.3324 291.02847 915.8518 -81.9142 431.76294 1114.4308 306.20065 327.91785 1099.8796 270.74197 412.03583 1126.3337 319.82745 338.7269 1109.4636 294.91437 453.82407 1250.7224 146.61401 332.66345 1238.731 119.23096
107 0e548986-dc39-4bdf-bc43-ddbd64a5d097.jpeg face_left 441.308 192.41849 -349.64383 449.30405 167.10193 -314.7013 458.74448 168.2077 -314.58307 468.556 169.11713 -314.58087 422.22263 164.38828 -336.04825 409.74527 163.10498 -336.03662 397.23206 162.00737 -335.99478 465.23868 189.12453 -141.02881 368.6792 180.26172 -230.8573 451.22845 226.15326 -284.9027 410.1952 222.25034 -311.01575 505.3146 362.70523 -74.68973 266.88687 347.7139 -212.91592 518.0513 549.2123 -10.632953 234.56253 553.4254 -226.32564 519.29675 726.58264 -166.58817 250.15424 740.58716 -311.67783 529.2197 788.7274 -206.60869 241.74463 804.4442 -343.29407 504.7187 790.73804 -262.46866 275.62723 801.6517 -390.72287 486.91208 767.6682 -189.9717 290.23544 777.4513 -327.05316 442.62534 743.8312 44.50458 313.92166 743.5339 -43.60596 440.9372 981.72906 118.073715 300.4996 981.74384 -26.293846 415.25247 1160.8478 314.4892 322.12292 1153.444 269.4459 392.37543 1176.6609 326.15912 327.96265 1167.9675 287.1998 459.8013 1282.7435 181.40198 323.70917 1278.9133 124.245705
108 19a4ee1f-97d6-42e7-9b95-51d15edd9454.jpeg face_left 425.2245 244.44821 -388.19632 427.7377 228.68945 -351.60077 433.3518 230.04974 -351.44214 439.3086 231.25888 -351.40448 408.55695 225.17514 -377.46136 399.54352 223.61977 -377.44193 390.5029 222.16571 -377.4542 427.84216 244.17377 -158.23718 362.0389 233.01868 -273.4713 425.9526 269.4194 -314.54034 398.6787 264.46927 -347.8928 454.70544 374.32 -54.425125 273.13144 363.9668 -211.96362 478.78934 530.8384 47.397934 257.35907 540.03894 -206.01588 490.43304 681.41833 -106.59635 292.77505 690.14166 -289.75916 502.40552 729.8528 -153.82349 292.959 739.79407 -322.0138 483.18494 733.56213 -207.10796 316.71167 735.8445 -358.64606 469.44772 716.18835 -131.03432 321.2837 715.52527 -300.96942 425.10352 672.7865 49.717106 319.9366 677.27783 -49.650635 430.14218 891.7362 94.18614 324.60587 909.87683 -46.775204 408.16452 1066.2234 311.0437 329.7058 1089.5789 226.1925 389.43436 1083.9202 324.53668 331.24057 1107.9945 242.97351 440.8167 1162.106 180.70169 338.05875 1189.4263 70.5578
109 1dafefdf-44ab-4753-9fd8-ffe7c5f8ae57.jpeg face_left 436.65085 194.55066 -294.7636 445.27365 173.88062 -264.89133 453.0742 175.22885 -264.91998 461.20636 176.43501 -264.96396 421.8113 170.57278 -280.38254 411.49683 169.06589 -280.60236 401.1862 167.62042 -280.88843 454.90427 191.55014 -129.82881 375.22165 179.99435 -183.77312 441.10168 223.4349 -242.69531 407.9515 218.57414 -258.02072 479.3286 343.8005 -92.31268 283.41522 331.40405 -159.0338 499.2851 526.73914 -39.839024 257.9895 535.80896 -158.09067 505.55374 694.9468 -99.86861 246.60027 699.3149 -162.62924 513.50726 746.62585 -127.579666 233.5978 748.4545 -175.72206 493.15063 744.3832 -170.3287 252.95544 751.24646 -213.78674 479.63858 726.3115 -117.44546 268.71423 735.88403 -175.50108 418.07486 672.8224 2.9816484 312.96545 669.3074 -2.4031394 404.29517 898.6679 47.345764 305.07108 896.37573 40.618385 394.056 1083.7003 193.43413 295.77744 1080.6715 216.96866 390.79922 1101.6333 199.99211 293.3486 1102.5571 223.97685 381.486 1163.7853 63.695652 299.35645 1159.0374 78.12997
110 2473c791-3388-4600-8034-9917102e2297.jpeg face_left 473.43784 210.30334 -370.58218 472.7328 191.36772 -331.13464 477.54758 192.84467 -331.02554 482.81418 194.16699 -331.07184 453.87973 187.19917 -365.54922 444.09402 185.15094 -365.47794 434.26105 183.25058 -365.3385 463.15656 208.0677 -143.1249 397.39062 195.20764 -293.8322 468.7768 240.91022 -300.6195 441.37375 234.75436 -344.51468 502.54086 380.26837 -83.72671 274.80936 360.52005 -215.07791 522.6709 572.9519 17.841547 255.68472 566.93396 -199.23442 525.27606 762.16016 -148.52786 264.53738 753.3328 -352.8293 533.4085 824.7192 -199.1897 254.8841 817.7883 -401.7627 511.0765 830.51056 -266.59985 283.09686 818.4118 -457.5068 495.64554 804.47723 -175.86691 297.56552 791.06024 -373.84702 458.31323 736.5866 30.098274 327.93668 739.0542 -29.327219 467.2987 987.6725 124.91219 317.05084 990.8678 33.601627 464.92664 1187.0298 402.3242 339.29492 1168.8662 418.73874 450.3807 1203.2183 421.55313 350.08133 1180.9011 445.86652 487.30948 1308.7499 249.8079 333.6197 1295.1074 256.74063
111 2605db41-6a20-4337-9a60-ef01e4bd9d37.jpeg face_left 464.32596 221.51695 -278.12662 459.28802 200.34573 -235.82979 461.74756 200.43404 -235.71036 464.65955 200.37122 -235.69815 443.95932 198.36823 -284.98972 435.1435 196.63144 -284.9779 426.31186 194.99985 -285.00058 438.0695 203.71132 -27.38339 386.92218 198.15254 -245.66618 453.54456 244.39987 -198.13274 434.2369 241.26106 -261.58054 463.40384 350.0906 90.48982 264.18356 329.819 -213.63252 494.0893 515.2993 218.39503 234.07076 507.23077 -225.86687 502.91766 689.66455 -16.76503 230.29097 690.8054 -383.70364 513.9085 747.6242 -69.81321 216.86642 750.4959 -436.52243 490.21332 751.6986 -149.12631 241.86032 754.3716 -484.60522 476.81848 728.5125 -52.251728 256.09586 730.1419 -401.71362 425.77652 686.62024 75.92338 303.3103 685.79346 -75.47928 429.7656 939.2854 86.210106 293.63144 942.4671 -93.008385 424.26254 1150.3174 328.91223 300.9191 1135.8743 264.09747 411.14456 1168.5385 342.3332 308.93973 1149.5247 287.7509 445.85614 1261.9521 142.29199 293.59506 1256.2621 60.66204
112 26177134-3b4b-4526-b07b-5b22ffaeeb04.jpeg face_left 431.98926 195.07462 -562.77893 430.01495 175.24167 -518.9818 434.48447 175.66394 -518.79944 439.34348 175.90137 -518.7609 409.48782 173.36998 -558.2647 399.52594 172.1037 -558.2459 389.5623 170.97461 -558.20105 418.756 184.19644 -251.9016 351.90637 178.4418 -425.46542 426.9775 219.84047 -458.60623 402.02954 216.68587 -509.03564 463.60107 329.73242 -104.77513 240.23723 321.71912 -292.11588 504.58157 512.2043 14.231685 223.35835 515.8593 -260.88306 517.50037 691.8568 -226.28697 192.68922 695.50635 -435.86563 529.791 748.19366 -286.66016 174.61505 748.1772 -473.2421 510.5262 755.26807 -370.9873 184.76247 758.7749 -562.1997 495.0625 735.0184 -264.4807 205.06969 739.4355 -471.1219 431.5 667.8464 48.64967 297.8657 671.8808 -48.47136 444.98788 924.92236 92.362114 278.95386 938.56104 -82.66806 436.5542 1139.438 406.83536 290.3023 1146.1895 308.96423 418.83737 1165.081 427.33774 305.86197 1168.2585 335.012 478.2773 1241.9875 205.66864 260.38348 1257.0469 87.23128
113 301bf4fd-ebbc-43e0-87c8-6085334cdd4e.jpeg face_left 461.1903 232.35054 -235.422 454.66083 209.98737 -193.79466 457.74374 209.7662 -193.75647 461.18585 209.36882 -193.76707 437.66068 209.35504 -247.9692 427.37122 208.26988 -247.971 417.06436 207.31555 -247.9535 431.6956 216.95895 -12.125351 373.33212 216.16794 -248.64162 450.2665 258.91864 -165.3677 427.38748 257.39108 -234.08246 455.4527 370.65167 53.21278 253.19745 370.12335 -213.86832 484.37994 551.723 180.17696 237.42438 579.6183 -235.35455 512.0718 718.4097 -17.72524 237.63844 755.03186 -321.42343 528.7684 773.6282 -66.127495 226.11066 811.3695 -346.40482 510.61105 775.6353 -141.69061 246.37653 808.9639 -397.9503 492.68674 753.97797 -53.633408 262.12122 786.1699 -337.53647 440.76834 726.90796 54.644596 317.80664 732.86194 -54.158825 460.1561 973.76 113.7625 297.47513 980.6483 -15.8496895 447.04596 1177.7513 351.84805 298.9005 1178.1423 320.20087 424.79514 1205.7278 365.08118 316.6008 1205.8552 339.56448 504.6129 1276.1155 212.18593 241.57841 1279.3195 150.9355
114 31fb1c80-4a56-49c9-a4f2-44349af20fd3.jpeg face_left 442.48914 286.36658 -259.64197 436.43295 266.48602 -231.46338 439.9151 266.53296 -231.37877 443.70444 266.43948 -231.37132 421.37674 265.12543 -266.89005 413.0963 264.05078 -266.98837 404.7942 263.0274 -267.0724 423.26865 272.07672 -78.85599 369.92868 269.67007 -234.10132 437.1126 307.41364 -198.69 416.2591 305.73462 -243.98633 453.9862 387.97937 -4.6201386 276.87787 385.2965 -179.62326 486.58545 536.4495 55.25968 257.39252 551.3012 -205.27954 427.07446 649.1693 -93.25021 346.5699 668.3991 -266.35825 414.65652 692.4903 -149.84084 364.0601 711.3547 -302.2384 391.07697 683.1588 -173.35709 383.54526 699.13934 -315.66934 389.90997 666.5817 -106.32758 378.79684 682.4133 -267.44608 434.44382 675.416 41.594933 325.17722 679.5025 -41.5896 461.85815 892.511 35.864414 304.1901 895.1073 -35.662502 460.52087 1071.4358 219.19678 285.98862 1067.9824 209.72656 443.74255 1088.7664 230.29033 289.18277 1087.0 223.57898 491.96304 1163.1416 84.50584 270.28497 1159.3522 54.27686
115 382796d4-9d37-4894-bf57-f6eabe0492d9.jpeg face_left 431.98926 195.07462 -562.77893 430.01495 175.24167 -518.9818 434.48447 175.66394 -518.79944 439.34348 175.90137 -518.7609 409.48782 173.36998 -558.2647 399.52594 172.1037 -558.2459 389.5623 170.97461 -558.20105 418.756 184.19644 -251.9016 351.90637 178.4418 -425.46542 426.9775 219.84047 -458.60623 402.02954 216.68587 -509.03564 463.60107 329.73242 -104.77513 240.23723 321.71912 -292.11588 504.58157 512.2043 14.231685 223.35835 515.8593 -260.88306 517.50037 691.8568 -226.28697 192.68922 695.50635 -435.86563 529.791 748.19366 -286.66016 174.61505 748.1772 -473.2421 510.5262 755.26807 -370.9873 184.76247 758.7749 -562.1997 495.0625 735.0184 -264.4807 205.06969 739.4355 -471.1219 431.5 667.8464 48.64967 297.8657 671.8808 -48.47136 444.98788 924.92236 92.362114 278.95386 938.56104 -82.66806 436.5542 1139.438 406.83536 290.3023 1146.1895 308.96423 418.83737 1165.081 427.33774 305.86197 1168.2585 335.012 478.2773 1241.9875 205.66864 260.38348 1257.0469 87.23128
116 38c16226-c16a-43f6-83f6-1bbd1c12e9a4.jpeg face_left 451.4646 227.39072 -342.12894 447.82483 209.20316 -308.92773 450.76535 209.73724 -308.81082 454.07425 210.099 -308.78018 432.63846 207.12135 -348.23425 424.18668 205.73407 -348.29187 415.71613 204.47406 -348.4084 432.75623 217.51167 -135.81134 380.86987 211.35571 -306.6904 443.9254 251.53629 -275.86618 424.2029 248.15463 -325.0283 466.34378 356.56604 -45.74703 273.8864 347.49847 -242.02847 498.82925 515.59644 61.835823 256.3164 525.51263 -230.75523 516.4821 668.2168 -101.29912 250.98041 676.4053 -345.6253 528.83276 716.189 -139.10796 237.02275 724.6017 -383.70975 514.94183 721.07367 -208.83568 260.88458 725.7007 -435.55026 500.14774 703.1478 -131.6633 277.03217 706.7392 -363.79675 433.96304 656.3275 39.804638 321.70575 657.2657 -39.618935 441.7167 877.54114 100.72838 320.14813 873.2294 5.8234525 437.02502 1060.1183 327.08652 325.89566 1061.5312 286.0804 422.07605 1080.7396 339.4227 334.7513 1084.5802 300.88812 470.43784 1149.5868 171.27707 309.55734 1153.0947 97.40785
117 445641f0-0fea-47fb-9508-57bb7e2019e1.jpeg face_left 451.4646 227.39072 -342.12894 447.82483 209.20316 -308.92773 450.76535 209.73724 -308.81082 454.07425 210.099 -308.78018 432.63846 207.12135 -348.23425 424.18668 205.73407 -348.29187 415.71613 204.47406 -348.4084 432.75623 217.51167 -135.81134 380.86987 211.35571 -306.6904 443.9254 251.53629 -275.86618 424.2029 248.15463 -325.0283 466.34378 356.56604 -45.74703 273.8864 347.49847 -242.02847 498.82925 515.59644 61.835823 256.3164 525.51263 -230.75523 516.4821 668.2168 -101.29912 250.98041 676.4053 -345.6253 528.83276 716.189 -139.10796 237.02275 724.6017 -383.70975 514.94183 721.07367 -208.83568 260.88458 725.7007 -435.55026 500.14774 703.1478 -131.6633 277.03217 706.7392 -363.79675 433.96304 656.3275 39.804638 321.70575 657.2657 -39.618935 441.7167 877.54114 100.72838 320.14813 873.2294 5.8234525 437.02502 1060.1183 327.08652 325.89566 1061.5312 286.0804 422.07605 1080.7396 339.4227 334.7513 1084.5802 300.88812 470.43784 1149.5868 171.27707 309.55734 1153.0947 97.40785
118 45a07b49-d2c9-4d5f-be8a-abb86922b1c7.jpeg face_left 421.11432 180.39719 -449.1474 416.94818 164.07883 -408.13367 420.55972 165.21725 -408.05344 424.55316 166.22089 -408.16293 400.5505 161.3747 -449.4618 391.3852 160.1788 -449.34134 382.17 159.176 -449.39514 403.04013 180.19814 -190.67894 345.5542 172.11392 -373.33728 415.902 208.71631 -365.92194 392.1873 204.82059 -418.7041 445.55865 338.08655 -67.23507 239.511 329.20355 -250.15097 483.92535 499.09784 101.915146 229.99883 513.84467 -213.74525 493.8951 644.4174 -112.91598 232.55879 673.4855 -386.66074 500.6141 695.8807 -175.30841 221.66917 727.60895 -437.44202 484.07037 696.0444 -253.43628 246.4377 725.7947 -501.1906 469.5781 675.23553 -145.9055 261.21744 702.45654 -409.77515 413.08807 664.78326 44.972935 295.77316 662.59656 -44.600147 433.84103 875.34534 306.63275 278.76767 867.3302 136.45227 421.55798 1040.8713 751.70276 284.83008 1031.7778 622.66437 399.23337 1061.2114 786.975 299.9127 1051.7983 658.6979 472.12903 1139.0352 623.8836 244.80714 1135.5466 456.88956
119 45b79867-00f6-4f77-b8a5-e358542c150a.jpeg face_left 464.32596 221.51695 -278.12662 459.28802 200.34573 -235.82979 461.74756 200.43404 -235.71036 464.65955 200.37122 -235.69815 443.95932 198.36823 -284.98972 435.1435 196.63144 -284.9779 426.31186 194.99985 -285.00058 438.0695 203.71132 -27.38339 386.92218 198.15254 -245.66618 453.54456 244.39987 -198.13274 434.2369 241.26106 -261.58054 463.40384 350.0906 90.48982 264.18356 329.819 -213.63252 494.0893 515.2993 218.39503 234.07076 507.23077 -225.86687 502.91766 689.66455 -16.76503 230.29097 690.8054 -383.70364 513.9085 747.6242 -69.81321 216.86642 750.4959 -436.52243 490.21332 751.6986 -149.12631 241.86032 754.3716 -484.60522 476.81848 728.5125 -52.251728 256.09586 730.1419 -401.71362 425.77652 686.62024 75.92338 303.3103 685.79346 -75.47928 429.7656 939.2854 86.210106 293.63144 942.4671 -93.008385 424.26254 1150.3174 328.91223 300.9191 1135.8743 264.09747 411.14456 1168.5385 342.3332 308.93973 1149.5247 287.7509 445.85614 1261.9521 142.29199 293.59506 1256.2621 60.66204
120 47f005e9-3d8c-462e-8d4f-a733354b5d2d.jpeg face_left 484.44 205.04337 -332.68384 472.8033 175.3056 -300.60568 475.5093 173.79044 -300.54846 478.6556 172.11911 -300.631 456.0089 177.06943 -354.21997 445.1849 176.44763 -354.18423 434.41568 175.9537 -354.06235 445.40475 174.90837 -123.65479 386.03952 182.07248 -356.55148 472.54755 229.19604 -262.4691 449.50012 230.85156 -329.75952 483.50525 335.92175 -32.89294 260.66467 336.85315 -285.48517 512.60004 526.0904 92.59988 247.88289 543.15564 -255.40118 528.57196 697.84216 -95.124725 244.44106 721.24115 -407.0951 540.22485 753.0144 -142.51729 231.44354 777.45447 -452.918 523.3117 754.8894 -220.18604 254.0018 780.75574 -507.99188 506.55896 733.38043 -128.19205 271.57822 757.43384 -427.08527 451.85303 689.5383 52.838043 324.72934 697.0713 -52.401142 457.2008 939.9303 133.824 307.0241 950.35754 -14.258741 434.347 1138.4817 398.85495 318.78662 1140.722 350.53192 411.49408 1153.5009 415.29242 323.06805 1156.766 374.91196 468.37326 1260.5236 242.49472 324.0311 1264.9122 187.20238
121 4d7e162a-fbd5-4de3-9b4c-4ed31980b12b.jpeg face_left 436.65085 194.55066 -294.7636 445.27365 173.88062 -264.89133 453.0742 175.22885 -264.91998 461.20636 176.43501 -264.96396 421.8113 170.57278 -280.38254 411.49683 169.06589 -280.60236 401.1862 167.62042 -280.88843 454.90427 191.55014 -129.82881 375.22165 179.99435 -183.77312 441.10168 223.4349 -242.69531 407.9515 218.57414 -258.02072 479.3286 343.8005 -92.31268 283.41522 331.40405 -159.0338 499.2851 526.73914 -39.839024 257.9895 535.80896 -158.09067 505.55374 694.9468 -99.86861 246.60027 699.3149 -162.62924 513.50726 746.62585 -127.579666 233.5978 748.4545 -175.72206 493.15063 744.3832 -170.3287 252.95544 751.24646 -213.78674 479.63858 726.3115 -117.44546 268.71423 735.88403 -175.50108 418.07486 672.8224 2.9816484 312.96545 669.3074 -2.4031394 404.29517 898.6679 47.345764 305.07108 896.37573 40.618385 394.056 1083.7003 193.43413 295.77744 1080.6715 216.96866 390.79922 1101.6333 199.99211 293.3486 1102.5571 223.97685 381.486 1163.7853 63.695652 299.35645 1159.0374 78.12997
122 4e86d4ab-61ce-49f9-9d65-a745b91a06df.jpeg face_left 479.00537 164.71031 -297.16864 472.67612 138.3504 -249.83861 475.7132 138.14792 -249.79561 479.20947 137.81906 -249.94946 454.0907 136.23502 -307.8292 443.53952 134.15703 -307.78998 432.9844 132.23663 -307.75415 448.67255 138.36815 -6.461148 387.2306 132.6786 -266.54257 467.29077 188.54214 -201.48033 444.79236 185.23254 -277.07916 483.4106 298.68802 109.8331 250.66058 271.93762 -177.01414 515.4314 480.37988 292.1651 230.78218 469.8207 -178.13765 528.2047 649.9845 7.7576766 223.96565 646.35156 -397.3427 537.0944 708.317 -59.90887 211.83511 704.96735 -447.3362 517.95215 706.727 -149.87805 232.18759 701.6277 -513.54266 503.3771 682.2063 -32.502 247.95541 677.59106 -420.6192 442.7709 663.72253 72.16606 303.5097 661.5732 -71.454926 448.0491 913.2834 133.71045 288.89157 928.53265 -85.56914 425.02533 1113.9568 528.5143 301.9457 1123.8954 350.72736 404.33807 1134.6968 558.5847 312.51224 1141.999 381.93213 462.5257 1222.905 381.81122 292.87695 1241.1572 157.51132
123 4fd68138-0b95-4900-ae0f-98915b4810bf.jpeg face_left 498.26883 118.02967 -363.71155 494.7663 95.96142 -323.60275 499.15717 96.33152 -323.50128 503.96805 96.55907 -323.59085 475.31165 94.28585 -362.97467 464.91818 93.026505 -362.98508 454.4673 91.91578 -362.91443 480.7405 108.45978 -134.8163 414.41626 103.57048 -305.5593 492.26465 148.02707 -292.36603 465.41443 145.11462 -341.9185 514.4719 290.24643 -64.564514 285.56027 268.32303 -213.80994 532.2363 489.46713 62.747253 256.0675 481.32043 -174.98686 540.24945 669.76654 -114.9678 239.50703 656.8487 -270.85147 549.7212 725.80554 -163.43881 227.87927 709.8258 -292.17477 535.80414 731.9549 -237.20203 243.35039 711.51526 -356.38525 519.49396 709.48615 -147.17833 260.28384 689.7594 -293.4494 444.26556 641.4032 29.09343 310.65436 634.27966 -28.663708 442.9735 914.4496 112.54114 300.26614 907.5 4.8255477 436.84506 1121.6797 418.1614 322.9547 1119.9895 374.99542 420.18796 1143.9307 436.5375 340.6777 1144.5294 398.1926 466.40683 1232.1665 247.9459 286.72192 1232.7783 189.17766
124 529a12e7-9d9e-4515-806f-f1010470a415.jpeg face_left 483.29144 159.53171 -316.8497 481.72644 140.44498 -287.8286 486.73645 140.80661 -287.72046 492.1518 141.03275 -287.85352 463.39816 139.68971 -313.73395 454.4085 139.23149 -313.8009 445.40054 138.93997 -313.8576 480.28812 156.6085 -153.7912 415.95358 155.38422 -262.55853 484.73013 189.55426 -266.74884 458.3524 188.25668 -298.20032 523.45667 330.48016 -89.87536 318.62982 315.45673 -221.7639 537.5997 519.0536 -11.939924 284.5098 512.16425 -195.90942 551.246 683.30475 -75.57402 272.25586 677.0725 -227.05376 560.2571 730.13904 -83.48811 255.99956 723.99603 -233.68059 554.90533 736.3739 -140.76234 275.87198 729.4568 -280.3462 540.8097 719.8235 -99.52995 293.92685 711.78284 -241.83876 468.21735 658.0527 37.45734 356.19257 652.7766 -37.09309 444.9313 884.18005 188.58041 356.27213 874.51843 55.11309 420.38248 1062.2917 433.43527 362.80942 1060.2772 351.41544 399.8847 1080.8148 447.90692 365.77902 1079.3191 369.58548 456.202 1152.8021 307.7846 366.0386 1156.6982 211.30908
125 55396e2c-e956-478a-ae17-3a2d3481cb38.jpeg face_left 456.71036 226.97766 -323.7719 449.6601 211.26605 -278.2659 453.38815 212.35817 -278.2546 457.4241 213.28159 -278.33218 431.9298 208.31714 -324.95465 422.2636 207.07349 -324.97852 412.51886 205.96631 -325.06662 431.44775 226.17435 -59.508476 371.70844 218.92963 -265.45206 449.20425 255.78484 -239.6997 425.56354 252.02682 -299.9813 462.80457 376.77823 51.55382 263.8068 364.2792 -192.73216 484.56323 541.287 119.6732 239.1682 547.3542 -215.23686 417.93375 667.89606 -139.12791 336.29562 671.32227 -301.4689 400.93777 719.2048 -216.45865 358.86288 722.0367 -341.61166 381.4694 704.6197 -256.4089 375.53073 704.3818 -367.18704 382.5604 683.2812 -163.28015 370.6203 683.55786 -304.26523 441.04785 712.6154 55.891293 317.10187 715.3646 -55.77398 469.97998 954.93396 89.10664 319.91278 956.2817 2.9080958 448.32333 1149.8547 382.94397 334.85535 1152.6052 357.90607 423.1172 1175.605 400.795 349.22714 1179.9475 379.84286 506.04376 1246.852 218.66649 298.6367 1251.2478 152.59354
126 59cfa586-9e8e-44c7-98a2-bba832b7458d.jpeg face_left 430.0635 172.8706 -394.34937 430.83618 148.62277 -351.04694 438.18655 149.27106 -350.93854 445.95447 149.74716 -351.09995 405.8496 146.78159 -383.06284 393.6811 145.70767 -383.07425 381.4936 144.78508 -383.06082 430.57312 164.93146 -146.60281 344.89352 159.54239 -282.57437 432.39304 204.40067 -318.34488 396.93213 201.732 -357.876 473.49667 338.86197 -67.59161 238.78831 334.49878 -206.6149 504.25504 536.62646 25.763922 222.52817 552.39087 -184.29454 519.81177 714.72504 -145.31364 220.52678 726.2271 -294.07544 530.7724 770.324 -189.14748 209.9123 780.0895 -323.94058 513.44354 773.2684 -251.77342 230.59663 780.8212 -382.222 496.62152 753.29224 -172.68417 247.40826 759.6984 -314.6231 432.91394 702.56494 43.23304 303.88474 707.826 -42.623173 437.1461 954.2524 113.968864 316.0872 956.7566 9.096487 418.81677 1142.7969 383.12756 334.2682 1143.4215 348.59253 397.94507 1158.6431 400.1857 335.94336 1159.0245 369.87027 455.3857 1263.2906 215.16524 356.82645 1267.1294 167.54193
127 5ac24f66-4220-48f0-850c-7c0027fa8b5e.jpeg face_left 432.9897 197.4704 -212.02646 435.6563 177.97302 -173.177 442.00916 178.46954 -173.05884 448.75974 178.84827 -173.23569 414.15268 176.46732 -196.54872 404.69345 175.5542 -196.72646 395.2177 174.77737 -196.80725 442.86188 192.25024 -18.179325 369.91714 188.10196 -107.982155 439.095 225.48245 -154.04659 409.82773 223.18973 -180.53032 489.11673 356.42505 39.05605 267.32623 334.01273 -99.43143 500.41882 537.5931 148.04733 220.04813 532.3548 -46.69971 519.15967 686.04095 -1.2361819 203.48157 698.62213 -110.56429 526.70667 729.42413 -31.384024 191.28764 745.4696 -111.30605 522.8085 730.77844 -94.83951 206.16823 746.4808 -169.51848 510.70102 715.37897 -32.301945 223.03392 728.7407 -129.54366 436.35953 704.2206 41.153664 303.8347 701.1935 -40.492203 444.95355 966.4707 -4.249421 315.48227 961.9248 -67.76025 417.30487 1123.12 364.46002 324.66312 1130.8508 342.467 402.3626 1131.5236 396.72855 323.9222 1142.5615 378.12573 429.95895 1222.029 287.5812 347.00122 1238.6104 245.15685
128 63c8bcf2-84f5-4955-a000-9e403b8087fb.jpeg face_left 477.6288 210.90096 -384.43927 479.4486 183.0545 -353.64243 486.81146 183.90533 -353.51492 494.58878 184.55734 -353.63065 455.27173 179.75288 -385.42053 443.14337 177.72495 -385.3992 430.9908 175.8919 -385.4716 480.35144 195.79541 -181.78755 392.64954 185.50906 -315.4885 478.94858 240.45438 -316.83112 443.51617 235.66348 -355.59735 534.8084 359.38934 -144.43913 263.63364 341.50848 -258.94232 571.8461 552.49854 -63.574642 214.47821 542.3077 -246.37566 578.8474 726.33276 -216.60074 213.90765 725.61743 -333.72653 585.8808 786.44604 -261.9387 202.50786 787.50885 -362.29987 563.33014 786.6401 -318.98398 231.33388 787.967 -424.85992 545.91095 763.4813 -239.69046 250.20238 763.7097 -354.07333 473.03714 746.64465 27.785017 327.57568 747.85126 -26.68675 481.2998 980.1779 151.35274 313.7613 979.87524 66.47061 470.08557 1145.76 413.33218 314.94022 1136.456 463.009 450.73303 1158.5134 433.57806 321.10312 1149.7029 492.8979 503.75314 1263.3447 302.16946 305.14835 1255.0148 353.05356
129 656f2b55-0fd9-47aa-a712-a124fb78430d.jpeg face_left 483.5364 174.37973 -270.19702 478.61813 145.38696 -235.85506 483.88245 145.16492 -235.78177 489.58765 144.78523 -235.78497 457.3455 143.98598 -276.49814 445.50107 142.3779 -276.612 433.65298 140.8855 -276.52982 461.79404 152.38686 -79.52075 386.57 149.87842 -253.07816 475.36197 204.3143 -210.338 445.0574 201.84563 -260.618 491.515 329.48718 -37.51984 249.4196 313.69144 -195.28128 515.0264 520.0206 45.881668 215.32558 530.9927 -185.6942 538.9806 695.9752 -89.57307 231.11539 717.4331 -257.01 552.62964 753.587 -122.37233 225.04454 782.3075 -279.725 535.6284 757.60065 -187.95631 254.45996 776.4446 -318.33072 516.06793 734.4093 -118.55334 267.94336 749.07947 -267.64905 435.3002 697.0248 19.749832 296.79797 695.2637 -19.239601 454.24646 949.1669 102.67743 269.3979 933.4484 17.701967 462.0443 1130.7843 360.43954 293.55298 1115.8989 345.3399 447.36087 1142.9578 377.5616 312.48285 1134.6245 366.78342 481.4377 1258.439 221.52516 248.7543 1237.6854 196.93114
130 6cdd60f9-d3d6-4c44-8e65-c6318cfd8ec0.jpeg face_left 430.935 166.22678 -333.3425 427.23306 136.84135 -298.66922 431.6554 137.0668 -298.7043 436.4923 137.1336 -298.96326 407.50122 133.72693 -346.75595 396.00455 131.21631 -346.73392 384.5139 128.88339 -346.56003 405.97018 140.66653 -106.435265 336.29385 131.40656 -317.7908 419.0734 193.68217 -256.7483 392.38312 188.88077 -318.34726 440.982 294.3793 -22.976868 191.09499 291.64523 -216.65189 484.80637 471.9824 103.49975 170.39793 491.45514 -200.50609 500.07928 647.2892 -86.507256 170.82979 664.32544 -329.92184 510.71344 706.7383 -134.07541 159.25687 724.4227 -364.657 493.2635 709.3588 -205.25969 187.0007 719.9936 -422.16516 474.8855 688.07184 -119.04408 204.38475 695.0715 -348.9976 404.05222 686.93353 32.535347 262.36072 695.86584 -31.617409 425.24286 939.2768 169.78233 264.29306 938.4662 -8.049166 419.5586 1115.0032 524.18176 311.47855 1117.6871 404.75595 401.34274 1129.1459 550.77216 329.7029 1134.9436 434.11768 454.26755 1239.7584 391.6793 290.51562 1240.5371 250.79602
131 6ced5bcc-9333-4f48-a90a-a826fe954937.jpeg face_left 438.67682 220.92181 -259.5004 433.4564 196.96503 -221.66566 437.31058 196.95071 -221.58469 441.60928 196.82999 -221.75116 416.39114 195.57544 -264.70425 406.90668 194.22363 -264.65723 397.3764 193.02864 -264.5215 419.17184 203.46436 -42.345463 359.12415 200.30179 -226.58667 433.40906 245.51231 -189.5251 409.2702 243.37059 -243.12067 448.3231 357.55475 35.79401 246.60942 342.53754 -193.10014 475.05017 533.1111 145.32819 223.1525 535.76 -189.71678 487.6153 700.27234 -22.714651 210.63147 706.9514 -294.18494 495.95074 753.5563 -61.790623 195.37485 760.4984 -327.22873 478.8875 756.1325 -127.815575 216.89758 761.36957 -376.88925 464.85446 735.3745 -51.96546 233.18216 739.5218 -311.146 402.66763 704.441 76.22499 290.7241 707.5668 -75.45365 408.2588 933.4223 189.82892 308.93182 959.9999 5.803794 380.7721 1092.9412 555.44244 312.8751 1151.0457 322.71915 362.11896 1106.8445 587.46246 305.1516 1171.1726 346.81613 407.7716 1186.0591 485.33374 349.58603 1254.3936 170.33994
132 6ee8af64-4118-4620-b980-9a0bc6dcbe28.jpeg face_left 442.48914 286.36658 -259.64197 436.43295 266.48602 -231.46338 439.9151 266.53296 -231.37877 443.70444 266.43948 -231.37132 421.37674 265.12543 -266.89005 413.0963 264.05078 -266.98837 404.7942 263.0274 -267.0724 423.26865 272.07672 -78.85599 369.92868 269.67007 -234.10132 437.1126 307.41364 -198.69 416.2591 305.73462 -243.98633 453.9862 387.97937 -4.6201386 276.87787 385.2965 -179.62326 486.58545 536.4495 55.25968 257.39252 551.3012 -205.27954 427.07446 649.1693 -93.25021 346.5699 668.3991 -266.35825 414.65652 692.4903 -149.84084 364.0601 711.3547 -302.2384 391.07697 683.1588 -173.35709 383.54526 699.13934 -315.66934 389.90997 666.5817 -106.32758 378.79684 682.4133 -267.44608 434.44382 675.416 41.594933 325.17722 679.5025 -41.5896 461.85815 892.511 35.864414 304.1901 895.1073 -35.662502 460.52087 1071.4358 219.19678 285.98862 1067.9824 209.72656 443.74255 1088.7664 230.29033 289.18277 1087.0 223.57898 491.96304 1163.1416 84.50584 270.28497 1159.3522 54.27686
133 77ae1e7d-0270-4e70-b507-cc16d15513e5.jpeg face_left 421.11432 180.39719 -449.1474 416.94818 164.07883 -408.13367 420.55972 165.21725 -408.05344 424.55316 166.22089 -408.16293 400.5505 161.3747 -449.4618 391.3852 160.1788 -449.34134 382.17 159.176 -449.39514 403.04013 180.19814 -190.67894 345.5542 172.11392 -373.33728 415.902 208.71631 -365.92194 392.1873 204.82059 -418.7041 445.55865 338.08655 -67.23507 239.511 329.20355 -250.15097 483.92535 499.09784 101.915146 229.99883 513.84467 -213.74525 493.8951 644.4174 -112.91598 232.55879 673.4855 -386.66074 500.6141 695.8807 -175.30841 221.66917 727.60895 -437.44202 484.07037 696.0444 -253.43628 246.4377 725.7947 -501.1906 469.5781 675.23553 -145.9055 261.21744 702.45654 -409.77515 413.08807 664.78326 44.972935 295.77316 662.59656 -44.600147 433.84103 875.34534 306.63275 278.76767 867.3302 136.45227 421.55798 1040.8713 751.70276 284.83008 1031.7778 622.66437 399.23337 1061.2114 786.975 299.9127 1051.7983 658.6979 472.12903 1139.0352 623.8836 244.80714 1135.5466 456.88956
134 7a3f93e4-fa64-4896-8c9b-f89f8a9e7c0f.jpeg face_left 460.37744 241.33197 -421.7581 455.23755 216.75244 -387.4381 460.64764 216.42395 -387.4751 466.4137 215.92369 -387.64294 434.62973 216.67358 -424.15414 423.6705 215.9679 -424.036 412.70236 215.42587 -424.0148 447.26675 223.46912 -198.81682 373.17865 224.52644 -357.48514 458.90338 266.56445 -347.6042 430.0443 266.19736 -393.33978 496.49405 372.69147 -108.225174 262.12637 361.27155 -262.5106 535.0823 535.1254 -17.407713 213.77254 524.7556 -239.69962 541.1902 679.74524 -268.2741 212.27213 681.8841 -373.20285 546.81726 730.6833 -340.28775 201.77902 735.74097 -413.36386 527.7583 725.0543 -400.11865 228.21121 731.74414 -476.15158 512.6745 706.32446 -297.0203 244.97769 710.9228 -394.92734 443.88232 710.8204 32.812073 318.78384 710.7483 -32.33258 454.50134 915.3049 215.85632 301.19858 907.916 35.159927 447.0893 1071.05 492.20682 325.80652 1062.9338 409.99146 427.92697 1086.6309 510.55322 343.9511 1079.7179 435.499 491.99316 1171.9038 359.59692 283.63846 1162.5078 273.8043
135 7d151876-5403-41b9-aa78-0aa2deb4b98c.jpeg face_left 468.97052 130.50815 -300.48715 464.08746 107.37141 -264.88895 468.53577 107.70168 -264.73557 473.4258 107.86785 -264.79843 445.24982 105.865746 -305.2426 434.85626 104.782486 -305.2679 424.42435 103.85132 -305.23285 450.83804 120.6406 -95.89705 384.36682 117.10907 -269.44794 463.68784 161.24835 -236.5046 436.67392 158.88919 -286.89633 488.76855 305.47656 -34.693382 260.18283 284.66797 -214.8103 501.84525 506.42532 65.96238 236.5576 502.5006 -204.24771 500.9612 690.0104 -97.69032 216.85806 694.8737 -283.03253 509.0689 749.7161 -138.16203 198.58936 753.5162 -301.36612 488.90894 753.7314 -209.80025 218.84132 759.35864 -364.39386 472.31442 729.54517 -128.13385 239.09102 736.8072 -303.76907 429.23624 668.6129 43.617443 300.4111 663.6456 -42.99604 420.14297 932.55493 133.40332 294.88986 934.49536 -7.329701 386.44275 1148.2205 372.3013 314.74158 1147.2052 303.87207 363.58777 1169.2444 385.88434 324.79883 1169.1189 321.81876 419.213 1263.1993 228.77928 299.88812 1263.507 133.82675
136 7d6d3c13-e269-434b-a0ae-7c41ca7175f0.jpeg face_left 468.814 173.01392 -369.15137 463.86603 149.76483 -329.74744 467.31848 150.01584 -329.69434 471.20428 150.11658 -329.77786 446.34473 148.18192 -376.08835 436.64825 146.93515 -375.93945 426.94214 145.87146 -375.9868 448.15567 158.88165 -120.12324 387.53046 154.59251 -325.39215 462.19766 201.45282 -288.23285 439.2375 198.99585 -347.17773 491.8803 323.90326 8.65236 271.4983 317.6494 -226.71974 515.3139 503.54608 170.09476 262.6714 519.39667 -191.60495 524.7126 672.50964 -42.313858 253.59428 690.6873 -339.7882 534.50006 728.9575 -96.294365 237.51132 745.4187 -391.16843 518.45416 729.7069 -181.01271 262.4877 745.1594 -451.16632 502.9256 707.3199 -77.66457 279.67664 721.21814 -361.78497 460.0391 669.4622 51.820198 329.39523 669.69904 -51.12504 459.39902 897.98816 188.52614 294.9416 888.30084 -231.77509 426.4405 1083.3845 631.8086 335.75607 1080.9495 256.3466 407.46097 1097.4968 664.8831 344.25372 1093.2091 295.8456 443.2079 1200.4999 491.7635 354.79214 1205.4454 87.981865
137 8144bcd6-f989-4668-9491-04e43250eca2.jpeg face_left 489.58667 186.68861 -252.54947 484.66907 157.16156 -220.40308 490.00208 157.27982 -220.34619 495.78552 157.21497 -220.51942 463.32312 154.82922 -260.04614 451.4628 152.97977 -260.0959 439.57764 151.2695 -259.88614 469.15622 165.96222 -63.72777 393.69275 160.44388 -231.70033 482.8949 216.88484 -191.24362 452.28326 213.48442 -240.1802 509.08023 334.45868 -19.785923 261.15366 326.4499 -179.72356 547.53973 516.3322 59.9079 226.91501 531.9427 -177.28607 571.435 686.4696 -90.11824 210.12836 708.35297 -256.78998 584.93896 744.6805 -128.04033 193.88908 767.07007 -280.15118 562.94775 748.4598 -188.18317 221.17892 766.7087 -325.48322 543.5851 727.1288 -116.936226 239.35661 743.3618 -271.5718 460.18393 718.57544 24.086403 320.29596 721.9898 -23.373724 485.3295 962.43286 98.38502 299.70544 962.7428 -3.26834 471.1918 1136.5345 367.75812 321.16763 1136.6201 342.54318 452.22845 1145.3616 388.17474 333.18286 1151.4249 367.55542 492.1148 1270.2106 255.49388 299.3311 1264.9373 217.71701
138 8253bff7-8717-4799-9c1d-761e81161170.jpeg face_left 431.16678 135.7795 -349.90775 434.64197 114.690895 -309.58414 441.94452 115.78789 -309.3886 449.68826 116.69193 -309.3943 410.2201 111.75251 -336.2336 398.83792 110.32719 -336.2358 387.44202 109.05487 -336.20932 438.90384 133.59189 -120.968765 355.17654 124.63867 -233.6134 434.57996 169.31076 -280.8668 400.27008 165.01312 -313.4408 489.03113 310.5069 -39.6847 250.87148 297.96332 -182.56793 507.98468 498.60724 48.933094 239.29364 506.65848 -170.51157 514.5786 672.70154 -109.72468 224.66548 693.153 -270.6747 527.70544 732.2845 -150.50545 205.74959 750.5701 -291.36847 503.3626 737.9078 -215.18307 229.7521 759.26306 -351.7759 486.0006 715.13794 -135.77608 250.42831 737.15515 -291.7148 447.83444 665.19196 35.311783 310.18423 666.3409 -34.918457 454.4574 916.5902 78.3324 291.02847 915.8518 -81.9142 431.76294 1114.4308 306.20065 327.91785 1099.8796 270.74197 412.03583 1126.3337 319.82745 338.7269 1109.4636 294.91437 453.82407 1250.7224 146.61401 332.66345 1238.731 119.23096
139 83b99d01-ecb7-46fb-a5f7-0ec5442a5f2e.jpeg face_left 468.91812 190.36014 -443.6235 459.01947 163.60313 -404.76074 462.01462 163.09753 -404.75748 465.45618 162.44556 -404.8114 442.44455 163.19888 -462.5357 431.67773 162.02454 -462.52206 420.96967 160.97949 -462.4721 432.26968 168.09985 -211.98674 372.91632 168.23856 -471.77444 456.78003 216.28578 -369.63712 432.8949 215.14523 -444.85583 464.20352 330.28992 -126.380005 238.98717 330.29523 -425.3629 488.20065 531.64526 -3.8611667 232.64828 551.38257 -423.15192 487.5891 712.97797 -181.2583 263.12372 722.6932 -540.9731 495.08112 772.6836 -234.13206 260.99448 780.9567 -598.86945 474.9179 772.9752 -302.2728 288.2407 772.4812 -641.50165 458.9213 747.88904 -211.5921 297.92496 746.12354 -555.34283 429.44077 681.4222 72.45096 304.8567 690.82404 -71.84353 448.51413 928.5407 234.53302 304.65628 935.42834 19.748274 442.9005 1123.5973 508.98926 322.521 1129.4213 353.26907 422.6999 1143.0377 526.7731 326.75226 1149.1332 372.65808 496.26816 1236.9716 359.65878 333.8736 1249.1948 161.4704
140 89e47eef-5aef-426a-8214-83f26943382a.jpeg face_left 453.6421 180.75539 -255.12555 452.69894 159.29996 -221.83524 457.59695 159.61693 -221.72713 462.90442 159.78561 -221.83931 433.1439 157.9232 -254.67487 423.4635 156.94344 -254.70692 413.76245 156.12018 -254.7313 447.57364 172.20767 -61.22534 381.34827 168.65547 -202.73166 452.7083 210.05124 -193.78014 426.09207 207.89726 -234.79088 489.1329 345.92108 17.184153 277.79288 327.4272 -165.0884 506.9418 531.77435 116.675674 257.88367 525.27905 -145.97612 524.54926 693.21094 -27.680727 235.97697 694.82166 -215.04306 535.5155 744.0172 -55.207108 218.62943 744.3829 -226.0098 524.63873 748.2588 -122.91675 235.44466 751.5295 -279.65787 509.4889 728.7245 -56.4423 254.98221 733.0262 -232.23094 446.5425 685.7132 42.9387 321.88242 682.03455 -42.527363 456.16104 918.5492 118.37681 305.94897 922.3738 -31.63356 426.5066 1098.2925 408.40643 322.393 1107.7156 312.2305 404.27203 1114.2893 427.7774 329.36163 1123.9167 335.0876 458.73846 1203.843 285.57062 322.0873 1219.6671 169.95226
141 90604427-2139-416a-b7fb-30c5b9fe256b.jpeg face_left 509.5532 145.24768 -343.5382 505.0749 112.95242 -306.78854 510.18954 113.307076 -306.80453 515.80255 113.554306 -307.00272 483.7467 109.59526 -358.15237 471.3098 106.91582 -358.2613 458.82993 104.41212 -358.23062 484.4884 119.077835 -110.186775 408.07635 108.89149 -337.10153 499.17163 174.47754 -265.14908 468.33353 169.34781 -330.57416 519.0733 294.6954 -37.105156 249.79314 267.71027 -255.31978 548.9091 495.33832 101.05901 176.13313 478.04993 -255.38141 556.2802 676.5496 -114.943794 164.70944 659.89496 -426.8082 562.3988 742.71375 -175.28409 148.90262 727.2207 -473.95135 543.6322 740.9722 -251.26277 183.1996 721.4409 -535.19904 525.536 714.1692 -148.66455 203.65973 694.3564 -447.9265 450.2608 693.5946 48.188217 301.11874 693.22516 -47.461826 457.17172 929.5835 238.56343 268.0536 940.0281 36.837418 430.7129 1096.7273 630.6784 284.43634 1090.1501 592.21265 408.4783 1107.654 664.6641 297.61072 1101.9354 640.9819 460.41052 1227.0238 530.5255 254.73386 1215.1101 499.69873
142 989ceb5b-f419-40dc-a918-9439187827b2.jpeg face_left 468.814 173.01392 -369.15137 463.86603 149.76483 -329.74744 467.31848 150.01584 -329.69434 471.20428 150.11658 -329.77786 446.34473 148.18192 -376.08835 436.64825 146.93515 -375.93945 426.94214 145.87146 -375.9868 448.15567 158.88165 -120.12324 387.53046 154.59251 -325.39215 462.19766 201.45282 -288.23285 439.2375 198.99585 -347.17773 491.8803 323.90326 8.65236 271.4983 317.6494 -226.71974 515.3139 503.54608 170.09476 262.6714 519.39667 -191.60495 524.7126 672.50964 -42.313858 253.59428 690.6873 -339.7882 534.50006 728.9575 -96.294365 237.51132 745.4187 -391.16843 518.45416 729.7069 -181.01271 262.4877 745.1594 -451.16632 502.9256 707.3199 -77.66457 279.67664 721.21814 -361.78497 460.0391 669.4622 51.820198 329.39523 669.69904 -51.12504 459.39902 897.98816 188.52614 294.9416 888.30084 -231.77509 426.4405 1083.3845 631.8086 335.75607 1080.9495 256.3466 407.46097 1097.4968 664.8831 344.25372 1093.2091 295.8456 443.2079 1200.4999 491.7635 354.79214 1205.4454 87.981865
143 9c11f11a-30ee-4cc5-a12c-6f77416d874d.jpeg face_left 430.935 166.22678 -333.3425 427.23306 136.84135 -298.66922 431.6554 137.0668 -298.7043 436.4923 137.1336 -298.96326 407.50122 133.72693 -346.75595 396.00455 131.21631 -346.73392 384.5139 128.88339 -346.56003 405.97018 140.66653 -106.435265 336.29385 131.40656 -317.7908 419.0734 193.68217 -256.7483 392.38312 188.88077 -318.34726 440.982 294.3793 -22.976868 191.09499 291.64523 -216.65189 484.80637 471.9824 103.49975 170.39793 491.45514 -200.50609 500.07928 647.2892 -86.507256 170.82979 664.32544 -329.92184 510.71344 706.7383 -134.07541 159.25687 724.4227 -364.657 493.2635 709.3588 -205.25969 187.0007 719.9936 -422.16516 474.8855 688.07184 -119.04408 204.38475 695.0715 -348.9976 404.05222 686.93353 32.535347 262.36072 695.86584 -31.617409 425.24286 939.2768 169.78233 264.29306 938.4662 -8.049166 419.5586 1115.0032 524.18176 311.47855 1117.6871 404.75595 401.34274 1129.1459 550.77216 329.7029 1134.9436 434.11768 454.26755 1239.7584 391.6793 290.51562 1240.5371 250.79602
144 9eb9e842-2b59-4138-be20-7dfd249e0a59.jpeg face_left 477.94226 148.70847 -326.24304 477.94656 124.286 -287.03693 482.77747 125.83897 -286.9206 488.08282 127.23816 -286.98132 458.35434 118.41583 -329.56863 447.78116 115.11555 -329.52267 437.1877 111.971664 -329.46643 464.00198 135.07866 -81.58122 395.56915 116.560745 -269.3682 469.61057 177.83424 -247.25275 442.04297 169.38586 -301.76297 500.4693 302.34866 -3.1149354 252.9441 278.88483 -191.43016 534.18463 505.23077 118.42973 226.77258 507.60382 -180.7687 547.95667 677.5425 -92.34096 226.35318 692.1798 -351.53732 556.6107 736.0735 -152.49442 212.73222 753.20764 -397.31567 535.0202 735.6221 -219.64322 241.9284 751.0924 -456.65225 518.7792 711.2103 -121.29429 260.11398 724.70184 -371.8313 456.84186 676.2677 46.986187 313.78302 682.0905 -46.327217 466.96075 924.42163 114.80274 277.57327 957.77747 -33.752842 432.9699 1117.2767 417.6024 298.77435 1133.08 411.6126 410.84335 1128.6064 440.9196 307.1968 1140.1901 445.96768 455.3893 1255.0721 286.5662 304.1029 1276.6743 274.84268
145 a1a6710f-5a9c-4eea-8ee3-7d34affdfa77.jpeg face_left 425.2245 244.44821 -388.19632 427.7377 228.68945 -351.60077 433.3518 230.04974 -351.44214 439.3086 231.25888 -351.40448 408.55695 225.17514 -377.46136 399.54352 223.61977 -377.44193 390.5029 222.16571 -377.4542 427.84216 244.17377 -158.23718 362.0389 233.01868 -273.4713 425.9526 269.4194 -314.54034 398.6787 264.46927 -347.8928 454.70544 374.32 -54.425125 273.13144 363.9668 -211.96362 478.78934 530.8384 47.397934 257.35907 540.03894 -206.01588 490.43304 681.41833 -106.59635 292.77505 690.14166 -289.75916 502.40552 729.8528 -153.82349 292.959 739.79407 -322.0138 483.18494 733.56213 -207.10796 316.71167 735.8445 -358.64606 469.44772 716.18835 -131.03432 321.2837 715.52527 -300.96942 425.10352 672.7865 49.717106 319.9366 677.27783 -49.650635 430.14218 891.7362 94.18614 324.60587 909.87683 -46.775204 408.16452 1066.2234 311.0437 329.7058 1089.5789 226.1925 389.43436 1083.9202 324.53668 331.24057 1107.9945 242.97351 440.8167 1162.106 180.70169 338.05875 1189.4263 70.5578
146 a2644523-fd9d-449b-a16f-798d1d8f655a.jpeg face_left 430.95416 191.68048 -495.5981 430.75446 170.58029 -463.63464 436.43805 171.46774 -463.42426 442.51083 172.1936 -463.3865 409.77142 167.5 -498.2643 399.21573 165.70355 -498.29208 388.68375 164.05006 -498.30692 424.07144 182.37183 -262.8708 352.24066 172.80632 -417.8426 427.9285 218.31592 -416.86945 399.0957 213.8536 -461.53098 456.3295 328.9423 -139.17569 251.64587 317.45886 -322.8437 484.53625 503.69144 -8.190689 238.92822 515.5829 -320.2919 490.89746 668.0889 -144.5561 233.61339 677.814 -401.27524 500.4087 720.0339 -177.18817 221.06157 726.9848 -415.89636 480.7645 723.87805 -237.12491 234.74258 732.29126 -473.15558 465.6031 704.79913 -168.82462 251.3619 714.19324 -419.396 422.08978 652.21094 57.507397 303.00076 651.9915 -57.59374 426.687 886.5453 155.04298 267.74863 886.4102 -23.04501 406.3122 1073.5134 357.18524 256.67126 1068.1609 270.8882 380.3863 1096.8623 368.3574 263.55347 1086.3262 287.23917 472.40112 1177.8674 210.09508 239.05971 1182.8328 102.94631
147 a4f39dd8-5256-433e-b597-81bda41b194b.jpeg face_left 479.00537 164.71031 -297.16864 472.67612 138.3504 -249.83861 475.7132 138.14792 -249.79561 479.20947 137.81906 -249.94946 454.0907 136.23502 -307.8292 443.53952 134.15703 -307.78998 432.9844 132.23663 -307.75415 448.67255 138.36815 -6.461148 387.2306 132.6786 -266.54257 467.29077 188.54214 -201.48033 444.79236 185.23254 -277.07916 483.4106 298.68802 109.8331 250.66058 271.93762 -177.01414 515.4314 480.37988 292.1651 230.78218 469.8207 -178.13765 528.2047 649.9845 7.7576766 223.96565 646.35156 -397.3427 537.0944 708.317 -59.90887 211.83511 704.96735 -447.3362 517.95215 706.727 -149.87805 232.18759 701.6277 -513.54266 503.3771 682.2063 -32.502 247.95541 677.59106 -420.6192 442.7709 663.72253 72.16606 303.5097 661.5732 -71.454926 448.0491 913.2834 133.71045 288.89157 928.53265 -85.56914 425.02533 1113.9568 528.5143 301.9457 1123.8954 350.72736 404.33807 1134.6968 558.5847 312.51224 1141.999 381.93213 462.5257 1222.905 381.81122 292.87695 1241.1572 157.51132
148 a56f5704-ac1f-4b4c-925e-93fca5e9f4c1.jpeg face_left 498.26883 118.02967 -363.71155 494.7663 95.96142 -323.60275 499.15717 96.33152 -323.50128 503.96805 96.55907 -323.59085 475.31165 94.28585 -362.97467 464.91818 93.026505 -362.98508 454.4673 91.91578 -362.91443 480.7405 108.45978 -134.8163 414.41626 103.57048 -305.5593 492.26465 148.02707 -292.36603 465.41443 145.11462 -341.9185 514.4719 290.24643 -64.564514 285.56027 268.32303 -213.80994 532.2363 489.46713 62.747253 256.0675 481.32043 -174.98686 540.24945 669.76654 -114.9678 239.50703 656.8487 -270.85147 549.7212 725.80554 -163.43881 227.87927 709.8258 -292.17477 535.80414 731.9549 -237.20203 243.35039 711.51526 -356.38525 519.49396 709.48615 -147.17833 260.28384 689.7594 -293.4494 444.26556 641.4032 29.09343 310.65436 634.27966 -28.663708 442.9735 914.4496 112.54114 300.26614 907.5 4.8255477 436.84506 1121.6797 418.1614 322.9547 1119.9895 374.99542 420.18796 1143.9307 436.5375 340.6777 1144.5294 398.1926 466.40683 1232.1665 247.9459 286.72192 1232.7783 189.17766
149 b430f375-2148-4913-97ab-25287a211b11.jpeg face_left 490.12872 210.73795 -425.22443 488.1666 187.70459 -380.2908 494.64456 188.50696 -380.25406 501.5268 189.15703 -380.34332 465.13254 185.66963 -416.2897 453.20016 184.7002 -416.28372 441.20703 183.89915 -416.33557 483.12064 207.14554 -192.15361 401.44614 201.93173 -347.15543 489.58768 245.4053 -357.12604 455.68945 242.51236 -402.01126 522.38153 394.93713 -134.94724 283.2035 377.05228 -284.08734 530.0982 597.2082 -42.426983 260.94467 592.4639 -281.31967 521.1252 789.3853 -196.27164 252.0469 781.39856 -344.20105 526.81915 849.0048 -237.7002 239.7546 839.4754 -370.02478 510.504 853.9371 -302.17868 259.77383 837.7883 -422.78473 494.9001 830.1793 -224.39929 276.57172 814.45135 -362.5027 452.13284 751.4477 31.213669 320.12674 746.2336 -30.567167 460.6018 967.45215 245.03923 301.06604 953.3363 31.858477 442.92984 1125.2463 611.6545 341.35776 1106.4935 485.82156 424.0226 1137.5061 637.6092 357.35126 1119.6414 519.91223 466.7115 1245.652 470.97388 317.98016 1224.0094 341.7421
150 c3ea86b1-768c-40a7-a2dd-1615c23b1f5b.jpeg face_left 430.0635 172.8706 -394.34937 430.83618 148.62277 -351.04694 438.18655 149.27106 -350.93854 445.95447 149.74716 -351.09995 405.8496 146.78159 -383.06284 393.6811 145.70767 -383.07425 381.4936 144.78508 -383.06082 430.57312 164.93146 -146.60281 344.89352 159.54239 -282.57437 432.39304 204.40067 -318.34488 396.93213 201.732 -357.876 473.49667 338.86197 -67.59161 238.78831 334.49878 -206.6149 504.25504 536.62646 25.763922 222.52817 552.39087 -184.29454 519.81177 714.72504 -145.31364 220.52678 726.2271 -294.07544 530.7724 770.324 -189.14748 209.9123 780.0895 -323.94058 513.44354 773.2684 -251.77342 230.59663 780.8212 -382.222 496.62152 753.29224 -172.68417 247.40826 759.6984 -314.6231 432.91394 702.56494 43.23304 303.88474 707.826 -42.623173 437.1461 954.2524 113.968864 316.0872 956.7566 9.096487 418.81677 1142.7969 383.12756 334.2682 1143.4215 348.59253 397.94507 1158.6431 400.1857 335.94336 1159.0245 369.87027 455.3857 1263.2906 215.16524 356.82645 1267.1294 167.54193
151 c9595b73-14ff-462a-be7e-3cf5ee799060.jpeg face_left 483.5364 174.37973 -270.19702 478.61813 145.38696 -235.85506 483.88245 145.16492 -235.78177 489.58765 144.78523 -235.78497 457.3455 143.98598 -276.49814 445.50107 142.3779 -276.612 433.65298 140.8855 -276.52982 461.79404 152.38686 -79.52075 386.57 149.87842 -253.07816 475.36197 204.3143 -210.338 445.0574 201.84563 -260.618 491.515 329.48718 -37.51984 249.4196 313.69144 -195.28128 515.0264 520.0206 45.881668 215.32558 530.9927 -185.6942 538.9806 695.9752 -89.57307 231.11539 717.4331 -257.01 552.62964 753.587 -122.37233 225.04454 782.3075 -279.725 535.6284 757.60065 -187.95631 254.45996 776.4446 -318.33072 516.06793 734.4093 -118.55334 267.94336 749.07947 -267.64905 435.3002 697.0248 19.749832 296.79797 695.2637 -19.239601 454.24646 949.1669 102.67743 269.3979 933.4484 17.701967 462.0443 1130.7843 360.43954 293.55298 1115.8989 345.3399 447.36087 1142.9578 377.5616 312.48285 1134.6245 366.78342 481.4377 1258.439 221.52516 248.7543 1237.6854 196.93114
152 cc4ccc8e-496d-435d-b6f1-41014479d3b5.jpeg face_left 460.37744 241.33197 -421.7581 455.23755 216.75244 -387.4381 460.64764 216.42395 -387.4751 466.4137 215.92369 -387.64294 434.62973 216.67358 -424.15414 423.6705 215.9679 -424.036 412.70236 215.42587 -424.0148 447.26675 223.46912 -198.81682 373.17865 224.52644 -357.48514 458.90338 266.56445 -347.6042 430.0443 266.19736 -393.33978 496.49405 372.69147 -108.225174 262.12637 361.27155 -262.5106 535.0823 535.1254 -17.407713 213.77254 524.7556 -239.69962 541.1902 679.74524 -268.2741 212.27213 681.8841 -373.20285 546.81726 730.6833 -340.28775 201.77902 735.74097 -413.36386 527.7583 725.0543 -400.11865 228.21121 731.74414 -476.15158 512.6745 706.32446 -297.0203 244.97769 710.9228 -394.92734 443.88232 710.8204 32.812073 318.78384 710.7483 -32.33258 454.50134 915.3049 215.85632 301.19858 907.916 35.159927 447.0893 1071.05 492.20682 325.80652 1062.9338 409.99146 427.92697 1086.6309 510.55322 343.9511 1079.7179 435.499 491.99316 1171.9038 359.59692 283.63846 1162.5078 273.8043
153 d25bff3d-8b3c-493f-ba7c-7d5f9048803e.jpeg face_left 453.6421 180.75539 -255.12555 452.69894 159.29996 -221.83524 457.59695 159.61693 -221.72713 462.90442 159.78561 -221.83931 433.1439 157.9232 -254.67487 423.4635 156.94344 -254.70692 413.76245 156.12018 -254.7313 447.57364 172.20767 -61.22534 381.34827 168.65547 -202.73166 452.7083 210.05124 -193.78014 426.09207 207.89726 -234.79088 489.1329 345.92108 17.184153 277.79288 327.4272 -165.0884 506.9418 531.77435 116.675674 257.88367 525.27905 -145.97612 524.54926 693.21094 -27.680727 235.97697 694.82166 -215.04306 535.5155 744.0172 -55.207108 218.62943 744.3829 -226.0098 524.63873 748.2588 -122.91675 235.44466 751.5295 -279.65787 509.4889 728.7245 -56.4423 254.98221 733.0262 -232.23094 446.5425 685.7132 42.9387 321.88242 682.03455 -42.527363 456.16104 918.5492 118.37681 305.94897 922.3738 -31.63356 426.5066 1098.2925 408.40643 322.393 1107.7156 312.2305 404.27203 1114.2893 427.7774 329.36163 1123.9167 335.0876 458.73846 1203.843 285.57062 322.0873 1219.6671 169.95226
154 d59ffec1-1a38-4a1f-aaaf-73ab489dc11f.jpeg face_left 461.1903 232.35054 -235.422 454.66083 209.98737 -193.79466 457.74374 209.7662 -193.75647 461.18585 209.36882 -193.76707 437.66068 209.35504 -247.9692 427.37122 208.26988 -247.971 417.06436 207.31555 -247.9535 431.6956 216.95895 -12.125351 373.33212 216.16794 -248.64162 450.2665 258.91864 -165.3677 427.38748 257.39108 -234.08246 455.4527 370.65167 53.21278 253.19745 370.12335 -213.86832 484.37994 551.723 180.17696 237.42438 579.6183 -235.35455 512.0718 718.4097 -17.72524 237.63844 755.03186 -321.42343 528.7684 773.6282 -66.127495 226.11066 811.3695 -346.40482 510.61105 775.6353 -141.69061 246.37653 808.9639 -397.9503 492.68674 753.97797 -53.633408 262.12122 786.1699 -337.53647 440.76834 726.90796 54.644596 317.80664 732.86194 -54.158825 460.1561 973.76 113.7625 297.47513 980.6483 -15.8496895 447.04596 1177.7513 351.84805 298.9005 1178.1423 320.20087 424.79514 1205.7278 365.08118 316.6008 1205.8552 339.56448 504.6129 1276.1155 212.18593 241.57841 1279.3195 150.9355
155 d5e557c9-9eb5-4458-9994-849f999a73e2.jpeg face_left 489.58667 186.68861 -252.54947 484.66907 157.16156 -220.40308 490.00208 157.27982 -220.34619 495.78552 157.21497 -220.51942 463.32312 154.82922 -260.04614 451.4628 152.97977 -260.0959 439.57764 151.2695 -259.88614 469.15622 165.96222 -63.72777 393.69275 160.44388 -231.70033 482.8949 216.88484 -191.24362 452.28326 213.48442 -240.1802 509.08023 334.45868 -19.785923 261.15366 326.4499 -179.72356 547.53973 516.3322 59.9079 226.91501 531.9427 -177.28607 571.435 686.4696 -90.11824 210.12836 708.35297 -256.78998 584.93896 744.6805 -128.04033 193.88908 767.07007 -280.15118 562.94775 748.4598 -188.18317 221.17892 766.7087 -325.48322 543.5851 727.1288 -116.936226 239.35661 743.3618 -271.5718 460.18393 718.57544 24.086403 320.29596 721.9898 -23.373724 485.3295 962.43286 98.38502 299.70544 962.7428 -3.26834 471.1918 1136.5345 367.75812 321.16763 1136.6201 342.54318 452.22845 1145.3616 388.17474 333.18286 1151.4249 367.55542 492.1148 1270.2106 255.49388 299.3311 1264.9373 217.71701
156 d68fcb2c-5566-44df-b2c4-506e53ac64f6.jpeg face_left 468.97052 130.50815 -300.48715 464.08746 107.37141 -264.88895 468.53577 107.70168 -264.73557 473.4258 107.86785 -264.79843 445.24982 105.865746 -305.2426 434.85626 104.782486 -305.2679 424.42435 103.85132 -305.23285 450.83804 120.6406 -95.89705 384.36682 117.10907 -269.44794 463.68784 161.24835 -236.5046 436.67392 158.88919 -286.89633 488.76855 305.47656 -34.693382 260.18283 284.66797 -214.8103 501.84525 506.42532 65.96238 236.5576 502.5006 -204.24771 500.9612 690.0104 -97.69032 216.85806 694.8737 -283.03253 509.0689 749.7161 -138.16203 198.58936 753.5162 -301.36612 488.90894 753.7314 -209.80025 218.84132 759.35864 -364.39386 472.31442 729.54517 -128.13385 239.09102 736.8072 -303.76907 429.23624 668.6129 43.617443 300.4111 663.6456 -42.99604 420.14297 932.55493 133.40332 294.88986 934.49536 -7.329701 386.44275 1148.2205 372.3013 314.74158 1147.2052 303.87207 363.58777 1169.2444 385.88434 324.79883 1169.1189 321.81876 419.213 1263.1993 228.77928 299.88812 1263.507 133.82675
157 d6fc60e2-e18b-4a02-bfc2-7ac0fac64e85.jpeg face_left 490.12872 210.73795 -425.22443 488.1666 187.70459 -380.2908 494.64456 188.50696 -380.25406 501.5268 189.15703 -380.34332 465.13254 185.66963 -416.2897 453.20016 184.7002 -416.28372 441.20703 183.89915 -416.33557 483.12064 207.14554 -192.15361 401.44614 201.93173 -347.15543 489.58768 245.4053 -357.12604 455.68945 242.51236 -402.01126 522.38153 394.93713 -134.94724 283.2035 377.05228 -284.08734 530.0982 597.2082 -42.426983 260.94467 592.4639 -281.31967 521.1252 789.3853 -196.27164 252.0469 781.39856 -344.20105 526.81915 849.0048 -237.7002 239.7546 839.4754 -370.02478 510.504 853.9371 -302.17868 259.77383 837.7883 -422.78473 494.9001 830.1793 -224.39929 276.57172 814.45135 -362.5027 452.13284 751.4477 31.213669 320.12674 746.2336 -30.567167 460.6018 967.45215 245.03923 301.06604 953.3363 31.858477 442.92984 1125.2463 611.6545 341.35776 1106.4935 485.82156 424.0226 1137.5061 637.6092 357.35126 1119.6414 519.91223 466.7115 1245.652 470.97388 317.98016 1224.0094 341.7421
158 d81e3585-92c8-4048-9699-b497948745fb.jpeg face_left 484.44 205.04337 -332.68384 472.8033 175.3056 -300.60568 475.5093 173.79044 -300.54846 478.6556 172.11911 -300.631 456.0089 177.06943 -354.21997 445.1849 176.44763 -354.18423 434.41568 175.9537 -354.06235 445.40475 174.90837 -123.65479 386.03952 182.07248 -356.55148 472.54755 229.19604 -262.4691 449.50012 230.85156 -329.75952 483.50525 335.92175 -32.89294 260.66467 336.85315 -285.48517 512.60004 526.0904 92.59988 247.88289 543.15564 -255.40118 528.57196 697.84216 -95.124725 244.44106 721.24115 -407.0951 540.22485 753.0144 -142.51729 231.44354 777.45447 -452.918 523.3117 754.8894 -220.18604 254.0018 780.75574 -507.99188 506.55896 733.38043 -128.19205 271.57822 757.43384 -427.08527 451.85303 689.5383 52.838043 324.72934 697.0713 -52.401142 457.2008 939.9303 133.824 307.0241 950.35754 -14.258741 434.347 1138.4817 398.85495 318.78662 1140.722 350.53192 411.49408 1153.5009 415.29242 323.06805 1156.766 374.91196 468.37326 1260.5236 242.49472 324.0311 1264.9122 187.20238
159 e0298d08-7041-485b-9ace-1c2259004c91.jpeg face_left 477.6288 210.90096 -384.43927 479.4486 183.0545 -353.64243 486.81146 183.90533 -353.51492 494.58878 184.55734 -353.63065 455.27173 179.75288 -385.42053 443.14337 177.72495 -385.3992 430.9908 175.8919 -385.4716 480.35144 195.79541 -181.78755 392.64954 185.50906 -315.4885 478.94858 240.45438 -316.83112 443.51617 235.66348 -355.59735 534.8084 359.38934 -144.43913 263.63364 341.50848 -258.94232 571.8461 552.49854 -63.574642 214.47821 542.3077 -246.37566 578.8474 726.33276 -216.60074 213.90765 725.61743 -333.72653 585.8808 786.44604 -261.9387 202.50786 787.50885 -362.29987 563.33014 786.6401 -318.98398 231.33388 787.967 -424.85992 545.91095 763.4813 -239.69046 250.20238 763.7097 -354.07333 473.03714 746.64465 27.785017 327.57568 747.85126 -26.68675 481.2998 980.1779 151.35274 313.7613 979.87524 66.47061 470.08557 1145.76 413.33218 314.94022 1136.456 463.009 450.73303 1158.5134 433.57806 321.10312 1149.7029 492.8979 503.75314 1263.3447 302.16946 305.14835 1255.0148 353.05356
160 e1ab1935-990a-4e5b-ba5a-0719bdcf466f.jpeg face_left 445.29666 157.70462 -382.224 439.718 134.82358 -332.05197 444.2752 135.25368 -332.01245 449.30087 135.559 -332.12546 419.0714 133.00468 -377.922 407.91687 131.77814 -377.74078 396.72498 130.73087 -377.52878 423.9419 148.82266 -106.7883 352.70193 144.37726 -306.37167 439.61465 189.60518 -298.2297 410.7621 186.81572 -356.52502 467.783 337.79675 -28.778204 222.97487 321.31982 -204.67667 494.85114 533.01636 120.350685 211.6532 538.6598 -191.95735 506.5476 713.3735 -139.89664 193.88968 728.4051 -403.90137 515.4628 775.7254 -206.2455 178.38579 790.98425 -454.01962 494.77524 776.65 -294.7936 196.45065 792.61237 -526.7841 479.01636 750.0901 -176.33879 216.10863 764.93396 -432.51846 423.1563 710.20447 39.764004 279.8218 711.5912 -38.49148 434.3522 958.8622 161.67537 265.44385 980.1667 -38.794094 420.38034 1156.5432 627.4688 315.78 1145.1134 517.13086 405.82312 1170.9906 665.0961 330.87668 1152.844 563.3387 430.03244 1281.9731 489.83536 318.52917 1276.4032 381.6829
161 e7aa80fa-82ec-45c0-801d-89d0ca73a26c.jpeg face_left 473.43784 210.30334 -370.58218 472.7328 191.36772 -331.13464 477.54758 192.84467 -331.02554 482.81418 194.16699 -331.07184 453.87973 187.19917 -365.54922 444.09402 185.15094 -365.47794 434.26105 183.25058 -365.3385 463.15656 208.0677 -143.1249 397.39062 195.20764 -293.8322 468.7768 240.91022 -300.6195 441.37375 234.75436 -344.51468 502.54086 380.26837 -83.72671 274.80936 360.52005 -215.07791 522.6709 572.9519 17.841547 255.68472 566.93396 -199.23442 525.27606 762.16016 -148.52786 264.53738 753.3328 -352.8293 533.4085 824.7192 -199.1897 254.8841 817.7883 -401.7627 511.0765 830.51056 -266.59985 283.09686 818.4118 -457.5068 495.64554 804.47723 -175.86691 297.56552 791.06024 -373.84702 458.31323 736.5866 30.098274 327.93668 739.0542 -29.327219 467.2987 987.6725 124.91219 317.05084 990.8678 33.601627 464.92664 1187.0298 402.3242 339.29492 1168.8662 418.73874 450.3807 1203.2183 421.55313 350.08133 1180.9011 445.86652 487.30948 1308.7499 249.8079 333.6197 1295.1074 256.74063
162 e962177a-6b12-4ee8-837a-988f47b8d530.jpeg face_left 1985.0432 1024.6997 -1464.7572 1966.0033 946.84357 -1352.7944 1982.6194 946.7388 -1352.7611 2000.3938 946.18207 -1353.441 1900.7104 945.3998 -1474.8971 1865.4454 943.37506 -1474.6161 1830.1273 941.9696 -1474.178 1931.1008 979.74774 -795.7829 1696.0586 980.634 -1323.5566 1975.9252 1111.336 -1248.8796 1882.0507 1108.8574 -1400.9329 2083.4653 1476.1404 -573.8323 1320.2594 1452.0304 -1029.3041 2171.4983 2004.5078 -188.51706 1181.9954 1993.9492 -899.7683 2219.601 2502.665 -713.0195 1204.4457 2502.1277 -1114.0 2243.946 2669.481 -868.8135 1180.6323 2676.1028 -1213.8613 2204.9473 2669.801 -1075.9883 1271.036 2662.1775 -1388.6772 2153.8972 2609.3584 -803.1151 1312.9779 2591.1987 -1172.3795 1902.3265 2531.3352 98.19701 1500.9825 2544.5967 -96.038284 1923.9745 3163.2075 860.93036 1471.5951 3164.147 320.7854 1934.252 3603.7268 1936.6014 1481.9032 3599.7358 1671.5134 1872.4393 3647.794 2018.6046 1510.2489 3637.364 1770.6311 2094.582 3921.21 1581.291 1421.9536 3935.2861 1273.9764
163 f5b9e84e-6797-492c-97b3-45971800d6ec.jpeg face_left 445.29666 157.70462 -382.224 439.718 134.82358 -332.05197 444.2752 135.25368 -332.01245 449.30087 135.559 -332.12546 419.0714 133.00468 -377.922 407.91687 131.77814 -377.74078 396.72498 130.73087 -377.52878 423.9419 148.82266 -106.7883 352.70193 144.37726 -306.37167 439.61465 189.60518 -298.2297 410.7621 186.81572 -356.52502 467.783 337.79675 -28.778204 222.97487 321.31982 -204.67667 494.85114 533.01636 120.350685 211.6532 538.6598 -191.95735 506.5476 713.3735 -139.89664 193.88968 728.4051 -403.90137 515.4628 775.7254 -206.2455 178.38579 790.98425 -454.01962 494.77524 776.65 -294.7936 196.45065 792.61237 -526.7841 479.01636 750.0901 -176.33879 216.10863 764.93396 -432.51846 423.1563 710.20447 39.764004 279.8218 711.5912 -38.49148 434.3522 958.8622 161.67537 265.44385 980.1667 -38.794094 420.38034 1156.5432 627.4688 315.78 1145.1134 517.13086 405.82312 1170.9906 665.0961 330.87668 1152.844 563.3387 430.03244 1281.9731 489.83536 318.52917 1276.4032 381.6829
164 f71151c2-27e1-453e-b8e3-56ae28e512e2.jpeg face_left 441.308 192.41849 -349.64383 449.30405 167.10193 -314.7013 458.74448 168.2077 -314.58307 468.556 169.11713 -314.58087 422.22263 164.38828 -336.04825 409.74527 163.10498 -336.03662 397.23206 162.00737 -335.99478 465.23868 189.12453 -141.02881 368.6792 180.26172 -230.8573 451.22845 226.15326 -284.9027 410.1952 222.25034 -311.01575 505.3146 362.70523 -74.68973 266.88687 347.7139 -212.91592 518.0513 549.2123 -10.632953 234.56253 553.4254 -226.32564 519.29675 726.58264 -166.58817 250.15424 740.58716 -311.67783 529.2197 788.7274 -206.60869 241.74463 804.4442 -343.29407 504.7187 790.73804 -262.46866 275.62723 801.6517 -390.72287 486.91208 767.6682 -189.9717 290.23544 777.4513 -327.05316 442.62534 743.8312 44.50458 313.92166 743.5339 -43.60596 440.9372 981.72906 118.073715 300.4996 981.74384 -26.293846 415.25247 1160.8478 314.4892 322.12292 1153.444 269.4459 392.37543 1176.6609 326.15912 327.96265 1167.9675 287.1998 459.8013 1282.7435 181.40198 323.70917 1278.9133 124.245705
165 f7755875-addc-49e6-8cad-f1862edeeee5.jpeg face_left 438.67682 220.92181 -259.5004 433.4564 196.96503 -221.66566 437.31058 196.95071 -221.58469 441.60928 196.82999 -221.75116 416.39114 195.57544 -264.70425 406.90668 194.22363 -264.65723 397.3764 193.02864 -264.5215 419.17184 203.46436 -42.345463 359.12415 200.30179 -226.58667 433.40906 245.51231 -189.5251 409.2702 243.37059 -243.12067 448.3231 357.55475 35.79401 246.60942 342.53754 -193.10014 475.05017 533.1111 145.32819 223.1525 535.76 -189.71678 487.6153 700.27234 -22.714651 210.63147 706.9514 -294.18494 495.95074 753.5563 -61.790623 195.37485 760.4984 -327.22873 478.8875 756.1325 -127.815575 216.89758 761.36957 -376.88925 464.85446 735.3745 -51.96546 233.18216 739.5218 -311.146 402.66763 704.441 76.22499 290.7241 707.5668 -75.45365 408.2588 933.4223 189.82892 308.93182 959.9999 5.803794 380.7721 1092.9412 555.44244 312.8751 1151.0457 322.71915 362.11896 1106.8445 587.46246 305.1516 1171.1726 346.81613 407.7716 1186.0591 485.33374 349.58603 1254.3936 170.33994
166 f83d0a03-6cbf-4390-ac30-8c0d14b314ab.jpeg face_left 432.9897 197.4704 -212.02646 435.6563 177.97302 -173.177 442.00916 178.46954 -173.05884 448.75974 178.84827 -173.23569 414.15268 176.46732 -196.54872 404.69345 175.5542 -196.72646 395.2177 174.77737 -196.80725 442.86188 192.25024 -18.179325 369.91714 188.10196 -107.982155 439.095 225.48245 -154.04659 409.82773 223.18973 -180.53032 489.11673 356.42505 39.05605 267.32623 334.01273 -99.43143 500.41882 537.5931 148.04733 220.04813 532.3548 -46.69971 519.15967 686.04095 -1.2361819 203.48157 698.62213 -110.56429 526.70667 729.42413 -31.384024 191.28764 745.4696 -111.30605 522.8085 730.77844 -94.83951 206.16823 746.4808 -169.51848 510.70102 715.37897 -32.301945 223.03392 728.7407 -129.54366 436.35953 704.2206 41.153664 303.8347 701.1935 -40.492203 444.95355 966.4707 -4.249421 315.48227 961.9248 -67.76025 417.30487 1123.12 364.46002 324.66312 1130.8508 342.467 402.3626 1131.5236 396.72855 323.9222 1142.5615 378.12573 429.95895 1222.029 287.5812 347.00122 1238.6104 245.15685
167 fe50b387-2cf3-4138-a6b4-49c629630930.jpeg face_left 456.71036 226.97766 -323.7719 449.6601 211.26605 -278.2659 453.38815 212.35817 -278.2546 457.4241 213.28159 -278.33218 431.9298 208.31714 -324.95465 422.2636 207.07349 -324.97852 412.51886 205.96631 -325.06662 431.44775 226.17435 -59.508476 371.70844 218.92963 -265.45206 449.20425 255.78484 -239.6997 425.56354 252.02682 -299.9813 462.80457 376.77823 51.55382 263.8068 364.2792 -192.73216 484.56323 541.287 119.6732 239.1682 547.3542 -215.23686 417.93375 667.89606 -139.12791 336.29562 671.32227 -301.4689 400.93777 719.2048 -216.45865 358.86288 722.0367 -341.61166 381.4694 704.6197 -256.4089 375.53073 704.3818 -367.18704 382.5604 683.2812 -163.28015 370.6203 683.55786 -304.26523 441.04785 712.6154 55.891293 317.10187 715.3646 -55.77398 469.97998 954.93396 89.10664 319.91278 956.2817 2.9080958 448.32333 1149.8547 382.94397 334.85535 1152.6052 357.90607 423.1172 1175.605 400.795 349.22714 1179.9475 379.84286 506.04376 1246.852 218.66649 298.6367 1251.2478 152.59354
168 002d5591-9108-475a-bc98-17ba7b5807ef.jpeg face_right 304.4478 175.374 -412.74524 330.89407 148.19766 -408.55884 343.11 148.05756 -408.52145 355.7442 147.71588 -408.61682 306.53638 149.16054 -369.139 298.7362 149.30142 -369.06244 290.85077 149.79141 -368.98758 398.1327 169.5903 -328.4575 309.8611 169.65736 -141.07372 340.03412 209.12997 -381.9996 302.36127 209.87953 -327.51306 524.18256 355.33295 -251.46822 255.52933 355.16852 -85.58457 559.66125 559.68665 -199.66902 240.89435 560.21576 -11.160166 553.79663 735.9475 -294.43292 224.96468 742.91473 -206.23299 564.43304 796.0367 -325.36533 213.81712 800.0357 -245.36238 538.8654 794.8807 -395.05856 225.9462 801.6617 -324.85767 522.70074 770.43024 -314.28918 249.04337 781.938 -241.46274 468.1454 753.22876 -16.203835 325.75595 749.0012 17.510946 474.02676 977.2451 135.1583 313.99832 980.8054 137.38193 451.71597 1137.9805 490.58224 340.251 1131.0298 585.3547 431.61386 1152.1571 520.9705 358.1108 1144.5021 620.91614 494.47034 1252.2195 384.3284 309.50677 1249.3173 491.54413
169 010a38fe-f5a2-4bf6-9e77-4c382c65bf25.jpeg face_right 297.72302 209.5122 -295.94144 317.4098 188.34961 -295.34253 326.14407 187.27966 -295.3365 335.19098 185.99953 -295.2902 300.94708 191.7363 -259.58102 296.37555 192.817 -259.64697 291.66907 194.13205 -259.817 373.22763 202.2734 -246.09677 312.7193 211.0953 -79.8774 328.6522 235.88707 -276.82635 303.19824 239.84581 -229.01364 480.51675 352.36053 -192.26186 274.11383 359.23035 -34.996265 494.59067 546.48224 -208.93407 250.16312 535.56604 9.547181 388.48056 695.26587 -241.32353 312.61087 676.4531 -147.51811 366.0446 747.35376 -267.41183 330.03827 729.3237 -214.1036 345.65665 729.1736 -300.58438 349.1252 711.2677 -239.77312 351.8462 707.40186 -246.42879 350.02426 691.09814 -161.4517 443.6594 713.24817 -16.807787 318.54422 706.5989 17.129084 464.5324 966.20575 1.072283 296.4241 957.2867 36.826775 440.86996 1157.4738 260.53024 340.69016 1148.0242 336.15698 423.7493 1177.7076 276.8178 372.36444 1172.6008 354.2726 473.122 1265.7091 120.63011 270.02078 1254.7251 203.6308
170 05f9e763-0881-4238-9052-4ca750f39c7b.jpeg face_right 285.7924 234.70233 -252.47069 307.42273 208.06317 -262.6229 317.5403 206.6143 -262.49994 328.00955 204.94087 -262.47256 287.5652 211.61166 -224.93144 281.8379 212.4307 -224.9912 276.05908 213.51387 -224.9974 370.18973 216.51126 -236.95999 298.13638 225.91556 -63.434715 320.3627 260.09253 -240.07404 291.38873 264.1234 -189.35434 495.19278 365.51562 -177.38048 261.7208 373.20648 -41.10855 547.86084 530.53735 -154.59712 228.97252 537.73737 17.023693 526.3926 681.9313 -198.63878 220.4526 685.6946 -147.1073 532.5979 733.67804 -219.71426 215.99997 739.14233 -195.91989 503.9536 728.97394 -264.69928 236.06354 731.64404 -243.79669 493.7165 708.2738 -209.73792 252.36252 712.5824 -169.4002 447.0739 730.0079 -12.555131 320.85062 726.0501 13.001511 458.16318 930.0068 61.16206 294.23343 925.6003 41.786114 440.07178 1087.2931 226.78262 321.29712 1080.5378 299.91867 424.77716 1102.5459 238.72034 344.3939 1096.7324 316.05884 473.69202 1187.9528 136.01118 276.9829 1185.7123 216.40242
171 064a0c75-7a4a-4cc3-8e81-bed25ec1cb86.jpeg face_right 336.00146 139.68549 -247.11357 360.1502 113.44471 -257.0016 369.66873 112.756805 -256.741 379.635 111.89911 -256.54178 342.4303 115.72567 -218.24426 337.6458 116.18576 -218.48172 332.77512 116.89449 -218.6949 420.57922 130.14569 -239.67229 355.73032 134.45137 -60.35606 367.3058 171.43715 -239.26729 340.59085 173.43036 -186.69781 539.3148 314.1701 -168.74779 289.5536 306.57346 -65.93912 577.5126 522.4026 -137.46515 246.60905 517.09045 -19.64478 555.5383 691.2976 -189.95625 235.80304 694.28644 -151.2755 561.49384 746.494 -218.55493 226.79065 751.7661 -197.25562 532.469 741.2449 -272.7783 251.06592 747.7446 -242.13438 521.4242 718.6842 -206.59294 268.5695 725.95056 -172.8939 467.342 692.1819 8.34051 325.9827 682.6096 -8.013532 463.7087 956.0503 31.51203 283.0838 944.8291 -22.397684 438.6261 1134.6779 247.86647 305.56204 1139.0549 262.71875 418.24484 1146.9023 263.7894 321.3 1152.5253 279.58307 477.25204 1252.4233 129.75084 297.81714 1268.5603 129.62453
172 07c5ca52-2b58-4708-8938-461c2fcfacd8.jpeg face_right 330.32935 202.65892 -338.04367 356.01642 171.88057 -333.2349 368.96558 170.83252 -333.12854 382.22617 169.552 -333.15125 328.46283 173.8736 -298.82816 319.31006 173.90259 -298.8599 310.11176 174.2203 -298.86322 423.1849 183.36124 -264.53265 324.907 187.01825 -101.36712 367.4422 230.87555 -311.7124 326.6528 232.9671 -264.12958 538.6405 345.5635 -219.36084 264.56763 347.55005 -88.91274 594.93634 540.00464 -215.84695 205.3527 526.05914 -11.700511 578.2163 728.13025 -240.50769 204.43872 709.4293 -154.47162 580.1567 789.83344 -249.907 202.82675 768.2482 -204.31337 556.33124 781.2365 -301.6824 223.18842 761.0187 -254.95476 545.73376 757.7272 -251.46127 240.83026 740.01697 -177.91052 464.9753 755.5368 -10.000156 316.83206 750.8047 10.951591 476.1385 994.3806 73.44371 306.266 987.23944 73.910675 470.42816 1149.7789 329.54053 326.60046 1140.2776 416.83774 455.89185 1161.2095 351.52936 344.7936 1152.9111 441.74545 501.97693 1264.2478 234.49654 300.22067 1261.3801 330.67206
173 087f62e7-a7b0-4b85-b0a2-016e940950e3.jpeg face_right 296.72308 143.44876 -171.05469 311.54892 119.03999 -211.71638 315.0406 118.90373 -211.50114 318.73828 118.73718 -211.49811 310.3822 119.482346 -169.29945 311.17206 119.57222 -169.02292 312.20135 119.80862 -168.62952 341.64975 136.07227 -293.92865 334.4595 135.53601 -97.18212 310.94803 171.66537 -185.9724 303.802 171.6141 -129.26205 303.423 279.22165 -327.85538 428.918 281.9388 -18.987692 311.60254 502.68192 -291.5099 493.68674 505.58295 -34.9826 263.7727 679.9625 -202.714 464.29163 669.5631 -44.018383 251.66043 732.9214 -235.13875 460.98947 717.77747 -48.632763 239.109 729.12787 -225.27052 453.5576 713.54114 -78.472015 251.62245 716.3471 -192.35057 448.53775 702.4983 -57.37335 331.46454 670.1301 -83.28815 407.2043 658.96783 84.98221 310.3086 940.2361 109.24363 389.78058 922.3391 215.3363 329.01453 1162.4275 323.23718 386.5358 1148.791 396.80936 342.67026 1202.1855 341.3134 396.6112 1191.1091 413.05728 284.37698 1199.513 339.4866 346.02676 1182.0322 407.76685
174 08df09b4-16b8-4c6c-a1a0-d4f4456ad4c4.jpeg face_right 291.27783 148.4241 -255.01396 315.69547 121.3459 -258.7722 326.4084 120.75546 -258.61038 337.51514 119.9501 -258.52756 294.74362 123.21545 -219.40451 288.42587 123.56991 -219.47314 282.01654 124.21814 -219.44023 378.62933 139.55319 -231.25392 301.60266 142.77824 -42.55018 324.90002 180.28008 -245.01613 292.2141 182.04404 -190.12416 501.7601 307.9478 -193.66495 248.83752 323.1515 -47.34866 571.628 492.40088 -208.99193 224.89738 524.24255 -6.345304 562.586 693.2196 -227.34184 201.67244 704.97864 -161.94022 573.47235 757.34283 -236.49393 188.5065 763.886 -206.92473 541.60046 756.75073 -292.66238 208.32698 759.56165 -261.7094 529.2735 731.47186 -242.8708 229.78604 739.3082 -188.67451 447.64133 711.1924 -19.872122 307.4687 708.9686 20.719385 466.18414 963.83514 18.338045 289.15817 949.1492 62.362877 449.63324 1151.5232 224.74484 314.38992 1127.2261 344.21393 434.63635 1163.1943 241.30869 333.39355 1142.7838 362.72733 474.65082 1281.6058 131.00594 283.8671 1254.0586 241.67625
175 090e145b-2b15-49bb-885a-5b98e52bf024.jpeg face_right 217.80011 212.80902 -269.5429 241.8061 182.229 -290.32864 250.94536 181.2302 -290.17902 260.483 180.02576 -290.1867 228.21101 183.26389 -239.02298 225.1337 183.0117 -239.17943 221.92134 183.01862 -239.30096 307.23242 193.35559 -315.81888 252.84465 194.8682 -76.817215 251.63301 240.41241 -276.9502 227.64346 241.8765 -208.32042 441.20132 367.37122 -288.55026 211.92236 369.27777 -42.461082 475.68878 588.11346 -278.2362 221.64342 580.6974 37.894352 453.69968 774.55286 -242.77095 204.86877 765.30084 -65.16957 458.94034 826.6952 -243.89664 196.78102 814.653 -90.30345 440.30814 824.4182 -293.69412 200.6682 815.8338 -140.62181 429.8303 801.2529 -255.47412 217.41454 798.01587 -90.98172 383.66635 740.70166 -49.163246 255.66035 733.04596 50.100178 406.55838 964.04895 36.156147 247.11166 953.8036 114.464 398.2655 1128.8807 285.96402 304.3111 1103.6125 431.35718 395.99796 1138.2701 305.13223 329.99448 1116.3197 455.37042 395.46576 1246.5697 192.49173 261.76953 1216.8035 358.02655
176 099fccfe-7728-4385-9949-243bc2b7023f.jpeg face_right 307.3651 216.72916 -251.3833 329.5101 193.46707 -270.95584 337.38324 193.41138 -270.8556 345.66885 193.22263 -270.9524 315.3724 193.66501 -228.75235 311.86908 193.1622 -228.77527 308.23563 192.88968 -228.6559 380.42496 205.67223 -268.09473 327.85672 202.95612 -71.32095 331.3068 242.25375 -243.49194 310.93082 241.68465 -186.74147 480.88022 352.47617 -242.74904 267.13123 341.4098 -2.7864747 504.2563 534.9205 -205.34229 234.585 516.10333 96.07526 496.0796 703.8827 -239.56139 222.28036 679.0225 -56.59817 504.33038 754.6052 -266.5706 215.1572 729.88153 -96.67093 484.73087 754.0451 -316.81442 228.52397 730.5067 -160.71391 473.6583 735.5835 -253.50885 244.22427 714.3787 -87.658745 416.77417 711.2195 -34.216248 300.20956 703.38855 35.236404 425.40317 944.40063 8.8264475 319.86026 937.5155 68.207 399.04794 1088.7012 355.01987 341.16315 1132.427 276.91577 388.9274 1096.7284 386.91385 345.41516 1152.0308 290.3957 399.52478 1179.7075 288.49506 357.75928 1228.3372 138.42932
177 11eded75-5a31-4c90-a2b1-919ca59680af.jpeg face_right 350.11832 120.93872 -366.6796 375.07367 99.65935 -357.79114 385.71445 99.98947 -357.74792 396.7838 100.151215 -357.82672 352.7912 99.51038 -314.48883 346.10947 99.23164 -314.4658 339.28973 99.209785 -314.39688 432.99188 119.485664 -268.0375 356.25485 115.257454 -63.4784 379.9353 151.24802 -333.51343 347.7081 149.97093 -274.3527 538.0729 290.36343 -212.4844 296.11835 280.22675 28.57241 563.6411 495.03906 -169.40036 288.9645 485.49118 117.57737 546.43036 678.89795 -225.61105 257.16373 655.4554 -62.51373 554.9522 736.42676 -241.06525 247.53867 705.4769 -80.507805 532.4163 738.8368 -311.58218 244.85805 708.7621 -162.22154 518.52783 715.9584 -245.02484 264.80963 693.62213 -101.05397 446.36502 657.7106 -45.84547 310.02466 643.70966 46.45968 440.06244 926.0359 -9.631122 295.7387 910.9772 67.50122 423.29825 1129.4805 298.5213 315.11887 1130.0795 359.83942 410.89795 1148.0825 320.25195 339.05188 1158.2892 376.52933 439.4478 1248.933 129.79897 251.57645 1239.9144 182.89293
178 13a3f67c-6115-405e-bcee-ddd2478c661d.jpeg face_right 314.4169 288.51605 -277.94965 331.2983 269.5724 -270.55273 340.0749 268.83313 -270.53027 349.1056 267.90195 -270.47836 312.4968 271.58435 -243.38255 306.5955 272.16425 -243.43692 300.59555 272.90137 -243.53392 378.85635 279.171 -198.72075 313.44247 283.98846 -70.00004 341.48416 309.57343 -249.57014 314.25043 312.07867 -212.72226 469.16568 396.1734 -131.70062 278.35217 401.96216 -37.48141 510.56015 557.54987 -140.35336 269.17526 552.47003 -3.7047493 421.38275 658.19385 -184.36581 345.71545 665.35223 -125.46698 401.3068 698.89417 -210.85115 362.4936 711.2231 -180.95952 383.70142 679.547 -232.1448 383.6904 696.0474 -197.35632 388.45 663.78174 -185.90689 381.73285 679.75916 -133.84758 434.68866 694.89905 -20.234167 319.34595 693.21295 20.568066 467.41684 909.7711 -35.420994 298.93417 903.7698 24.243874 471.87048 1085.4807 145.93275 299.71277 1077.6019 259.92102 465.00012 1102.1279 158.08957 314.60153 1098.6232 272.2377 484.57047 1181.6494 16.641687 266.06918 1170.447 124.574814
179 13e90c57-d08f-479a-adeb-c2ccc542c868.jpeg face_right 305.00952 185.89389 -308.5977 328.68036 164.9736 -304.92566 338.4436 165.28088 -304.81268 348.61636 165.39218 -304.8044 308.94162 165.00964 -269.5962 303.224 164.86465 -269.62494 297.40268 165.00359 -269.67023 385.2274 184.81308 -240.57118 315.0852 182.10507 -72.8389 333.6909 217.12665 -283.52008 304.79626 216.44318 -234.70355 491.3441 352.66138 -170.7811 257.78314 344.2136 -19.647356 516.80774 541.64435 -125.26068 238.88586 533.29584 54.500893 505.7141 716.17523 -151.98863 218.91563 703.51654 -100.39452 514.77734 771.6212 -159.50539 207.85262 757.6039 -126.801315 494.6326 773.2928 -226.91399 218.32156 760.27313 -196.82895 482.07275 751.8945 -170.73526 238.07162 743.6315 -132.60045 424.1716 719.8581 -10.845732 292.6907 708.3155 11.331098 428.62546 959.17535 36.34234 273.12 943.2117 60.766876 417.67715 1142.6475 298.8385 294.2423 1135.2623 348.5924 397.3344 1160.3389 316.4931 317.46613 1158.7028 366.53366 462.1904 1251.5428 152.67036 237.2519 1241.5585 207.5933
180 1885c9ae-df34-40f5-b45d-328c6675c8c4.jpeg face_right 311.78 279.39294 -403.9674 334.84012 256.4447 -414.32166 343.7768 256.29553 -414.16653 353.1208 255.9607 -414.1765 319.2613 257.1007 -364.23743 315.0134 256.98853 -364.1615 310.64438 257.19315 -364.1238 392.08444 272.54602 -372.12387 334.2926 271.66382 -140.95682 340.60056 306.79684 -386.71164 315.83636 307.07565 -319.90823 504.02545 432.39682 -317.4385 287.61786 425.64786 -26.291592 530.252 617.0626 -275.23373 276.3366 601.5051 67.09451 511.6543 782.59875 -358.9065 249.62337 762.695 -154.85855 518.22644 834.35 -397.46423 239.18481 814.0527 -203.47562 493.62936 830.99915 -457.7522 246.76895 814.50226 -275.59503 483.1875 809.2502 -375.77173 265.1033 797.1416 -190.54947 441.3867 781.5996 -60.533085 323.3388 771.7881 61.688244 441.35745 999.5134 56.36696 298.39154 992.71796 115.668686 426.7464 1165.5668 395.8683 326.59183 1147.5999 460.1151 419.53998 1177.1719 422.58307 345.71118 1159.514 484.30905 430.0159 1282.4504 256.64862 294.01108 1262.6677 333.17398
181 1e05c1b8-1e6e-4439-b03d-cef6599b79ab.jpeg face_right 314.4169 288.51605 -277.94965 331.2983 269.5724 -270.55273 340.0749 268.83313 -270.53027 349.1056 267.90195 -270.47836 312.4968 271.58435 -243.38255 306.5955 272.16425 -243.43692 300.59555 272.90137 -243.53392 378.85635 279.171 -198.72075 313.44247 283.98846 -70.00004 341.48416 309.57343 -249.57014 314.25043 312.07867 -212.72226 469.16568 396.1734 -131.70062 278.35217 401.96216 -37.48141 510.56015 557.54987 -140.35336 269.17526 552.47003 -3.7047493 421.38275 658.19385 -184.36581 345.71545 665.35223 -125.46698 401.3068 698.89417 -210.85115 362.4936 711.2231 -180.95952 383.70142 679.547 -232.1448 383.6904 696.0474 -197.35632 388.45 663.78174 -185.90689 381.73285 679.75916 -133.84758 434.68866 694.89905 -20.234167 319.34595 693.21295 20.568066 467.41684 909.7711 -35.420994 298.93417 903.7698 24.243874 471.87048 1085.4807 145.93275 299.71277 1077.6019 259.92102 465.00012 1102.1279 158.08957 314.60153 1098.6232 272.2377 484.57047 1181.6494 16.641687 266.06918 1170.447 124.574814
182 20153d94-39d2-47e5-9a74-31642ed2e3bc.jpeg face_right 318.08615 193.13885 -354.31403 336.10706 167.31277 -356.77554 346.04776 164.94385 -356.61722 356.42 162.3751 -356.49323 316.71225 173.62637 -317.5352 311.0151 175.5304 -317.52402 305.19888 177.74353 -317.5694 398.83072 175.48856 -299.18338 328.63892 193.82062 -114.41806 354.87036 218.47122 -329.41864 325.94513 226.02371 -275.5038 540.80176 340.35156 -205.29813 289.2919 353.68634 -72.23065 577.0882 537.179 -143.77127 261.34058 541.7157 -13.229493 559.7142 726.00433 -251.54091 260.8068 707.66534 -230.71411 570.4766 790.9413 -289.71295 254.55081 763.0145 -286.27338 539.9702 793.3452 -362.56976 270.9377 761.5655 -355.25024 526.3973 766.5355 -273.14526 289.85452 740.4621 -262.6402 477.2008 740.32227 -2.1337948 334.78687 734.33966 3.2291534 478.0333 993.3798 55.68083 304.40805 993.0976 32.83139 459.13406 1188.0573 325.0432 309.30722 1203.4868 354.76483 436.1606 1213.7893 344.39404 332.5343 1229.9922 374.18533 522.4449 1289.8083 200.78545 250.01424 1320.5272 207.33823
183 208a2c04-fc6c-4726-b8e2-a6537d1f07c0.jpeg face_right 304.82837 188.16895 -295.31448 326.94937 169.00089 -287.2473 336.35455 169.27951 -287.05902 346.13684 169.36847 -286.97418 306.80576 168.83908 -258.2436 300.71564 168.6417 -258.3713 294.55267 168.70743 -258.54144 379.00772 186.12251 -204.49147 309.32452 183.1147 -71.26673 331.65332 216.30145 -263.7851 303.05328 215.63484 -224.61272 474.25323 338.29993 -126.638374 261.37244 331.6106 -23.293512 504.01917 508.25412 -90.34924 250.1149 504.36813 34.25642 494.21362 667.1485 -111.43449 242.42062 665.1962 -80.97219 502.81635 717.5079 -117.33909 234.1129 715.24225 -102.70104 483.21072 718.91833 -176.40175 245.26978 719.6399 -159.53723 471.17194 699.0632 -127.13281 261.72986 703.4394 -105.85684 418.5691 678.7013 2.1091132 298.42975 666.3612 -1.8726066 432.4412 892.34814 98.27627 273.25177 874.56165 62.216564 426.09125 1045.8816 364.85138 287.75903 1042.6398 348.54816 404.3952 1063.488 384.1539 308.11557 1062.5431 365.3218 486.18735 1135.8918 234.33414 238.9501 1141.2717 210.16916
184 24dac703-7e2f-4ea8-8451-dcba0d4602b0.jpeg face_right 300.89252 209.03995 -205.45549 318.61816 180.298 -246.61182 324.48624 178.77155 -246.48862 330.78564 177.04852 -246.5451 314.16125 181.66512 -179.57114 314.43295 180.99518 -179.48355 314.45578 180.48663 -179.18748 368.30438 181.01013 -327.51535 344.96774 182.63817 -16.696459 325.1228 228.41331 -225.96277 314.85345 229.8825 -136.5806 489.92285 306.4588 -361.90918 300.54086 319.5441 115.10846 545.53625 505.93808 -403.79752 287.88092 507.8824 257.50284 510.35764 698.526 -430.12085 246.6175 664.08057 83.32733 516.416 758.05554 -462.59955 235.53241 710.6403 47.914516 480.98856 750.4477 -503.22705 237.31117 709.8159 -22.48423 474.38904 726.9833 -436.00903 253.40489 694.9596 48.27381 431.19073 678.5442 -107.3636 315.4705 674.8694 108.49829 456.2757 935.43054 -77.622444 313.32428 909.5359 146.34288 440.14484 1113.7957 259.29688 328.98444 1097.4663 403.96652 442.14764 1122.7336 291.57553 343.1521 1117.4312 421.41354 413.3164 1228.6409 177.24504 304.12848 1201.8931 286.752
185 2c2c68e5-4b03-4a05-b7a2-6e77feb08cb0.jpeg face_right 291.27783 148.4241 -255.01396 315.69547 121.3459 -258.7722 326.4084 120.75546 -258.61038 337.51514 119.9501 -258.52756 294.74362 123.21545 -219.40451 288.42587 123.56991 -219.47314 282.01654 124.21814 -219.44023 378.62933 139.55319 -231.25392 301.60266 142.77824 -42.55018 324.90002 180.28008 -245.01613 292.2141 182.04404 -190.12416 501.7601 307.9478 -193.66495 248.83752 323.1515 -47.34866 571.628 492.40088 -208.99193 224.89738 524.24255 -6.345304 562.586 693.2196 -227.34184 201.67244 704.97864 -161.94022 573.47235 757.34283 -236.49393 188.5065 763.886 -206.92473 541.60046 756.75073 -292.66238 208.32698 759.56165 -261.7094 529.2735 731.47186 -242.8708 229.78604 739.3082 -188.67451 447.64133 711.1924 -19.872122 307.4687 708.9686 20.719385 466.18414 963.83514 18.338045 289.15817 949.1492 62.362877 449.63324 1151.5232 224.74484 314.38992 1127.2261 344.21393 434.63635 1163.1943 241.30869 333.39355 1142.7838 362.72733 474.65082 1281.6058 131.00594 283.8671 1254.0586 241.67625
186 2f71b2da-410b-4709-a4db-de188bcb0777.jpeg face_right 303.2417 194.77112 -291.2293 329.88306 171.27556 -290.80685 340.89093 171.37405 -290.56104 352.27484 171.26895 -290.49475 307.3728 171.35658 -252.64587 300.9199 171.09505 -252.83762 294.4025 171.09921 -252.88072 393.66785 189.89227 -238.70311 315.39224 187.117 -62.841705 336.4924 226.00693 -272.16052 303.89575 225.55733 -221.03577 508.33063 352.80664 -179.54144 265.6169 351.11057 -22.765665 545.57495 530.68555 -164.9138 238.80887 521.25696 72.44 531.71783 692.6169 -195.49316 227.863 684.672 -72.22903 540.44434 744.5111 -214.19186 217.24687 735.3552 -109.55044 516.6011 742.97003 -265.7831 235.2563 737.4634 -165.02055 505.76135 722.95056 -209.52112 253.55862 720.25476 -98.95718 456.95685 705.28687 -4.4206285 321.79388 697.8656 4.9447756 471.03864 946.2501 29.512348 291.1104 923.5974 -53.798717 436.76727 1081.183 359.69183 325.7344 1085.7711 263.2701 417.96176 1082.6215 387.62885 342.05383 1092.6906 285.55756 457.6543 1202.8387 273.0671 319.9641 1214.1221 148.23322
187 3cf53999-f6ef-4c77-9019-8b9cae94e531.jpeg face_right 302.92316 173.12668 -344.5148 326.43826 142.44556 -335.8822 339.10904 141.4899 -335.76678 352.13632 140.29297 -335.78122 298.24612 145.03384 -306.20175 288.46896 145.56638 -306.24246 278.65353 146.33694 -306.25064 389.18637 157.5454 -250.21077 288.77112 162.86343 -108.26941 338.26102 202.70328 -312.6727 296.0241 205.50357 -270.90005 503.8179 327.43045 -203.197 234.62968 331.64563 -75.21235 564.1015 520.4125 -186.44206 192.32932 525.9441 -30.426609 559.1995 700.0607 -244.18658 171.86891 696.8312 -183.82622 572.2827 759.8894 -271.3186 158.38283 753.98065 -221.71472 537.8805 760.1846 -316.7512 183.66696 753.35394 -279.4694 521.22 736.9754 -255.26326 206.00322 733.03656 -209.30026 430.3127 718.3302 -25.059479 291.51135 713.6761 26.013485 433.01492 952.4778 21.772196 271.42102 948.92773 -69.54532 404.07422 1125.0353 232.37843 313.3161 1134.661 216.67104 395.16135 1132.816 247.14706 333.83914 1149.8811 235.21928 398.7153 1255.9132 117.98155 285.39334 1260.5876 100.8156
188 3e8b0fe2-6841-40cc-8ef7-8dbaf8eb2c13.jpeg face_right 307.98633 161.89877 -314.1133 327.97552 137.66055 -329.91495 335.2295 136.75754 -329.67603 342.97354 135.65063 -329.46838 317.65585 139.12701 -277.9179 316.51376 139.07468 -277.88007 315.20554 139.25632 -278.03812 385.75894 145.71686 -317.62717 345.48236 149.30862 -83.12532 337.4439 187.39835 -303.03397 321.57834 189.22935 -235.14111 526.62683 307.50922 -221.26224 291.43054 303.87463 15.659888 560.3744 501.6294 -174.46907 263.48798 492.60248 107.214 546.6268 666.9608 -320.80286 240.60545 648.42615 -224.07294 555.6614 721.0888 -372.94223 229.56999 700.7616 -311.12128 528.0288 718.60144 -438.05542 246.85292 698.6898 -387.85056 518.0475 696.98145 -339.4381 266.0112 679.2988 -264.08383 471.63025 685.3369 4.35707 324.71844 677.5507 -3.3748972 475.1265 933.69165 37.07235 289.67047 931.56116 -70.72928 446.45724 1121.58 434.06412 313.46475 1133.9768 315.12112 424.4101 1136.3707 463.892 332.8732 1151.2042 341.28125 484.48438 1232.0884 276.00934 291.31113 1252.5344 134.99388
189 3fc03ddb-900a-4c6c-b894-1297de9ddc5c.jpeg face_right 217.80011 212.80902 -269.5429 241.8061 182.229 -290.32864 250.94536 181.2302 -290.17902 260.483 180.02576 -290.1867 228.21101 183.26389 -239.02298 225.1337 183.0117 -239.17943 221.92134 183.01862 -239.30096 307.23242 193.35559 -315.81888 252.84465 194.8682 -76.817215 251.63301 240.41241 -276.9502 227.64346 241.8765 -208.32042 441.20132 367.37122 -288.55026 211.92236 369.27777 -42.461082 475.68878 588.11346 -278.2362 221.64342 580.6974 37.894352 453.69968 774.55286 -242.77095 204.86877 765.30084 -65.16957 458.94034 826.6952 -243.89664 196.78102 814.653 -90.30345 440.30814 824.4182 -293.69412 200.6682 815.8338 -140.62181 429.8303 801.2529 -255.47412 217.41454 798.01587 -90.98172 383.66635 740.70166 -49.163246 255.66035 733.04596 50.100178 406.55838 964.04895 36.156147 247.11166 953.8036 114.464 398.2655 1128.8807 285.96402 304.3111 1103.6125 431.35718 395.99796 1138.2701 305.13223 329.99448 1116.3197 455.37042 395.46576 1246.5697 192.49173 261.76953 1216.8035 358.02655
190 41655bdd-fce7-4bf5-927a-bb4380769f42.jpeg face_right 314.78046 206.91882 -304.67383 337.36563 177.87086 -305.76297 348.7318 176.3649 -305.6508 360.43512 174.65106 -305.64786 314.77692 180.95523 -264.4383 307.42648 181.47713 -264.46194 299.95773 182.27974 -264.46603 400.55298 187.06342 -254.55386 320.3687 194.11461 -60.454212 350.71368 231.828 -283.38297 315.99594 235.45273 -227.20862 515.0961 339.57944 -206.84775 277.6505 351.8462 -35.527958 552.03625 537.63153 -201.94463 259.6271 546.0009 29.624365 526.37274 731.4094 -224.1455 262.98288 733.8138 -127.2171 532.82166 794.8907 -241.6782 256.88272 793.06604 -174.68042 504.2301 790.38745 -293.9729 275.1128 791.40894 -224.31052 494.15958 764.5606 -235.93314 292.48877 768.48755 -151.32625 450.4763 736.90625 -22.521301 320.2732 732.3269 23.41282 459.78632 972.3518 25.282223 306.1409 976.3535 28.161722 429.98648 1152.3826 220.83075 337.576 1150.3485 300.4661 415.62772 1167.392 235.22638 356.21555 1166.3779 316.58902 454.97208 1271.3885 118.83674 312.40683 1272.8447 195.20322
191 437d536a-3306-43de-842e-716961c7c9f2.jpeg face_right 274.54834 194.65271 -291.96555 299.79233 166.97304 -300.9177 310.0827 166.14845 -300.79443 320.74963 165.1135 -300.75775 281.1995 168.59021 -254.6149 276.06784 168.65009 -254.78023 270.8253 168.99203 -254.85788 365.47903 180.2341 -285.31598 297.98285 182.42409 -65.06036 309.5431 222.70432 -285.64606 280.4189 224.44786 -221.724 489.13638 347.5647 -223.1803 256.67072 353.47806 -51.272717 534.5374 553.97955 -209.28311 248.45929 559.3713 18.256456 533.2003 724.59467 -214.09096 225.12694 726.0382 -109.87569 543.1692 773.5833 -216.67896 213.0165 775.2508 -140.41708 524.1772 770.4675 -275.39407 223.22377 774.0454 -192.81635 511.54086 750.52966 -231.50464 243.459 757.9443 -135.83963 427.26007 719.0158 -28.205372 299.71524 713.7884 28.851297 440.71304 965.15045 4.8365602 304.718 960.88184 77.55035 415.75992 1146.9047 238.01747 330.72812 1146.1451 344.69687 403.35123 1159.6819 255.4833 346.00027 1165.3651 361.5445 429.06885 1268.5576 136.85135 311.58447 1260.8467 226.25792
192 445a9cd6-7c38-4f5e-8d25-9977531cb03f.jpeg face_right 284.35583 150.32672 -491.25333 310.6637 126.873856 -485.9444 321.69913 127.12742 -485.78217 333.17624 127.157936 -485.6778 289.69135 127.12223 -439.2675 283.38153 126.987915 -439.31308 276.92368 127.22805 -439.46582 375.35617 148.736 -387.1398 299.78006 146.09393 -171.80074 317.53918 183.78445 -453.9286 285.5314 183.42511 -391.18906 491.38412 328.89362 -271.9506 240.6768 322.71564 -74.95793 516.0345 534.3054 -236.71405 212.62447 524.7075 8.605291 501.31332 715.73065 -377.69073 207.73524 712.822 -266.15656 508.80472 775.5021 -425.23416 200.60919 777.76685 -345.2571 483.2285 773.5584 -500.09494 222.90822 774.396 -416.59973 470.0367 749.7848 -400.9351 242.0194 751.34485 -300.9069 422.74866 726.9701 -17.614985 285.1204 718.9083 18.584259 428.45172 959.4562 123.44515 262.99435 958.84796 147.28851 401.77774 1141.4736 540.8378 281.8062 1139.6434 624.18195 377.56485 1158.8457 573.1122 305.0488 1159.6089 656.9185 451.15884 1261.1693 376.0206 232.13113 1261.5754 457.77502
193 46ba1dab-92d3-42f2-ad0a-12521ce9601c.jpeg face_right 293.97656 217.53197 -171.53697 311.8713 194.45828 -188.284 318.81146 193.21286 -188.10521 326.1712 191.76712 -188.0628 301.2604 197.08221 -142.49081 299.38226 197.53131 -142.5994 297.3983 198.16516 -142.68556 364.1056 200.84781 -212.44147 324.30417 207.61314 1.3275112 321.60062 239.83249 -176.76205 305.21274 242.93515 -114.74223 480.05133 347.05432 -179.16441 287.80435 348.154 33.273838 505.63495 526.8357 -157.6666 264.8935 521.35815 106.3855 514.0441 684.68396 -173.45816 247.27588 670.7241 -28.217125 529.7398 729.2426 -186.68651 238.48932 716.3465 -60.1978 509.06506 734.9588 -237.11127 253.51222 717.2216 -112.46313 495.43112 717.5537 -188.55914 269.3379 702.2628 -53.455303 430.72684 672.54065 -28.760601 317.81155 668.17065 29.209892 445.75482 883.88403 -14.005767 314.6903 875.6027 37.954998 436.9775 1063.7523 156.95776 333.13852 1061.6517 234.71582 427.54657 1082.0242 168.2092 350.9027 1086.1757 244.36295 457.7592 1151.9751 53.01879 298.8986 1146.1818 114.659836
194 48c75c0c-17ba-4c14-b6df-217c9574c541.jpeg face_right 277.5694 193.90591 -326.10562 301.31232 173.56781 -322.66672 310.80463 173.7867 -322.5339 320.72083 173.78802 -322.40436 283.3558 173.57216 -279.48962 278.44055 173.40192 -279.55142 273.39944 173.50449 -279.687 358.7409 190.73834 -253.72687 296.41074 188.12817 -51.657257 307.02664 223.62537 -297.04404 281.0061 223.05984 -238.4553 470.50046 347.76007 -158.77663 249.09131 349.70325 28.400616 501.44916 537.04175 -94.68568 239.0896 544.3025 119.06409 498.91855 702.6786 -147.76956 226.65181 713.3988 -66.317764 510.65894 758.1028 -165.58078 221.13985 769.3115 -95.06325 490.26944 754.9847 -238.30026 227.19833 768.32056 -170.96428 477.7822 733.3978 -167.85365 244.67175 750.02563 -99.29586 429.52087 716.1014 -14.924712 295.55902 712.2864 15.720003 450.57297 960.80396 2.4988859 282.74426 949.92175 67.58846 442.21796 1152.3022 305.1698 306.23828 1153.0712 399.18982 419.5577 1178.285 325.56873 333.35574 1183.4313 418.68338 509.64612 1247.073 143.70743 237.90973 1250.6368 233.1038
195 4a11f5ee-e029-4992-a0a3-543dbbf8b29d.jpeg face_right 304.82837 188.16895 -295.31448 326.94937 169.00089 -287.2473 336.35455 169.27951 -287.05902 346.13684 169.36847 -286.97418 306.80576 168.83908 -258.2436 300.71564 168.6417 -258.3713 294.55267 168.70743 -258.54144 379.00772 186.12251 -204.49147 309.32452 183.1147 -71.26673 331.65332 216.30145 -263.7851 303.05328 215.63484 -224.61272 474.25323 338.29993 -126.638374 261.37244 331.6106 -23.293512 504.01917 508.25412 -90.34924 250.1149 504.36813 34.25642 494.21362 667.1485 -111.43449 242.42062 665.1962 -80.97219 502.81635 717.5079 -117.33909 234.1129 715.24225 -102.70104 483.21072 718.91833 -176.40175 245.26978 719.6399 -159.53723 471.17194 699.0632 -127.13281 261.72986 703.4394 -105.85684 418.5691 678.7013 2.1091132 298.42975 666.3612 -1.8726066 432.4412 892.34814 98.27627 273.25177 874.56165 62.216564 426.09125 1045.8816 364.85138 287.75903 1042.6398 348.54816 404.3952 1063.488 384.1539 308.11557 1062.5431 365.3218 486.18735 1135.8918 234.33414 238.9501 1141.2717 210.16916
196 4bd7d0e5-c35d-493e-8ee2-a40598e4ed2d.jpeg face_right 310.1503 163.87787 -340.6201 331.5861 143.47089 -329.47348 341.3725 143.4596 -329.44003 351.58102 143.2753 -329.5521 309.3311 144.25296 -296.3118 302.4925 144.30096 -296.21002 295.55417 144.62115 -296.03732 383.3155 160.24432 -220.35486 308.3484 159.78473 -63.550186 337.6055 191.91216 -299.01718 307.1498 192.16522 -253.60017 481.38336 316.20923 -145.07043 252.20856 311.95093 26.953625 506.1894 490.02304 -113.491646 229.64964 489.55054 107.36424 505.28577 657.7257 -217.68639 208.36812 652.3463 -91.254616 518.62537 711.0568 -248.3005 197.12166 705.0074 -127.4711 497.65714 714.5746 -311.54047 207.33162 707.44763 -202.50085 484.0985 693.9675 -236.76076 225.44473 689.5643 -126.36361 415.66708 686.32935 -12.667074 283.14307 678.991 13.378589 436.9734 912.54663 14.996928 262.33896 905.68604 23.97414 424.00656 1086.5729 320.4601 277.7256 1087.7585 358.48965 401.68585 1104.6555 343.23132 293.15845 1105.9373 379.32217 482.30148 1190.6709 164.70915 253.99562 1197.8904 194.91602
197 4d84255f-0375-462b-be4f-7337c6e3b3bd.jpeg face_right 290.85822 132.64249 -545.53925 312.2063 109.257545 -531.2681 322.34058 108.5096 -531.1721 332.9228 107.580605 -531.2107 289.67102 112.36214 -489.14484 282.8234 113.33954 -489.00272 275.85834 114.647484 -488.92847 368.67517 127.5959 -395.94318 291.07947 134.07341 -198.82083 321.99402 162.86613 -497.87366 289.8829 166.05777 -440.44672 494.3296 308.59015 -311.49863 235.03185 313.71332 -58.97287 514.55994 517.815 -255.03726 220.01544 522.00006 26.890074 502.41394 700.5185 -417.3609 204.14499 702.33575 -249.90668 511.93872 756.6003 -470.40118 197.15172 760.0283 -305.2114 486.17352 759.95435 -544.9532 204.51207 764.97095 -396.23987 473.14746 737.838 -441.21222 225.09174 745.22363 -294.59134 437.2548 691.3846 -39.78795 290.20627 685.84143 40.71818 436.91104 957.54913 40.805847 264.05432 936.08453 -101.24207 410.83582 1137.96 546.42834 302.7059 1141.8701 362.80017 398.90894 1148.6394 585.9715 321.56506 1157.4152 395.71832 413.05988 1262.0017 357.67578 293.20172 1269.7886 152.01323
198 4e3caf75-7a35-49ce-a0a2-bc95ecfd0ed5.jpeg face_right 298.34186 165.04367 -287.52136 326.82574 138.75638 -288.5021 338.6202 139.05743 -288.36838 350.8125 139.12453 -288.3751 303.35437 138.15887 -245.06058 296.30222 137.52368 -245.08485 289.14032 137.16827 -245.01613 392.71875 157.93823 -242.65407 310.05133 152.39606 -35.200455 332.24005 196.89743 -269.37814 297.21005 195.35484 -209.5304 506.8051 328.85645 -200.21559 248.9874 326.55212 -0.35156652 548.7384 524.10693 -176.41461 216.98283 523.23883 72.54742 556.27905 692.19293 -211.96875 194.03044 700.13556 -95.11834 570.3892 745.6446 -226.6601 182.53323 756.0266 -133.05286 548.64215 744.37036 -287.76782 197.9111 758.6644 -195.87883 533.3687 723.98676 -229.16988 219.77383 740.0497 -125.36784 444.7821 715.8452 -34.213654 302.86163 715.0269 34.98318 473.90253 973.7305 -22.20319 291.1786 967.10626 62.222248 453.78577 1135.6387 264.11145 299.66275 1141.3312 398.73355 441.8172 1143.285 290.8017 314.7921 1157.4619 423.7935 466.54614 1260.1764 193.31801 270.63354 1261.2651 308.20532
199 555c2d8e-181c-42df-9bcf-f2a92d6b90e4.jpeg face_right 293.59854 175.18974 -175.2108 313.5311 145.78845 -207.37218 320.7275 144.41719 -207.06082 328.40567 142.82143 -206.88971 306.33347 146.75464 -145.94563 306.37784 146.09596 -146.0023 306.2377 145.68188 -146.16873 374.77615 147.6199 -268.56403 342.32565 150.19977 14.097841 324.8125 197.98373 -187.23987 311.40417 199.646 -105.73031 522.1136 299.3589 -224.30205 296.54666 301.5482 98.814804 559.20154 499.99527 -182.75377 273.59833 487.33884 237.03258 554.882 677.5379 -225.163 234.09822 653.45795 8.593988 567.32544 732.05927 -257.0233 219.77351 706.18896 -50.82123 540.6212 728.75195 -313.68945 231.3177 704.9755 -124.409294 530.0829 708.18555 -240.95526 250.57558 687.5821 -29.715996 469.57648 696.83765 -25.819374 326.0219 693.86584 26.805645 490.35742 949.5654 27.483015 317.98874 940.2388 -9.599913 467.50262 1129.0452 433.72165 349.6743 1121.2007 386.7498 453.55 1139.8345 469.90906 369.4122 1136.4172 420.07938 486.9749 1248.5232 347.15204 325.576 1239.948 277.69308
200 5a2cfa97-d6d4-4c91-b97b-1e2ada0001ce.jpeg face_right 354.28412 109.10828 -444.9843 378.4599 89.42623 -437.4978 388.21024 90.04265 -437.33795 398.37976 90.48191 -437.26874 358.28278 88.97255 -396.7682 352.3994 88.7117 -396.80786 346.3978 88.76217 -396.96475 433.35782 111.61545 -334.48978 363.99176 106.784706 -147.7959 382.09656 141.176 -406.55426 352.9939 139.74197 -351.8609 539.88336 283.95953 -238.71036 308.436 277.5208 -42.130135 562.89435 487.28174 -167.51523 292.34152 472.25327 52.8525 563.40155 668.3313 -213.53596 261.52744 643.5825 -134.50867 573.74164 721.1472 -224.58995 247.97575 696.782 -163.9602 557.8013 726.7108 -296.74387 253.40514 701.3488 -242.78242 544.2443 706.7042 -234.85802 274.1733 684.8163 -171.6067 486.33023 643.4879 -17.194126 353.35797 635.3785 17.957611 473.65063 888.02374 64.852554 316.95966 877.12866 -31.713985 447.07413 1077.6573 453.79312 337.01706 1076.5471 349.82184 425.8338 1094.4835 481.27695 352.4984 1093.0083 374.7234 481.7847 1189.2035 270.5229 319.1816 1193.6534 163.38327
201 5d0ed3b2-d604-4690-bf53-1049e6d5ad7c.jpeg face_right 280.07193 129.64246 -516.9804 304.1734 110.237236 -516.47955 312.2735 111.08032 -516.293 320.79434 111.73748 -516.2139 289.23743 109.243355 -471.51608 285.6913 108.86093 -471.53098 281.99716 108.81317 -471.56937 357.17285 134.96353 -435.4959 302.57803 128.67561 -233.70285 305.2684 163.51108 -488.46344 282.46835 161.44951 -429.44916 470.03726 311.88025 -345.0141 236.97969 304.7783 -121.199165 499.17502 513.2638 -288.86725 224.89091 501.42548 -50.49446 491.49936 702.74036 -361.0331 206.891 688.35986 -255.36674 502.03937 758.0323 -389.9762 195.20319 743.12164 -300.035 478.11478 766.2311 -462.98904 204.15233 752.0204 -379.52744 465.30722 745.9802 -384.0127 224.1202 735.0961 -296.09097 421.62634 670.25525 -13.697034 285.46033 661.16156 14.350255 433.5562 934.67316 108.88597 258.22675 907.9731 -160.8248 407.93787 1117.09 608.1119 299.57755 1121.6553 258.55814 387.66547 1125.6444 646.33704 315.3615 1133.9435 287.8351 430.50134 1240.7095 424.19397 301.79642 1248.9731 37.51041
202 5e6252ee-e815-476d-9af1-cb30f280e34a.jpeg face_right 300.89252 209.03995 -205.45549 318.61816 180.298 -246.61182 324.48624 178.77155 -246.48862 330.78564 177.04852 -246.5451 314.16125 181.66512 -179.57114 314.43295 180.99518 -179.48355 314.45578 180.48663 -179.18748 368.30438 181.01013 -327.51535 344.96774 182.63817 -16.696459 325.1228 228.41331 -225.96277 314.85345 229.8825 -136.5806 489.92285 306.4588 -361.90918 300.54086 319.5441 115.10846 545.53625 505.93808 -403.79752 287.88092 507.8824 257.50284 510.35764 698.526 -430.12085 246.6175 664.08057 83.32733 516.416 758.05554 -462.59955 235.53241 710.6403 47.914516 480.98856 750.4477 -503.22705 237.31117 709.8159 -22.48423 474.38904 726.9833 -436.00903 253.40489 694.9596 48.27381 431.19073 678.5442 -107.3636 315.4705 674.8694 108.49829 456.2757 935.43054 -77.622444 313.32428 909.5359 146.34288 440.14484 1113.7957 259.29688 328.98444 1097.4663 403.96652 442.14764 1122.7336 291.57553 343.1521 1117.4312 421.41354 413.3164 1228.6409 177.24504 304.12848 1201.8931 286.752
203 62c9ffdc-5d87-4d2f-8de9-2ab0f77f61bf.jpeg face_right 298.5095 259.32947 -258.52444 315.45145 237.15584 -259.04312 323.96768 235.98315 -258.9342 332.7951 234.62982 -258.95526 297.25775 239.57664 -227.0631 291.4904 239.95953 -227.11641 285.64563 240.52322 -227.17613 362.49927 242.60208 -204.25381 299.9233 248.03421 -56.28112 325.22726 278.28076 -235.23386 299.3592 281.11008 -192.20189 450.75122 363.08124 -159.45609 268.1128 373.43854 -8.898976 478.202 534.2411 -142.57799 264.7851 544.27344 44.753273 478.6219 696.6594 -154.39919 276.92084 698.5717 -52.928883 491.25262 744.627 -169.53229 276.50888 745.2066 -78.7119 471.89133 745.4192 -211.86664 287.711 745.4645 -121.08904 460.65326 727.4346 -163.893 298.34024 727.97656 -72.63767 412.0933 688.3123 -20.144705 306.94446 685.8423 20.486969 427.61893 900.6131 0.5530506 308.8939 904.9321 24.753683 408.0357 1071.0646 169.74889 324.89285 1083.9803 218.3745 394.50076 1087.7142 180.64142 335.21902 1101.6753 226.06801 436.62967 1166.3235 52.04436 322.48126 1184.004 83.3161
204 64cea208-bdc3-4101-903e-ec7951228ca7.jpeg face_right 300.82593 189.47182 -262.4204 320.70493 166.84537 -277.21594 328.11105 166.02776 -276.9832 335.9952 165.01437 -276.78394 309.91498 168.78476 -224.27972 308.18683 169.12625 -224.3561 306.30276 169.68864 -224.51416 376.17886 178.35365 -280.34302 335.25906 182.89441 -38.4158 329.3481 215.05241 -259.8882 311.50653 217.38202 -189.74533 500.44687 342.28183 -220.78221 285.7427 336.1377 15.986471 521.0848 524.06635 -184.73906 245.30089 505.88342 99.99555 504.53348 691.2833 -264.59518 240.00082 687.797 -93.00956 512.3442 743.09424 -313.2986 231.08754 739.54517 -154.20018 486.13675 743.3815 -367.75613 252.19746 739.9695 -210.55165 477.90466 723.36115 -281.94348 265.9961 721.1831 -122.79878 444.25214 688.30316 -13.707224 313.9578 678.8578 14.500986 440.44647 932.65106 14.943553 301.8132 921.39636 -44.4858 423.4845 1125.7947 315.36734 307.1151 1124.4692 270.54407 409.4608 1136.874 336.98154 316.44003 1139.0449 290.03906 437.68192 1238.7429 161.31038 305.7843 1240.9211 101.94368
205 65ab4f2a-8bd1-4a95-8a0b-263fa3331551.jpeg face_right 354.28412 109.10828 -444.9843 378.4599 89.42623 -437.4978 388.21024 90.04265 -437.33795 398.37976 90.48191 -437.26874 358.28278 88.97255 -396.7682 352.3994 88.7117 -396.80786 346.3978 88.76217 -396.96475 433.35782 111.61545 -334.48978 363.99176 106.784706 -147.7959 382.09656 141.176 -406.55426 352.9939 139.74197 -351.8609 539.88336 283.95953 -238.71036 308.436 277.5208 -42.130135 562.89435 487.28174 -167.51523 292.34152 472.25327 52.8525 563.40155 668.3313 -213.53596 261.52744 643.5825 -134.50867 573.74164 721.1472 -224.58995 247.97575 696.782 -163.9602 557.8013 726.7108 -296.74387 253.40514 701.3488 -242.78242 544.2443 706.7042 -234.85802 274.1733 684.8163 -171.6067 486.33023 643.4879 -17.194126 353.35797 635.3785 17.957611 473.65063 888.02374 64.852554 316.95966 877.12866 -31.713985 447.07413 1077.6573 453.79312 337.01706 1076.5471 349.82184 425.8338 1094.4835 481.27695 352.4984 1093.0083 374.7234 481.7847 1189.2035 270.5229 319.1816 1193.6534 163.38327
206 690e57b3-c13c-49e4-9fad-e3c26bd108ea.jpeg face_right 284.05154 194.30743 -198.82726 297.5633 162.09076 -226.39938 304.97745 158.22922 -226.07417 312.8843 154.15733 -225.71146 287.46408 169.04366 -174.42947 286.12537 170.43149 -174.71806 284.66486 171.97632 -175.17537 360.59155 151.84814 -275.79434 320.31302 174.63623 -34.266857 321.81482 209.66896 -209.12158 305.8318 219.09653 -138.99019 527.23615 297.49353 -192.62994 294.60843 311.69513 -22.86125 558.3077 506.6366 -135.14609 273.6429 508.76068 72.1959 564.0689 676.00433 -213.30753 264.36758 685.5444 -48.97263 578.8852 726.66046 -254.00835 258.06357 734.99097 -81.517685 554.463 729.6151 -308.12952 272.7774 737.18506 -143.1103 538.7854 710.50244 -232.82265 288.65808 716.94025 -76.10561 479.3843 672.1441 9.070642 335.001 667.0962 -8.409728 478.59454 928.54095 18.670034 316.2928 924.8602 -56.42055 446.98956 1126.105 265.3771 338.58017 1131.4365 218.27477 426.55423 1140.311 281.97812 355.57733 1149.2756 235.80162 480.9659 1242.1014 131.8728 323.022 1254.0498 64.24346
207 69d1cbb5-bb22-4fc1-82e4-d4d56c6d42ff.jpeg face_right 307.3651 216.72916 -251.3833 329.5101 193.46707 -270.95584 337.38324 193.41138 -270.8556 345.66885 193.22263 -270.9524 315.3724 193.66501 -228.75235 311.86908 193.1622 -228.77527 308.23563 192.88968 -228.6559 380.42496 205.67223 -268.09473 327.85672 202.95612 -71.32095 331.3068 242.25375 -243.49194 310.93082 241.68465 -186.74147 480.88022 352.47617 -242.74904 267.13123 341.4098 -2.7864747 504.2563 534.9205 -205.34229 234.585 516.10333 96.07526 496.0796 703.8827 -239.56139 222.28036 679.0225 -56.59817 504.33038 754.6052 -266.5706 215.1572 729.88153 -96.67093 484.73087 754.0451 -316.81442 228.52397 730.5067 -160.71391 473.6583 735.5835 -253.50885 244.22427 714.3787 -87.658745 416.77417 711.2195 -34.216248 300.20956 703.38855 35.236404 425.40317 944.40063 8.8264475 319.86026 937.5155 68.207 399.04794 1088.7012 355.01987 341.16315 1132.427 276.91577 388.9274 1096.7284 386.91385 345.41516 1152.0308 290.3957 399.52478 1179.7075 288.49506 357.75928 1228.3372 138.42932
208 6a6f783e-a74e-47fc-93a3-22bd59698fa1.jpeg face_right 284.35583 150.32672 -491.25333 310.6637 126.873856 -485.9444 321.69913 127.12742 -485.78217 333.17624 127.157936 -485.6778 289.69135 127.12223 -439.2675 283.38153 126.987915 -439.31308 276.92368 127.22805 -439.46582 375.35617 148.736 -387.1398 299.78006 146.09393 -171.80074 317.53918 183.78445 -453.9286 285.5314 183.42511 -391.18906 491.38412 328.89362 -271.9506 240.6768 322.71564 -74.95793 516.0345 534.3054 -236.71405 212.62447 524.7075 8.605291 501.31332 715.73065 -377.69073 207.73524 712.822 -266.15656 508.80472 775.5021 -425.23416 200.60919 777.76685 -345.2571 483.2285 773.5584 -500.09494 222.90822 774.396 -416.59973 470.0367 749.7848 -400.9351 242.0194 751.34485 -300.9069 422.74866 726.9701 -17.614985 285.1204 718.9083 18.584259 428.45172 959.4562 123.44515 262.99435 958.84796 147.28851 401.77774 1141.4736 540.8378 281.8062 1139.6434 624.18195 377.56485 1158.8457 573.1122 305.0488 1159.6089 656.9185 451.15884 1261.1693 376.0206 232.13113 1261.5754 457.77502
209 6b00dfc0-543b-409f-975f-7399a2fdbb95.jpeg face_right 305.00952 185.89389 -308.5977 328.68036 164.9736 -304.92566 338.4436 165.28088 -304.81268 348.61636 165.39218 -304.8044 308.94162 165.00964 -269.5962 303.224 164.86465 -269.62494 297.40268 165.00359 -269.67023 385.2274 184.81308 -240.57118 315.0852 182.10507 -72.8389 333.6909 217.12665 -283.52008 304.79626 216.44318 -234.70355 491.3441 352.66138 -170.7811 257.78314 344.2136 -19.647356 516.80774 541.64435 -125.26068 238.88586 533.29584 54.500893 505.7141 716.17523 -151.98863 218.91563 703.51654 -100.39452 514.77734 771.6212 -159.50539 207.85262 757.6039 -126.801315 494.6326 773.2928 -226.91399 218.32156 760.27313 -196.82895 482.07275 751.8945 -170.73526 238.07162 743.6315 -132.60045 424.1716 719.8581 -10.845732 292.6907 708.3155 11.331098 428.62546 959.17535 36.34234 273.12 943.2117 60.766876 417.67715 1142.6475 298.8385 294.2423 1135.2623 348.5924 397.3344 1160.3389 316.4931 317.46613 1158.7028 366.53366 462.1904 1251.5428 152.67036 237.2519 1241.5585 207.5933
210 6df2fd0e-ad0c-45bd-aaae-33871f5dfdad.jpeg face_right 330.32935 202.65892 -338.04367 356.01642 171.88057 -333.2349 368.96558 170.83252 -333.12854 382.22617 169.552 -333.15125 328.46283 173.8736 -298.82816 319.31006 173.90259 -298.8599 310.11176 174.2203 -298.86322 423.1849 183.36124 -264.53265 324.907 187.01825 -101.36712 367.4422 230.87555 -311.7124 326.6528 232.9671 -264.12958 538.6405 345.5635 -219.36084 264.56763 347.55005 -88.91274 594.93634 540.00464 -215.84695 205.3527 526.05914 -11.700511 578.2163 728.13025 -240.50769 204.43872 709.4293 -154.47162 580.1567 789.83344 -249.907 202.82675 768.2482 -204.31337 556.33124 781.2365 -301.6824 223.18842 761.0187 -254.95476 545.73376 757.7272 -251.46127 240.83026 740.01697 -177.91052 464.9753 755.5368 -10.000156 316.83206 750.8047 10.951591 476.1385 994.3806 73.44371 306.266 987.23944 73.910675 470.42816 1149.7789 329.54053 326.60046 1140.2776 416.83774 455.89185 1161.2095 351.52936 344.7936 1152.9111 441.74545 501.97693 1264.2478 234.49654 300.22067 1261.3801 330.67206
211 7093d145-af99-43ad-8aea-c302a3151b5f.jpeg face_right 310.1503 163.87787 -340.6201 331.5861 143.47089 -329.47348 341.3725 143.4596 -329.44003 351.58102 143.2753 -329.5521 309.3311 144.25296 -296.3118 302.4925 144.30096 -296.21002 295.55417 144.62115 -296.03732 383.3155 160.24432 -220.35486 308.3484 159.78473 -63.550186 337.6055 191.91216 -299.01718 307.1498 192.16522 -253.60017 481.38336 316.20923 -145.07043 252.20856 311.95093 26.953625 506.1894 490.02304 -113.491646 229.64964 489.55054 107.36424 505.28577 657.7257 -217.68639 208.36812 652.3463 -91.254616 518.62537 711.0568 -248.3005 197.12166 705.0074 -127.4711 497.65714 714.5746 -311.54047 207.33162 707.44763 -202.50085 484.0985 693.9675 -236.76076 225.44473 689.5643 -126.36361 415.66708 686.32935 -12.667074 283.14307 678.991 13.378589 436.9734 912.54663 14.996928 262.33896 905.68604 23.97414 424.00656 1086.5729 320.4601 277.7256 1087.7585 358.48965 401.68585 1104.6555 343.23132 293.15845 1105.9373 379.32217 482.30148 1190.6709 164.70915 253.99562 1197.8904 194.91602
212 7225ce05-d978-4b75-8185-ab00b75b75ab.jpeg face_right 295.28027 138.08258 -214.55173 322.5157 108.53577 -236.42462 332.10623 108.53504 -236.18367 342.17206 108.31234 -236.12968 308.4347 107.52903 -182.20396 305.4746 106.45298 -182.24828 302.33203 105.6332 -182.23763 387.7619 123.839035 -260.7022 332.14478 118.12069 -10.213631 326.67065 169.23953 -217.29305 302.8487 167.49829 -145.05676 516.695 297.79987 -218.60225 261.54865 287.29388 34.80967 563.26855 501.0419 -207.87401 218.41862 485.82184 143.24718 546.7435 693.0646 -254.02657 173.36023 662.7756 -48.772488 556.62354 756.0077 -275.2935 157.05632 718.9697 -100.98646 525.17645 751.3694 -336.05002 172.2567 718.53845 -167.77136 513.20245 725.2488 -270.99216 193.80586 699.70557 -81.76269 436.66312 704.39575 -22.336863 286.72522 695.9433 23.302387 452.66452 951.76886 17.774353 249.06519 936.7878 22.840755 430.16647 1129.7507 312.114 266.27133 1106.3313 382.75754 413.9306 1141.6763 338.18457 286.85864 1123.1045 410.64975 460.96194 1256.1608 214.57022 221.42867 1226.352 280.84598
213 72c90dc5-972a-4537-901c-0250a39ef36d.jpeg face_right 308.33127 129.5205 -308.2638 332.48868 107.1077 -318.81247 340.72806 107.26078 -318.6831 349.40424 107.23602 -318.58597 318.63055 107.217064 -270.63736 315.3047 106.944275 -270.66928 311.82483 106.94996 -270.73035 387.50763 125.84675 -299.88538 335.62054 122.61467 -74.688896 334.73785 160.35667 -299.7039 312.53613 159.5192 -234.33821 496.7745 302.41797 -254.16644 273.11588 295.027 -17.025629 518.98535 508.0092 -209.55391 243.56136 492.68347 57.795933 498.53455 698.0279 -225.66527 223.63765 684.25165 -100.0593 503.9171 754.6082 -243.80959 212.41653 740.7085 -140.88948 481.65067 754.8965 -309.10382 228.81955 743.8144 -202.70964 471.11584 731.78766 -243.3498 248.37636 725.10956 -131.85303 424.639 673.7287 -46.60839 298.22174 664.06555 47.43877 412.40997 943.2344 -10.261887 282.9214 928.1208 51.485394 392.2149 1157.7703 243.22266 305.25598 1153.3239 304.49194 381.81882 1176.8309 259.7036 322.54755 1178.4717 316.51718 397.6624 1272.6184 100.13502 275.4469 1264.3639 139.7291
214 73825e79-5c50-403c-bc3d-2a06dbdfd135.jpeg face_right 1490.6903 1042.9728 -1081.3794 1575.5717 956.9031 -1119.6285 1609.944 958.66254 -1119.3075 1645.4999 959.7624 -1119.2584 1512.0079 949.72266 -1000.4531 1493.5704 945.4391 -1000.7629 1474.8457 941.9649 -1001.48376 1777.2944 1005.77844 -1044.4998 1538.9423 976.5341 -506.4472 1589.7814 1137.5431 -1037.9957 1492.1075 1127.679 -881.1657 2148.016 1515.6521 -809.90607 1330.378 1448.7484 -439.49966 2244.8394 2113.038 -644.14496 1221.02 1979.5469 -220.72974 2233.1758 2589.532 -784.7591 1225.5876 2493.858 -561.6942 2256.6 2751.6501 -859.3815 1210.9526 2658.2158 -698.3955 2188.788 2744.555 -1002.13153 1269.893 2658.4646 -861.0528 2142.1323 2680.3489 -825.3057 1322.7046 2599.6746 -635.18787 1939.5458 2606.9304 39.860523 1498.3024 2584.0686 -36.502113 1970.6648 3204.0278 482.61298 1453.9303 3191.4888 294.99954 1905.505 3605.6853 1301.0742 1463.6619 3614.9846 1318.4583 1828.2238 3633.7588 1368.7797 1493.1302 3647.0 1391.8472 2065.3176 3938.135 972.572 1432.4556 3955.9775 944.9574
215 74d304f6-4b9f-4b2c-9073-dc925a60d556.jpeg face_right 318.08615 193.13885 -354.31403 336.10706 167.31277 -356.77554 346.04776 164.94385 -356.61722 356.42 162.3751 -356.49323 316.71225 173.62637 -317.5352 311.0151 175.5304 -317.52402 305.19888 177.74353 -317.5694 398.83072 175.48856 -299.18338 328.63892 193.82062 -114.41806 354.87036 218.47122 -329.41864 325.94513 226.02371 -275.5038 540.80176 340.35156 -205.29813 289.2919 353.68634 -72.23065 577.0882 537.179 -143.77127 261.34058 541.7157 -13.229493 559.7142 726.00433 -251.54091 260.8068 707.66534 -230.71411 570.4766 790.9413 -289.71295 254.55081 763.0145 -286.27338 539.9702 793.3452 -362.56976 270.9377 761.5655 -355.25024 526.3973 766.5355 -273.14526 289.85452 740.4621 -262.6402 477.2008 740.32227 -2.1337948 334.78687 734.33966 3.2291534 478.0333 993.3798 55.68083 304.40805 993.0976 32.83139 459.13406 1188.0573 325.0432 309.30722 1203.4868 354.76483 436.1606 1213.7893 344.39404 332.5343 1229.9922 374.18533 522.4449 1289.8083 200.78545 250.01424 1320.5272 207.33823
216 7cb2e84c-8a72-45c8-9c40-c478fa9f9e07.jpeg face_right 350.11832 120.93872 -366.6796 375.07367 99.65935 -357.79114 385.71445 99.98947 -357.74792 396.7838 100.151215 -357.82672 352.7912 99.51038 -314.48883 346.10947 99.23164 -314.4658 339.28973 99.209785 -314.39688 432.99188 119.485664 -268.0375 356.25485 115.257454 -63.4784 379.9353 151.24802 -333.51343 347.7081 149.97093 -274.3527 538.0729 290.36343 -212.4844 296.11835 280.22675 28.57241 563.6411 495.03906 -169.40036 288.9645 485.49118 117.57737 546.43036 678.89795 -225.61105 257.16373 655.4554 -62.51373 554.9522 736.42676 -241.06525 247.53867 705.4769 -80.507805 532.4163 738.8368 -311.58218 244.85805 708.7621 -162.22154 518.52783 715.9584 -245.02484 264.80963 693.62213 -101.05397 446.36502 657.7106 -45.84547 310.02466 643.70966 46.45968 440.06244 926.0359 -9.631122 295.7387 910.9772 67.50122 423.29825 1129.4805 298.5213 315.11887 1130.0795 359.83942 410.89795 1148.0825 320.25195 339.05188 1158.2892 376.52933 439.4478 1248.933 129.79897 251.57645 1239.9144 182.89293
217 7d062f40-ceb8-46c4-90ed-1e126bbef83a.jpeg face_right 303.2417 194.77112 -291.2293 329.88306 171.27556 -290.80685 340.89093 171.37405 -290.56104 352.27484 171.26895 -290.49475 307.3728 171.35658 -252.64587 300.9199 171.09505 -252.83762 294.4025 171.09921 -252.88072 393.66785 189.89227 -238.70311 315.39224 187.117 -62.841705 336.4924 226.00693 -272.16052 303.89575 225.55733 -221.03577 508.33063 352.80664 -179.54144 265.6169 351.11057 -22.765665 545.57495 530.68555 -164.9138 238.80887 521.25696 72.44 531.71783 692.6169 -195.49316 227.863 684.672 -72.22903 540.44434 744.5111 -214.19186 217.24687 735.3552 -109.55044 516.6011 742.97003 -265.7831 235.2563 737.4634 -165.02055 505.76135 722.95056 -209.52112 253.55862 720.25476 -98.95718 456.95685 705.28687 -4.4206285 321.79388 697.8656 4.9447756 471.03864 946.2501 29.512348 291.1104 923.5974 -53.798717 436.76727 1081.183 359.69183 325.7344 1085.7711 263.2701 417.96176 1082.6215 387.62885 342.05383 1092.6906 285.55756 457.6543 1202.8387 273.0671 319.9641 1214.1221 148.23322
218 81dffba3-f0d1-46f8-93fd-758f50b8f0e1.jpeg face_right 276.92664 228.24023 -309.80786 297.90408 205.86906 -326.5747 305.43802 205.58807 -326.5679 313.37317 205.08934 -326.57196 287.30994 207.02115 -272.3895 285.15036 207.2255 -272.21478 282.76816 207.72366 -271.97098 351.3746 224.14803 -333.2151 308.94864 225.3624 -76.677086 303.1218 258.3516 -309.0557 283.99655 259.28363 -235.13199 470.3962 393.72125 -314.28543 264.9782 395.92932 -10.19149 508.22577 594.31445 -304.34744 255.05312 579.2127 61.0951 489.64078 788.7082 -336.32983 242.01517 763.7031 -109.651085 496.44376 848.7577 -360.5362 231.7944 814.89374 -147.80414 467.3197 846.35254 -424.86896 239.24905 819.3684 -209.28703 457.12524 820.6475 -352.96402 257.90588 802.98334 -141.079 429.0513 760.40466 -64.121704 310.56024 755.4932 65.2935 443.98984 1008.8885 -22.49944 297.95944 996.22375 85.21814 441.63675 1204.3542 257.10397 321.84155 1198.3324 365.1846 434.35092 1226.0007 278.393 343.5776 1226.6226 381.88095 457.66348 1303.1614 135.22975 265.54312 1293.5767 224.255
219 873dab4d-0ae8-4b44-9989-b2dbb3f78de4.jpeg face_right 296.72308 143.44876 -171.05469 311.54892 119.03999 -211.71638 315.0406 118.90373 -211.50114 318.73828 118.73718 -211.49811 310.3822 119.482346 -169.29945 311.17206 119.57222 -169.02292 312.20135 119.80862 -168.62952 341.64975 136.07227 -293.92865 334.4595 135.53601 -97.18212 310.94803 171.66537 -185.9724 303.802 171.6141 -129.26205 303.423 279.22165 -327.85538 428.918 281.9388 -18.987692 311.60254 502.68192 -291.5099 493.68674 505.58295 -34.9826 263.7727 679.9625 -202.714 464.29163 669.5631 -44.018383 251.66043 732.9214 -235.13875 460.98947 717.77747 -48.632763 239.109 729.12787 -225.27052 453.5576 713.54114 -78.472015 251.62245 716.3471 -192.35057 448.53775 702.4983 -57.37335 331.46454 670.1301 -83.28815 407.2043 658.96783 84.98221 310.3086 940.2361 109.24363 389.78058 922.3391 215.3363 329.01453 1162.4275 323.23718 386.5358 1148.791 396.80936 342.67026 1202.1855 341.3134 396.6112 1191.1091 413.05728 284.37698 1199.513 339.4866 346.02676 1182.0322 407.76685
220 88d87581-ff47-431c-a244-f9421f56fe23.jpeg face_right 314.78046 206.91882 -304.67383 337.36563 177.87086 -305.76297 348.7318 176.3649 -305.6508 360.43512 174.65106 -305.64786 314.77692 180.95523 -264.4383 307.42648 181.47713 -264.46194 299.95773 182.27974 -264.46603 400.55298 187.06342 -254.55386 320.3687 194.11461 -60.454212 350.71368 231.828 -283.38297 315.99594 235.45273 -227.20862 515.0961 339.57944 -206.84775 277.6505 351.8462 -35.527958 552.03625 537.63153 -201.94463 259.6271 546.0009 29.624365 526.37274 731.4094 -224.1455 262.98288 733.8138 -127.2171 532.82166 794.8907 -241.6782 256.88272 793.06604 -174.68042 504.2301 790.38745 -293.9729 275.1128 791.40894 -224.31052 494.15958 764.5606 -235.93314 292.48877 768.48755 -151.32625 450.4763 736.90625 -22.521301 320.2732 732.3269 23.41282 459.78632 972.3518 25.282223 306.1409 976.3535 28.161722 429.98648 1152.3826 220.83075 337.576 1150.3485 300.4661 415.62772 1167.392 235.22638 356.21555 1166.3779 316.58902 454.97208 1271.3885 118.83674 312.40683 1272.8447 195.20322
221 896b9af2-0421-4fea-b01a-52101068b3a5.jpeg face_right 295.28027 138.08258 -214.55173 322.5157 108.53577 -236.42462 332.10623 108.53504 -236.18367 342.17206 108.31234 -236.12968 308.4347 107.52903 -182.20396 305.4746 106.45298 -182.24828 302.33203 105.6332 -182.23763 387.7619 123.839035 -260.7022 332.14478 118.12069 -10.213631 326.67065 169.23953 -217.29305 302.8487 167.49829 -145.05676 516.695 297.79987 -218.60225 261.54865 287.29388 34.80967 563.26855 501.0419 -207.87401 218.41862 485.82184 143.24718 546.7435 693.0646 -254.02657 173.36023 662.7756 -48.772488 556.62354 756.0077 -275.2935 157.05632 718.9697 -100.98646 525.17645 751.3694 -336.05002 172.2567 718.53845 -167.77136 513.20245 725.2488 -270.99216 193.80586 699.70557 -81.76269 436.66312 704.39575 -22.336863 286.72522 695.9433 23.302387 452.66452 951.76886 17.774353 249.06519 936.7878 22.840755 430.16647 1129.7507 312.114 266.27133 1106.3313 382.75754 413.9306 1141.6763 338.18457 286.85864 1123.1045 410.64975 460.96194 1256.1608 214.57022 221.42867 1226.352 280.84598
222 8aa2b634-9b9b-46c6-a365-e3803efa2fcc.jpeg face_right 274.54834 194.65271 -291.96555 299.79233 166.97304 -300.9177 310.0827 166.14845 -300.79443 320.74963 165.1135 -300.75775 281.1995 168.59021 -254.6149 276.06784 168.65009 -254.78023 270.8253 168.99203 -254.85788 365.47903 180.2341 -285.31598 297.98285 182.42409 -65.06036 309.5431 222.70432 -285.64606 280.4189 224.44786 -221.724 489.13638 347.5647 -223.1803 256.67072 353.47806 -51.272717 534.5374 553.97955 -209.28311 248.45929 559.3713 18.256456 533.2003 724.59467 -214.09096 225.12694 726.0382 -109.87569 543.1692 773.5833 -216.67896 213.0165 775.2508 -140.41708 524.1772 770.4675 -275.39407 223.22377 774.0454 -192.81635 511.54086 750.52966 -231.50464 243.459 757.9443 -135.83963 427.26007 719.0158 -28.205372 299.71524 713.7884 28.851297 440.71304 965.15045 4.8365602 304.718 960.88184 77.55035 415.75992 1146.9047 238.01747 330.72812 1146.1451 344.69687 403.35123 1159.6819 255.4833 346.00027 1165.3651 361.5445 429.06885 1268.5576 136.85135 311.58447 1260.8467 226.25792
223 96ac89d0-bee3-4800-b99a-e023b37d28d0.jpeg face_right 285.7924 234.70233 -252.47069 307.42273 208.06317 -262.6229 317.5403 206.6143 -262.49994 328.00955 204.94087 -262.47256 287.5652 211.61166 -224.93144 281.8379 212.4307 -224.9912 276.05908 213.51387 -224.9974 370.18973 216.51126 -236.95999 298.13638 225.91556 -63.434715 320.3627 260.09253 -240.07404 291.38873 264.1234 -189.35434 495.19278 365.51562 -177.38048 261.7208 373.20648 -41.10855 547.86084 530.53735 -154.59712 228.97252 537.73737 17.023693 526.3926 681.9313 -198.63878 220.4526 685.6946 -147.1073 532.5979 733.67804 -219.71426 215.99997 739.14233 -195.91989 503.9536 728.97394 -264.69928 236.06354 731.64404 -243.79669 493.7165 708.2738 -209.73792 252.36252 712.5824 -169.4002 447.0739 730.0079 -12.555131 320.85062 726.0501 13.001511 458.16318 930.0068 61.16206 294.23343 925.6003 41.786114 440.07178 1087.2931 226.78262 321.29712 1080.5378 299.91867 424.77716 1102.5459 238.72034 344.3939 1096.7324 316.05884 473.69202 1187.9528 136.01118 276.9829 1185.7123 216.40242
224 9ea30f6b-c5b0-474a-9937-9293697087be.jpeg face_right 293.97656 217.53197 -171.53697 311.8713 194.45828 -188.284 318.81146 193.21286 -188.10521 326.1712 191.76712 -188.0628 301.2604 197.08221 -142.49081 299.38226 197.53131 -142.5994 297.3983 198.16516 -142.68556 364.1056 200.84781 -212.44147 324.30417 207.61314 1.3275112 321.60062 239.83249 -176.76205 305.21274 242.93515 -114.74223 480.05133 347.05432 -179.16441 287.80435 348.154 33.273838 505.63495 526.8357 -157.6666 264.8935 521.35815 106.3855 514.0441 684.68396 -173.45816 247.27588 670.7241 -28.217125 529.7398 729.2426 -186.68651 238.48932 716.3465 -60.1978 509.06506 734.9588 -237.11127 253.51222 717.2216 -112.46313 495.43112 717.5537 -188.55914 269.3379 702.2628 -53.455303 430.72684 672.54065 -28.760601 317.81155 668.17065 29.209892 445.75482 883.88403 -14.005767 314.6903 875.6027 37.954998 436.9775 1063.7523 156.95776 333.13852 1061.6517 234.71582 427.54657 1082.0242 168.2092 350.9027 1086.1757 244.36295 457.7592 1151.9751 53.01879 298.8986 1146.1818 114.659836
225 a2ebb4f5-bd02-41c3-a10b-5cdff44e3bb9.jpeg face_right 285.9157 203.14339 -178.0837 305.09116 179.47217 -192.88019 312.3308 178.76163 -192.7864 319.91675 177.8818 -192.78946 291.60132 180.95111 -156.87361 288.29376 181.08386 -157.03813 284.87302 181.38908 -157.28804 352.2615 189.0968 -194.78342 303.83047 191.28616 -27.051609 310.12082 226.81053 -174.1494 290.21094 228.23593 -125.599 449.5517 335.99332 -178.78523 260.57956 333.77 -4.847938 488.81012 528.0156 -158.48216 233.04547 515.5781 40.67046 478.53876 693.94226 -153.98772 215.12634 687.2875 -37.47879 485.36566 744.49133 -172.42531 204.06032 737.9691 -56.930466 461.73373 741.5398 -211.31769 218.15817 739.7043 -103.60163 452.23898 722.6697 -165.75378 234.04419 724.2673 -59.126053 398.88028 680.85144 -37.497246 291.1147 674.5548 38.105648 394.66437 915.8758 -13.043364 288.96042 912.8197 47.280525 388.94815 1126.5339 100.55133 288.6745 1118.1941 196.6538 389.03293 1148.2301 105.38342 294.10397 1143.3336 201.38405 374.87506 1212.9216 -15.742513 285.64294 1197.3502 70.535225
226 a3843ab1-1639-4748-bf12-31be9c700ea9.jpeg face_right 357.51126 163.47653 -499.05386 377.67697 141.71852 -468.8216 389.37784 141.95026 -468.6481 401.30783 142.01363 -468.93823 347.2873 142.39616 -456.6223 336.93033 142.64954 -456.9014 326.49268 143.23575 -457.27985 427.4323 162.61475 -302.34033 326.16895 162.65015 -236.60294 386.27762 196.66837 -439.15314 344.9008 197.07893 -419.68948 519.55334 335.35886 -180.53578 265.33243 322.94254 -96.84254 555.69183 494.07272 46.448505 240.27338 458.01904 211.43886 500.65164 605.86786 263.32153 284.5558 541.3305 354.07892 487.83246 644.7488 282.4321 293.67218 572.30566 368.01633 475.83755 628.8542 255.47385 305.4261 558.2885 326.45175 474.97922 614.65686 260.22278 310.8176 546.06573 343.79745 458.30612 684.7244 -8.980509 313.27866 677.1161 9.137922 437.72232 935.89453 113.77227 310.0506 917.92053 74.45922 437.06052 1116.1702 525.63885 312.49197 1109.6144 460.35278 427.64713 1126.609 555.75024 322.7922 1122.1685 487.29172 435.89758 1249.0176 340.34476 307.54977 1245.8129 282.54193
227 a43582bf-43dc-421d-a055-7041256d3008.jpeg face_right 293.59854 175.18974 -175.2108 313.5311 145.78845 -207.37218 320.7275 144.41719 -207.06082 328.40567 142.82143 -206.88971 306.33347 146.75464 -145.94563 306.37784 146.09596 -146.0023 306.2377 145.68188 -146.16873 374.77615 147.6199 -268.56403 342.32565 150.19977 14.097841 324.8125 197.98373 -187.23987 311.40417 199.646 -105.73031 522.1136 299.3589 -224.30205 296.54666 301.5482 98.814804 559.20154 499.99527 -182.75377 273.59833 487.33884 237.03258 554.882 677.5379 -225.163 234.09822 653.45795 8.593988 567.32544 732.05927 -257.0233 219.77351 706.18896 -50.82123 540.6212 728.75195 -313.68945 231.3177 704.9755 -124.409294 530.0829 708.18555 -240.95526 250.57558 687.5821 -29.715996 469.57648 696.83765 -25.819374 326.0219 693.86584 26.805645 490.35742 949.5654 27.483015 317.98874 940.2388 -9.599913 467.50262 1129.0452 433.72165 349.6743 1121.2007 386.7498 453.55 1139.8345 469.90906 369.4122 1136.4172 420.07938 486.9749 1248.5232 347.15204 325.576 1239.948 277.69308
228 a4d500d9-36f6-4b25-9ceb-ec0ac3ae9959.jpeg face_right 294.02237 148.24704 -290.65976 312.47604 128.03867 -286.5647 321.1877 127.0002 -286.34512 330.32928 125.74154 -286.25122 293.69992 131.26793 -253.25716 288.60486 132.21916 -253.36899 283.43445 133.43582 -253.53418 366.06952 138.8498 -203.88824 302.9682 147.06482 -48.719833 324.11487 173.98521 -257.26285 299.04663 177.44583 -212.07368 494.16608 292.873 -114.15186 260.9498 298.87906 -1.0264033 533.20404 485.6286 -70.03627 245.53662 483.02487 55.93635 535.5826 667.744 -153.93608 210.02374 659.34235 -94.445366 549.9446 725.65 -171.72243 193.57018 714.3078 -104.86171 529.1499 729.88525 -248.1916 198.46707 722.24695 -189.19135 514.68884 709.1903 -178.08719 220.74713 706.3124 -130.84007 450.5852 663.30444 4.0721703 310.74722 655.05005 -3.4864755 461.19827 930.15454 5.4627595 281.58908 918.3624 -45.54936 444.4295 1139.783 244.01085 302.67188 1149.0819 206.11021 421.99396 1167.4897 256.1894 329.5518 1179.0088 215.81396 504.58768 1236.3539 76.12192 240.95947 1256.0997 24.835566
229 a5efe525-41c8-4946-887d-3b382ad6acdb.jpeg face_right 311.78 279.39294 -403.9674 334.84012 256.4447 -414.32166 343.7768 256.29553 -414.16653 353.1208 255.9607 -414.1765 319.2613 257.1007 -364.23743 315.0134 256.98853 -364.1615 310.64438 257.19315 -364.1238 392.08444 272.54602 -372.12387 334.2926 271.66382 -140.95682 340.60056 306.79684 -386.71164 315.83636 307.07565 -319.90823 504.02545 432.39682 -317.4385 287.61786 425.64786 -26.291592 530.252 617.0626 -275.23373 276.3366 601.5051 67.09451 511.6543 782.59875 -358.9065 249.62337 762.695 -154.85855 518.22644 834.35 -397.46423 239.18481 814.0527 -203.47562 493.62936 830.99915 -457.7522 246.76895 814.50226 -275.59503 483.1875 809.2502 -375.77173 265.1033 797.1416 -190.54947 441.3867 781.5996 -60.533085 323.3388 771.7881 61.688244 441.35745 999.5134 56.36696 298.39154 992.71796 115.668686 426.7464 1165.5668 395.8683 326.59183 1147.5999 460.1151 419.53998 1177.1719 422.58307 345.71118 1159.514 484.30905 430.0159 1282.4504 256.64862 294.01108 1262.6677 333.17398
230 ac86d8ca-b07c-4c4f-917d-673bccdfb252.jpeg face_right 300.82593 189.47182 -262.4204 320.70493 166.84537 -277.21594 328.11105 166.02776 -276.9832 335.9952 165.01437 -276.78394 309.91498 168.78476 -224.27972 308.18683 169.12625 -224.3561 306.30276 169.68864 -224.51416 376.17886 178.35365 -280.34302 335.25906 182.89441 -38.4158 329.3481 215.05241 -259.8882 311.50653 217.38202 -189.74533 500.44687 342.28183 -220.78221 285.7427 336.1377 15.986471 521.0848 524.06635 -184.73906 245.30089 505.88342 99.99555 504.53348 691.2833 -264.59518 240.00082 687.797 -93.00956 512.3442 743.09424 -313.2986 231.08754 739.54517 -154.20018 486.13675 743.3815 -367.75613 252.19746 739.9695 -210.55165 477.90466 723.36115 -281.94348 265.9961 721.1831 -122.79878 444.25214 688.30316 -13.707224 313.9578 678.8578 14.500986 440.44647 932.65106 14.943553 301.8132 921.39636 -44.4858 423.4845 1125.7947 315.36734 307.1151 1124.4692 270.54407 409.4608 1136.874 336.98154 316.44003 1139.0449 290.03906 437.68192 1238.7429 161.31038 305.7843 1240.9211 101.94368
231 ade82842-0b8e-4ce3-ac6f-64699ef27960.jpeg face_right 205.2291 112.57532 -205.15346 217.3385 96.33124 -208.73776 223.40216 95.50891 -208.70396 229.69846 94.57219 -208.73108 205.18413 98.35014 -186.19951 201.38768 98.80383 -186.27946 197.55446 99.41724 -186.3948 252.39787 102.10126 -182.87836 208.95175 107.08058 -74.66536 224.53952 127.635956 -193.4732 206.50209 129.96602 -161.82373 323.90762 203.19693 -136.99217 181.6689 198.42577 -53.15798 332.4608 327.24432 -98.919815 167.17596 312.73285 -4.383269 338.35394 427.5884 -113.051636 160.70311 419.53665 -73.05991 345.1684 455.83276 -118.26181 154.51903 449.46738 -87.140915 339.18475 457.59302 -156.59116 162.52481 450.51144 -122.87319 329.712 447.03885 -124.811195 174.56355 440.96664 -88.35357 282.12195 416.5117 -12.415709 206.68924 409.5253 12.956326 274.15042 556.2376 30.110767 205.28403 544.0504 46.36402 253.08932 660.6869 171.01376 214.49881 650.90405 222.76355 243.62033 670.3593 180.68375 221.26071 662.9762 233.8727 263.9055 720.44403 101.430626 204.65865 709.5475 153.57852
232 b2b3d967-1eeb-429e-8ae4-2b0fcb8794d4.jpeg face_right 302.92316 173.12668 -344.5148 326.43826 142.44556 -335.8822 339.10904 141.4899 -335.76678 352.13632 140.29297 -335.78122 298.24612 145.03384 -306.20175 288.46896 145.56638 -306.24246 278.65353 146.33694 -306.25064 389.18637 157.5454 -250.21077 288.77112 162.86343 -108.26941 338.26102 202.70328 -312.6727 296.0241 205.50357 -270.90005 503.8179 327.43045 -203.197 234.62968 331.64563 -75.21235 564.1015 520.4125 -186.44206 192.32932 525.9441 -30.426609 559.1995 700.0607 -244.18658 171.86891 696.8312 -183.82622 572.2827 759.8894 -271.3186 158.38283 753.98065 -221.71472 537.8805 760.1846 -316.7512 183.66696 753.35394 -279.4694 521.22 736.9754 -255.26326 206.00322 733.03656 -209.30026 430.3127 718.3302 -25.059479 291.51135 713.6761 26.013485 433.01492 952.4778 21.772196 271.42102 948.92773 -69.54532 404.07422 1125.0353 232.37843 313.3161 1134.661 216.67104 395.16135 1132.816 247.14706 333.83914 1149.8811 235.21928 398.7153 1255.9132 117.98155 285.39334 1260.5876 100.8156
233 b3bacbe6-e378-47e0-b4b3-925697de1d6e.jpeg face_right 318.33627 161.38382 -456.217 340.79315 140.62268 -457.14932 349.42685 140.8479 -456.96155 358.4667 140.8714 -456.88455 323.7455 140.79984 -414.19122 318.99966 140.69516 -414.2473 314.1298 140.88844 -414.36328 393.3336 158.93547 -382.12784 332.95822 156.20038 -186.6746 344.70605 190.54001 -428.10065 319.563 190.06264 -370.83334 501.33295 317.05737 -309.24716 278.18268 315.75995 -95.63903 524.4397 500.17645 -270.75406 264.46988 499.57486 -40.15731 513.7227 667.3873 -340.48538 261.82605 673.3798 -218.09087 524.64685 717.1774 -372.72726 255.3469 727.4669 -261.35828 499.97873 724.13477 -430.4907 268.86005 732.2754 -324.2994 487.74933 705.1685 -358.1895 284.9232 714.2772 -249.67773 447.36877 659.1196 -37.78207 321.25534 653.4089 38.422607 448.37067 895.71423 29.227654 299.85223 884.66034 -90.611664 422.25858 1083.7468 364.83078 336.64413 1087.851 272.65622 411.04922 1097.2301 388.41245 352.71246 1103.3137 296.25873 429.25793 1198.5481 200.93826 329.5325 1205.571 96.20701
234 b50186dd-c399-4b3e-825e-8d16eefc63b1.jpeg face_right 298.5095 259.32947 -258.52444 315.45145 237.15584 -259.04312 323.96768 235.98315 -258.9342 332.7951 234.62982 -258.95526 297.25775 239.57664 -227.0631 291.4904 239.95953 -227.11641 285.64563 240.52322 -227.17613 362.49927 242.60208 -204.25381 299.9233 248.03421 -56.28112 325.22726 278.28076 -235.23386 299.3592 281.11008 -192.20189 450.75122 363.08124 -159.45609 268.1128 373.43854 -8.898976 478.202 534.2411 -142.57799 264.7851 544.27344 44.753273 478.6219 696.6594 -154.39919 276.92084 698.5717 -52.928883 491.25262 744.627 -169.53229 276.50888 745.2066 -78.7119 471.89133 745.4192 -211.86664 287.711 745.4645 -121.08904 460.65326 727.4346 -163.893 298.34024 727.97656 -72.63767 412.0933 688.3123 -20.144705 306.94446 685.8423 20.486969 427.61893 900.6131 0.5530506 308.8939 904.9321 24.753683 408.0357 1071.0646 169.74889 324.89285 1083.9803 218.3745 394.50076 1087.7142 180.64142 335.21902 1101.6753 226.06801 436.62967 1166.3235 52.04436 322.48126 1184.004 83.3161
235 bd71eb48-29b2-4891-b608-8e14a980a9f9.jpeg face_right 285.9157 203.14339 -178.0837 305.09116 179.47217 -192.88019 312.3308 178.76163 -192.7864 319.91675 177.8818 -192.78946 291.60132 180.95111 -156.87361 288.29376 181.08386 -157.03813 284.87302 181.38908 -157.28804 352.2615 189.0968 -194.78342 303.83047 191.28616 -27.051609 310.12082 226.81053 -174.1494 290.21094 228.23593 -125.599 449.5517 335.99332 -178.78523 260.57956 333.77 -4.847938 488.81012 528.0156 -158.48216 233.04547 515.5781 40.67046 478.53876 693.94226 -153.98772 215.12634 687.2875 -37.47879 485.36566 744.49133 -172.42531 204.06032 737.9691 -56.930466 461.73373 741.5398 -211.31769 218.15817 739.7043 -103.60163 452.23898 722.6697 -165.75378 234.04419 724.2673 -59.126053 398.88028 680.85144 -37.497246 291.1147 674.5548 38.105648 394.66437 915.8758 -13.043364 288.96042 912.8197 47.280525 388.94815 1126.5339 100.55133 288.6745 1118.1941 196.6538 389.03293 1148.2301 105.38342 294.10397 1143.3336 201.38405 374.87506 1212.9216 -15.742513 285.64294 1197.3502 70.535225
236 bf146ef6-7dba-4a1a-b6be-7d7b0cd8f991.jpeg face_right 357.51126 163.47653 -499.05386 377.67697 141.71852 -468.8216 389.37784 141.95026 -468.6481 401.30783 142.01363 -468.93823 347.2873 142.39616 -456.6223 336.93033 142.64954 -456.9014 326.49268 143.23575 -457.27985 427.4323 162.61475 -302.34033 326.16895 162.65015 -236.60294 386.27762 196.66837 -439.15314 344.9008 197.07893 -419.68948 519.55334 335.35886 -180.53578 265.33243 322.94254 -96.84254 555.69183 494.07272 46.448505 240.27338 458.01904 211.43886 500.65164 605.86786 263.32153 284.5558 541.3305 354.07892 487.83246 644.7488 282.4321 293.67218 572.30566 368.01633 475.83755 628.8542 255.47385 305.4261 558.2885 326.45175 474.97922 614.65686 260.22278 310.8176 546.06573 343.79745 458.30612 684.7244 -8.980509 313.27866 677.1161 9.137922 437.72232 935.89453 113.77227 310.0506 917.92053 74.45922 437.06052 1116.1702 525.63885 312.49197 1109.6144 460.35278 427.64713 1126.609 555.75024 322.7922 1122.1685 487.29172 435.89758 1249.0176 340.34476 307.54977 1245.8129 282.54193
237 c40b74b5-6cb2-432c-b882-8ca713b3eebe.jpeg face_right 284.05154 194.30743 -198.82726 297.5633 162.09076 -226.39938 304.97745 158.22922 -226.07417 312.8843 154.15733 -225.71146 287.46408 169.04366 -174.42947 286.12537 170.43149 -174.71806 284.66486 171.97632 -175.17537 360.59155 151.84814 -275.79434 320.31302 174.63623 -34.266857 321.81482 209.66896 -209.12158 305.8318 219.09653 -138.99019 527.23615 297.49353 -192.62994 294.60843 311.69513 -22.86125 558.3077 506.6366 -135.14609 273.6429 508.76068 72.1959 564.0689 676.00433 -213.30753 264.36758 685.5444 -48.97263 578.8852 726.66046 -254.00835 258.06357 734.99097 -81.517685 554.463 729.6151 -308.12952 272.7774 737.18506 -143.1103 538.7854 710.50244 -232.82265 288.65808 716.94025 -76.10561 479.3843 672.1441 9.070642 335.001 667.0962 -8.409728 478.59454 928.54095 18.670034 316.2928 924.8602 -56.42055 446.98956 1126.105 265.3771 338.58017 1131.4365 218.27477 426.55423 1140.311 281.97812 355.57733 1149.2756 235.80162 480.9659 1242.1014 131.8728 323.022 1254.0498 64.24346
238 ca1acd40-ad5f-4f67-b172-c295873317b6.jpeg face_right 307.98633 161.89877 -314.1133 327.97552 137.66055 -329.91495 335.2295 136.75754 -329.67603 342.97354 135.65063 -329.46838 317.65585 139.12701 -277.9179 316.51376 139.07468 -277.88007 315.20554 139.25632 -278.03812 385.75894 145.71686 -317.62717 345.48236 149.30862 -83.12532 337.4439 187.39835 -303.03397 321.57834 189.22935 -235.14111 526.62683 307.50922 -221.26224 291.43054 303.87463 15.659888 560.3744 501.6294 -174.46907 263.48798 492.60248 107.214 546.6268 666.9608 -320.80286 240.60545 648.42615 -224.07294 555.6614 721.0888 -372.94223 229.56999 700.7616 -311.12128 528.0288 718.60144 -438.05542 246.85292 698.6898 -387.85056 518.0475 696.98145 -339.4381 266.0112 679.2988 -264.08383 471.63025 685.3369 4.35707 324.71844 677.5507 -3.3748972 475.1265 933.69165 37.07235 289.67047 931.56116 -70.72928 446.45724 1121.58 434.06412 313.46475 1133.9768 315.12112 424.4101 1136.3707 463.892 332.8732 1151.2042 341.28125 484.48438 1232.0884 276.00934 291.31113 1252.5344 134.99388
239 cc60013e-e4f0-4837-8415-095e14bf956b.jpeg face_right 298.34186 165.04367 -287.52136 326.82574 138.75638 -288.5021 338.6202 139.05743 -288.36838 350.8125 139.12453 -288.3751 303.35437 138.15887 -245.06058 296.30222 137.52368 -245.08485 289.14032 137.16827 -245.01613 392.71875 157.93823 -242.65407 310.05133 152.39606 -35.200455 332.24005 196.89743 -269.37814 297.21005 195.35484 -209.5304 506.8051 328.85645 -200.21559 248.9874 326.55212 -0.35156652 548.7384 524.10693 -176.41461 216.98283 523.23883 72.54742 556.27905 692.19293 -211.96875 194.03044 700.13556 -95.11834 570.3892 745.6446 -226.6601 182.53323 756.0266 -133.05286 548.64215 744.37036 -287.76782 197.9111 758.6644 -195.87883 533.3687 723.98676 -229.16988 219.77383 740.0497 -125.36784 444.7821 715.8452 -34.213654 302.86163 715.0269 34.98318 473.90253 973.7305 -22.20319 291.1786 967.10626 62.222248 453.78577 1135.6387 264.11145 299.66275 1141.3312 398.73355 441.8172 1143.285 290.8017 314.7921 1157.4619 423.7935 466.54614 1260.1764 193.31801 270.63354 1261.2651 308.20532
240 ceff9dd4-44b7-4ed3-973c-8c6038353560.jpeg face_right 308.33127 129.5205 -308.2638 332.48868 107.1077 -318.81247 340.72806 107.26078 -318.6831 349.40424 107.23602 -318.58597 318.63055 107.217064 -270.63736 315.3047 106.944275 -270.66928 311.82483 106.94996 -270.73035 387.50763 125.84675 -299.88538 335.62054 122.61467 -74.688896 334.73785 160.35667 -299.7039 312.53613 159.5192 -234.33821 496.7745 302.41797 -254.16644 273.11588 295.027 -17.025629 518.98535 508.0092 -209.55391 243.56136 492.68347 57.795933 498.53455 698.0279 -225.66527 223.63765 684.25165 -100.0593 503.9171 754.6082 -243.80959 212.41653 740.7085 -140.88948 481.65067 754.8965 -309.10382 228.81955 743.8144 -202.70964 471.11584 731.78766 -243.3498 248.37636 725.10956 -131.85303 424.639 673.7287 -46.60839 298.22174 664.06555 47.43877 412.40997 943.2344 -10.261887 282.9214 928.1208 51.485394 392.2149 1157.7703 243.22266 305.25598 1153.3239 304.49194 381.81882 1176.8309 259.7036 322.54755 1178.4717 316.51718 397.6624 1272.6184 100.13502 275.4469 1264.3639 139.7291
241 d5044eb4-947c-4f35-aa9e-76a4ec0a2ea8.jpeg face_right 205.2291 112.57532 -205.15346 217.3385 96.33124 -208.73776 223.40216 95.50891 -208.70396 229.69846 94.57219 -208.73108 205.18413 98.35014 -186.19951 201.38768 98.80383 -186.27946 197.55446 99.41724 -186.3948 252.39787 102.10126 -182.87836 208.95175 107.08058 -74.66536 224.53952 127.635956 -193.4732 206.50209 129.96602 -161.82373 323.90762 203.19693 -136.99217 181.6689 198.42577 -53.15798 332.4608 327.24432 -98.919815 167.17596 312.73285 -4.383269 338.35394 427.5884 -113.051636 160.70311 419.53665 -73.05991 345.1684 455.83276 -118.26181 154.51903 449.46738 -87.140915 339.18475 457.59302 -156.59116 162.52481 450.51144 -122.87319 329.712 447.03885 -124.811195 174.56355 440.96664 -88.35357 282.12195 416.5117 -12.415709 206.68924 409.5253 12.956326 274.15042 556.2376 30.110767 205.28403 544.0504 46.36402 253.08932 660.6869 171.01376 214.49881 650.90405 222.76355 243.62033 670.3593 180.68375 221.26071 662.9762 233.8727 263.9055 720.44403 101.430626 204.65865 709.5475 153.57852
242 dbc7be18-2af5-4299-a9c9-f4291bdd956a.jpeg face_right 283.79816 244.6619 -184.17416 306.4049 220.39307 -196.08778 315.2947 219.2907 -195.90874 324.56454 217.98996 -195.73238 291.2074 222.8017 -152.3854 287.6876 223.11661 -152.56433 284.04187 223.6842 -152.77002 367.3508 229.33139 -199.45995 311.10577 234.77313 8.513592 315.66858 269.58905 -182.16774 292.4635 271.96185 -121.52199 489.5902 388.65393 -151.02438 266.8742 385.57004 0.75664765 520.52466 584.48596 -126.047455 235.64178 568.31836 64.80949 507.97653 761.0147 -107.206314 226.24135 745.23773 -59.291103 514.2689 814.17395 -115.48805 216.89526 797.51556 -97.53979 493.6599 815.94147 -171.76822 234.75352 797.7308 -140.13774 482.92722 793.93774 -123.157265 252.76468 779.4968 -81.54453 430.06952 741.76874 -17.348621 304.00272 732.4356 17.863745 444.09805 989.9949 2.9852657 284.54526 976.6193 23.087696 447.11084 1178.8666 213.30573 299.95044 1166.4976 302.48965 435.96982 1194.0615 228.62775 321.5083 1188.2925 321.8184 464.95242 1285.3369 109.50837 251.45633 1269.4646 208.9204
243 dee9ab4b-b7e8-49f4-90d5-10c1eb5d23ef.jpeg face_right 294.02237 148.24704 -290.65976 312.47604 128.03867 -286.5647 321.1877 127.0002 -286.34512 330.32928 125.74154 -286.25122 293.69992 131.26793 -253.25716 288.60486 132.21916 -253.36899 283.43445 133.43582 -253.53418 366.06952 138.8498 -203.88824 302.9682 147.06482 -48.719833 324.11487 173.98521 -257.26285 299.04663 177.44583 -212.07368 494.16608 292.873 -114.15186 260.9498 298.87906 -1.0264033 533.20404 485.6286 -70.03627 245.53662 483.02487 55.93635 535.5826 667.744 -153.93608 210.02374 659.34235 -94.445366 549.9446 725.65 -171.72243 193.57018 714.3078 -104.86171 529.1499 729.88525 -248.1916 198.46707 722.24695 -189.19135 514.68884 709.1903 -178.08719 220.74713 706.3124 -130.84007 450.5852 663.30444 4.0721703 310.74722 655.05005 -3.4864755 461.19827 930.15454 5.4627595 281.58908 918.3624 -45.54936 444.4295 1139.783 244.01085 302.67188 1149.0819 206.11021 421.99396 1167.4897 256.1894 329.5518 1179.0088 215.81396 504.58768 1236.3539 76.12192 240.95947 1256.0997 24.835566
244 dfcf08a1-e796-49aa-8106-82f2705babf8.jpeg face_right 297.72302 209.5122 -295.94144 317.4098 188.34961 -295.34253 326.14407 187.27966 -295.3365 335.19098 185.99953 -295.2902 300.94708 191.7363 -259.58102 296.37555 192.817 -259.64697 291.66907 194.13205 -259.817 373.22763 202.2734 -246.09677 312.7193 211.0953 -79.8774 328.6522 235.88707 -276.82635 303.19824 239.84581 -229.01364 480.51675 352.36053 -192.26186 274.11383 359.23035 -34.996265 494.59067 546.48224 -208.93407 250.16312 535.56604 9.547181 388.48056 695.26587 -241.32353 312.61087 676.4531 -147.51811 366.0446 747.35376 -267.41183 330.03827 729.3237 -214.1036 345.65665 729.1736 -300.58438 349.1252 711.2677 -239.77312 351.8462 707.40186 -246.42879 350.02426 691.09814 -161.4517 443.6594 713.24817 -16.807787 318.54422 706.5989 17.129084 464.5324 966.20575 1.072283 296.4241 957.2867 36.826775 440.86996 1157.4738 260.53024 340.69016 1148.0242 336.15698 423.7493 1177.7076 276.8178 372.36444 1172.6008 354.2726 473.122 1265.7091 120.63011 270.02078 1254.7251 203.6308
245 e3ac84bc-04e6-472c-8ae5-2159c87c137f.jpeg face_right 312.76215 205.38113 -260.10086 335.01227 180.81497 -272.2068 343.4883 180.78625 -272.08456 352.39975 180.55179 -271.9676 321.51697 180.25165 -227.58153 318.1924 179.66107 -227.72058 314.69727 179.27472 -227.89114 391.12656 195.93533 -269.66928 339.4483 192.37439 -64.22251 341.0469 234.00002 -255.18071 318.7132 233.26729 -195.63074 503.89627 356.75644 -210.06134 288.24716 355.1156 -28.322056 524.7804 560.46906 -174.89792 288.46686 557.12286 58.624424 506.95367 732.5629 -187.2021 291.4593 718.97394 -61.02341 514.5245 785.8617 -201.69495 288.78668 769.21875 -95.42635 492.8974 784.27246 -251.88016 300.53415 767.41547 -150.13539 481.94232 762.695 -199.6607 314.7052 748.73566 -85.95342 461.49 709.7595 -0.49853602 331.60434 706.16565 1.195653 479.0972 949.8339 30.884384 328.8973 942.54584 24.169586 462.4852 1134.5691 255.73398 342.97348 1142.6256 270.15503 440.55377 1149.199 271.082 353.16827 1160.4396 283.5161 513.68146 1246.0134 119.283745 341.6085 1258.5989 108.71653
246 e475b694-e12a-495c-b6f7-1a466a6b5d61.jpeg face_right 318.33627 161.38382 -456.217 340.79315 140.62268 -457.14932 349.42685 140.8479 -456.96155 358.4667 140.8714 -456.88455 323.7455 140.79984 -414.19122 318.99966 140.69516 -414.2473 314.1298 140.88844 -414.36328 393.3336 158.93547 -382.12784 332.95822 156.20038 -186.6746 344.70605 190.54001 -428.10065 319.563 190.06264 -370.83334 501.33295 317.05737 -309.24716 278.18268 315.75995 -95.63903 524.4397 500.17645 -270.75406 264.46988 499.57486 -40.15731 513.7227 667.3873 -340.48538 261.82605 673.3798 -218.09087 524.64685 717.1774 -372.72726 255.3469 727.4669 -261.35828 499.97873 724.13477 -430.4907 268.86005 732.2754 -324.2994 487.74933 705.1685 -358.1895 284.9232 714.2772 -249.67773 447.36877 659.1196 -37.78207 321.25534 653.4089 38.422607 448.37067 895.71423 29.227654 299.85223 884.66034 -90.611664 422.25858 1083.7468 364.83078 336.64413 1087.851 272.65622 411.04922 1097.2301 388.41245 352.71246 1103.3137 296.25873 429.25793 1198.5481 200.93826 329.5325 1205.571 96.20701
247 e96eb556-176b-4fb4-814f-8530a303cb3d.jpeg face_right 280.07193 129.64246 -516.9804 304.1734 110.237236 -516.47955 312.2735 111.08032 -516.293 320.79434 111.73748 -516.2139 289.23743 109.243355 -471.51608 285.6913 108.86093 -471.53098 281.99716 108.81317 -471.56937 357.17285 134.96353 -435.4959 302.57803 128.67561 -233.70285 305.2684 163.51108 -488.46344 282.46835 161.44951 -429.44916 470.03726 311.88025 -345.0141 236.97969 304.7783 -121.199165 499.17502 513.2638 -288.86725 224.89091 501.42548 -50.49446 491.49936 702.74036 -361.0331 206.891 688.35986 -255.36674 502.03937 758.0323 -389.9762 195.20319 743.12164 -300.035 478.11478 766.2311 -462.98904 204.15233 752.0204 -379.52744 465.30722 745.9802 -384.0127 224.1202 735.0961 -296.09097 421.62634 670.25525 -13.697034 285.46033 661.16156 14.350255 433.5562 934.67316 108.88597 258.22675 907.9731 -160.8248 407.93787 1117.09 608.1119 299.57755 1121.6553 258.55814 387.66547 1125.6444 646.33704 315.3615 1133.9435 287.8351 430.50134 1240.7095 424.19397 301.79642 1248.9731 37.51041
248 ed83e4c1-c43d-4869-8ed7-0b63ae5804cc.jpeg face_right 277.5694 193.90591 -326.10562 301.31232 173.56781 -322.66672 310.80463 173.7867 -322.5339 320.72083 173.78802 -322.40436 283.3558 173.57216 -279.48962 278.44055 173.40192 -279.55142 273.39944 173.50449 -279.687 358.7409 190.73834 -253.72687 296.41074 188.12817 -51.657257 307.02664 223.62537 -297.04404 281.0061 223.05984 -238.4553 470.50046 347.76007 -158.77663 249.09131 349.70325 28.400616 501.44916 537.04175 -94.68568 239.0896 544.3025 119.06409 498.91855 702.6786 -147.76956 226.65181 713.3988 -66.317764 510.65894 758.1028 -165.58078 221.13985 769.3115 -95.06325 490.26944 754.9847 -238.30026 227.19833 768.32056 -170.96428 477.7822 733.3978 -167.85365 244.67175 750.02563 -99.29586 429.52087 716.1014 -14.924712 295.55902 712.2864 15.720003 450.57297 960.80396 2.4988859 282.74426 949.92175 67.58846 442.21796 1152.3022 305.1698 306.23828 1153.0712 399.18982 419.5577 1178.285 325.56873 333.35574 1183.4313 418.68338 509.64612 1247.073 143.70743 237.90973 1250.6368 233.1038
249 f867e83b-3289-4c68-a41b-4f3b866d53e7.jpeg face_right 283.79816 244.6619 -184.17416 306.4049 220.39307 -196.08778 315.2947 219.2907 -195.90874 324.56454 217.98996 -195.73238 291.2074 222.8017 -152.3854 287.6876 223.11661 -152.56433 284.04187 223.6842 -152.77002 367.3508 229.33139 -199.45995 311.10577 234.77313 8.513592 315.66858 269.58905 -182.16774 292.4635 271.96185 -121.52199 489.5902 388.65393 -151.02438 266.8742 385.57004 0.75664765 520.52466 584.48596 -126.047455 235.64178 568.31836 64.80949 507.97653 761.0147 -107.206314 226.24135 745.23773 -59.291103 514.2689 814.17395 -115.48805 216.89526 797.51556 -97.53979 493.6599 815.94147 -171.76822 234.75352 797.7308 -140.13774 482.92722 793.93774 -123.157265 252.76468 779.4968 -81.54453 430.06952 741.76874 -17.348621 304.00272 732.4356 17.863745 444.09805 989.9949 2.9852657 284.54526 976.6193 23.087696 447.11084 1178.8666 213.30573 299.95044 1166.4976 302.48965 435.96982 1194.0615 228.62775 321.5083 1188.2925 321.8184 464.95242 1285.3369 109.50837 251.45633 1269.4646 208.9204
250 f89438b0-1a7c-4321-8f38-6602bfd08b00.jpeg face_right 276.92664 228.24023 -309.80786 297.90408 205.86906 -326.5747 305.43802 205.58807 -326.5679 313.37317 205.08934 -326.57196 287.30994 207.02115 -272.3895 285.15036 207.2255 -272.21478 282.76816 207.72366 -271.97098 351.3746 224.14803 -333.2151 308.94864 225.3624 -76.677086 303.1218 258.3516 -309.0557 283.99655 259.28363 -235.13199 470.3962 393.72125 -314.28543 264.9782 395.92932 -10.19149 508.22577 594.31445 -304.34744 255.05312 579.2127 61.0951 489.64078 788.7082 -336.32983 242.01517 763.7031 -109.651085 496.44376 848.7577 -360.5362 231.7944 814.89374 -147.80414 467.3197 846.35254 -424.86896 239.24905 819.3684 -209.28703 457.12524 820.6475 -352.96402 257.90588 802.98334 -141.079 429.0513 760.40466 -64.121704 310.56024 755.4932 65.2935 443.98984 1008.8885 -22.49944 297.95944 996.22375 85.21814 441.63675 1204.3542 257.10397 321.84155 1198.3324 365.1846 434.35092 1226.0007 278.393 343.5776 1226.6226 381.88095 457.66348 1303.1614 135.22975 265.54312 1293.5767 224.255
251 f9f55b02-cf68-4a22-ae6c-03bb6e83d65d.jpeg face_right 290.85822 132.64249 -545.53925 312.2063 109.257545 -531.2681 322.34058 108.5096 -531.1721 332.9228 107.580605 -531.2107 289.67102 112.36214 -489.14484 282.8234 113.33954 -489.00272 275.85834 114.647484 -488.92847 368.67517 127.5959 -395.94318 291.07947 134.07341 -198.82083 321.99402 162.86613 -497.87366 289.8829 166.05777 -440.44672 494.3296 308.59015 -311.49863 235.03185 313.71332 -58.97287 514.55994 517.815 -255.03726 220.01544 522.00006 26.890074 502.41394 700.5185 -417.3609 204.14499 702.33575 -249.90668 511.93872 756.6003 -470.40118 197.15172 760.0283 -305.2114 486.17352 759.95435 -544.9532 204.51207 764.97095 -396.23987 473.14746 737.838 -441.21222 225.09174 745.22363 -294.59134 437.2548 691.3846 -39.78795 290.20627 685.84143 40.71818 436.91104 957.54913 40.805847 264.05432 936.08453 -101.24207 410.83582 1137.96 546.42834 302.7059 1141.8701 362.80017 398.90894 1148.6394 585.9715 321.56506 1157.4152 395.71832 413.05988 1262.0017 357.67578 293.20172 1269.7886 152.01323
252 frame__z0u-9E2HmdA__0021044.jpg squats_down 1392.6389 872.99274 -596.23206 1395.3839 841.1135 -648.2139 1402.5227 837.6209 -648.0437 1409.882 834.13654 -648.2261 1387.5087 841.1482 -552.12415 1387.8977 838.81604 -551.7023 1388.607 837.02 -551.68896 1457.6738 817.06854 -769.20215 1432.0681 820.43896 -331.56937 1437.0992 884.714 -634.7916 1426.9069 887.1351 -506.24335 1624.3151 915.2667 -932.30255 1520.4949 876.36487 -9.67111 1445.6388 1051.7185 -1129.0111 1385.1604 974.68616 452.4739 1249.6116 946.8349 -1035.8799 1263.0006 928.6651 637.7471 1193.584 916.8094 -1129.851 1236.5167 905.47833 684.8449 1219.9886 881.54425 -1128.2273 1239.2064 896.05164 631.0513 1242.6837 893.358 -1033.7507 1251.9818 910.8944 615.1415 1888.2332 1203.6652 -274.10178 1801.8881 1181.8481 274.8385 1723.2667 1357.228 -615.66815 1580.5072 1324.0195 639.9809 1749.008 1683.2042 -402.18073 1619.3108 1570.2302 1065.397 1782.5105 1753.7308 -399.18365 1655.895 1625.7258 1100.064 1613.7046 1760.8972 -643.3461 1483.9124 1639.045 1041.1631
253 frame__GdxOW-GswaY__0001091.jpg squats_down 1168.0619 546.609 -74.18532 1157.4982 530.05023 -50.1245 1153.5824 529.5572 -50.162407 1149.8281 529.07477 -49.903976 1158.4983 531.09845 -110.52635 1155.7485 530.5346 -110.37169 1152.837 530.1353 -110.48823 1121.8944 535.11786 52.048004 1125.0493 534.71594 -224.20212 1151.5593 566.1953 -35.5237 1153.1212 566.13855 -113.33799 1057.8776 621.5781 232.05061 1083.3129 634.6613 -371.86578 1164.8907 702.97156 352.02655 1199.3921 747.4661 -289.97736 1224.2716 647.2272 305.94534 1245.0461 651.0141 2.3634405 1243.5509 616.77167 334.8427 1265.453 617.4047 -35.662647 1239.5355 613.8682 314.09427 1242.522 599.42847 -47.571457 1231.2114 628.7009 295.77283 1230.263 616.77594 7.9590745 941.15125 806.62036 194.81866 946.01404 818.3137 -194.29985 1099.8417 755.37604 379.4982 1148.1335 759.0596 -262.14594 1001.9301 892.4003 520.8049 1007.06305 912.30237 -142.87206 967.69763 918.47546 537.17474 965.79114 936.71625 -131.77289 1060.0304 933.1774 599.5958 1048.288 962.9434 -101.40349
254 frame__SdnNJKUOXsQ__0009920.jpg squats_down 1271.5388 579.0627 -88.11853 1272.5691 561.819 -74.36977 1270.3644 560.7485 -74.35687 1268.25 559.7979 -74.28022 1272.6475 561.899 -126.19672 1270.2296 560.43256 -126.10266 1267.6804 559.1899 -126.18697 1244.5308 559.4625 44.201828 1243.7117 556.5501 -199.32095 1252.6095 593.4741 -43.94202 1251.6458 592.85223 -112.46369 1162.7343 622.34924 233.10338 1185.814 646.3883 -303.62012 1222.5558 731.9444 277.511 1249.8455 767.7288 -227.76181 1279.5542 672.5185 219.01723 1299.4487 668.7722 65.979935 1301.6808 644.4181 259.42593 1321.1421 638.7071 51.61869 1287.5536 641.25824 273.1966 1299.2596 628.6331 41.705837 1278.3387 655.22687 222.18999 1286.8696 643.2105 72.69864 954.68854 742.4604 177.87663 961.8729 760.37427 -177.29668 1118.5842 734.9052 452.7534 1179.3462 763.6287 -201.33917 1046.1516 876.457 652.0071 1071.6337 933.9223 -202.3867 1017.1367 905.7318 674.20154 1033.4243 967.24945 -206.49953 1111.8512 905.6547 723.44763 1143.6262 972.4708 -203.23158
255 frame__H0_1sulrkr4__0004974.jpg squats_down 909.7846 563.98016 -522.2532 918.99365 540.96185 -504.08008 926.92456 538.55884 -503.94354 934.9609 536.1916 -503.91614 900.43317 547.0911 -481.91757 893.9862 549.13293 -481.64548 887.77625 551.3969 -481.47885 955.45935 542.90735 -360.89603 894.8253 562.0177 -261.11588 932.0969 577.2599 -468.28418 904.7363 586.36725 -439.54684 976.3529 626.5865 -500.57315 934.1875 609.71185 30.520285 853.8733 671.4997 -617.12775 818.848 671.1775 17.735498 727.5941 649.5395 -567.9029 731.1341 639.9453 -184.30196 691.9994 642.2137 -647.22394 706.8534 622.6916 -205.70909 691.3517 627.7006 -606.9839 709.7741 616.85455 -246.35448 708.3157 632.64905 -557.17346 719.47095 626.68933 -209.62344 1111.7622 806.07764 -176.79395 1077.2009 777.44684 177.32358 914.13354 825.18567 -203.5704 912.31213 756.0099 336.31253 1004.989 945.5635 111.36931 991.7756 888.9687 560.23126 1043.6165 961.9882 142.47678 1026.1974 904.99097 577.6859 942.5023 982.3944 132.6147 936.15625 944.2183 588.9684
256 Screenshot_2021-02-11 at 14.50.05.png squats_down 379.0448 280.25995 -265.73706 384.37827 268.31192 -246.84511 388.7015 267.9618 -246.75737 393.07397 267.58105 -246.67613 371.43317 268.4912 -248.8305 366.71185 268.16888 -248.77432 361.97952 267.9727 -248.8159 397.24133 269.2459 -120.32651 354.30093 269.47916 -127.821045 385.48495 289.67548 -216.90875 370.46878 289.92758 -218.91801 418.7674 306.1129 -80.43823 327.15875 302.1602 -96.91045 459.28073 322.41763 -291.43417 293.8748 330.86154 -333.13342 438.56354 255.22383 -441.1024 339.0724 274.72333 -484.2508 439.78336 232.40175 -484.78378 348.5045 255.85748 -516.6464 432.8193 231.112 -448.39432 354.1424 254.05502 -482.20563 428.69315 241.88486 -434.0938 354.40866 264.11853 -473.60693 399.20123 420.0872 9.100037 342.37985 418.1624 -8.806217 458.64374 446.96033 -387.94193 308.56522 450.15903 -412.51263 434.9775 521.8132 -124.95 313.80502 524.85944 -156.70143 420.89532 533.476 -105.757225 321.80038 537.1974 -138.64354 460.88412 554.95825 -240.77054 300.68488 555.26416 -284.86887
257 Screenshot_2021-02-11 at 14.45.33.png squats_down 490.85468 256.64386 -199.85658 496.7931 247.31546 -178.75163 501.62677 247.27359 -178.7355 506.50278 247.15137 -178.82913 483.29425 248.56131 -180.7562 478.18915 249.13347 -180.67511 473.09308 249.86386 -180.66603 513.21515 257.18082 -76.67204 467.2919 260.77148 -82.83062 500.71588 272.44604 -164.95084 483.0802 273.62784 -166.4828 546.7092 318.44458 -45.71454 440.70508 325.96207 -47.51173 604.6376 380.28485 -173.26329 396.52338 387.9246 -164.66502 608.2679 314.36707 -308.60623 385.44446 319.8998 -312.48654 613.49585 293.81558 -338.03156 378.0554 301.8476 -335.49347 606.4191 282.84476 -322.8561 383.89694 291.15414 -325.15454 600.29285 294.6249 -308.3603 392.56305 300.60538 -311.80792 536.5301 458.99326 -0.86516744 475.5592 462.65463 1.1326483 599.93555 399.33453 -247.65138 405.63477 416.91678 -227.66426 570.34344 522.449 -135.00638 430.62552 526.9879 -122.79691 556.3255 542.0815 -125.14865 447.46 548.67206 -113.77427 587.8724 558.359 -213.77402 398.3442 560.2582 -191.85564
258 frame___0CAcnhL5Sw__0015561.jpg squats_down 1132.5985 607.4845 -623.79846 1129.3186 591.64636 -589.67993 1130.1295 591.52856 -589.60175 1131.2534 591.5219 -589.2263 1119.0901 591.564 -633.221 1113.0607 590.77075 -633.22845 1106.9028 590.0717 -633.1295 1107.9688 595.3392 -391.92703 1074.9086 590.65326 -592.12115 1117.2603 624.0012 -548.1352 1106.0472 622.76337 -605.7207 1080.2869 650.5406 -252.57408 956.4697 672.5146 -558.9029 1100.6373 779.37683 -441.6973 944.9617 847.5111 -567.05524 1140.9764 817.0601 -862.4929 1079.7267 843.95056 -549.05383 1168.4697 822.837 -944.02014 1115.7515 848.69745 -620.41925 1160.0017 806.73236 -929.3905 1125.4012 815.98035 -604.21906 1140.8906 810.1039 -871.2814 1110.5723 815.55597 -544.45984 951.1403 764.72 102.81899 858.11505 783.8925 -102.840576 1099.5692 763.58655 -17.296085 888.3669 852.83606 -740.06866 1056.3402 888.7666 232.78119 799.82086 1001.2991 -482.3544 1024.3771 905.836 254.93617 775.30475 1023.84216 -468.33978 1112.7117 958.36755 176.35623 837.22675 1082.7911 -694.97894
259 Screenshot_2021-02-11_at_15.52.34.png squats_down 1324.1783 564.13074 -284.70593 1338.3168 547.779 -227.29422 1348.0616 547.4344 -227.4071 1357.8589 546.8981 -227.5699 1310.1321 551.723 -221.4129 1300.6865 553.46423 -221.28418 1291.1925 555.477 -221.23119 1377.8806 567.71686 0.6434647 1284.4247 578.5723 26.146513 1347.5233 596.068 -210.86765 1313.2336 600.04486 -203.99815 1456.3508 716.5112 33.376755 1232.2623 728.9849 90.55216 1514.5835 902.6101 -230.69981 1191.4349 928.8232 -210.05205 1379.464 788.12286 -456.6674 1301.9674 796.82654 -579.8254 1341.2921 752.1694 -506.77106 1333.1797 762.30945 -632.4857 1344.9213 725.2481 -432.87244 1325.4664 729.43066 -578.19965 1347.8159 743.20825 -428.6562 1326.46 747.6219 -558.0861 1424.7341 1002.8579 -5.252061 1281.5624 1005.81915 5.7609577 1570.721 999.1766 -732.47437 1135.3895 1021.58655 -665.4549 1495.214 1231.3693 -231.18439 1198.9088 1247.6147 -248.15135 1458.2242 1273.3135 -189.85844 1236.081 1285.8816 -212.90115 1573.183 1295.3661 -408.1654 1127.263 1333.1626 -431.3052
260 Screenshot_2021-02-11_at_15.46.08.png squats_down 1247.0944 661.24585 -1393.8031 1259.6661 635.1298 -1350.1426 1269.6625 635.2258 -1349.9893 1279.5405 635.2133 -1349.7509 1231.1665 634.54254 -1354.9949 1220.743 633.83795 -1354.6053 1210.2955 633.3149 -1354.7046 1287.6383 640.221 -1041.9629 1192.954 638.57574 -1072.2786 1261.2379 683.96826 -1275.4884 1226.5397 682.0329 -1284.559 1347.3778 732.4201 -809.6766 1117.0973 748.25684 -831.8703 1403.2832 917.57227 -1242.1312 1096.9026 940.81226 -1281.1434 1302.0685 828.5984 -1768.7245 1198.7797 811.0505 -1793.3138 1265.5017 809.117 -1849.3738 1227.9285 773.17865 -1872.695 1275.6045 763.76056 -1781.5424 1218.9362 743.6036 -1794.4962 1277.0149 775.65173 -1740.9917 1220.6976 758.4985 -1761.4219 1310.9348 897.4014 -4.545271 1177.6719 907.7224 5.038305 1367.2041 968.354 -822.69806 1084.5942 997.4961 -771.95703 1374.8955 1195.2054 -421.29803 1100.7135 1198.457 -339.95236 1367.1213 1222.3794 -393.1681 1115.0355 1231.0436 -313.07748 1385.3131 1292.157 -697.92865 1072.3221 1271.2302 -609.6981
261 Screenshot_2021-02-11 at 15.08.23.png squats_down 601.4823 300.8926 -193.0024 607.72705 288.21274 -167.54953 612.7588 287.80054 -167.509 617.86865 287.34387 -167.64716 593.2513 289.55463 -168.91144 587.86053 289.84525 -168.75757 582.4832 290.29556 -168.7119 624.9706 294.45203 -38.120125 575.9531 298.35962 -43.537056 611.82837 313.94907 -148.23427 592.27203 315.3483 -149.81006 655.3757 350.57654 -27.946379 549.61414 354.17126 -25.678207 703.3117 385.4754 -283.23544 510.7867 377.11862 -288.77472 698.4253 339.58173 -528.2323 502.10144 330.2048 -550.93085 706.2885 325.6747 -575.2862 495.4603 320.98416 -594.8292 695.39435 323.58005 -551.5177 502.4127 316.31393 -582.81775 688.57275 332.04358 -526.0425 509.0589 323.57272 -552.42786 641.31604 501.9582 0.13275507 578.16376 503.29968 0.30848327 689.95734 499.4357 -399.05475 530.05865 497.6665 -357.56516 666.6382 610.9093 -230.8046 546.29016 607.779 -211.10484 655.7215 621.1216 -218.84712 557.10126 622.7097 -201.20555 674.4032 662.0191 -352.30072 536.3189 654.1689 -322.30728
262 frame__0LlT7MSKJBc__0025382.jpg squats_down 905.5431 513.29614 -987.7725 914.3335 491.75256 -952.0776 922.2196 491.12048 -952.1164 930.0442 490.3585 -951.96796 891.4789 493.48608 -950.4033 882.99896 493.78207 -950.2726 874.4381 494.27295 -950.2489 939.8132 497.8253 -715.6325 860.8796 502.5391 -704.07336 920.13586 531.437 -897.40607 890.13116 533.1743 -893.75507 991.0651 588.39124 -539.97327 815.45526 589.32495 -542.55 1024.0308 741.3166 -751.7199 771.84595 744.8281 -793.35693 925.204 723.0161 -1031.8741 898.0743 734.45264 -1067.4944 893.1207 722.3116 -1103.7876 931.8575 736.1123 -1136.0763 892.5107 698.9355 -1073.834 938.16705 715.5338 -1098.3131 897.1077 701.26495 -1023.0041 931.8856 717.0768 -1052.6774 953.7171 757.9393 -14.162571 862.39825 753.0714 14.556789 985.6748 781.0637 -768.8054 826.1596 789.8714 -706.86316 949.25903 916.64514 -250.79724 843.7774 913.60345 -201.12105 939.2946 932.4753 -213.48827 856.5927 930.0611 -163.12315 954.03784 977.91003 -494.37756 813.4325 976.0396 -418.20966
263 Screenshot_2021-02-11 at 15.56.33.png squats_down 598.7415 334.22324 -550.09326 606.78394 318.80124 -529.82355 612.5087 318.50815 -529.7727 618.2018 318.05255 -529.9449 590.276 319.7647 -525.3167 584.64343 319.7728 -525.2441 579.02795 319.95435 -525.49335 627.9871 320.43576 -369.02277 572.26276 323.40118 -360.28845 609.36584 347.24524 -487.45245 590.3242 347.68286 -484.58282 680.1117 379.34363 -234.82567 530.0962 383.7526 -227.7534 738.8294 477.35547 -368.51874 500.39267 466.0578 -355.28397 705.98846 469.04193 -689.1576 497.7375 472.19263 -726.9958 696.6392 467.6626 -769.7129 492.0448 477.2171 -820.1895 691.20197 447.44806 -763.0303 499.0614 459.55893 -825.6905 686.0449 452.4836 -694.7296 508.4492 459.95352 -739.8802 655.05176 504.36734 -2.65769 576.19556 507.45786 3.2754753 740.55273 498.8455 -493.482 490.00806 516.25366 -477.09003 713.4113 636.4712 -219.63928 498.6848 636.8342 -214.11705 697.4339 655.4657 -201.65625 511.1838 657.6725 -195.72739 737.30206 680.6503 -390.1228 475.43985 669.8058 -373.71652
264 Screenshot_2021-02-11_at_15.47.33.png squats_down 1248.6019 661.1905 -1274.5609 1258.7994 637.1896 -1222.1648 1267.8271 636.52527 -1222.093 1276.813 635.70844 -1221.9573 1231.0282 639.8414 -1229.3695 1221.1019 640.5338 -1228.9679 1211.1427 641.43665 -1229.0419 1283.0729 642.51337 -918.9008 1194.0719 649.8932 -945.936 1262.9546 684.3243 -1161.5758 1230.9644 686.2031 -1169.712 1348.0011 744.7678 -708.9705 1124.3103 766.07684 -746.3372 1420.0652 904.2651 -1160.5509 1088.9554 937.11224 -1212.6791 1293.9911 816.09186 -1678.26 1200.1138 819.2237 -1677.156 1254.1714 795.07654 -1764.3931 1221.9359 782.2395 -1752.9524 1258.4042 760.6626 -1684.4027 1223.8342 762.4065 -1667.281 1264.6779 774.9029 -1649.4014 1226.7605 778.7087 -1642.9613 1309.6544 919.0191 -0.21771443 1178.1002 932.1115 0.32837373 1397.595 975.60535 -862.57837 1094.1763 1006.3422 -826.3985 1371.9851 1193.396 -445.1643 1094.8098 1206.0641 -405.11966 1355.8363 1227.065 -419.71384 1108.7604 1241.7795 -383.7721 1401.4354 1272.235 -741.9892 1063.6581 1277.0682 -709.5707
265 Screenshot_2021-02-11_at_16.08.04.png squats_down 1655.086 441.33994 -1077.4698 1666.5308 422.52158 -1038.4739 1677.0007 422.3569 -1038.773 1687.6979 422.16022 -1038.7001 1635.4354 423.67697 -1033.824 1624.8887 424.57687 -1033.7969 1614.1595 425.65848 -1033.8132 1704.3436 442.196 -770.75085 1601.2201 445.21893 -743.046 1675.7327 472.87073 -979.5068 1639.0942 475.54105 -969.04266 1775.6543 582.80695 -567.7803 1540.334 565.8686 -639.082 1859.3156 734.38513 -1098.3131 1483.7117 728.6386 -1132.9503 1749.4214 604.163 -1652.5157 1597.573 601.5663 -1633.1562 1730.8646 566.93445 -1750.4645 1629.0199 558.4905 -1716.6055 1717.6898 553.0271 -1656.7877 1623.7993 539.1784 -1658.485 1714.2435 573.59076 -1626.9576 1622.6515 565.7442 -1619.7914 1657.1967 826.64496 29.428364 1517.992 814.3529 -28.520206 1822.7081 864.31305 -751.79425 1441.1655 843.955 -983.60236 1759.2461 1075.3511 -295.23227 1476.2892 1086.2292 -445.47513 1719.3619 1114.0352 -263.1834 1494.7843 1121.9615 -407.98306 1837.6619 1159.1678 -526.6806 1467.263 1172.7831 -733.88464
266 Screenshot_2021-02-11 at 15.22.45.png squats_down 153.40497 298.40964 -71.10616 157.73853 289.71252 -49.91151 161.2815 289.39822 -49.780277 164.8768 289.0071 -49.692863 146.6259 290.88354 -51.662163 142.64719 291.20013 -51.61157 138.65823 291.605 -51.625145 168.78528 294.23886 61.989273 131.63493 297.45004 57.0344 159.66216 308.1356 -30.627089 146.21487 309.3961 -31.966896 187.31258 335.7477 81.07638 114.1844 334.8186 48.601597 203.62779 365.7629 -104.119576 100.624825 360.49402 -186.19603 146.05135 361.88428 -219.57967 156.3698 336.92004 -322.757 133.90018 361.69797 -253.59457 167.40215 330.78152 -355.65656 126.466675 357.52518 -228.11653 173.39029 331.23407 -323.669 130.50037 361.14694 -214.20311 171.76231 336.9057 -312.86435 179.07642 430.81018 5.9375663 131.35016 431.7813 -5.7596455 234.21082 453.49884 -303.07693 86.74811 454.58865 -311.8192 207.56311 524.884 -60.315044 108.42746 526.7245 -52.187855 193.81674 536.1637 -41.710148 120.639786 539.7722 -30.815187 229.83305 560.6686 -154.82086 85.36002 562.0166 -141.58214
267 Screenshot_2021-02-11 at 14.52.07.png squats_down 513.3796 269.7723 -172.91301 517.6315 256.05063 -150.76723 522.1559 255.25151 -150.79951 526.70654 254.50024 -150.78522 503.70062 258.1497 -151.56874 498.9669 258.52786 -151.56178 494.20453 259.06122 -151.67267 532.22095 256.90454 -38.39567 486.39127 262.7707 -25.490658 522.44104 279.11243 -130.40532 505.17102 281.08078 -126.39082 559.1808 296.49518 -93.121544 463.25845 303.79364 -79.547905 580.3184 271.61887 -399.9513 441.57104 299.4925 -378.75943 593.7542 249.8815 -689.5866 422.62845 268.1417 -652.2726 602.6442 242.97205 -766.5175 414.3471 260.71985 -717.9645 589.8119 238.549 -769.3434 426.5655 248.8697 -733.4904 587.1528 245.54784 -705.42523 430.3717 255.76003 -670.6592 551.52875 434.05957 -5.64942 484.6867 434.74045 5.866481 589.9701 438.06897 -423.71274 444.9427 432.16757 -386.75958 572.2305 547.49713 -388.17084 448.91046 551.3273 -354.4179 566.8562 557.4201 -389.76355 452.86978 564.68036 -357.84067 569.04895 595.7639 -538.3858 444.83032 600.28284 -510.27856
268 frame__8ghtQpeWov8__0007065.jpg squats_down 1114.1753 599.0659 -325.0323 1120.4558 581.07306 -300.87656 1121.0574 581.19525 -300.85864 1121.8352 581.4395 -300.87485 1114.9307 578.28094 -348.39142 1110.9579 575.0856 -348.4201 1106.963 572.20233 -348.4895 1103.6262 575.0616 -152.00792 1085.5852 563.2513 -372.77386 1099.2871 608.60345 -267.0913 1092.416 604.51965 -328.648 1069.5433 603.2652 46.3011 1017.4955 606.91626 -454.708 1188.5352 634.1548 92.96989 1120.2333 687.17664 -601.7694 1275.189 640.05707 -95.22719 1255.4124 665.8289 -655.3165 1297.2449 645.66736 -108.417 1286.663 667.5876 -732.4752 1289.1382 632.24255 -155.41626 1291.576 645.2094 -706.19006 1277.2186 635.31006 -123.86096 1277.1047 647.72784 -647.4908 929.59753 749.2871 161.92181 881.6737 755.15607 -162.04861 1063.648 731.45074 332.8626 1016.2539 756.0021 -570.4864 1005.4534 865.5733 510.47922 964.61163 920.85114 -518.2354 977.50214 888.176 530.08813 936.89087 942.5167 -512.99426 1051.9775 905.89233 499.96423 1030.8724 983.407 -652.0945
269 frame__jBY85tpUliY__0022348.jpg squats_down 1000.5394 530.60986 10.133388 1009.2359 515.90314 -25.887436 1012.23016 516.2792 -25.708406 1015.38885 516.6245 -25.678762 1008.23413 512.68866 34.95655 1009.8262 510.7725 34.980824 1011.48755 508.98233 34.77438 1038.9468 522.52936 -124.2231 1034.979 512.3948 144.39056 1015.3176 548.1575 -25.63961 1012.10266 544.4349 51.75706 1100.2998 600.82495 -281.3387 1061.8727 596.0955 267.60022 1024.8938 719.1773 -264.68927 1036.5166 699.59985 50.09436 1004.9999 615.8464 -41.522884 1018.0983 629.822 -344.73337 994.501 591.37274 -41.74288 1002.8611 610.62067 -376.6477 1020.6411 591.5655 -61.213432 1014.45764 602.564 -347.91196 1029.3164 601.91125 -39.145634 1024.7328 610.49255 -344.66858 1185.7109 793.9514 -163.49889 1146.802 782.36957 164.1517 1025.8337 787.55615 -286.59235 987.24097 758.397 239.79497 1113.2783 928.3765 -109.766685 1093.7375 882.2976 205.37796 1152.0487 943.0571 -84.69401 1130.0883 895.81616 205.06053 1060.7875 989.747 -85.43549 1052.6277 940.627 213.9099
270 frame__4zBnM_uozXM__0001262.jpg squats_down 840.8986 206.8699 -192.44792 866.67 186.89203 -211.64674 874.1532 186.84413 -211.49423 881.74084 186.54898 -211.30199 857.7738 187.52519 -146.88356 857.98785 187.93532 -146.87206 858.3085 188.85901 -146.6956 922.8648 201.36919 -242.56161 890.4652 203.0845 40.475376 865.65735 236.38065 -207.53918 853.0137 237.254 -125.22462 972.5442 325.42313 -368.58813 915.8441 354.53485 176.44815 801.4396 445.0818 -482.82675 793.0442 473.85306 189.01425 614.64465 522.4231 -444.2086 641.5223 532.1866 130.86674 573.9919 533.9589 -507.79868 599.7275 530.6298 153.4935 570.6477 519.69586 -487.74078 590.24207 523.2528 107.86929 587.8041 520.3989 -438.0755 606.57605 531.3767 107.452286 1134.4026 609.8062 -151.39061 1064.21 615.2819 151.86574 1009.5495 575.753 -692.2734 849.87256 610.52094 70.89315 1072.8279 817.22327 -503.5362 946.83307 788.5366 302.5108 1100.8331 860.28973 -496.04874 992.47034 816.68695 323.1848 965.6173 878.8489 -702.5543 844.0283 853.46356 264.97156
271 frame__yWky9j7mG2Y__0013256.jpg squats_down 971.3902 546.87775 19.758244 961.8314 530.6922 39.4982 958.56445 531.1777 39.55802 955.5079 531.7633 39.838543 963.1627 529.0622 -14.587221 961.1506 527.66406 -14.581621 959.05566 526.52344 -14.785871 931.2681 541.5903 146.60211 936.2124 534.0659 -104.67293 957.54553 568.95935 51.45538 957.6008 565.57355 -18.586046 891.7641 657.7975 282.6661 893.9559 653.94714 -273.83038 937.00146 790.9996 134.5656 952.6945 798.7621 -123.819565 962.41724 685.0459 -249.30951 973.2875 681.22424 235.16573 972.6497 648.3116 -275.79474 980.67456 641.90826 240.30176 953.75366 636.63306 -240.0943 959.58856 628.671 229.04749 945.2053 648.9315 -247.71094 952.8823 648.18427 245.17215 762.81866 871.7478 189.82549 752.47687 866.9699 -189.3076 973.29987 802.0182 222.99933 985.46747 767.0479 -208.18513 872.4319 950.45105 199.0692 865.5142 971.6769 -125.61565 845.54956 972.4102 199.68776 826.961 1002.96875 -114.8688 920.5746 983.13464 219.79143 913.87726 1036.0814 -87.489784
272 frame__TmsDaoMsHDk__0004413.jpg squats_down 768.9279 359.2276 -351.6554 770.02264 348.34592 -324.95242 771.6655 348.9594 -324.98264 773.40173 349.63553 -325.07047 762.3829 347.01392 -354.5558 757.79443 346.05103 -354.5122 753.3125 345.3236 -354.54163 761.7444 355.0978 -185.7483 737.95215 349.9604 -323.1856 765.5481 372.96442 -299.7627 754.8375 370.55734 -338.29175 734.67444 403.9808 -1.6745483 709.30493 407.84613 -400.6922 823.94073 411.2882 38.358643 811.4697 438.53876 -491.88297 908.1674 396.50146 -98.10556 909.7162 418.017 -521.7931 929.6023 387.08176 -111.01628 932.95056 413.6625 -596.925 925.5448 382.53656 -156.08138 931.9768 401.56335 -578.3394 917.4253 388.6852 -125.02349 921.8674 405.20096 -518.87463 653.3739 540.4656 120.60574 629.078 554.3023 -120.45447 749.0827 546.3853 280.40955 753.72766 587.00494 -286.02298 689.8654 632.3987 432.7028 670.347 665.5666 -131.95273 668.7593 645.3306 445.63275 644.70105 671.7765 -115.82239 724.10516 654.6396 464.84735 696.17706 687.0005 -124.190765
273 Screenshot_2021-02-11 at 15.41.25.png squats_down 501.15585 244.38379 -377.73166 505.60184 234.13576 -348.28177 510.08774 233.92781 -348.16876 514.5654 233.59998 -348.19754 491.7399 235.37836 -347.79025 486.6645 235.7189 -347.56018 481.56433 236.21194 -347.61255 518.0639 238.7083 -197.97969 472.38745 242.43407 -196.63228 509.03674 256.89246 -323.40817 491.80142 257.80817 -323.277 554.3942 300.20056 -155.92816 434.41608 304.31094 -139.31894 588.3413 380.2718 -403.87976 413.8884 381.78973 -380.70047 528.66113 351.8618 -681.2374 472.5594 346.27878 -664.13446 512.12445 347.57617 -735.53827 485.78848 339.9898 -718.0356 510.7146 331.46448 -704.5059 489.79684 327.93277 -687.8681 513.23236 336.37314 -673.19214 489.20773 332.60284 -655.56146 535.1963 439.72498 -10.495137 463.59186 446.4394 10.8941555 589.3977 465.40045 -487.19836 414.81393 482.6587 -454.69974 567.4818 594.5466 -262.5658 434.30072 603.29865 -245.39835 557.6291 608.819 -249.77977 445.68896 620.9488 -232.77214 574.90985 648.2491 -435.99963 417.53787 647.8501 -409.0354
274 frame__Qzd8oJyKQaI__0010512.jpg squats_down 1094.2374 501.91064 -39.965782 1081.9769 486.76126 -20.962868 1078.9244 487.08203 -21.00233 1076.0039 487.44458 -21.100424 1081.5215 487.5629 -75.90349 1077.9042 487.79813 -75.8473 1074.2949 488.2365 -75.81557 1050.7501 499.52753 81.81227 1046.8689 499.25336 -170.14484 1081.949 524.2716 0.25939488 1081.3163 524.81757 -71.839455 1006.9196 613.6358 235.53583 1016.525 602.11346 -293.5395 1120.3136 680.90314 241.50595 1134.3146 696.0107 -246.37459 1172.659 594.7687 144.24194 1177.0426 597.9835 4.884103 1186.6119 558.5457 148.225 1195.1954 562.64435 -37.62065 1180.4497 552.3881 136.38225 1170.7931 551.6139 -37.66852 1175.31 568.4646 133.47531 1162.9282 568.9351 9.846618 905.2439 831.38617 174.98445 900.41797 830.09314 -174.28018 1056.7101 799.9371 391.2307 1069.0834 806.09247 -278.90195 991.2877 943.4735 519.9217 979.07855 988.1311 -260.97406 962.29626 965.3913 526.73865 944.86566 1012.61255 -258.23944 1036.3501 971.28107 549.67285 1027.6064 1026.4744 -271.4128
275 frame__zbt1g9WX6bA__0016235.jpg squats_down 1842.5702 1248.7737 -1789.3533 1863.1316 1199.6272 -1764.4834 1876.0095 1198.0524 -1763.647 1888.6521 1196.0378 -1763.8167 1825.8315 1199.3466 -1755.0764 1813.9631 1196.9515 -1754.7736 1802.0071 1194.9995 -1755.3804 1915.736 1181.2822 -1369.8738 1789.6466 1178.9984 -1342.435 1865.6586 1267.5842 -1624.6694 1828.2922 1266.7748 -1618.5734 2024.0929 1299.005 -909.5443 1696.4525 1277.2764 -898.32733 2055.3599 1552.7284 -1361.8024 1637.9974 1511.4644 -1350.219 1895.5594 1479.7115 -2145.9824 1773.0851 1484.3638 -2113.8423 1849.7626 1445.693 -2346.8071 1814.6964 1469.1567 -2294.0151 1852.8914 1401.3519 -2259.4304 1818.8728 1429.1846 -2225.6917 1850.2756 1413.9829 -2133.842 1819.2391 1438.3198 -2100.696 1932.357 1544.8632 2.3622065 1749.5298 1531.008 -0.77577025 2105.4219 1579.398 -1283.7897 1610.8986 1589.7533 -1236.8882 2099.7368 1891.6628 -601.63837 1592.5756 1892.5016 -601.46155 2077.27 1949.3596 -553.9591 1614.1704 1951.935 -566.72015 2158.729 1994.3552 -1018.4856 1530.4493 1984.3252 -1053.3572
276 Screenshot_2021-02-11 at 15.48.09.png squats_down 624.27527 403.58105 -277.0543 629.2763 395.30017 -253.57156 633.2934 395.4029 -253.58818 637.3639 395.41544 -253.58757 617.0528 395.40353 -257.07297 612.5671 395.41504 -256.9379 608.0665 395.53204 -256.91992 641.80475 401.46094 -128.92778 599.71155 401.38364 -144.1008 630.5617 415.01437 -231.12083 615.4874 414.82996 -235.5798 668.41327 443.2959 -108.00967 572.9466 441.2597 -140.07808 696.2183 486.65292 -331.47522 569.2205 482.13428 -376.8874 633.6216 489.10635 -486.88815 632.15485 470.57526 -538.0562 618.85815 494.49017 -518.5047 645.6546 471.2415 -574.2084 610.05365 487.30884 -492.36295 651.41907 464.57175 -549.4058 613.55994 489.60776 -479.44678 648.55945 468.75082 -529.5911 648.2463 543.68744 6.1409025 586.8566 543.1594 -5.830591 691.53235 556.61584 -354.85385 550.08154 551.992 -391.7371 674.63617 661.008 -200.56746 557.56683 658.08905 -215.58441 662.5328 679.2334 -192.49562 566.2023 677.25995 -204.93855 698.3844 694.87665 -321.04712 539.526 691.60077 -337.50717
277 frame__bXyhN4CK0_8__0006178.jpg squats_down 990.27594 370.8922 -747.82043 998.53625 343.70847 -712.4156 1008.7342 343.13632 -712.30304 1019.0657 342.41248 -712.402 967.90704 345.2218 -727.9385 955.2701 345.408 -727.8012 942.62195 345.81863 -727.42395 1019.39734 355.97705 -457.28235 915.7251 360.23138 -509.56827 1002.7454 398.68195 -651.1565 963.0385 400.37106 -664.8473 1064.3472 456.75745 -327.34888 849.45575 482.27917 -374.79694 1170.5876 550.1345 -614.34344 845.1011 648.4962 -621.8459 1273.7686 505.755 -1044.701 834.97974 511.3293 -1030.5952 1321.4512 490.9889 -1123.8551 821.70776 471.32483 -1115.3989 1306.5156 483.47964 -1152.2782 823.1419 441.44736 -1100.9932 1282.977 494.87387 -1074.5702 834.81824 457.1989 -1039.1812 1015.5921 744.85236 10.196785 880.35175 754.73914 -10.118269 1220.8246 820.70764 -469.2521 701.1951 873.9758 -364.34094 1148.4753 947.36786 92.60675 703.94946 951.8097 231.8034 1105.0006 962.12354 140.11748 727.54877 967.31067 283.7491 1215.6136 1061.2205 -12.647047 641.4751 1038.8987 132.90741
278 frame__ohPA6wqX24o__0002899.jpg squats_down 1108.9998 486.11484 -532.2491 1109.6182 469.59784 -512.4155 1111.251 468.61588 -512.3662 1113.1608 467.77844 -512.2274 1100.2457 471.19644 -553.64935 1095.2152 471.09924 -553.57715 1090.1896 471.16644 -553.7223 1098.9208 470.99753 -343.90424 1069.7329 475.32303 -530.6117 1102.9348 499.30624 -466.05762 1091.7067 501.42682 -517.43994 1066.1926 532.33386 -104.0911 1006.56683 541.5618 -555.2438 1056.9081 628.65076 -97.668236 999.3781 684.10724 -584.99664 1092.9807 581.8728 -322.9349 1084.5795 595.4673 -482.83643 1105.8105 568.35144 -353.72488 1114.759 576.2436 -501.5153 1102.6626 555.0794 -351.756 1100.8057 551.23865 -501.9235 1095.7765 560.4179 -328.78726 1092.642 560.4027 -475.28375 919.5298 662.76056 167.34627 877.84076 675.6361 -167.59216 1072.2743 693.2039 15.694948 1028.6074 742.2324 -344.19226 963.6281 841.65 131.08055 921.4596 871.9405 -223.03104 923.5814 861.76154 141.66135 877.6502 887.05365 -211.35309 1009.992 893.4213 89.901344 976.8363 920.4464 -273.49432
279 Screenshot_2021-02-11 at 14.31.53.png squats_down 453.13733 235.61917 -76.99778 457.30728 228.82895 -67.251785 460.1938 228.60936 -67.20818 463.10968 228.3469 -67.242096 449.24747 229.6674 -67.22755 446.43848 229.85077 -67.20269 443.61804 230.11786 -67.23365 468.1537 231.80481 1.1062067 440.59717 233.72986 1.5849648 458.61215 243.53723 -50.82246 449.15717 244.3745 -50.415997 489.8405 263.93378 20.370827 421.56076 266.96487 23.421638 501.5972 309.19806 -62.049854 416.11 317.5782 -57.78272 470.73172 305.00528 -169.70416 435.2927 308.30673 -176.17876 462.39487 309.10873 -191.34508 439.00455 310.807 -198.95847 459.5435 299.8072 -189.61368 443.56036 300.23737 -197.5875 460.92816 301.4959 -169.92076 444.53775 301.90533 -176.31746 477.93857 360.2591 2.96293 433.50192 359.3228 -2.9242108 528.20166 352.8271 -212.63042 396.68036 352.69977 -220.2818 503.17056 442.01416 -203.3919 422.98367 442.53772 -207.76318 490.14856 458.108 -204.47194 434.30304 459.07672 -208.22011 521.32874 461.32684 -279.07697 409.74445 464.4457 -276.7737
280 frame__TwOuh73cGGQ__0017921.jpg squats_down 1092.5504 564.59436 -256.75186 1102.1511 545.50214 -251.44612 1108.7836 545.26337 -251.35114 1115.4219 544.93414 -251.42029 1084.4851 545.3614 -253.06543 1077.821 544.6264 -253.08417 1071.1481 544.03656 -253.19354 1124.6255 546.81696 -162.7973 1063.0559 545.15857 -167.68289 1103.1605 578.3833 -219.53244 1081.6686 577.4757 -220.53893 1160.1377 598.1888 -79.683174 1020.8525 606.1649 -101.561134 1182.6 718.05615 -132.59613 1028.6659 742.97815 -174.91005 1121.6409 631.4607 -183.55576 1077.5767 636.7157 -267.04712 1101.5016 608.17786 -187.51643 1092.6691 607.10254 -275.09348 1110.8324 587.0406 -167.1507 1079.1724 586.19055 -251.3699 1111.4911 597.93066 -175.27484 1081.8856 597.89087 -256.45242 1129.8018 764.83716 2.632266 1051.178 765.0479 -2.7200825 1215.274 756.2506 -280.11868 948.3064 756.5281 -189.11296 1191.7325 899.2814 -162.14801 971.06824 885.328 -86.0927 1173.496 924.2593 -151.47404 993.3439 911.86194 -78.76493 1228.7399 941.72754 -245.4585 912.97455 926.7973 -141.48123
281 frame__bXyhN4CK0_8__0006978.jpg squats_down 989.343 365.8959 560.29224 972.385 349.84195 511.90704 961.0998 351.77405 512.2516 950.124 353.92252 512.09955 1000.81366 346.20197 500.22693 1010.9459 344.26596 500.32355 1020.90674 342.54114 500.31622 932.3676 374.83914 258.85336 1032.3163 358.2283 229.68018 972.1747 388.0431 469.86044 1001.9086 382.15353 460.27036 859.76215 517.19543 -54.48269 1093.9452 487.28546 57.749897 867.2225 666.9038 -550.8543 1072.6205 585.5484 -391.9955 930.5266 763.1941 -1061.6428 1024.0829 696.87646 -848.8563 943.0165 773.20544 -1134.8735 1003.51685 710.16736 -920.86646 952.5622 776.4444 -1142.6252 1004.67303 722.9782 -892.7481 955.45685 770.7863 -1084.7754 1010.06744 719.2762 -854.9464 935.52405 817.08026 -72.14664 1078.4695 823.8071 74.68574 784.47375 727.38367 446.23907 1176.3816 720.67413 613.04816 762.73914 973.9903 376.4722 1240.4364 974.6929 393.5676 772.6015 1014.59106 373.2089 1245.5143 1012.8508 379.18237 711.30286 1001.9441 465.66666 1246.774 1007.7183 562.82684
282 frame__mGvzVjuY8SY__0006600.jpg squats_down 767.5169 539.7567 -135.65251 773.4417 521.13776 -178.14027 776.1825 521.43884 -178.10031 779.21625 521.7086 -178.08908 772.86487 517.1537 -109.25431 775.0003 514.3804 -108.96877 777.37256 511.76196 -109.07788 805.7445 523.14465 -270.71146 805.4432 509.0255 42.53771 787.79724 558.0544 -170.66132 785.88873 552.7065 -81.18736 879.98083 613.87616 -437.90964 877.8759 609.5532 236.45332 817.83276 769.01575 -285.39615 836.3237 746.1549 52.810028 768.7013 664.2192 78.511086 783.2128 675.80817 -326.9189 736.27075 644.80725 64.567505 756.30255 657.9515 -362.46558 772.5507 628.12897 21.7108 772.87305 642.2283 -326.51254 793.4065 635.98126 74.67333 785.652 646.4765 -328.55096 1070.7783 782.72644 -221.66852 1045.7919 761.25433 222.13809 875.49835 759.4296 -435.5913 849.39996 754.0045 427.53778 972.9695 977.2159 -344.04184 959.50085 905.9111 536.1488 1020.2702 1011.3409 -335.5863 995.9618 923.5955 546.8353 895.7348 1032.8347 -355.25223 917.83905 978.6541 570.6621
283 Screenshot_2021-02-11 at 14.43.14.png squats_down 413.6328 216.95428 -585.766 421.30292 203.7379 -572.7184 425.92606 203.54205 -572.7323 430.56992 203.24251 -572.55994 408.38992 203.69063 -570.10895 403.96866 203.26212 -570.0896 399.5394 202.90953 -570.10736 439.26093 204.71587 -453.68893 395.71234 203.8632 -437.77835 422.56232 225.9776 -538.62823 406.54196 225.56264 -534.0704 470.15396 247.83838 -362.71777 367.83444 247.6376 -329.50357 464.68887 343.47946 -367.4318 377.23123 345.30878 -324.52728 450.01834 412.53674 -429.37067 389.90472 417.83282 -372.38965 454.87744 432.76584 -469.89886 385.42462 437.58582 -395.89258 442.1196 430.81256 -491.7742 392.9479 437.8479 -426.74304 437.58093 422.66534 -439.97864 398.7035 431.15256 -384.73486 447.8731 338.82904 -4.584144 388.48947 337.31403 4.533007 524.98346 375.14233 -340.1128 320.8262 372.85767 -336.86942 518.0436 461.48267 -72.82497 320.4454 461.49744 -55.57408 505.7497 474.76797 -50.80879 330.56387 476.86823 -32.33037 549.73895 503.9007 -162.01411 294.92935 500.39832 -148.25334
284 frame__jaWXM1wCBxE__0001186.jpg squats_down 1043.6482 459.39023 -918.77234 1055.2019 435.86258 -895.45514 1063.2412 435.64172 -895.542 1071.3844 435.2965 -895.57623 1031.78 435.06317 -899.74133 1023.19037 434.1708 -899.6097 1014.58386 433.3641 -899.58685 1080.0133 438.04294 -687.4573 1001.55066 434.8236 -712.13245 1055.647 477.2816 -835.23334 1027.6517 475.78336 -841.9164 1135.5479 517.8053 -476.61075 943.54144 523.53937 -501.53104 1166.6703 681.9066 -622.55817 918.946 693.8266 -663.42206 1093.7885 632.1407 -942.00696 1010.3906 629.3432 -973.2464 1067.8665 620.31775 -1012.63995 1048.5233 614.6598 -1036.9404 1070.9519 588.2838 -982.47504 1035.8535 577.50464 -1009.1543 1072.4634 591.30383 -935.45447 1031.915 583.98895 -962.46313 1098.9617 664.3688 5.082643 992.9853 666.9227 -4.8655295 1148.1078 797.94214 -597.41876 962.45074 798.93884 -504.6297 1127.8237 992.82733 -285.97162 955.51 975.33655 -208.4352 1112.6263 1019.1901 -266.159 962.4204 1002.7215 -191.88345 1144.3134 1059.7169 -511.4995 933.3868 1036.5151 -434.48038
285 frame__QfAY5JsB7qY__0004997.jpg squats_down 827.8745 544.50134 -481.11844 834.6437 529.1037 -491.19553 839.1206 528.3381 -491.09528 843.641 527.523 -491.18832 826.83374 530.23376 -445.35452 825.807 529.9055 -445.1677 824.8945 529.9109 -445.17578 862.6448 524.7773 -482.80402 838.4945 527.1705 -280.4576 845.0588 554.2123 -476.832 836.4902 554.3574 -417.48303 928.2577 567.85406 -549.2507 844.87524 585.08606 -204.22981 875.877 542.18365 -815.2931 758.64856 544.42145 -277.96704 799.7831 451.0301 -997.4953 667.6539 474.31055 -421.638 785.95044 423.3393 -1081.4995 648.75275 454.0892 -462.41846 789.4848 418.33917 -1065.7129 647.2007 450.92664 -495.32285 791.05756 426.32245 -1000.62823 652.9674 457.3546 -444.99005 1012.2385 737.73413 -108.59327 956.62195 741.42413 109.17361 960.04224 824.85944 -485.4392 868.47906 809.73895 -203.3689 976.0479 950.25116 -293.89014 913.011 927.6262 16.778923 987.9418 978.4318 -287.3252 942.5128 950.4544 31.529367 919.49396 977.1343 -498.72104 830.58765 971.5299 -104.7394
286 Screenshot_2021-02-11_at_15.58.45.png squats_down 1311.2657 486.85712 -391.41278 1328.5885 464.59473 -341.8008 1339.6895 464.7492 -341.70386 1350.8394 464.7458 -341.9129 1298.8057 465.7086 -335.98676 1287.984 466.1022 -335.7339 1277.16 466.83954 -335.45154 1369.9493 486.05905 -91.04324 1269.6171 488.85635 -56.379204 1335.0225 517.4302 -306.50043 1293.6454 518.1983 -295.97495 1424.7849 618.00287 -89.061356 1224.8024 630.0059 -10.143835 1392.3008 777.4915 -584.91974 1250.2422 784.38965 -398.85223 1406.4741 640.3852 -1012.69366 1248.2333 640.3884 -748.0418 1429.4275 599.84735 -1085.0991 1239.6345 605.56335 -789.26306 1437.7144 605.75397 -1048.912 1222.6995 588.67883 -745.35095 1420.8372 617.7124 -1007.77527 1232.2635 601.7114 -733.5063 1392.541 931.46 -7.416791 1275.2573 933.18085 8.276925 1433.2916 868.4438 -874.2557 1172.0374 888.0492 -789.56195 1415.6292 1072.4432 -323.32178 1202.2721 1086.8002 -319.75363 1401.1812 1095.1041 -274.9936 1225.2368 1108.4043 -279.7825 1442.3225 1170.0607 -522.85364 1161.2008 1183.457 -521.46075
287 frame__jPO_jp4Sb00__0027689.jpg squats_down 854.85724 467.8695 -214.59149 866.9403 445.65677 -191.6688 875.1097 444.82135 -191.64786 883.3098 443.8492 -191.62555 846.3203 447.43207 -175.96431 839.1871 447.31696 -176.03749 831.9338 447.45193 -176.01662 900.74884 448.99292 -42.94878 830.4717 452.78412 40.336746 873.3042 485.18625 -159.58566 846.7563 486.7178 -136.1122 960.6601 528.01074 43.429432 793.4189 532.5747 100.18698 996.08057 645.07983 -170.46114 727.03564 652.5033 -196.18436 899.9622 534.72437 -244.51158 807.5465 516.7565 -408.21143 881.75214 499.5668 -276.78616 820.3957 476.97604 -449.55206 877.8218 491.3146 -204.83015 828.89746 466.19922 -378.36194 877.8526 507.05826 -217.74239 834.7016 485.47665 -383.94495 930.8922 730.0178 -24.741228 830.3826 727.8161 25.178083 1000.6939 729.0288 -699.7173 730.07245 714.896 -610.50037 958.72876 864.6268 -272.40625 783.3949 857.4257 -251.41763 945.1587 876.76465 -235.96436 808.5622 873.4479 -220.30986 960.5818 945.8714 -467.78802 753.93445 936.1236 -425.01093
288 frame__miPKBTdcCIY__0004615.jpg squats_down 950.7256 520.30286 -329.04395 953.7736 500.33 -307.4592 955.1888 499.24463 -307.3928 956.773 498.18506 -307.45306 945.1149 501.54877 -350.14224 940.5851 500.8578 -350.01498 935.95013 500.34857 -350.0916 945.82666 499.74155 -164.7455 918.27045 500.81808 -350.29486 946.0523 534.2376 -271.05768 935.856 536.04193 -321.5982 917.13763 547.0414 76.7807 862.0102 580.42664 -429.98355 1009.7594 601.3036 223.77827 891.7136 696.6219 -482.29993 1005.7799 559.34863 194.14331 948.78705 568.4566 -321.3089 1010.0617 551.9366 194.31323 979.00256 541.89246 -335.55737 990.0792 543.7148 188.79782 956.40857 518.11694 -351.8969 984.4464 555.21924 187.75276 942.91797 531.0064 -320.0301 759.8293 730.95984 187.87958 730.79565 749.6824 -187.94278 921.9984 699.199 256.42126 918.3546 717.4311 -285.8407 848.40356 854.1138 362.1913 815.7965 865.17035 -183.46725 811.81915 880.07666 372.96127 768.9418 885.7797 -172.81215 911.8554 902.86115 358.761 888.70264 917.0441 -193.846
289 Screenshot_2021-02-11_at_16.08.47.png squats_down 1724.9965 379.9945 -1093.0465 1732.5193 360.5672 -1043.9113 1741.1598 360.81845 -1044.1481 1749.8657 361.03024 -1043.9668 1704.5812 360.43942 -1058.223 1694.2495 360.62933 -1058.0547 1683.7141 361.1202 -1057.7952 1755.8607 377.6913 -728.4744 1662.4418 376.63535 -789.26935 1737.27 409.87576 -978.8168 1705.0264 410.6694 -994.3002 1816.4841 511.31134 -513.7256 1588.4037 500.49048 -633.04315 1908.6816 675.04956 -1021.43787 1549.953 681.2221 -1041.7178 1815.6975 538.6462 -1587.857 1667.4712 534.9215 -1317.7993 1798.9177 498.0466 -1689.889 1700.1217 482.86557 -1381.5946 1787.3323 479.59622 -1584.4454 1689.1368 463.58044 -1325.1432 1783.4623 499.7563 -1557.309 1691.3319 488.0785 -1298.6428 1713.5706 747.50775 45.16657 1577.4437 741.1995 -44.540546 1860.5306 813.95074 -689.8626 1508.7535 792.15454 -1133.978 1807.0055 1016.5664 -245.3226 1530.6272 1041.4556 -577.58374 1770.3417 1057.3702 -215.54115 1542.1042 1079.9918 -540.9818 1897.6538 1093.2146 -476.62302 1515.479 1121.4316 -909.8044
290 frame__8ghtQpeWov8__0013922.jpg squats_down 1158.8892 572.87823 -122.235115 1167.372 558.91046 -99.728714 1166.0607 555.7301 -99.727585 1164.8931 552.7236 -99.6708 1165.5194 563.67285 -153.2725 1163.2195 563.0624 -153.20198 1160.8091 562.79974 -153.26218 1144.804 550.12885 -9.083175 1140.503 561.79297 -257.3049 1139.7065 579.77026 -87.04987 1137.8301 583.9346 -157.33919 1074.606 564.3167 167.88835 1057.3665 606.46387 -417.53705 1208.3384 576.34784 276.54266 1161.0267 661.58234 -692.9588 1289.9343 547.1121 145.17728 1283.196 622.9178 -768.2962 1305.4735 532.0347 152.67377 1323.2246 614.4229 -847.45056 1305.0581 525.2318 83.956924 1308.0634 590.26624 -820.70764 1299.1066 539.25354 113.98917 1293.6866 594.2685 -760.3099 866.2212 729.01544 202.39432 851.624 758.3746 -202.04306 1078.5286 719.4229 361.69833 1081.7821 762.4579 -269.9044 961.85956 856.4736 691.00116 974.71484 914.1584 17.952316 930.2166 871.2321 725.0413 941.1721 932.09753 45.501106 982.2664 906.78204 793.9116 1011.4588 964.5929 62.581673
291 Screenshot_2021-02-11 at 15.41.06.png squats_down 373.70682 248.9057 -266.52054 378.90527 241.64755 -246.3396 382.66336 241.67445 -246.36345 386.50748 241.62744 -246.35207 367.8516 242.15016 -245.56453 363.99014 242.43465 -245.43123 360.1014 242.80116 -245.44046 392.71036 249.52763 -135.07803 355.18414 250.80542 -133.593 381.52258 260.78568 -226.19815 366.8491 261.15973 -225.56789 418.33688 305.26047 -86.85582 332.08047 300.34906 -83.65503 428.99368 362.05542 -157.65152 305.60596 352.29645 -164.18396 412.04803 388.67892 -349.1962 340.0248 382.22495 -350.31503 410.51608 400.77988 -398.8857 348.5068 398.52267 -397.33633 402.78238 392.76688 -406.90137 358.47882 387.82425 -403.8358 401.85052 388.85263 -357.47958 357.1777 383.83554 -355.48358 400.95584 413.95438 0.43306512 348.7867 411.74005 -0.18693057 435.63773 449.78397 -298.90182 307.96036 440.94327 -334.9341 424.06497 531.74457 -62.20473 314.69635 524.19183 -85.4974 416.36087 542.3736 -44.665085 324.5519 535.9486 -65.8223 434.8122 569.7874 -157.79276 291.31354 560.03564 -180.9462
292 frame__dCNS-QVXa6k__0022882.jpg squats_down 1062.3062 385.67206 155.8595 1053.8481 367.16556 166.492 1050.1206 366.02505 166.68127 1046.587 365.06143 166.61667 1056.3123 370.1233 108.493645 1054.6975 370.65463 108.78315 1052.8455 371.3401 108.82379 1027.6184 375.57233 242.06683 1036.6776 381.55252 -28.530022 1051.303 406.11765 189.65024 1054.4749 409.5164 112.55179 963.8379 471.195 448.84335 1026.9922 474.91818 -196.53716 1091.2766 543.6611 568.85693 1155.3201 548.4517 -133.74316 1181.4098 514.98267 463.1337 1213.5956 516.0735 265.69122 1207.8616 490.48846 472.40033 1236.6055 490.38556 240.97775 1201.9749 484.50073 421.72128 1227.968 484.02097 277.46588 1194.0131 495.82672 440.5439 1219.3008 494.4786 287.34894 780.8424 658.521 220.97195 817.4846 667.35394 -221.02615 941.9776 733.2757 600.99475 1026.926 775.5174 -183.04492 881.3534 903.59906 893.5817 968.7584 971.8642 -117.57597 855.2072 936.25903 924.35913 934.14685 1004.1353 -107.7777 922.56335 923.6051 1003.87506 1042.6344 1008.77515 -81.717995
293 frame__dCNS-QVXa6k__0011204.jpg squats_down 1124.0336 302.49496 108.68337 1113.0438 285.53418 115.656494 1107.973 285.41058 115.69397 1103.0833 285.38965 115.75951 1118.4744 286.55713 50.935013 1116.4794 286.61087 51.146416 1114.318 286.88025 51.00209 1075.8579 298.39703 203.56342 1090.5616 297.9363 -101.33919 1107.7988 325.357 144.69943 1113.486 326.80496 57.025723 1002.1852 399.08237 427.75745 1062.2544 413.5613 -265.12823 1102.365 509.7697 636.6071 1174.8164 522.89575 -121.14073 1152.2963 441.29144 786.52136 1169.7917 432.88248 320.1809 1176.8348 412.23965 824.3711 1176.5708 399.9946 288.58395 1158.7115 409.76996 819.1322 1164.6932 400.8157 281.5561 1146.4857 422.2631 786.46045 1157.2275 419.29004 326.06866 811.34753 597.81683 227.69136 842.0999 615.5526 -227.44675 997.4154 664.37573 619.533 1067.0476 733.1374 -229.8458 913.7407 856.06104 851.3019 966.5418 916.8826 -152.11728 878.8626 891.4702 883.5786 926.2631 951.66925 -145.79279 991.184 897.09955 989.836 1064.4578 958.1191 -110.39269
294 Screenshot_2021-02-11 at 15.24.49.png squats_down 558.33215 330.0757 -491.0152 565.52747 315.01227 -485.34036 569.9653 313.58765 -485.34418 574.5371 312.0815 -485.46436 552.4009 317.70367 -477.83954 548.26825 317.9178 -477.5919 544.0681 318.28955 -477.53796 583.9127 305.87506 -385.06516 543.1779 313.63742 -344.83786 568.3184 335.54172 -446.49716 555.7554 338.27585 -435.00278 628.3156 345.10367 -339.4851 511.55716 341.96024 -289.8909 624.92163 406.84 -604.60156 472.29898 408.16724 -553.52405 573.64734 337.24335 -751.6866 532.30084 333.17062 -727.5572 567.9777 315.17786 -789.97614 538.4195 305.696 -754.31146 566.222 307.05954 -747.64746 547.8038 303.04056 -702.7627 566.0013 317.51373 -736.4553 550.5864 317.4385 -709.0652 604.33405 492.11182 -12.062526 527.7508 491.96155 11.977373 716.32495 485.75803 -357.1276 436.6627 488.07843 -281.6908 707.982 606.49615 -171.22115 440.24942 611.3217 -88.93191 691.5793 632.18555 -158.86603 454.85995 638.7245 -77.22438 748.64087 648.5559 -280.5047 399.4791 652.78357 -182.01924
295 frame__abrchWe7pnE__0003420.jpg squats_down 2039.0706 1149.3215 -1656.897 2060.9294 1107.4391 -1613.1696 2074.213 1106.0863 -1613.1326 2087.7073 1104.5748 -1613.0842 2021.883 1107.7151 -1617.1279 2008.7693 1106.4503 -1617.3644 1995.5491 1105.3608 -1618.2015 2110.3225 1104.3773 -1219.325 1980.3505 1102.7922 -1235.4218 2061.4797 1175.7848 -1498.8423 2019.7515 1177.248 -1499.8479 2210.2861 1240.4369 -806.67377 1884.1218 1241.8701 -896.4811 2244.1301 1506.5226 -1103.6875 1856.2041 1537.6646 -1245.7714 2126.1934 1455.7174 -1785.4071 2009.5814 1465.2451 -1839.5485 2106.4841 1436.5957 -1972.4158 2052.6187 1439.2705 -2012.8464 2097.6675 1398.0797 -1915.1558 2051.0938 1390.0494 -1966.5852 2086.457 1408.6241 -1783.9723 2055.1738 1405.091 -1843.4263 2096.6414 1531.3693 18.7094 1922.1272 1528.6158 -17.69089 2315.572 1551.5856 -1208.3925 1799.1494 1527.0225 -1282.7921 2257.0408 1850.2894 -466.35724 1767.7861 1859.2589 -594.1508 2216.9114 1906.852 -416.2 1790.3441 1917.5349 -552.79767 2339.6653 1953.1154 -864.1173 1698.2579 1971.269 -1014.5547
296 frame__UxstRqRaIPs__0006369.jpg squats_down 926.73975 434.34155 -821.0042 933.9177 412.52957 -793.6493 941.29065 411.50507 -793.5882 948.66815 410.38226 -793.46375 912.0241 414.74936 -797.18774 903.9631 415.184 -797.0451 895.905 415.71017 -796.91364 955.01245 415.11795 -575.53094 883.69464 422.84183 -590.8898 939.30774 450.56213 -737.5085 912.5657 453.03754 -741.5092 1002.62445 497.33426 -414.2403 839.63794 512.5242 -419.47333 1030.7358 622.84 -707.223 837.2557 631.8241 -726.2855 1011.27515 536.35944 -1141.4568 840.3124 544.1178 -1148.0737 1007.67566 507.73972 -1230.5692 839.3541 516.8982 -1225.6732 1011.02637 487.49615 -1198.4988 831.3995 500.47766 -1198.633 1005.24 498.0508 -1138.4049 839.7015 509.51773 -1145.8988 975.3484 664.8948 1.3246369 875.34534 669.18695 -1.1197236 1058.2473 795.29364 -408.94727 803.3474 806.05035 -447.395 1055.6815 940.8697 -22.110542 801.39905 941.4801 -54.69352 1042.4559 958.73755 7.2954807 812.6306 961.19214 -26.138126 1074.3301 1013.82996 -198.31822 765.91504 1005.4407 -243.84195
297 Screenshot_2021-02-11_at_15.38.15.png squats_down 1333.2468 572.86365 -414.39624 1345.8037 553.14343 -354.2503 1355.0571 553.40497 -354.41702 1364.4413 553.4911 -354.40134 1319.436 553.2397 -360.10342 1309.7067 553.0491 -359.9618 1299.9841 553.1069 -359.84888 1375.6669 567.84753 -85.99523 1286.4275 566.62537 -110.72759 1348.6965 600.0213 -321.9796 1315.0433 599.3205 -328.86047 1437.1405 682.1424 -10.065819 1214.9274 680.02106 -73.56875 1508.8928 831.153 -520.2379 1136.8195 823.6657 -620.2308 1406.6656 698.6738 -903.5124 1248.0271 698.9645 -1062.6373 1383.5748 661.3655 -960.5898 1277.6984 669.3525 -1114.4644 1378.5664 642.66815 -853.4823 1283.1271 644.9049 -1032.5707 1375.1855 662.7016 -863.6757 1283.151 665.16595 -1027.2053 1388.3746 913.4355 24.67968 1252.4049 920.32513 -23.806454 1491.981 871.9769 -839.43555 1192.732 877.6571 -1002.0943 1457.3549 1091.1167 -422.33038 1194.27 1103.2965 -606.2126 1432.936 1125.653 -394.32916 1206.2821 1137.4264 -580.27515 1499.5978 1173.7778 -697.8918 1183.9039 1181.8906 -914.2788
298 frame__Qzd8oJyKQaI__0010691.jpg squats_down 1081.7716 411.73505 -62.8589 1068.1973 395.70386 -48.419243 1064.4221 395.37247 -48.453743 1060.7867 395.09125 -48.520782 1070.0979 398.7277 -109.514145 1067.3398 399.7015 -109.449295 1064.586 400.82507 -109.634575 1036.0013 406.73346 50.59025 1040.9895 412.46664 -228.54938 1069.9304 432.62338 -20.190609 1072.6547 435.59665 -100.59387 997.6963 523.3411 225.03627 1022.7462 511.5959 -347.02444 1112.2959 608.6307 267.04166 1138.2163 610.529 -316.58554 1196.3793 550.905 137.76462 1206.0432 540.01227 -106.58336 1219.1144 521.1378 138.33649 1229.5985 508.70325 -162.36366 1215.6473 510.32242 108.7585 1212.2704 496.5635 -146.87439 1207.698 521.497 119.0051 1203.0809 511.7318 -97.396935 903.3001 739.75275 181.66971 907.73956 740.78174 -181.2869 1031.3892 815.064 439.69748 1055.9587 822.5699 -208.95892 995.3769 967.44745 693.0725 971.4675 989.7496 -110.58521 964.2968 998.36816 717.0832 935.90955 1011.2601 -102.35993 1070.1859 1006.04877 750.03064 1029.7999 1046.2737 -111.082695
299 frame__bggX6ocjojk__0001456.jpg squats_down 1862.1237 1054.8574 -1063.085 1876.9562 1009.2049 -1035.6781 1888.5024 1007.34906 -1034.981 1900.1411 1005.1864 -1034.5922 1840.8188 1011.0064 -1034.4655 1828.6946 1009.72864 -1034.1023 1816.4639 1008.7739 -1034.5493 1918.3912 991.80096 -584.5506 1799.406 996.53613 -608.58435 1882.452 1071.6661 -877.5341 1844.2916 1072.671 -883.6529 1996.8823 1085.7104 -258.173 1704.4729 1074.1831 -243.68237 1998.3309 1238.9808 -870.5019 1657.696 1224.9885 -796.71625 1921.5282 1296.1517 -1891.7701 1764.3868 1297.0006 -1775.631 1911.1858 1318.5314 -2144.7485 1796.6921 1325.198 -2004.7749 1874.7518 1297.3015 -2140.6882 1822.6074 1295.922 -2003.5055 1872.353 1295.3279 -1921.9691 1819.3727 1293.7399 -1798.7053 1921.5475 1417.2306 25.495234 1738.0181 1407.3152 -23.669762 2104.1917 1523.7888 -1024.6682 1585.3105 1533.098 -1069.243 2055.0522 1828.169 -447.07358 1599.2601 1835.6674 -474.85083 2017.4419 1887.7008 -415.11502 1634.4119 1900.8652 -445.94983 2130.5176 1922.4939 -851.6194 1516.356 1929.0492 -922.01953
300 frame__ekowbKbBNSM__0007375.jpg squats_down 1240.1278 546.5549 -450.77924 1248.1792 519.23364 -441.22885 1248.046 516.5628 -441.0697 1248.0824 513.9945 -440.91882 1244.9843 522.3588 -495.94006 1241.8062 520.22296 -495.96204 1238.5918 518.61755 -495.94785 1226.6373 499.90033 -322.74463 1213.2511 505.78726 -576.0333 1221.4756 550.4918 -401.13196 1216.7595 551.6923 -472.62 1182.6583 527.53864 -141.09671 1135.9224 540.63416 -662.2069 1383.8369 560.8508 -184.87791 1300.8859 607.4931 -852.7715 1556.5782 551.48724 -356.0047 1499.7153 575.001 -876.89825 1604.8264 547.2843 -385.9519 1550.6774 575.1305 -955.7886 1597.4791 537.0221 -451.55185 1544.9835 542.2381 -928.3783 1579.6655 545.97565 -396.9043 1526.8125 543.36566 -870.2026 1000.76135 754.11206 176.62823 961.02124 768.83734 -176.8117 1203.9597 676.5353 232.89392 1183.0215 689.5481 -389.2274 1110.4385 854.6912 451.84644 1083.2761 894.1604 -120.24024 1084.4036 881.09686 471.89313 1050.6956 917.94684 -89.874596 1124.1068 892.13367 501.98703 1106.3091 949.56256 -72.988914
301 frame__ku3vgejAZ0g__0001229.jpg squats_down 920.6912 391.36667 -1042.6 933.0794 371.98767 -1004.7029 941.2908 371.67746 -1004.66125 949.4274 371.28992 -1004.6547 910.3624 373.4651 -1004.05035 902.5504 373.92426 -1003.7244 894.70197 374.5442 -1003.5703 963.18 380.4159 -756.6412 887.2119 384.82642 -763.9478 937.2394 411.70593 -949.0478 908.5643 412.93082 -950.6886 1022.04663 480.2771 -583.3929 836.78357 474.5952 -600.6567 1071.1108 624.7741 -878.86676 760.035 602.891 -927.9022 984.52686 585.32965 -1291.687 853.6916 564.6693 -1321.8772 953.1338 580.9633 -1362.4603 882.6908 557.46234 -1394.9548 956.6477 544.987 -1325.0272 888.14185 536.2085 -1347.5599 960.58124 548.1354 -1277.6344 885.4353 542.58344 -1303.4305 993.2167 641.53925 5.8037877 883.4517 642.0689 -5.564067 1083.0254 733.26575 -537.60895 813.87933 757.0088 -545.9337 1039.3186 851.52936 20.115835 863.0438 854.49677 34.938354 1021.4788 870.9275 65.44301 884.4549 871.4229 79.42079 1066.8207 913.85297 -135.2384 829.8866 917.76764 -132.49336
302 Screenshot_2021-02-11 at 15.47.00.png squats_down 566.1186 306.4851 -263.09808 573.81335 294.0929 -239.47986 579.51917 294.03354 -239.43365 585.2522 293.86124 -239.3624 557.8767 294.71732 -240.48302 552.0461 294.87234 -240.45079 546.20825 295.1284 -240.42737 593.3649 301.6566 -109.59619 539.05774 303.09412 -113.88126 576.7269 321.7445 -216.45613 556.51556 322.13913 -217.42169 628.8582 368.72028 -41.321705 507.02628 365.91608 -38.162884 659.0643 474.38895 -227.2925 480.01913 469.09528 -213.88234 621.04065 394.6044 -443.83072 523.9897 399.4968 -423.2327 609.34393 372.12848 -479.98376 538.77216 383.2802 -446.23093 614.2679 353.31818 -440.7431 534.8558 363.3377 -418.57724 610.92993 363.38165 -430.73196 537.38 372.38623 -411.3389 605.8633 496.87915 -1.8482736 532.15686 494.2699 2.1942658 688.5107 497.09747 -396.31323 463.93027 489.61465 -372.11932 661.8017 627.1635 -216.69159 472.85068 618.00037 -214.42123 645.4667 648.3508 -204.43643 487.68573 641.65436 -203.26071 689.9302 670.4263 -341.80008 431.4882 657.6861 -334.48434
303 Screenshot_2021-02-11 at 15.50.40.png squats_down 603.3988 334.02942 -408.76328 611.9552 322.2346 -392.951 616.7934 322.54144 -392.98135 621.6295 322.75003 -392.8683 598.29016 321.48584 -392.97708 593.6535 320.97934 -392.873 588.99927 320.53827 -392.92026 628.2979 325.8518 -277.00598 583.62085 322.67657 -276.92508 611.0406 345.15002 -363.46573 595.12695 343.7725 -363.5384 654.50745 376.3706 -191.49724 549.97845 369.3088 -196.4372 653.6626 464.5478 -325.44382 550.56104 456.3664 -360.4223 621.0034 401.53754 -464.1282 596.1641 397.93268 -514.00476 614.059 381.5232 -499.88095 604.3597 377.35086 -548.6003 620.0578 369.07837 -467.34058 600.15375 369.07947 -521.19635 618.687 375.70248 -453.3942 602.52356 377.00272 -506.04044 628.0847 480.59015 2.9801574 566.80695 480.11594 -2.7814283 700.7682 487.72406 -317.6922 505.46497 484.23532 -334.19437 690.01483 597.073 -116.69089 496.3886 592.9916 -133.0319 677.7683 616.715 -103.38546 504.4566 612.8723 -120.64528 720.0428 632.91046 -224.59718 463.76315 625.5765 -243.3457
304 Screenshot_2021-02-11 at 15.42.03.png squats_down 613.4107 236.37299 -113.381836 617.06757 227.94786 -94.381035 620.0997 227.53767 -94.26427 623.2339 227.11737 -94.38439 607.8794 229.38365 -98.50233 604.58295 229.80649 -98.53186 601.2864 230.32271 -98.61152 627.2069 232.40454 11.614473 597.46423 236.54375 -3.636671 620.07 245.8238 -73.67252 608.2557 247.26694 -78.24238 649.47076 274.08466 -7.6024036 578.0917 274.6106 -4.6443954 678.3591 280.39664 -250.55331 548.105 278.5901 -256.06302 697.5752 275.54095 -513.62335 522.58954 276.24063 -560.9817 711.3323 279.4889 -566.6219 506.69583 281.86008 -610.9567 697.6946 277.09235 -573.35345 520.91815 276.14597 -623.8655 694.064 279.17172 -527.2266 525.9442 278.7097 -575.19745 640.0343 383.3612 6.7431517 590.1298 383.63715 -6.561203 679.98157 441.85098 -277.29544 558.57715 446.48633 -246.85657 668.4627 538.2867 -209.4831 568.8481 541.0119 -178.46104 658.3061 554.0189 -211.068 578.4952 555.6273 -177.9756 690.1952 570.9788 -329.1589 549.719 573.8198 -289.59515
305 frame__iPCJs2jh4Hk__0001781.jpg squats_down 834.2707 571.01843 -220.85187 840.8306 562.55164 -175.13797 845.9302 563.3633 -175.12662 851.13885 564.0258 -175.09712 824.86365 561.44104 -181.60551 819.0648 561.1823 -181.47081 813.2787 561.0709 -181.39905 854.3106 575.6344 20.869928 802.21844 571.57434 -5.594599 840.6978 589.7883 -155.80455 820.7806 588.07556 -163.5281 888.1768 661.35583 80.10368 752.40265 654.2358 22.40483 920.975 759.02075 -240.5692 744.67114 760.62177 -309.86557 887.9946 682.80035 -560.991 800.8294 670.7777 -627.0753 886.0647 660.3441 -617.17773 813.3012 642.15204 -680.0335 880.4798 648.89716 -565.5132 811.71985 629.26227 -642.0361 874.71277 659.97205 -546.2384 814.2655 643.38965 -614.9335 852.43097 815.16724 27.114874 764.95844 814.51324 -26.37856 934.5735 801.6348 -560.1269 731.6016 806.51184 -664.55786 912.49994 971.33154 -525.79315 708.2755 983.1519 -616.5096 893.0035 1001.75635 -532.21454 709.11316 1012.41626 -620.72986 950.2053 1013.6625 -741.6117 705.89185 1028.5851 -846.5378
306 frame__mGvzVjuY8SY__0013411.jpg squats_down 871.5465 587.22345 -408.6195 881.48395 561.829 -414.4165 888.7398 559.27997 -414.4008 895.9199 556.66455 -414.48718 866.2476 565.69025 -375.55475 861.39 565.8338 -375.24112 856.6428 566.1581 -375.08328 920.98755 548.80457 -344.30133 870.1593 560.5341 -179.01614 894.8414 594.00574 -377.67654 874.1804 598.33154 -329.74695 1006.1473 603.09674 -358.95938 877.64777 612.7321 -35.559814 960.73047 775.5856 -503.42337 824.1016 747.3347 -287.82733 863.2356 663.4655 -505.94055 824.679 655.45776 -646.40204 831.461 632.871 -536.90717 819.33875 634.91284 -694.4365 859.6501 612.21906 -523.335 832.6361 615.7669 -648.6594 870.4669 621.2493 -495.70248 842.97437 624.9734 -634.17676 1078.1248 766.18024 -109.75948 1007.8924 767.59753 110.87966 971.1566 798.11633 -552.4287 869.64575 791.9023 -313.81226 1014.9265 977.19244 -386.15167 946.24774 964.8797 -268.22397 1043.4036 1001.16785 -374.61295 980.74976 989.2277 -268.37836 959.25824 1056.6536 -558.9494 891.67993 1035.6028 -399.87177
307 frame__Av83LHehBK0__0002759.jpg squats_down 827.50806 396.81534 609.3937 805.6683 385.78394 582.5341 801.7469 384.15665 582.55786 797.7512 382.1235 582.70667 817.81445 385.7475 623.96094 822.68536 383.2804 624.0507 827.8266 380.95953 623.7438 801.7472 372.03696 458.59103 842.3093 372.0223 662.1357 839.20135 396.80566 563.8249 853.57495 396.53314 623.9293 843.07935 404.76392 208.23946 971.4013 386.12558 681.0412 852.6096 586.74567 35.17136 1025.9985 546.04846 761.90015 796.00616 725.74615 17.479702 987.5855 696.3574 782.19916 777.17114 752.36694 -5.5697446 982.93604 716.71497 818.2576 774.81757 742.37146 33.76233 959.9098 723.25665 797.8673 785.252 730.0222 32.025345 954.62335 721.95996 772.2856 1149.0496 539.47 -150.7224 1223.7803 532.7337 151.39484 915.91516 568.28564 71.52286 1008.3578 598.34 572.97455 1024.7728 752.00635 -68.52215 1149.7224 672.39667 594.05316 1075.9243 783.32074 -80.56791 1194.9308 669.887 592.93134 966.4537 793.778 -58.645725 1139.459 702.12415 578.1632
308 frame__zJBLDJMJiDE__0000500.jpg squats_down 1040.0221 530.91315 -609.619 1048.5801 511.5095 -572.6954 1057.1162 510.57144 -572.6983 1065.6035 509.49866 -572.96545 1025.7865 516.5904 -571.04926 1017.14746 518.8648 -570.68933 1008.4261 521.37164 -570.74 1077.7838 526.2694 -388.11502 1001.8478 542.1846 -383.7753 1060.0605 555.93256 -545.1475 1028.0609 561.5063 -544.18475 1150.5425 647.0766 -399.38226 973.8195 647.1437 -272.72784 1163.8058 829.87445 -635.334 911.4993 797.57574 -531.0657 1032.9052 734.1917 -925.57166 872.0919 739.5448 -973.04974 990.7475 726.3516 -997.1952 859.2816 733.43567 -1041.1453 999.74854 682.63275 -988.68066 864.291 706.15125 -1032.3187 1015.42426 691.018 -927.24365 879.86884 711.9437 -978.41895 1156.2345 869.24713 -56.050213 1059.1642 862.8064 56.56035 1127.5813 790.95435 -637.3083 914.78876 770.0488 -353.15143 1161.5565 954.4574 -249.56937 976.7747 949.4814 -80.37158 1175.06 977.90906 -219.20653 1016.37573 984.8098 -59.946068 1140.6995 1025.373 -378.1081 884.4645 1021.28595 -174.04166
309 frame__mGvzVjuY8SY__0004756.jpg squats_down 919.3215 546.92584 -874.28424 932.1142 527.2427 -836.82135 940.48456 527.0397 -836.8068 948.8562 526.72955 -836.69946 909.013 527.6881 -834.6846 900.9926 527.67474 -834.6354 892.9351 527.7603 -834.70514 962.93665 536.8429 -626.0562 885.2837 537.5072 -615.07996 935.3462 568.3383 -797.35986 906.80536 568.70404 -793.0599 1019.80945 638.5684 -453.90167 840.0032 636.3841 -452.4168 1040.3304 796.3711 -682.23724 812.0507 788.3173 -698.91077 961.03455 721.69196 -1040.1901 873.0901 713.8941 -1066.8595 936.8262 699.52454 -1125.8173 893.3131 692.1222 -1146.5981 941.7849 669.0548 -1074.444 890.1151 665.0703 -1104.7084 941.49274 678.3062 -1026.4442 893.5224 675.5429 -1056.398 983.0718 779.5096 -4.6071844 887.00366 774.9674 5.2555203 1013.1325 838.60986 -720.8583 845.98096 838.263 -677.0373 1000.85565 985.6346 -248.50087 843.7481 978.49316 -195.39532 993.3916 1008.0646 -215.9015 853.01074 1000.24506 -165.55634 1010.41797 1046.932 -486.876 824.3073 1041.6349 -433.61575
310 frame__e2xTVq6wtsM__0035202.jpg squats_down 758.9573 229.54742 -9.064943 780.22626 218.88663 -54.224365 783.016 220.85175 -54.155075 785.9459 222.67728 -54.234474 782.9187 215.65923 14.778604 787.0757 215.74144 14.909944 791.4941 216.09091 14.872334 815.1182 240.05493 -170.44833 819.59686 233.54305 138.11931 766.112 257.27982 -51.915623 768.74927 252.93857 37.505287 828.2489 358.7608 -344.4583 849.97876 361.47784 355.48044 687.09436 459.18683 -242.39133 718.7519 439.68628 390.24435 633.69275 323.03165 49.813435 643.29504 334.29065 315.09857 605.92566 286.2254 -0.82249117 620.12366 296.7572 321.33173 638.4027 275.5006 -22.851183 631.1674 288.51874 314.1765 654.0334 293.11172 47.482018 640.1264 302.38358 300.3993 974.51166 594.7769 -222.0977 978.59814 580.002 223.4254 782.4786 730.3029 -246.89761 797.2672 711.3919 336.764 787.18506 949.159 -225.69785 794.4843 903.97107 424.2367 809.2393 996.2752 -223.90265 818.9798 942.71747 432.11273 674.8597 963.76874 -260.9372 689.5254 937.8916 407.4636
311 Screenshot_2021-02-11 at 14.53.36.png squats_down 404.31018 334.8083 -97.35719 411.06058 321.09497 -78.366745 416.76083 320.53494 -78.18457 422.54535 319.97238 -78.334496 394.53876 322.2182 -84.05322 388.39566 322.06146 -84.04667 382.23462 322.02994 -84.03998 430.2513 323.2244 32.05031 373.35638 325.3838 19.599869 414.41974 346.96875 -53.275494 394.53766 347.75397 -57.325485 445.9866 363.37894 30.513683 362.07947 360.80704 32.729023 476.4915 374.38867 -115.37024 339.3788 372.26984 -123.64945 480.6656 324.2568 -256.30188 322.39688 328.47934 -303.7594 489.81808 307.03882 -305.11765 307.99118 313.623 -351.77466 477.8958 299.8212 -297.6307 326.20886 304.2033 -351.88745 472.61392 308.7296 -266.08774 332.47058 313.51535 -314.54202 434.5155 481.7909 -0.62943566 374.0379 483.711 0.8108199 502.50232 483.7206 -312.0346 310.64023 497.5064 -256.99072 473.68243 586.1043 -181.93349 343.1899 597.1959 -145.53429 458.01175 603.39307 -172.58624 357.93903 611.2329 -140.18506 503.64392 626.73676 -272.14102 323.07043 640.1724 -252.96684
312 frame__ZwbX1A-LlTs__0009913.jpg squats_down 1121.2802 595.90784 -652.24725 1124.6793 583.88446 -628.9531 1130.2233 583.9719 -628.99347 1135.7693 584.1016 -628.8914 1109.1334 584.8716 -641.46716 1102.86 585.277 -641.2767 1096.4202 585.87634 -641.1813 1138.3384 593.98145 -453.20868 1082.0895 595.19257 -496.00995 1131.214 611.063 -583.0165 1110.0612 611.3979 -594.5584 1151.7426 649.5088 -294.5162 1049.4476 656.13416 -464.2272 1217.3147 709.206 -507.85504 1067.8555 769.37964 -697.1068 1207.3398 694.49536 -850.06494 1156.4551 728.6786 -849.4054 1208.1985 688.1238 -921.5797 1178.5736 715.8394 -901.6159 1196.6685 680.5832 -909.40137 1175.292 707.3073 -881.3454 1191.774 684.6338 -856.88385 1170.5447 713.86707 -842.19794 1089.284 755.5622 47.737133 1026.3726 755.6833 -46.9354 1141.1254 830.50214 -443.1514 1055.0117 816.7208 -600.3325 1117.8439 927.41724 -157.34178 1064.0973 921.9112 -356.24112 1105.0874 943.99976 -137.50923 1063.1467 933.4348 -334.12268 1138.2518 963.5728 -298.416 1080.7086 961.0154 -497.75842
313 frame__6Gim-ntffUY__0005315.jpg squats_down 973.7898 495.3674 -681.9969 984.7704 483.25836 -641.49524 991.1338 484.48535 -641.4179 997.5991 485.6202 -641.33655 966.4784 480.32898 -639.1353 960.1879 479.203 -639.0017 953.8397 478.22308 -639.12994 1006.1998 497.0354 -425.5479 945.65717 487.25586 -416.75256 983.4558 516.31244 -604.1914 960.4081 512.0884 -601.06494 1048.375 590.1677 -314.27136 893.28503 581.3011 -313.89285 1048.662 707.1164 -604.97046 876.81006 707.0508 -582.6828 989.87915 654.79834 -993.11957 953.26086 656.7693 -950.91296 977.8202 642.0414 -1078.5739 974.9681 643.88257 -1032.8302 975.09155 620.6938 -1039.4152 972.9389 625.0668 -1000.73193 974.36475 626.1428 -984.9 971.8434 631.5014 -942.80774 1019.3747 765.66815 7.42118 934.1101 764.8312 -6.490435 1006.1673 772.63184 -614.0952 940.1294 757.56573 -654.02356 994.0831 933.5648 -283.4639 953.9706 929.0366 -303.63504 991.15436 961.1037 -261.44946 956.30835 958.9756 -280.6202 975.8909 982.709 -506.52106 956.0041 977.17645 -516.8837
314 frame__eAW98p-wPQ4__0007163.jpg squats_down 1162.6891 634.1248 -67.40378 1165.8396 619.76196 -100.99216 1167.9366 619.933 -100.99742 1170.1858 619.9521 -100.97974 1166.9318 615.40875 -44.34295 1169.2815 612.964 -44.28753 1172.0774 610.57526 -44.347126 1192.6066 618.7214 -203.4036 1194.832 608.09546 54.94365 1176.9839 645.98114 -103.45944 1176.7612 642.2849 -28.67352 1242.477 676.7567 -346.07135 1248.6503 647.80273 222.60449 1162.835 760.1679 -449.12213 1168.3491 749.5021 301.27402 1036.2444 792.7469 -365.88553 1056.9967 781.1108 193.7504 1003.5523 797.849 -442.176 1026.457 774.41864 216.5273 999.1523 786.86 -399.0462 1018.1365 778.1845 145.52628 1014.82477 785.62146 -353.0686 1029.457 786.0783 160.44629 1424.2006 813.2257 -182.0564 1415.0802 787.1233 182.90596 1227.9154 766.7845 -225.59784 1210.4614 742.6509 310.02847 1348.6481 906.168 60.287167 1316.5316 883.6874 519.80914 1378.8794 913.9948 90.335014 1346.6746 894.58844 537.50305 1326.5328 951.8074 135.30402 1295.6519 932.8042 591.073
315 frame__Gq6gXBCMP2A__0009671.jpg squats_down 1067.2435 255.86479 144.17087 1058.8806 235.52687 150.11421 1054.5778 233.62811 150.12038 1050.3687 231.84464 150.09743 1063.5543 239.83017 86.918884 1062.5231 240.38182 87.186646 1061.2007 241.10855 87.23626 1026.3235 238.41084 204.10535 1040.9865 248.50044 -90.25357 1051.6024 274.18207 171.34277 1056.2618 278.78827 88.586006 937.8611 319.855 454.11096 1011.92035 352.47256 -249.66597 1001.66235 426.5377 734.73566 1081.8502 470.70135 -75.791534 1061.3696 367.81152 928.03467 1093.8922 383.5184 435.02322 1086.38 342.57584 989.6741 1104.31 352.634 440.2547 1075.1896 337.34564 979.544 1096.4023 344.9943 441.5006 1063.4685 348.43027 927.8911 1086.2266 357.34082 450.0534 748.0507 513.4562 231.1407 790.7178 537.11536 -231.4889 903.1123 576.4043 686.09955 1017.96466 631.5614 -177.42355 825.2062 756.61316 886.44495 916.4392 812.8399 -181.10945 788.05304 789.6797 912.4489 867.7575 847.9861 -176.64235 891.9026 795.8598 1055.0609 1006.8218 856.3647 -96.724754
316 frame__zJBLDJMJiDE__0017590.jpg squats_down 970.2963 539.0757 -193.63617 984.7546 528.18445 -231.37105 986.952 528.7679 -231.24423 989.323 529.3134 -231.06079 986.2206 528.5727 -171.57681 988.8551 529.4967 -171.56822 991.7584 530.746 -171.71391 1012.2057 541.5968 -325.7068 1013.6532 544.36475 -57.448826 978.3845 556.9362 -227.22319 979.0515 557.86743 -148.90877 1033.6595 629.0674 -447.8076 1020.7821 626.40497 69.65502 910.9571 682.4591 -574.4141 912.803 681.4389 63.65791 776.1087 661.32367 -585.0967 794.6454 661.1412 -104.72594 741.00183 650.8154 -686.07745 769.4693 637.3777 -110.3917 743.9568 636.80817 -643.7474 765.72 636.0711 -190.24652 756.4861 643.57477 -577.7828 775.60223 646.90784 -146.01697 1109.8516 841.8794 -175.76416 1098.3315 817.2573 176.73901 972.82764 735.01917 -202.75883 974.89014 691.82465 289.23203 1032.0994 890.60956 84.106384 1023.8309 850.01355 492.60892 1062.0012 909.6422 114.4634 1049.574 870.5351 511.46567 983.3817 915.33057 153.76956 975.8943 883.0009 576.68884
317 frame__rSNN-Arbxuo__0010743.jpg squats_down 926.58606 705.06915 -457.4839 933.26404 685.81775 -483.3152 938.43463 684.77814 -483.52295 943.5744 683.6572 -483.5994 917.2887 685.627 -474.91254 911.17096 683.7579 -474.60648 905.1978 682.11127 -474.53873 946.7575 667.33203 -445.49844 891.7964 667.78955 -410.50058 932.63574 708.3254 -428.83228 915.7936 706.24005 -418.85193 1005.1028 670.17017 -319.63773 846.62317 688.0509 -265.44012 1046.8126 799.3751 -207.97292 847.37756 784.2165 -126.17739 951.03406 831.67456 -203.73117 901.28577 822.64685 -51.635647 928.3258 852.689 -220.6161 904.4966 834.78296 -45.90085 919.7947 819.2728 -227.29541 910.5768 826.0968 -46.824684 927.5027 809.74524 -203.3159 912.6833 822.17505 -45.477295 1024.1538 766.2039 -39.052326 938.05286 774.432 39.8123 1041.6218 801.4246 -314.0014 880.6035 773.76166 -243.03305 997.4176 864.1664 -208.37398 893.24756 822.1155 -216.50012 991.8228 860.6733 -194.48203 898.36346 831.6991 -214.82903 978.7475 906.3964 -232.04555 887.8955 828.6738 -271.82712
318 Screenshot_2021-02-11_at_15.50.46.png squats_down 1248.4628 508.9318 -250.21933 1261.43 492.64886 -198.19614 1270.4044 492.21704 -197.91995 1279.4882 491.63177 -198.18593 1235.2656 496.55444 -203.84317 1226.2432 498.21762 -203.6226 1217.22 500.1793 -203.73602 1294.6486 511.16666 60.8992 1207.6647 522.1154 34.34997 1268.4878 535.27655 -159.88867 1234.5217 539.3976 -167.5831 1353.8665 606.98535 55.68098 1164.412 631.5218 38.602375 1424.2427 656.07306 -456.05164 1105.1771 666.25616 -530.9927 1465.593 629.7817 -1050.0112 1072.5015 603.28723 -1173.2689 1499.4818 629.26514 -1154.8173 1049.1366 601.45013 -1280.6866 1475.5796 628.6131 -1155.7571 1065.3129 588.85693 -1273.8882 1459.814 635.36633 -1069.1615 1079.1437 596.73206 -1187.5483 1352.0062 884.0363 16.753674 1225.6846 895.1419 -16.429352 1478.8569 979.5877 -543.85846 1105.8262 1007.7839 -517.50903 1413.4725 1185.6151 -161.25545 1132.1086 1183.5795 -131.34273 1381.5579 1216.0847 -136.25801 1166.8433 1210.1162 -106.40258 1472.4752 1263.8707 -350.48306 1050.0078 1271.8488 -313.83704
319 Screenshot_2021-02-11 at 15.18.07.png squats_down 593.79095 333.01578 -117.39637 602.9976 319.5487 -105.30195 607.6181 318.63507 -105.3303 612.3212 317.65454 -105.395615 591.3371 321.95044 -89.75206 588.0298 322.23425 -89.783 584.68713 322.81482 -90.00544 628.76514 319.00037 -13.724324 590.6604 324.2397 54.78145 608.012 342.6752 -85.08741 594.6794 344.90262 -65.58274 677.47864 358.39673 29.265995 583.0229 372.00653 127.55604 686.2244 297.04733 80.280014 528.429 307.51758 173.1948 641.6148 312.99292 326.52795 591.91656 304.37192 323.86893 632.0038 314.3246 347.32126 605.15076 300.36633 328.68774 632.69653 323.92502 364.25366 609.3387 312.01004 353.37714 637.59576 326.64282 334.81122 605.3923 317.40234 333.01718 683.23285 540.09644 -24.683222 616.82056 539.7286 25.048426 715.4001 505.41772 -383.56284 505.79385 496.55362 -240.88094 721.6186 635.4239 -431.82736 562.1477 620.96765 -302.5268 720.2657 659.9931 -435.3489 590.7174 642.01904 -310.5884 734.66315 660.6568 -564.5107 518.87506 659.6657 -409.81134
320 Screenshot_2021-02-11 at 15.17.39.png squats_down 591.77496 335.9224 -160.3104 602.38306 327.13397 -148.30853 606.9275 327.39984 -148.3131 611.57697 327.5305 -148.27151 591.5436 327.09763 -129.77307 588.2684 327.01407 -129.80754 584.9492 327.10507 -129.90567 626.32416 334.90497 -80.29852 590.1667 333.09183 2.3588996 603.5688 349.77786 -139.53253 590.0996 349.28052 -116.024734 665.4317 391.29727 -114.65094 562.1096 388.30505 35.176006 661.56635 462.43585 -317.0785 478.74817 417.86377 -24.0582 611.7177 401.48697 -481.2492 395.04648 414.7311 -108.87838 597.33405 387.11447 -514.70447 367.28525 410.14664 -110.3222 605.1826 374.17172 -500.0399 367.6698 402.5177 -121.537315 606.7411 382.9912 -479.04874 378.54987 408.13907 -119.22673 649.2746 548.11224 -35.44351 586.7313 546.2741 35.83101 678.00134 513.0337 -391.83694 492.75385 512.6662 -235.27312 696.6442 642.46783 -377.6425 526.6442 634.6435 -212.35356 694.79803 666.1537 -376.6194 548.2049 657.26715 -213.22058 709.0525 673.11066 -501.53635 486.68936 664.63574 -321.9995
321 Screenshot_2021-02-11_at_16.18.31.png squats_down 1226.7666 586.3389 -1177.8224 1237.6896 558.557 -1124.9115 1247.6166 557.38 -1124.6649 1257.617 556.0382 -1124.7374 1207.1821 561.88446 -1130.8564 1196.7242 562.83215 -1130.9728 1186.2684 563.9545 -1131.4845 1269.4414 569.47675 -829.43854 1170.3506 580.22064 -865.4308 1244.467 614.3391 -1070.1213 1209.6228 617.84705 -1077.7476 1344.4465 693.03766 -578.8549 1097.8431 723.5392 -591.5666 1375.8768 870.8073 -751.96893 1078.9362 915.9934 -806.6038 1370.0365 878.4285 -1304.2655 1082.0394 878.7636 -1376.7676 1376.8839 877.33673 -1448.5431 1083.4762 868.917 -1537.0249 1367.1987 846.8941 -1448.842 1085.0044 825.94745 -1518.6317 1352.036 853.2986 -1322.9955 1098.0736 832.94977 -1391.7483 1288.4994 866.94415 -4.595236 1156.5197 878.2557 5.3595214 1359.8577 998.61725 -877.9507 1072.0756 1023.53534 -896.7737 1350.6572 1187.8315 -227.22058 1097.4817 1203.4175 -239.44653 1337.6223 1213.5598 -182.05426 1121.064 1227.776 -197.12018 1367.7823 1282.9556 -492.4873 1064.5035 1297.4592 -516.69385
322 Screenshot_2021-02-11_at_16.24.22.png squats_down 1318.5513 650.9453 -212.75755 1331.1315 628.9082 -163.32642 1340.9235 628.8282 -163.1694 1350.8271 628.6883 -163.23839 1302.279 630.5843 -159.71849 1291.9915 630.86926 -159.24762 1281.7181 631.5216 -159.09435 1363.8694 643.524 82.88756 1265.7595 646.8433 107.58953 1336.013 679.74536 -128.09584 1300.0737 680.87225 -120.4909 1423.0833 760.4643 -49.591915 1209.2767 757.6969 -4.763331 1453.1925 781.92993 -783.6766 1200.2567 783.0647 -692.13135 1350.1652 771.2864 -1224.932 1295.5975 740.06213 -1109.0342 1320.2719 772.3409 -1332.4357 1319.3962 733.5133 -1200.9263 1305.8395 760.26263 -1284.2202 1332.0834 723.3997 -1158.9846 1312.9779 772.5664 -1220.1263 1328.1863 735.9935 -1103.8859 1381.8002 1088.8203 -8.117475 1246.1796 1083.1198 9.234045 1494.0446 959.9056 -761.1861 1143.7552 939.5854 -730.42487 1485.2095 1218.6348 -705.5425 1137.9174 1197.7666 -627.0012 1470.2634 1262.178 -709.8704 1159.4905 1253.9899 -628.5486 1504.2241 1293.6005 -981.7772 1072.3821 1263.2092 -858.90674
323 frame__fiWGWUl30I4__0026890.jpg squats_down 691.7014 240.44354 -375.8676 699.75183 226.363 -348.84088 705.64124 226.28102 -348.72495 711.6085 226.06494 -348.73715 682.5561 226.74086 -348.52197 676.4133 226.66537 -348.266 670.2892 226.71661 -348.33926 719.6151 233.05698 -182.18874 661.0535 233.86136 -184.19487 701.97156 255.00667 -313.4039 680.3956 254.92781 -313.91937 758.6581 301.6427 -84.83269 624.1236 305.07947 -84.373535 784.3719 379.7081 -182.03674 603.41077 384.77798 -187.52728 789.44946 416.58875 -519.71 601.6903 418.90866 -524.6892 794.5869 431.1841 -609.0415 601.3725 432.63696 -606.6179 781.95123 418.7761 -624.09937 607.4967 417.54404 -630.1101 775.8972 414.66504 -536.929 613.33685 414.24374 -543.91187 740.2536 443.4607 5.931091 665.1366 450.99915 -5.006208 790.10077 487.9103 -477.464 635.611 488.2402 -483.5814 778.7224 624.4098 -263.7753 615.2863 615.8006 -253.11058 766.8341 641.30963 -250.0903 616.7192 631.9669 -236.0741 785.79956 684.88367 -425.47937 610.4389 672.114 -391.66965
324 frame__i1iVWZSPPe8__0005654.jpg squats_down 939.5853 647.96576 -705.02527 949.93317 625.6877 -695.58154 957.51697 625.6207 -695.5696 965.2979 625.6027 -695.55975 928.37305 624.12067 -700.1775 920.0497 622.81494 -700.0351 911.6244 621.52435 -700.1747 971.1884 628.67865 -569.6821 896.6637 619.8585 -580.30194 949.88617 664.312 -652.4257 923.3726 662.3094 -654.0809 1010.6845 687.622 -434.93842 843.8276 678.70355 -434.16464 1051.753 812.9574 -606.88965 824.59515 810.8088 -439.47223 984.5788 752.3994 -848.2334 916.356 748.41846 -474.642 970.6944 734.3865 -898.24854 946.6659 733.79987 -502.2539 974.0995 710.852 -863.8517 947.07086 698.7679 -490.291 972.7271 722.70575 -837.4192 944.47125 706.44214 -472.9712 928.87665 765.5179 -1.502245 836.2647 766.3113 1.4494027 1018.12616 796.73944 -172.89445 784.90924 801.7623 -293.66833 1017.835 868.55664 67.75225 790.45984 900.9705 -20.98267 997.7131 883.9167 85.606964 793.7099 919.02856 3.0218391 1066.0444 916.2385 -14.629485 779.38983 952.53534 -111.59582
325 frame__FLGeX3l1_AI__0001511.jpg squats_down 765.2284 483.132 -159.47182 773.43616 467.5232 -197.16107 776.665 468.05774 -197.24774 779.916 468.62115 -196.99722 771.2438 464.52634 -138.69235 772.49725 462.59137 -138.53183 773.98865 460.68167 -138.63913 805.1372 473.308 -268.4754 799.5979 461.6424 -3.80357 785.4315 500.7654 -187.8302 780.13135 497.19504 -111.52367 883.4193 563.50964 -411.86893 864.846 551.6706 207.67685 859.94354 738.0512 -262.8614 871.6015 685.2965 75.687546 799.04675 647.55914 100.069954 817.96454 630.73926 -326.0575 771.1992 630.2986 97.593636 792.3475 618.0395 -363.07648 796.7568 608.39984 63.14343 800.88763 603.49426 -341.8889 814.1105 612.83185 99.63188 812.3586 607.5738 -331.64304 1065.3287 714.10626 -210.87164 1032.0464 698.96155 211.29625 884.24347 704.00494 -445.44153 842.2776 695.8932 366.02753 951.65485 933.1085 -537.97577 933.6597 878.28314 386.2815 1001.1643 971.6176 -552.64026 968.13446 899.62244 385.76108 855.4915 987.2296 -634.7651 888.05914 953.5677 368.86435
326 frame__MythPbjCmZU__0008025.jpg squats_down 971.055 511.39264 -699.8966 977.0287 493.06332 -676.1578 982.81726 493.30734 -676.1379 988.79596 493.55798 -675.9329 958.7756 491.10217 -699.2958 951.20276 489.54822 -699.1568 943.5576 488.18744 -699.01917 984.2736 493.3834 -466.18417 921.664 486.03262 -567.00885 973.57306 524.2715 -613.4796 950.8619 521.4196 -640.97894 987.5753 526.8923 -271.17163 861.5409 545.1194 -547.4057 1051.6176 598.80963 -512.3879 921.7231 676.11426 -758.4794 1071.83 604.75696 -942.9292 1024.6349 638.1759 -882.4169 1090.4435 610.3015 -1023.7238 1049.9684 631.7193 -951.7958 1070.6821 599.9185 -1026.0372 1052.4128 610.3722 -929.43567 1058.1919 603.504 -955.29834 1044.8872 617.9919 -873.5539 898.5682 671.735 80.72949 822.3416 682.4853 -80.46769 985.36194 702.8855 -389.15717 853.42993 723.9299 -684.5693 929.5331 842.25336 -54.625164 808.9022 872.8742 -323.80417 902.2139 868.17645 -31.4234 791.1958 893.00336 -298.35355 976.4747 894.1184 -187.14409 836.67523 935.15533 -496.48984
327 frame__gHdFxGA4g9o__0007955.jpg squats_down 260.6161 452.40198 -80.52894 262.0494 440.958 -107.58342 263.2407 440.7516 -107.537735 264.57748 440.4979 -107.552216 262.9328 439.54047 -75.203735 264.71524 438.45963 -75.22771 266.69946 437.47968 -75.205666 279.32312 439.11432 -179.55124 281.69965 435.81232 -35.412815 271.2482 460.14288 -104.42229 271.9245 458.94443 -62.65432 310.58362 489.92465 -241.74492 343.8675 469.10312 65.87844 299.41022 588.5667 -272.21967 350.06384 545.705 87.950066 260.52142 647.8258 -243.93451 319.55594 584.01654 39.902695 250.52951 659.89514 -286.66 311.33105 583.9268 48.742996 246.71266 656.3035 -263.59763 307.79575 587.6084 18.408806 253.35863 652.4673 -237.93951 311.19434 589.4849 25.390305 402.88336 608.31866 -96.63504 418.94342 589.85876 96.94153 308.53598 538.911 -71.199486 340.8509 538.5814 168.93454 316.35654 644.35693 101.077194 362.7266 632.65704 272.7192 328.90094 663.57605 119.24135 373.84973 648.2656 284.09235 272.79025 647.5062 131.79112 329.3487 645.25385 318.93643
328 frame__zEbmezjb5_E__0004484.jpg squats_down 314.94528 404.56268 -100.61166 307.82452 391.81818 -129.34671 309.15735 389.79947 -129.38449 310.69235 387.6137 -129.31216 306.91403 391.5525 -75.67987 307.66336 389.38345 -75.58464 308.88937 387.1866 -75.62148 327.30444 374.24258 -197.29185 324.2772 375.2867 49.357292 333.00797 404.94528 -123.42256 331.86935 405.51886 -51.3935 394.72742 410.09985 -294.3188 389.12643 370.30536 231.52626 336.03427 515.1456 -444.41837 333.95392 454.87405 376.85544 224.9134 538.4153 -383.79825 251.09459 473.8659 284.9699 194.91833 544.419 -440.27127 229.78717 466.91495 303.59372 192.05075 526.7757 -402.88763 227.9585 466.70453 250.35591 203.50955 526.2658 -370.32355 235.4142 472.70947 259.4714 562.83496 503.79523 -176.92325 554.84875 483.27438 177.34831 422.39935 468.48267 -319.71753 407.9441 458.41565 396.16757 455.80167 622.71686 -66.36056 459.80774 573.47614 728.975 473.17596 646.8943 -37.32469 477.36295 596.16437 757.2886 399.17633 650.1483 -64.88478 418.81537 586.14307 759.01196
329 frame__E4JICzRQz1o__0017185.jpg squats_down 1242.8953 560.92096 -276.09583 1247.7246 545.8421 -232.46007 1249.3263 547.1255 -232.20235 1251.1134 548.5271 -231.726 1237.5029 539.93 -282.54114 1232.0327 536.1776 -282.3817 1226.4833 532.6828 -282.58313 1232.3387 548.9117 -13.326255 1203.9489 531.0162 -245.37134 1233.4359 579.06274 -199.93407 1219.5547 570.3981 -263.4794 1166.8284 628.6249 218.61923 1168.3003 635.56824 -355.50674 1216.1217 768.2196 129.96423 1245.209 777.52295 -205.10985 1250.8899 748.93994 -203.39014 1249.6212 751.64197 200.96367 1262.1809 739.22186 -214.47256 1246.48 744.1388 219.72253 1246.1179 729.6787 -197.29129 1231.3804 741.896 216.08537 1238.9846 733.6553 -206.84282 1226.5676 746.12244 216.86813 1031.098 837.8949 197.70323 1021.6904 845.4067 -197.6318 1209.5533 822.3423 298.70032 1244.7324 818.2723 -212.28905 1102.0879 938.9549 346.73135 1088.6848 952.46674 -109.81341 1076.3766 960.4894 350.3843 1050.1726 972.021 -104.92147 1142.1133 986.1492 387.01376 1108.5288 1021.16833 -69.53444
330 frame__dxA21IeBB8o__0006042.jpg squats_down 1816.1401 870.56805 -1368.2301 1837.1206 834.1015 -1311.6401 1850.7352 833.4942 -1311.7393 1864.4675 832.59235 -1311.8198 1796.8612 834.79596 -1307.4111 1783.0784 834.43353 -1307.1432 1769.2101 834.26337 -1307.1952 1883.4543 842.6396 -916.33734 1752.3489 844.2417 -901.1848 1840.1038 904.30597 -1216.489 1792.9077 904.50507 -1211.205 1975.009 1026.111 -591.8574 1655.605 1005.02704 -580.93317 2008.5652 1312.4736 -951.161 1612.7976 1274.1129 -1008.7798 1870.3395 1163.6746 -1580.6199 1756.7091 1156.3198 -1702.6726 1823.4878 1119.5128 -1734.8546 1801.5001 1121.0952 -1839.2384 1838.2794 1064.2222 -1658.3743 1789.4028 1082.466 -1779.8743 1842.6123 1079.5325 -1560.3844 1790.2726 1098.0013 -1685.6033 1902.3115 1365.1262 -0.5703969 1708.4004 1352.6035 1.3023654 2101.0305 1535.7532 -1059.1355 1536.5571 1515.4446 -973.0779 2080.602 1819.5223 -257.99744 1518.1611 1809.5874 -209.3121 2046.7886 1867.24 -198.03314 1547.3707 1869.4484 -157.02782 2150.4302 1926.2675 -634.0663 1413.2634 1898.0425 -602.45056
331 Screenshot_2021-02-11 at 15.54.28.png squats_down 594.6696 267.58597 -83.24939 600.2588 258.93875 -59.71149 604.682 258.49243 -59.59498 609.14923 258.0079 -59.509003 587.3618 261.2574 -61.27162 582.9468 262.12646 -61.252537 578.5481 263.12427 -61.441067 617.4671 266.31537 66.01221 574.2399 273.06143 60.5326 604.98175 280.13666 -38.50266 588.7334 282.6323 -40.05449 642.77075 310.93515 86.57768 554.92004 316.4135 70.947266 687.51056 307.70294 -85.32222 507.9797 316.21326 -182.3952 663.6285 302.915 -279.60806 531.5091 294.80786 -424.8327 661.65283 302.93286 -328.5139 531.2896 293.69492 -472.4736 650.6028 302.08514 -322.6141 544.9194 291.05722 -461.9991 651.4632 307.47757 -285.1455 546.9112 296.662 -427.47873 631.96924 442.6159 4.4087267 571.731 442.7265 -4.0594897 710.3822 431.5183 -293.40262 490.22687 442.5856 -278.0609 662.13916 542.3466 -186.82317 533.0541 533.39355 -157.29155 642.97375 560.55994 -181.77669 555.0784 550.38586 -151.78044 684.9876 581.80304 -284.90564 502.0312 571.9429 -248.84377
332 Screenshot_2021-02-11 at 15.33.07.png squats_down 635.6119 401.39227 -574.15405 640.1657 387.4677 -560.542 644.4277 386.91003 -560.588 648.75543 386.3111 -560.47205 627.23035 387.55038 -566.7256 622.3073 387.04788 -566.6601 617.3766 386.56693 -566.57715 651.36316 384.963 -447.8183 607.7151 384.85825 -467.35208 641.6142 408.88843 -528.92676 626.1508 409.0518 -534.4153 678.6625 420.51862 -348.93484 574.5566 418.91443 -345.8068 694.95276 504.11523 -508.6218 559.53326 508.10394 -470.4429 651.793 451.3279 -682.0197 602.6715 448.63144 -607.8904 639.4994 433.25223 -711.8845 617.9576 429.66956 -630.09235 643.8917 422.10242 -678.77277 611.2982 414.7036 -609.25806 644.08685 430.22293 -670.33246 612.1123 422.31323 -601.45404 646.268 479.975 6.695673 590.58875 479.68533 -6.853481 689.01385 535.0158 -269.21954 577.5902 542.2688 -254.93762 693.73285 625.7636 -137.69257 572.192 633.39215 -99.17005 687.84906 642.38745 -130.21556 574.1827 647.24054 -91.47898 712.8435 657.94073 -229.85243 565.3794 671.00885 -211.8264
333 Screenshot_2021-02-11_at_16.03.20.png squats_down 431.42355 171.14507 -147.9283 436.04916 163.75145 -129.91019 439.58334 163.80847 -129.91661 443.14648 163.80914 -129.94936 426.46173 163.91768 -130.37465 422.83234 163.96272 -130.31602 419.208 164.11723 -130.3026 447.88443 169.92358 -48.078938 415.014 170.4618 -48.70554 438.2521 180.69145 -119.94952 424.939 180.82956 -119.90857 466.8892 215.11151 -31.723629 396.40317 215.86644 -54.71734 459.18466 277.1425 -144.06973 420.34644 275.8095 -98.08421 455.8762 223.58482 -235.027 454.14 222.31917 -72.04496 458.29453 206.68279 -254.29253 464.09375 210.14812 -76.7239 464.86905 205.53362 -237.41525 457.31235 203.0488 -61.492954 460.64 210.85304 -230.9771 456.58124 208.09923 -64.07362 454.96497 315.18994 2.5330894 413.79086 317.84912 -2.248651 474.21957 303.46216 -230.81345 384.5699 309.14276 -254.79886 468.23288 363.6381 -50.74041 395.70596 369.9179 -69.05485 465.85104 369.62482 -33.72403 403.2667 376.7699 -51.30457 473.7895 398.29086 -101.76441 379.0397 403.57013 -120.54024
334 Screenshot_2021-02-11 at 14.29.32.png squats_down 501.26114 321.06604 -291.2112 505.905 309.25443 -273.14105 510.28775 308.68707 -273.11258 514.75885 308.05124 -273.20578 493.8463 310.4615 -275.64917 489.22696 310.6595 -275.5745 484.63705 310.98895 -275.49365 520.5431 311.9024 -160.77348 479.663 315.7458 -169.87404 510.63864 330.9157 -249.13475 494.2215 332.30023 -251.59502 556.6478 357.51556 -91.33532 450.91675 365.77985 -99.079155 620.5439 401.7664 -222.18991 407.51355 415.39508 -240.16855 629.5003 363.14856 -409.94513 388.52133 362.58987 -422.25583 634.5078 350.02136 -440.91406 378.19897 344.88736 -453.8452 625.7629 342.65472 -422.1738 383.9684 338.85843 -435.64148 620.9544 350.79254 -407.10406 391.70154 347.562 -419.07666 550.8508 463.95035 6.8205075 490.7139 470.82822 -6.5374293 610.80096 490.8208 -283.9204 473.78003 473.23947 -281.81033 612.8738 585.7529 -241.75346 502.63205 515.3196 -185.92503 605.7256 600.7492 -240.76175 506.63004 522.3509 -180.32932 634.9473 609.6394 -360.01974 520.56146 524.39905 -272.9413
335 Screenshot_2021-02-11 at 15.55.40.png squats_down 656.25226 315.04218 -174.1422 669.3417 306.19714 -149.44336 676.0119 307.31055 -149.32214 682.6809 308.3356 -149.28148 651.7173 304.54614 -148.28778 645.5014 303.9284 -148.1734 639.2309 303.52057 -148.21317 694.00354 322.2135 -30.126137 633.4581 315.56464 -25.268456 668.09796 336.4641 -134.53827 645.1846 333.59006 -132.83325 715.9689 389.54117 -61.631252 604.759 394.10788 -11.283574 733.3621 455.16248 -298.68567 592.25714 461.44662 -235.42015 722.0458 415.246 -516.2334 580.4832 409.5389 -469.7153 724.43176 404.23477 -557.9205 569.1036 396.09323 -511.15524 721.21954 397.9354 -545.92993 573.20825 388.76578 -498.36475 715.665 405.55637 -518.2392 583.30475 395.02057 -471.07318 707.3528 547.03644 -4.6728787 638.0438 549.4675 4.8307056 788.0351 506.54083 -262.94763 550.45734 511.16318 -215.90253 750.50555 644.2541 -157.2918 572.1429 634.6046 -167.11775 731.2089 666.8079 -150.95705 588.8573 655.814 -166.85562 777.9494 674.8229 -257.26807 543.3739 669.4474 -262.2415
336 frame__ku3vgejAZ0g__0010351.jpg squats_down 1089.1763 536.872 -268.141 1080.819 520.58514 -219.33293 1082.7814 520.5341 -219.29965 1085.0695 520.47516 -219.34973 1069.2155 519.7435 -267.82208 1062.3063 518.7721 -267.77545 1055.421 518.07306 -267.96524 1065.0157 521.32306 -4.3183866 1025.4167 518.8583 -227.43492 1083.003 552.5854 -190.31644 1069.4648 552.39777 -253.91971 1063.004 603.24274 117.063805 962.9995 582.7078 -360.25955 1100.6001 679.3981 -76.52804 1026.0325 698.3313 -551.6274 1158.8086 659.1676 -424.56787 1136.405 653.316 -497.6107 1185.2947 655.23987 -463.9632 1164.414 644.1695 -546.68616 1175.5668 642.03534 -481.8151 1158.7162 626.609 -525.6171 1161.2743 647.01636 -444.6357 1145.4335 634.3524 -485.61115 948.6219 798.1707 143.38304 878.8669 789.33673 -142.36061 1087.707 745.66223 97.96406 965.4576 730.87213 -492.76434 991.551 862.258 239.30423 903.4224 893.3708 -287.05954 951.8606 882.296 251.27509 869.8579 916.3763 -268.42154 1054.814 917.6792 148.46362 953.6061 951.63074 -441.89398
337 frame__4zBnM_uozXM__0006346.jpg squats_down 912.0396 468.82996 -83.099495 915.71967 445.34442 -113.75527 919.7457 443.74802 -113.61939 924.03937 442.01196 -113.52703 911.41 443.33823 -54.016537 911.93494 440.04288 -54.03214 912.8896 437.11948 -54.32088 953.76215 428.0739 -189.44096 936.3451 421.94235 74.54492 936.8128 476.84213 -111.30873 931.1723 474.09906 -34.792736 1034.0497 471.42297 -331.06772 982.375 480.50772 199.76115 879.3588 567.4179 -501.94495 829.72644 577.16766 172.44873 694.84204 588.14703 -466.2247 680.76715 600.43115 -15.541933 650.81464 593.58075 -544.4817 640.72003 591.40564 -27.266193 644.8103 577.2099 -516.82886 637.9703 584.14703 -99.46672 663.6092 579.5873 -461.08057 655.4302 593.5936 -55.773396 1173.9391 750.3837 -166.0862 1135.2749 747.0622 166.46594 977.0137 558.91565 -396.977 931.8652 567.47974 272.33902 1003.9556 803.097 -196.76366 972.7002 778.5916 448.2902 1035.5801 842.40234 -175.55019 1008.0144 812.1081 459.68826 912.4461 848.23236 -218.52985 885.438 829.53375 484.79672
338 frame__JSn5DY10dbA__0005040.jpg squats_down 1003.0693 195.41663 -595.91327 1024.8713 175.0781 -564.87445 1036.2773 174.30069 -564.65424 1047.7714 173.39812 -564.7045 998.15137 179.61417 -530.03076 990.32904 181.16417 -529.74115 982.57654 183.2105 -529.7938 1082.8706 193.42206 -406.0095 994.7484 205.55016 -250.76419 1035.6758 229.29578 -541.4552 1001.82324 233.06003 -496.283 1172.4286 310.9668 -470.04187 975.486 362.01035 -198.3269 1109.0105 392.5028 -735.7692 835.8464 471.59503 -613.75934 984.59186 271.62897 -820.5203 887.09607 274.15033 -919.2685 952.4229 248.68799 -879.7028 887.8576 224.64899 -977.11224 966.3313 236.44563 -863.2378 912.58905 204.83385 -895.2587 981.1241 253.27512 -816.3001 921.0345 226.23143 -900.5902 1227.5356 614.2086 -63.865765 1101.6987 637.5921 64.02299 1250.819 597.89417 -783.64355 928.1278 646.94525 -421.77957 1288.7449 880.31995 -483.4913 1003.85974 876.32983 -240.85883 1282.8618 938.53796 -467.2115 1054.2368 919.1541 -232.66489 1310.1295 937.5218 -740.23926 890.6353 965.3988 -408.35794
339 Screenshot_2021-02-11 at 15.53.32.png squats_down 181.2457 319.96588 -119.30942 183.36227 312.97287 -107.57338 186.52573 312.7294 -107.48516 189.73625 312.4551 -107.47218 174.0048 313.5022 -114.21376 170.00108 313.5872 -114.12447 166.01028 313.75803 -114.11259 190.55022 316.29126 -32.30489 157.25916 318.62802 -62.78676 185.48125 328.81433 -90.07932 173.41986 329.20242 -98.77729 198.2487 345.3012 -9.753522 142.18037 345.16678 -47.403885 211.80191 374.0356 -42.85668 139.98814 367.6527 -138.29042 221.07617 403.08725 -149.5297 150.94855 395.42844 -279.97092 229.60426 416.16953 -177.776 149.93056 410.7356 -310.0184 217.45377 415.04794 -191.77258 160.5702 405.11246 -320.3274 213.61511 411.89066 -157.70764 162.32954 402.5785 -286.16672 194.50314 419.238 3.8338125 162.70741 420.54214 -3.447775 206.16185 392.17746 -172.36807 134.69238 392.16672 -156.808 204.92252 432.52057 -69.99356 149.50302 435.61386 -62.45088 201.05957 441.53842 -61.3153 158.08177 445.7479 -55.139854 208.61479 445.59332 -117.12904 140.79276 451.38138 -98.608894
340 Screenshot_2021-02-11 at 15.29.23.png squats_down 568.52216 306.21332 -158.68083 573.96857 297.16806 -133.57054 578.576 297.3675 -133.54427 583.23834 297.50925 -133.4997 560.3096 297.63022 -138.42299 555.1917 297.873 -138.32652 550.06793 298.254 -138.31891 587.96436 307.1808 -13.549839 542.2495 308.0763 -38.74737 577.03033 320.7157 -116.57769 558.59973 321.0889 -123.70214 608.88275 368.7121 23.078564 514.2842 361.54074 6.5425596 653.71826 391.08487 -33.44489 446.21674 360.91693 -58.32265 676.07574 335.9748 -42.824318 512.50836 345.2018 -78.77546 687.85974 315.43094 -56.528717 528.1664 342.65848 -85.275826 682.58215 312.22638 -37.214577 537.54474 340.77435 -69.01622 675.3741 321.79956 -41.837044 532.20807 345.99576 -73.200386 589.05304 508.70914 11.853202 527.96893 508.61505 -11.61281 680.80835 507.5417 -225.06992 465.8734 511.9342 -294.40573 633.36346 612.0962 -101.71079 479.18256 620.32776 -186.32872 613.38855 626.3001 -91.64533 489.8865 636.0479 -177.1175 664.63055 653.76465 -170.4594 458.70157 657.7 -274.7396
341 frame__8ghtQpeWov8__0004585.jpg squats_down 957.49884 474.1373 -763.42163 967.35767 450.20145 -741.15985 975.34045 448.90244 -741.0927 983.3765 447.38416 -740.9919 944.51654 452.5616 -738.83044 936.2819 452.58997 -738.6686 928.07166 452.79953 -738.52765 995.9403 447.35764 -539.072 918.7821 454.3529 -522.68317 973.1092 488.31073 -682.63214 945.93835 490.8539 -677.616 1052.1462 521.5969 -351.56424 871.5408 513.33704 -329.71045 1135.6521 639.57245 -484.71194 782.13196 600.33167 -292.01437 1059.8157 641.02435 -792.82056 781.244 670.89923 -469.24127 1039.2308 641.5075 -872.1592 777.4826 693.76025 -507.79736 1028.1367 623.1558 -857.65 793.4562 684.35394 -536.1176 1030.8497 625.7903 -791.93524 801.83545 677.35944 -478.98474 1017.9682 695.3985 -1.9494627 914.15643 698.5377 2.430919 1146.6963 732.4262 -479.5763 796.22284 751.29144 -457.51254 1119.3346 868.29694 -40.74559 814.8216 887.85455 -42.86966 1096.8389 891.6491 -4.7464614 836.3593 911.1852 -9.867107 1171.8799 919.1696 -170.00424 768.5288 944.7508 -194.46701
342 Screenshot_2021-02-11 at 15.17.52.png squats_down 593.501 337.67084 -39.052227 605.4996 327.2368 -29.775951 610.7842 327.7456 -29.687258 616.1807 328.1647 -29.73648 593.9798 326.55618 -6.8276405 590.6403 326.1344 -6.871863 587.19336 325.86102 -6.931928 631.7453 337.24527 21.212894 593.4091 333.26743 128.62259 605.57153 353.7512 -23.771343 590.73413 352.42477 7.1302805 673.1561 403.5548 -3.1526268 564.77966 401.97592 156.85031 661.2074 477.0978 -196.11053 525.4172 474.50876 -0.5467376 623.7662 390.98523 -324.31015 545.5833 397.1084 -159.864 616.2233 370.4779 -344.53754 547.84796 373.81708 -178.00615 620.9046 366.33267 -315.93115 550.83704 367.3702 -143.81049 619.0413 376.29788 -311.8992 556.4424 378.0648 -149.80357 650.44727 564.00946 -31.478777 580.8139 565.33307 31.770758 689.0734 523.1714 -393.39133 504.10754 522.5191 -244.15051 695.3634 653.2589 -318.12405 529.10547 640.94763 -196.04546 691.75995 673.7228 -310.27786 546.8283 662.5809 -193.18199 704.4898 701.4321 -435.46832 491.2835 679.32666 -296.64227
343 Screenshot_2021-02-11 at 15.23.45.png squats_down 599.9967 322.7697 -234.96815 606.7789 313.03992 -206.14264 611.7288 313.02325 -206.19728 616.77014 312.94266 -206.15338 592.60315 313.75638 -203.64116 587.683 313.87244 -203.57133 582.7716 314.18027 -203.52443 625.36383 321.1088 -78.26213 577.2867 322.26843 -63.430286 609.87946 337.0592 -191.50983 592.5666 337.49677 -186.84932 664.6362 380.22275 -94.3344 545.4984 378.72006 -83.7646 732.5181 373.4138 -392.87582 471.72513 382.05106 -348.14352 643.2541 346.6418 -525.3892 565.75574 349.80313 -446.5408 621.37897 338.3651 -549.6626 587.8645 339.10245 -461.72568 617.36444 342.162 -497.0093 598.77686 339.83893 -410.8474 622.7943 352.67023 -508.90253 592.7388 350.0921 -427.94077 635.21136 540.43616 1.2943888 560.03143 539.7365 -0.8949692 709.9108 503.6313 -382.20343 491.91425 501.1584 -361.40735 697.45233 636.9934 -304.94388 515.1391 630.3372 -270.4223 683.89636 661.75104 -300.22662 530.67114 654.4954 -264.38635 726.20435 669.21466 -445.58353 488.97314 658.8001 -403.55032
344 Screenshot_2021-02-11 at 15.51.16.png squats_down 215.11275 387.6314 -198.1269 221.72058 374.35614 -184.0018 226.92978 374.087 -183.91766 232.25996 373.76486 -183.95045 207.0521 374.89078 -185.51303 201.3179 374.8511 -185.43567 195.54521 374.95355 -185.52386 238.88774 380.27054 -82.07879 186.94667 381.5534 -90.204605 225.07452 400.54916 -159.47769 204.8261 400.7766 -161.71426 261.65173 425.63373 -53.1573 160.73169 419.7415 -43.055893 294.76196 471.74927 -166.80397 95.69197 434.57715 -163.34213 294.18118 500.6081 -373.04037 48.81151 427.17697 -336.99026 302.45023 519.55853 -422.0547 27.428955 431.5065 -371.6272 283.69296 510.18402 -431.73706 40.58457 421.70773 -384.72614 278.73383 506.49615 -383.9192 48.42332 424.89008 -348.82068 237.72704 554.6378 -0.69511986 186.149 552.94006 1.0255028 276.1855 516.4556 -293.60464 145.8542 514.00226 -263.35876 250.69267 603.6086 -107.17166 178.6729 595.95984 -58.74429 237.70341 619.4541 -93.86878 195.52782 611.7192 -42.421005 273.42523 641.01587 -191.02647 148.11002 636.67993 -120.22644
345 frame__4zBnM_uozXM__0005710.jpg squats_down 983.2969 188.75082 -482.7785 992.5643 172.61496 -404.93387 1002.92474 174.6429 -404.66995 1013.4731 176.51094 -405.01782 959.5239 171.07663 -435.67825 946.33563 171.47491 -435.42914 933.15063 172.35843 -435.28424 1013.10974 211.05356 -86.82578 900.9824 206.38278 -216.99568 994.4283 236.97214 -373.924 951.9268 234.4249 -410.91025 1059.4642 382.16388 -116.14926 806.82886 361.99643 -378.50958 1174.6085 424.22247 -736.2966 809.3042 429.59985 -927.23517 1244.8003 432.8661 -1360.7511 1005.08057 401.12195 -1169.0558 1292.8832 451.01855 -1493.1561 1043.1919 412.11786 -1235.8177 1252.0751 441.95346 -1490.5258 1069.0 399.11502 -1204.4187 1225.2311 448.7007 -1384.321 1054.6924 409.88562 -1156.0641 986.18225 760.8079 49.900448 828.2257 750.21436 -49.958294 1221.5364 631.51184 -529.43085 690.08887 609.90826 -775.0792 1053.8141 895.93024 -197.41191 774.0629 892.00385 -321.20197 982.6012 947.8567 -174.9347 818.1572 952.67786 -286.75775 1166.7777 985.42804 -381.8975 685.451 972.3387 -512.4726
346 Screenshot_2021-02-11 at 15.57.08.png squats_down 182.97452 286.71176 -185.22168 188.06578 276.85788 -180.02528 191.90968 276.93118 -179.98288 195.80594 276.95016 -179.96976 177.35971 276.40585 -182.21822 173.19885 275.98288 -182.20175 169.03058 275.62744 -182.21902 199.00647 279.84265 -109.727 162.09453 277.80475 -117.640854 188.10115 295.8418 -156.40141 174.69278 295.0182 -158.29004 214.3812 308.26526 -62.253216 138.345 310.4176 -69.24025 228.51003 349.2151 -126.98737 134.4225 364.72415 -134.74289 236.20189 328.35486 -274.86526 133.80502 336.47308 -268.61172 241.48196 325.54343 -303.3597 131.2242 331.98135 -293.62842 238.85423 316.4815 -309.52924 131.50919 319.6082 -292.80377 234.28427 318.5532 -281.58408 134.80544 322.2257 -271.3417 195.80298 397.7948 1.0934308 148.5667 398.20682 -0.97439134 244.53282 413.38623 -191.453 106.54336 410.48285 -182.25899 220.8233 476.34012 -53.67571 119.960945 476.0184 -42.57923 208.75421 483.52396 -43.549118 129.90451 485.14587 -32.485695 234.09038 513.3103 -117.69791 104.91976 511.20148 -102.05955
347 Screenshot_2021-02-11_at_16.12.36.png squats_down 1462.7247 699.9712 -891.76166 1473.1001 668.5049 -884.29755 1480.6908 665.8377 -884.44977 1488.4908 663.036 -884.647 1448.0316 670.23914 -897.3804 1438.5238 668.4885 -897.2328 1428.9045 666.9407 -897.0172 1492.4724 643.5815 -685.64984 1408.4637 646.7397 -737.0836 1469.2502 703.9257 -804.3362 1443.6002 706.261 -817.8314 1549.6378 679.00507 -492.0584 1319.7731 687.62787 -512.6302 1623.4222 836.2869 -758.0481 1262.5922 876.5435 -734.056 1516.7179 784.3182 -1109.8088 1386.207 788.17535 -1005.67993 1492.7866 768.566 -1176.5472 1433.5868 770.05817 -1051.9642 1484.6946 751.5803 -1112.3026 1419.952 723.5809 -1007.03723 1484.6223 760.43524 -1089.4442 1415.3193 732.3492 -990.04584 1456.1393 866.6968 0.74213195 1333.0891 870.2441 -1.0492775 1624.1124 916.42773 -602.12524 1219.0709 901.3498 -610.739 1592.0822 1124.9576 -265.4228 1250.8026 1107.8263 -241.07968 1562.0057 1161.5548 -240.8137 1271.9653 1143.8282 -210.98813 1664.4576 1202.4718 -455.86105 1197.2764 1178.3339 -423.82895
348 frame__jFWW75URYbM__0001376.jpg squats_down 1021.0029 531.22144 -967.5817 1030.5072 509.8142 -937.8234 1037.3494 509.06458 -937.86847 1044.2352 508.22125 -937.7742 1010.93756 510.83508 -937.05884 1004.08014 510.6894 -936.95734 997.1575 510.6193 -936.88007 1054.3762 510.67636 -721.6717 989.63995 513.925 -717.7918 1033.3777 546.22955 -885.8834 1010.2413 547.45953 -883.29694 1106.2355 588.40234 -538.8164 943.9029 585.7689 -549.3508 1142.6473 715.74347 -848.77246 891.5184 702.0886 -862.0684 1127.5007 650.45624 -1223.4082 923.4306 623.2921 -1238.6831 1129.1754 621.3326 -1304.169 931.90436 594.1448 -1317.2373 1129.1611 603.52686 -1252.6453 932.4737 577.23914 -1265.4701 1119.7775 614.8939 -1210.1958 940.05115 591.6735 -1224.2861 1075.721 726.01263 1.0623958 981.2503 720.9779 -0.5014061 1169.8666 771.1002 -618.9506 908.1292 759.0266 -642.9466 1143.578 890.8534 -114.640884 900.3897 893.82745 -157.40369 1128.6763 910.15454 -75.52841 910.8176 919.19244 -123.018654 1167.766 945.87427 -304.25446 864.2399 943.2741 -372.44653
349 frame__XJcoOdKlYqk__0022306.jpg squats_down 1659.3796 956.8546 -351.14212 1676.7346 925.67456 -442.76697 1680.0947 926.11597 -442.854 1683.8602 926.4472 -442.93964 1682.9874 919.69495 -318.36597 1690.7856 916.41705 -318.10095 1699.0857 913.6328 -317.93903 1736.3877 927.0802 -628.34204 1757.075 909.9212 -61.561905 1689.0898 989.19824 -419.45673 1696.5502 982.0935 -254.56444 1847.5553 1091.0729 -816.8452 1878.0665 1096.2693 365.45102 1669.1342 1355.9225 -639.04083 1767.166 1305.2366 307.0449 1532.5408 1179.3501 -142.9137 1576.9858 1163.1996 -36.78929 1474.2104 1132.7311 -222.56197 1515.846 1108.192 -43.879612 1526.0369 1105.6051 -260.10883 1527.8987 1094.8285 -19.251915 1559.3102 1128.5934 -143.23254 1556.9103 1111.1506 -48.8448 2177.8364 1433.8042 -396.94693 2154.9194 1403.2499 397.9059 1880.758 1468.9893 -1059.1218 1869.3 1439.0741 1155.8744 2002.9808 1900.8746 -1085.9364 1936.0419 1762.9719 1678.2122 2067.8958 1985.4985 -1094.0911 1988.9053 1828.7461 1734.5747 1804.1887 1963.6445 -1258.8074 1758.0217 1842.2529 1765.8468
350 frame__8soywvU3l0w__0021627.jpg squats_down 965.2605 665.5643 -587.8748 972.6101 649.8622 -567.34607 978.7721 649.5626 -567.3762 985.0491 649.17834 -567.4626 955.3118 650.75073 -565.5137 948.9194 650.83246 -565.41473 942.451 651.04376 -565.3384 994.1208 657.0952 -426.30322 934.39514 658.18286 -416.654 977.64246 681.12897 -534.62726 954.7337 681.80676 -531.06573 1033.7384 725.55035 -325.82022 901.7915 725.53625 -334.83847 1079.0729 828.74713 -458.2196 858.1751 836.24396 -439.66107 978.07056 830.9537 -591.54736 946.74945 849.0601 -585.67255 953.1269 835.8589 -631.5623 969.9454 857.72186 -634.86115 948.99176 819.1405 -609.12994 975.6863 836.8312 -614.2369 956.4781 819.6742 -584.6992 970.9075 834.6104 -580.0798 991.1838 852.7862 7.2751703 919.7475 850.027 -7.1756806 1107.787 843.42035 -405.71115 868.56433 829.48944 -492.04364 1066.9666 944.63824 -64.346436 866.0554 927.0116 -120.053375 1046.7539 959.5151 -36.049717 875.61084 942.654 -87.89264 1109.486 998.4556 -166.00146 832.5806 971.1435 -232.61682
351 frame__UwW586G8GnU__0022398.jpg squats_down 644.0616 362.5655 -457.41284 649.3552 352.9372 -437.90634 653.2446 352.88834 -437.86383 657.1891 352.78064 -437.84552 638.19666 353.15094 -438.48343 634.1758 353.10858 -438.28458 630.13904 353.14523 -438.2246 662.28827 357.01825 -300.91504 624.0882 357.64984 -306.7423 650.7321 372.17728 -404.84827 636.23254 372.16544 -406.4159 682.9762 397.72296 -214.5765 599.0714 401.6361 -217.9118 699.38635 444.20264 -386.31134 585.1313 453.5862 -366.7024 675.98444 457.6959 -670.4095 618.9143 465.14117 -613.17926 673.09265 466.44064 -736.0056 626.9128 472.44263 -672.1375 663.8584 458.72614 -725.95856 634.4189 464.12683 -670.7032 662.8226 457.35684 -672.9107 633.9617 462.58804 -616.76953 667.6544 490.12515 2.0670397 618.6228 492.8327 -1.5724444 702.1711 504.70334 -375.44986 595.1192 508.6787 -386.5927 713.9259 607.8436 -214.33209 578.9396 609.5449 -209.72644 709.47076 622.82477 -207.0058 579.4269 623.0471 -199.96414 723.69214 644.53467 -364.01523 576.0386 648.03314 -350.34573
352 frame__4zBnM_uozXM__0007108.jpg squats_down 905.32605 253.62476 -32.01108 920.1732 227.24161 -67.2358 925.2216 226.36691 -67.10982 930.52783 225.34685 -67.16246 918.3915 226.22377 -2.97544 920.9509 224.62532 -2.9297318 923.8739 223.47595 -2.8605123 970.67377 231.05426 -154.694 959.6606 228.19281 136.12057 929.98035 278.6484 -62.86543 925.1412 277.52917 21.00462 1037.538 343.00677 -312.54266 1011.7264 369.92688 306.0261 829.52765 437.28235 -428.9226 828.2601 470.84607 379.13843 616.99084 422.0319 -350.5639 633.8168 442.12436 256.1401 563.27954 412.7181 -420.2802 587.36255 412.39444 267.59543 560.94226 393.15097 -390.48254 577.7273 405.82928 190.59297 581.94336 405.0972 -341.81595 596.56085 423.67465 216.1954 1231.5131 719.21405 -203.30824 1194.2687 706.29553 204.22096 957.1795 569.1819 -294.519 922.1333 558.97784 269.0517 1111.8757 850.7274 9.534981 1035.8513 821.5391 474.72314 1174.8118 880.40515 38.852943 1094.0414 850.7153 490.8913 1039.15 935.3257 103.93984 946.8771 922.9581 582.9259
353 frame__0Wad9V2m4JI__0012916.jpg squats_down 696.022 351.67413 -152.19284 703.872 341.68295 -121.83387 709.34607 341.96555 -121.84796 714.9139 342.1427 -121.92626 688.84436 341.65005 -122.752754 683.2732 341.66757 -122.67116 677.67664 341.77628 -122.7472 723.85834 351.5444 14.182044 671.24207 350.5136 12.199427 706.80176 366.46347 -106.09566 686.5276 366.066 -106.77321 754.7865 412.974 28.273632 637.1842 411.92233 9.634175 749.4288 500.46732 -104.63891 649.87616 502.68768 -123.74162 717.1833 495.4404 -289.5716 691.1599 491.25375 -277.17087 711.4951 502.60306 -332.35858 702.4633 492.25388 -313.50674 708.0401 488.74698 -326.8468 698.66064 477.074 -313.8519 705.9222 486.57568 -291.3787 698.397 477.66803 -278.77588 719.93665 565.5901 16.023472 646.81226 567.8685 -15.423757 788.8456 532.5856 -298.1436 616.8281 533.3341 -390.69952 758.62866 642.91925 -182.04001 625.0129 641.109 -222.2768 742.02527 657.8689 -172.0566 632.3696 661.71844 -205.58081 775.83105 693.88135 -293.99326 601.96094 677.19196 -310.49146
354 frame__mGvzVjuY8SY__0003053.jpg squats_down 879.3353 444.00262 -513.6883 901.8752 419.73615 -509.8059 911.6291 419.62756 -509.74463 921.39777 419.37302 -509.6632 881.0497 419.15646 -465.68796 875.06586 418.16867 -465.39813 868.98535 417.48654 -465.17633 951.967 426.48038 -417.47278 883.617 422.5289 -219.11661 903.3679 467.83432 -478.43402 877.46594 465.0803 -420.131 1024.9235 525.6636 -376.3382 844.6256 520.135 -90.44048 1000.57983 678.407 -534.47156 749.3496 689.6903 -454.089 902.9732 539.1032 -588.2616 824.5098 550.9432 -846.5089 866.96515 512.7049 -602.07495 840.0467 511.49738 -883.62134 894.1496 488.85565 -581.7256 853.9755 487.19907 -783.70135 906.3282 501.4242 -569.4365 859.3142 507.3542 -812.396 1035.6711 738.1228 -77.13254 922.9179 733.3996 77.30481 1097.5315 776.8904 -828.69055 760.34644 749.136 -315.0829 1112.9025 973.27905 -490.40012 826.77386 908.0335 74.29909 1101.0436 1017.9094 -471.05902 860.7559 941.97235 104.69145 1148.2815 1029.3638 -744.8762 748.7403 976.0657 -55.691986
355 Screenshot_2021-02-11 at 15.33.34.png squats_down 604.47754 307.79523 -216.9947 609.3876 298.78906 -200.78896 613.6377 298.78204 -200.74529 617.9854 298.73688 -200.73564 596.9059 299.03506 -201.97636 592.2999 299.13617 -201.98338 587.7176 299.36346 -202.01259 623.3381 306.39377 -116.89502 581.7033 307.3443 -120.90357 612.908 321.61096 -186.75066 596.3614 321.97897 -187.8167 653.7494 370.17026 -69.07383 553.30804 361.86084 -64.13696 714.70795 408.95795 -56.7944 494.8834 376.73062 -4.1698256 662.6647 440.7588 -75.96846 538.7967 424.62363 -17.575256 649.0233 451.6879 -84.218895 549.3523 444.32898 -26.616327 642.14954 441.64987 -79.86229 561.2973 437.09955 -26.630646 647.54254 440.46796 -70.52509 558.613 433.05725 -14.114649 637.8407 480.78687 7.467873 580.7775 482.77325 -7.346258 648.7981 488.05362 -282.2621 569.9854 527.93646 -109.09021 623.9461 552.30536 -110.6881 595.80066 563.0697 191.34294 619.8935 555.9374 -93.06652 599.2159 564.9263 222.4754 613.4817 580.5394 -172.38576 607.64954 588.8242 186.15672
356 frame__zLBFQ_mFl2E__0019168.jpg squats_down 964.83673 523.86334 -454.24588 967.9177 512.3346 -413.85263 972.78314 512.2176 -413.91257 977.7555 511.981 -413.9927 951.1339 513.2959 -427.40665 944.6676 513.7682 -427.30875 938.24664 514.3759 -427.15256 979.5313 521.1196 -215.66513 923.8244 524.47723 -281.99924 972.1123 541.5863 -383.83835 951.84717 542.4137 -402.6285 1020.83813 608.70325 -111.70371 869.3502 609.26764 -209.66425 1081.1545 720.90704 -290.42667 845.6234 749.97797 -406.86752 1011.8475 674.83417 -586.5181 948.0578 693.99817 -623.69836 996.0877 663.60077 -643.6986 982.4885 683.6012 -659.631 987.3463 649.2588 -598.65314 973.87665 657.14075 -634.8256 985.82886 655.29736 -573.9815 967.3874 664.388 -608.8487 965.90643 762.4103 38.445736 872.08716 760.27704 -38.302284 1071.2526 784.77844 -462.41254 806.95795 784.70667 -599.155 1010.1501 914.5988 -46.59911 806.89954 935.47705 -218.93909 981.6106 936.4317 -10.7217865 813.609 958.6272 -187.85916 1064.9298 962.1073 -145.82701 788.94885 985.8918 -394.07916
357 Screenshot_2021-02-11 at 14.46.15.png squats_down 334.32703 278.6572 -128.33849 340.43652 272.9961 -101.47014 344.85104 273.2391 -101.508316 349.37155 273.42154 -101.81305 328.15625 274.2118 -98.51917 323.7297 275.0198 -98.500916 319.2947 276.03705 -98.48177 358.01938 287.21176 5.7500916 314.6376 289.92654 19.08954 343.95465 294.06094 -93.79203 327.90036 295.42764 -89.73528 377.00418 338.48322 -46.164375 301.68228 331.88144 -47.053406 393.82855 301.47253 -313.90247 270.28772 298.64188 -314.64774 394.99915 237.41182 -424.9291 257.82327 243.53542 -506.02576 405.37808 219.6017 -455.4966 246.48448 230.4614 -554.69934 394.87656 220.95396 -442.41385 261.51764 230.11432 -541.66614 388.36523 232.43045 -429.3881 265.96262 241.20728 -510.50357 356.14398 479.72702 7.1259565 303.19788 473.79202 -6.838352 423.93643 408.25714 -268.2532 251.5976 401.93716 -294.28622 410.18097 515.61426 -154.76234 257.1475 494.46082 -140.92014 394.59122 538.8324 -146.69144 271.46817 518.67426 -129.84749 446.93094 538.6065 -226.40712 214.25859 510.77402 -211.06119
358 Screenshot_2021-02-11 at 15.09.38.png squats_down 612.2003 385.37714 -383.70877 621.2381 370.1042 -381.76245 626.1585 369.72852 -381.69067 631.11005 369.26837 -381.6259 607.8472 369.68964 -379.12808 603.4685 368.7837 -379.15353 599.08716 367.95517 -379.43295 641.2692 365.3168 -278.60168 596.1218 363.18054 -269.8046 620.66724 392.1188 -338.04318 606.49243 391.51328 -334.58945 672.27625 397.89352 -135.96365 567.694 393.80365 -160.58441 672.35254 475.8174 -232.58049 555.86096 473.17023 -266.00464 656.7432 454.01782 -513.4822 579.23944 459.44504 -539.03687 654.09436 448.16785 -577.8428 587.1475 459.29382 -606.19836 654.2212 430.3933 -576.8066 589.9778 439.97534 -603.7105 649.1969 434.4988 -521.88885 593.8386 442.98093 -546.9986 648.71954 507.6225 -2.6589754 587.6071 507.78848 2.9463346 728.003 511.21225 -273.38464 502.95825 504.6212 -285.79407 706.9604 617.5698 -138.58131 518.8166 620.13965 -177.08568 690.45874 639.7697 -131.03528 533.7766 641.0838 -170.07124 739.7871 645.77734 -246.96672 488.80768 652.6194 -274.23062
359 frame__FsqhUFcjL8k__0002647.jpg squats_down 1077.7301 460.07605 -223.17865 1066.0951 446.10858 -184.252 1064.0258 446.29108 -184.18896 1062.2849 446.6482 -183.91133 1063.0453 446.4753 -246.6471 1059.1885 446.3679 -246.46783 1055.194 446.42865 -246.52118 1038.7701 455.82504 -11.690988 1030.6561 454.01495 -290.47095 1067.9928 478.61606 -161.30643 1065.1306 479.18436 -238.23163 999.45636 542.96625 156.44244 990.2953 548.4634 -432.23245 1086.5513 628.30115 41.647343 1090.6947 652.9925 -408.2801 1131.3364 564.7048 -287.6926 1104.396 534.32587 -115.82199 1153.8473 542.5713 -296.27975 1120.3287 502.2785 -135.75575 1129.4761 529.74335 -297.10034 1088.0079 493.98932 -143.26341 1121.054 539.35675 -298.90826 1076.6149 507.28467 -108.341194 849.6115 710.1186 196.67657 824.13153 731.05615 -196.24237 1026.6545 750.2646 395.49567 1003.5758 818.06836 -259.42093 921.8899 859.3141 490.63608 942.0559 973.77295 -182.18956 896.1671 874.99255 501.29517 914.01733 1002.0251 -181.37636 968.29047 888.28955 512.2587 1017.9524 1006.5876 -246.1292
360 frame__nfRdTJY_xgM__0001239.jpg squats_down 996.46045 480.4045 -263.90887 1007.02094 471.14993 -299.91278 1009.0061 472.18494 -299.64523 1011.043 473.25046 -299.73044 1008.7953 469.7515 -244.89369 1011.08777 470.00668 -244.73148 1013.48395 470.5584 -244.49217 1027.5885 487.7889 -377.96265 1032.6042 483.77582 -123.462494 1002.5109 499.53653 -287.17743 1002.7707 498.71527 -212.88164 1025.5364 567.00476 -477.2751 1061.4114 543.97015 88.85268 919.3526 563.98456 -601.4096 967.73517 538.4408 261.95425 810.3191 541.6422 -599.59265 879.8411 520.7209 212.86768 785.62396 536.26 -689.36694 866.86066 509.78705 233.70644 786.9762 528.2908 -659.2436 858.85565 509.4165 175.00858 797.15686 533.70966 -593.8646 860.0623 518.44824 187.15839 1102.257 753.5469 -185.59248 1113.1475 728.0438 186.16698 954.3084 747.37134 -145.46829 984.1839 726.1354 399.7641 1025.1576 869.5492 183.07053 1003.2469 852.86957 644.1548 1051.6017 893.3637 214.22995 1021.9131 878.08234 667.99084 978.06116 882.9989 221.2731 943.2515 870.40765 691.35864
361 frame___0CAcnhL5Sw__0015916.jpg squats_down 857.5268 406.26248 -799.60974 873.67053 373.35986 -770.70734 886.07947 373.24942 -770.62897 898.55536 372.8419 -770.49414 840.53156 372.907 -772.2453 827.7066 371.66342 -772.051 814.83057 370.70013 -772.2081 913.20844 383.066 -537.3646 795.47955 379.20212 -547.41614 878.70105 432.58148 -705.80164 834.03503 430.9419 -708.3075 989.9439 491.4839 -340.15527 706.39764 487.9013 -379.08334 1109.6045 688.4175 -426.36063 617.7806 696.3331 -350.09665 913.4706 727.22205 -438.59158 784.76245 745.0238 -326.33966 870.43066 754.2215 -483.03198 825.8873 771.5679 -360.7411 847.32465 716.9319 -425.2927 843.1594 740.43787 -344.9859 865.0753 713.2627 -412.59912 835.4203 729.02405 -316.24457 921.0635 739.10913 18.590223 771.3465 746.92706 -18.319262 1173.2496 655.9075 -504.54968 545.93384 658.04205 -582.7176 1100.6711 913.37146 -185.32117 624.66833 926.3854 -236.2157 1054.662 956.5855 -157.36371 668.1704 968.5469 -205.5092 1216.528 1011.2834 -355.3655 537.91705 1025.7998 -413.53342
362 frame__TwOuh73cGGQ__0002302.jpg squats_down 965.16724 481.63928 -233.99007 958.9374 472.1732 -189.74345 959.2682 472.31735 -189.84889 959.8867 472.54633 -189.74042 951.6018 471.22076 -231.68085 948.0204 470.9362 -231.61226 944.4613 470.73828 -231.40674 946.8341 478.41562 2.6725276 925.32477 475.15222 -183.43768 962.3103 495.06396 -168.09848 955.6497 494.4562 -219.98123 958.54236 552.40985 76.45076 879.2078 534.00977 -264.55243 1033.057 605.51935 -112.54492 945.2375 612.63055 -430.8214 1027.3824 538.76117 -350.8426 995.4517 528.57916 -325.5147 1029.3239 522.02094 -376.43475 1010.0362 504.07712 -336.7582 1010.2937 514.69006 -328.81784 988.8535 501.1702 -336.72913 1009.0741 521.8515 -337.79956 984.54333 511.23627 -318.1407 862.1262 695.20215 109.564186 799.81366 691.05255 -109.360825 983.50287 729.6706 -142.73036 846.5285 745.61084 -650.0755 928.703 840.7487 140.41777 803.5553 865.4923 -355.55615 904.3236 861.4385 165.87582 789.868 878.1315 -335.3975 987.4151 884.73834 52.425358 822.22076 916.94684 -528.05853
363 frame__YArvGEk8c6c__0002123.jpg squats_down 1250.3633 554.93976 -724.51013 1265.1691 532.1065 -732.5111 1272.6324 532.0576 -732.4841 1280.3608 531.74524 -732.147 1240.8701 529.9033 -736.75586 1233.3674 527.87244 -736.65 1225.9772 526.2031 -736.7068 1293.128 522.83514 -537.2519 1214.2201 513.5898 -547.19006 1259.3086 565.25696 -632.67206 1237.6685 563.3386 -635.15094 1352.9335 556.99115 -179.1875 1167.6368 544.5123 -214.29712 1428.742 603.28 184.39474 1097.4104 580.01056 213.19955 1429.3296 685.7693 343.45972 1090.9911 674.73517 481.84598 1438.1648 705.932 343.43063 1075.4999 694.1122 510.05167 1420.188 701.49786 283.68082 1100.0833 698.7463 468.66678 1411.0858 704.208 323.82208 1110.8662 697.3092 475.79614 1314.1539 762.80365 -14.303471 1207.0519 762.5013 14.253958 1473.5598 757.5775 -418.3095 1061.4147 713.52234 -389.12717 1415.9062 948.54895 -478.6814 1103.698 921.0951 -200.02342 1386.4518 995.5207 -491.8935 1131.1661 967.33826 -186.62442 1472.4916 965.95905 -651.5574 1042.9812 955.1631 -336.45297
364 Screenshot_2021-02-11 at 15.28.33.png squats_down 618.9405 276.98508 -300.17935 624.3057 265.3878 -279.5628 628.8311 265.08136 -279.5847 633.4163 264.68524 -279.6078 611.37427 266.442 -280.57663 606.47485 266.6762 -280.51294 601.57587 267.01535 -280.45386 639.1026 270.58734 -160.19188 595.39276 273.36917 -166.79358 627.78406 288.919 -257.41092 610.69946 290.01288 -258.9955 669.7045 325.86365 -97.468285 564.00116 327.883 -101.150536 701.5935 399.35715 -197.88724 528.7613 400.02808 -212.71619 732.8559 359.6147 -361.05002 507.97217 360.2346 -411.98743 747.52057 343.035 -405.03296 498.16357 348.6937 -451.8554 746.14746 332.48108 -397.11755 500.29843 333.88623 -451.31262 735.8995 338.56046 -365.70248 508.21866 339.6231 -416.32352 646.7696 450.22223 7.322051 585.7655 451.31616 -6.818625 708.7608 470.65378 -354.48672 550.6016 469.47128 -388.49808 672.15405 553.47815 -87.12991 565.15546 561.2957 -159.23447 655.89044 564.29504 -66.373276 575.51776 573.71497 -142.44339 696.95825 594.3364 -178.27943 549.4909 599.74286 -269.8115
365 Screenshot_2021-02-11_at_15.51.18.png squats_down 1262.7028 548.63873 -451.85458 1276.9359 526.5138 -416.43185 1286.4746 526.2067 -416.24857 1296.1483 525.6757 -416.28665 1248.9088 528.56165 -416.5288 1239.1942 529.13806 -416.2128 1229.4567 529.9513 -416.4289 1312.3229 538.13074 -147.1418 1217.3883 543.59155 -152.53763 1281.5973 574.0546 -349.03397 1246.8749 575.5527 -350.33527 1377.695 629.14716 -41.98515 1152.4852 641.6494 -51.485687 1424.1062 713.6355 -432.36493 1110.6196 732.5025 -478.01147 1464.5199 717.92865 -1113.1915 1103.3711 702.92175 -1156.9712 1492.2836 734.9207 -1247.9282 1098.4469 714.7386 -1286.8737 1462.9127 717.3312 -1277.3221 1115.222 684.53735 -1297.9609 1447.1794 717.0731 -1141.6583 1125.7755 688.6607 -1174.3167 1351.6249 894.8241 -0.35477895 1207.6724 902.7744 1.5860529 1473.1101 961.4809 -755.7974 1062.2192 988.99506 -730.9823 1394.711 1176.42 -281.5518 1125.6042 1182.9011 -310.02634 1356.5792 1212.3436 -248.56017 1163.7704 1214.8793 -279.29605 1456.9689 1262.6714 -502.15137 1064.1046 1273.8712 -531.80493
366 Screenshot_2021-02-11 at 15.20.52.png squats_down 603.681 330.32324 -361.75095 609.84406 317.9042 -342.23843 615.05994 317.66287 -342.20874 620.2571 317.34335 -342.1924 595.5765 318.63925 -340.89883 590.3192 318.68283 -340.80408 585.0295 318.85565 -340.86365 627.292 322.10553 -219.52791 579.1388 324.14786 -214.61986 613.928 342.0253 -317.12753 595.07086 342.57526 -315.2056 662.05963 380.8812 -177.4304 548.956 385.77625 -148.81857 652.5346 477.2979 -358.59616 549.51575 487.33102 -332.63757 611.2872 412.27563 -548.61993 582.46893 415.37756 -551.9264 600.3015 393.549 -589.36444 592.4235 396.2515 -590.1721 608.2008 380.38055 -557.7386 584.2806 380.9886 -563.24286 607.0933 386.452 -538.75323 587.71216 387.61868 -543.03613 642.3044 504.2238 -2.5711513 575.8065 506.1577 2.9593463 699.65436 489.03458 -410.94598 532.4174 487.245 -409.15213 669.6417 599.7742 -265.59296 544.53687 607.5444 -307.18616 660.32 610.96655 -256.93225 552.9538 623.5454 -303.23248 666.9503 646.832 -414.82758 539.4749 652.08575 -456.78073
367 Screenshot_2021-02-11 at 14.44.55.png squats_down 464.2285 227.07672 -193.18462 468.9355 222.50934 -171.90903 471.65207 223.28914 -171.90858 474.43616 224.04419 -171.92023 460.36218 220.76712 -174.43817 457.32257 220.12114 -174.3833 454.26495 219.60735 -174.41937 476.90213 230.19247 -70.954185 448.144 224.17046 -85.532135 467.14404 237.64967 -157.88937 457.0705 235.26811 -161.6869 490.69913 268.9839 -93.19008 422.8095 257.53394 -121.57747 517.9603 266.54892 -280.76114 427.22006 274.5008 -297.82062 464.3268 248.57365 -365.29507 477.21533 258.01004 -367.1204 453.87402 243.75114 -392.0445 486.28745 253.36565 -394.16266 448.83685 245.41217 -368.33124 491.3522 250.65671 -374.97513 451.42114 251.08199 -360.4445 487.7501 255.65823 -361.24945 467.4291 364.50406 10.354838 422.13113 357.4191 -10.244105 511.29495 336.91495 -276.46042 390.09952 339.6767 -313.82126 491.80005 420.2462 -115.37131 384.8056 420.90195 -171.29259 478.21524 436.70242 -103.5837 389.6776 437.19937 -161.68726 519.805 441.3908 -209.4998 368.08545 440.34048 -274.596
368 Screenshot_2021-02-11 at 15.51.36.png squats_down 205.28975 449.41492 -298.3568 212.00128 428.95398 -303.38388 218.82556 427.7771 -303.32294 225.61617 426.5247 -303.26035 194.224 430.1807 -304.48148 187.12828 429.7322 -304.34586 180.01735 429.4124 -304.33762 235.53903 424.28546 -239.62358 170.69492 428.33627 -244.2703 217.94981 458.82413 -265.93246 195.55411 460.02502 -266.7859 270.17984 452.44485 -167.00258 153.3565 454.17572 -167.29594 309.03882 530.3845 -215.53922 131.94711 523.2144 -199.28146 237.0353 513.1136 -308.5153 173.42595 514.34326 -321.7837 215.8757 518.71716 -329.18726 185.30783 522.0375 -344.3164 214.14755 498.38654 -314.32666 189.43355 503.98657 -341.49878 217.76675 498.21017 -303.39685 189.8903 502.38754 -321.40726 248.1576 548.07916 -5.592287 190.6271 548.42554 5.602694 282.21158 543.09814 -203.12091 138.52602 540.8304 -193.77158 247.33192 610.80255 -67.130875 178.03299 605.769 -52.018406 236.55093 621.3158 -54.937397 195.92526 615.448 -38.466446 258.1902 648.02094 -120.393005 153.59586 648.73834 -89.51183
369 Screenshot_2021-02-11 at 14.32.32.png squats_down 351.85645 277.35986 -419.53403 357.14154 263.7699 -414.16037 361.40878 263.20435 -414.13342 365.6998 262.5527 -414.06906 345.30347 263.94897 -412.1019 340.95108 263.28488 -412.00644 336.55032 262.7201 -411.95105 372.50473 258.17218 -311.75647 330.32602 258.647 -304.54382 359.4129 281.82086 -374.73065 344.96228 281.75406 -372.1229 403.0604 279.101 -225.25804 303.73346 279.73758 -214.6972 467.71606 324.09735 -323.87097 243.66919 323.15784 -296.65268 448.2777 360.99554 -476.56973 260.24802 367.6163 -460.47552 445.60312 375.64282 -513.7209 262.0809 386.9685 -503.79 433.9459 366.07907 -518.29346 277.12943 377.94046 -509.56216 432.57983 364.81033 -479.7677 278.89578 374.48087 -465.85663 383.50888 388.27658 -5.5785513 330.7936 389.32028 5.9427714 415.98596 399.81158 -344.59445 293.8544 404.4879 -300.30997 398.7895 478.82822 -113.08784 305.88333 478.8719 -71.27258 391.427 489.16464 -95.327866 315.4076 489.72485 -53.29125 404.22736 516.46423 -203.5602 289.15692 513.9914 -161.45601
370 Screenshot_2021-02-11 at 14.33.03.png squats_down 331.411 131.40019 -192.4449 336.91824 118.84446 -178.31804 341.45605 118.58009 -178.32532 346.04593 118.24243 -178.31583 323.79678 119.04737 -179.69499 318.8422 118.77467 -179.57904 313.87744 118.601204 -179.60109 351.21213 120.40867 -68.29126 305.52368 120.736336 -75.33869 339.02164 140.8016 -149.95757 322.06308 140.7451 -151.56676 377.8461 161.85675 -14.659033 274.3511 160.05902 -13.785877 412.74612 218.36197 -126.683586 242.91035 226.27208 -136.40053 385.6309 224.06146 -352.6589 269.10757 216.17497 -368.1245 378.12872 233.1708 -398.8251 276.89938 220.03635 -409.35583 371.00934 221.90802 -391.76422 283.9539 204.65489 -410.57004 370.71072 221.47897 -354.19232 285.11337 206.05669 -370.3625 350.4332 286.9766 2.7524157 292.052 286.73572 -2.4115283 389.37958 267.69736 -344.98877 254.11853 272.13254 -329.81607 372.63174 384.5345 -261.22513 265.51166 379.63724 -247.02235 362.0583 400.84833 -257.20456 273.28055 395.56412 -241.1387 383.94794 424.9196 -379.25107 252.47311 416.86295 -352.6672
371 frame__diFjQVUL7wk__0007470.jpg squats_down 1071.2266 457.09882 47.011425 1064.345 439.65103 57.536884 1060.5698 437.83817 57.736797 1056.7969 436.07486 57.6717 1069.5271 443.1875 0.89381576 1068.9714 443.21014 1.0041982 1068.2163 443.3174 1.130819 1034.5717 433.84183 134.43181 1050.6912 443.03113 -124.25539 1056.487 465.39465 81.51531 1061.3069 468.04758 8.994949 959.8123 477.2007 308.5399 1022.04016 503.40097 -237.27522 955.8171 542.54584 526.3159 1045.1375 598.1842 -222.97546 1015.3624 495.49396 700.3472 1067.213 535.22437 -32.59576 1029.4669 474.33966 751.00195 1077.5542 515.46783 -44.79024 1028.7651 468.74088 740.0447 1071.3562 505.17758 -28.577625 1023.3665 477.40833 698.08435 1065.6642 514.5311 -18.409986 845.4755 603.09985 180.15736 874.7821 616.8541 -180.46912 955.3891 649.1398 556.8408 1021.19885 674.0133 -221.4225 896.8868 766.761 755.52374 968.57117 818.10266 -289.36166 871.9204 787.2806 775.98785 935.2046 844.74567 -290.04926 932.0621 789.38574 847.5855 1024.5763 851.7897 -264.341
372 frame__MythPbjCmZU__0019103.jpg squats_down 773.70996 502.35754 -163.92694 780.26135 483.40698 -174.47209 785.73456 481.32358 -174.3884 791.2145 479.1357 -174.17114 770.8051 486.26404 -124.577866 768.55804 486.51395 -124.410614 766.34094 486.9146 -124.352905 814.1474 477.9826 -169.83127 783.1649 487.05377 50.903072 795.36273 511.835 -159.63937 781.04095 516.35986 -95.834305 887.7312 538.4062 -256.83838 809.3621 551.433 192.72237 842.61005 669.47156 -400.78513 780.819 648.4304 84.88618 770.7433 594.6739 -393.91125 752.68494 582.8164 -193.58908 750.2959 573.29584 -429.0629 739.5459 567.0668 -230.27718 766.12915 561.323 -413.80768 749.60016 557.10455 -212.20409 774.9462 569.54706 -384.16077 758.46 562.768 -192.66234 969.41766 680.31964 -116.26774 913.9458 687.3073 116.98449 894.9865 709.3405 -612.797 804.32635 677.3126 -279.0274 958.2903 869.79785 -491.90878 869.75275 823.2415 -249.73251 981.2549 892.3871 -485.1756 897.35876 846.91016 -249.985 922.8914 932.2289 -666.65906 832.61035 872.0101 -380.93228
373 frame__6g3BE11bR4s__0021022.jpg squats_down 1120.106 287.31924 -595.35925 1115.5624 264.88168 -544.32574 1120.6587 265.0987 -544.4133 1126.0673 265.3343 -544.47125 1093.9502 263.88416 -591.87225 1083.775 263.0446 -591.7348 1073.6692 262.47357 -591.64014 1109.8575 270.84262 -270.64795 1037.7703 266.84888 -477.12436 1119.8433 310.38486 -492.61414 1094.337 309.5025 -549.7583 1138.1326 357.14175 -142.05743 943.213 384.00076 -491.06696 1297.1898 365.11447 -314.57806 960.12317 568.1455 -855.416 1341.9628 337.49637 -641.50275 1049.2971 437.2864 -1155.6224 1370.5458 330.04056 -701.6352 1079.1711 397.05652 -1233.9067 1340.5054 322.22058 -673.356 1059.8508 363.5343 -1220.999 1327.881 331.8306 -645.9637 1054.4221 380.33774 -1156.2565 1010.20776 615.6826 145.99614 891.3732 622.24176 -145.75119 1214.4241 646.23254 -283.2009 983.03754 672.65076 -914.0176 1111.0643 831.50214 110.323044 917.2298 885.80707 -476.11746 1059.9136 858.9173 140.94847 884.1131 914.1932 -447.2866 1189.615 913.124 -3.8945425 995.75555 960.0251 -711.3405
374 Screenshot_2021-02-11_at_16.26.32.png squats_down 1264.1249 692.73505 -736.34125 1280.6533 670.4648 -702.867 1290.8246 670.2191 -702.68146 1301.0778 669.8975 -702.6804 1253.8097 670.59485 -684.53687 1244.755 669.973 -684.46643 1235.699 669.7256 -684.2963 1323.8191 677.0999 -475.47467 1231.7523 675.88544 -394.56845 1285.6393 713.74115 -651.67834 1252.6829 713.0849 -627.57776 1380.238 751.7789 -420.2268 1186.2379 750.6895 -331.8427 1534.7874 697.1789 -778.28204 1008.7222 720.5688 -740.9101 1387.9391 672.5496 -849.33435 1165.6848 673.21985 -956.07605 1356.9219 653.5058 -877.9817 1200.1418 654.1881 -1009.2222 1345.0682 667.03406 -785.5093 1226.4976 654.8023 -908.78375 1353.7584 688.66766 -816.90826 1215.7515 675.6561 -924.37585 1348.14 1027.0466 -35.443398 1229.0607 1019.67035 36.226307 1463.894 958.4151 -844.36847 1064.5361 961.706 -612.1737 1438.4469 1167.5303 -411.2613 1154.8622 1164.2969 -213.20782 1428.738 1189.6978 -375.13516 1197.5558 1188.8555 -179.36057 1435.4939 1252.1741 -676.4843 1090.7434 1253.1882 -424.76196
375 frame__ox0kCStCZHc__0006663.jpg squats_down 905.45966 508.71823 -49.15662 920.35455 491.7257 -78.4699 924.2577 491.02194 -78.29271 928.23486 490.15738 -78.33303 918.65216 493.07373 -15.099057 920.5293 493.553 -15.1439705 922.7013 494.2763 -15.117749 955.8475 496.704 -145.30756 946.7314 502.64645 142.28001 918.48566 526.1035 -72.59266 915.2916 527.38257 11.106704 980.6105 568.4239 -302.8868 991.58887 577.7947 316.4592 839.7916 604.77 -489.28253 856.9383 632.7013 401.52533 744.696 641.4101 -426.06894 760.64417 657.69165 256.33667 721.9896 644.8816 -485.1501 737.7259 651.53937 263.68573 724.9624 637.3925 -447.12274 738.0184 649.0154 200.90462 736.2381 639.3055 -411.21942 746.05225 656.574 224.63965 1158.3673 756.50635 -191.80075 1156.9106 746.0442 192.53181 994.2304 847.5514 -202.96617 1022.2815 831.9276 327.34863 1017.8834 1032.0015 -50.74017 1047.9648 990.8938 512.3306 1039.974 1058.633 -37.47566 1070.1813 1010.96844 528.5907 950.24854 1081.4513 -119.00774 996.02734 1047.5917 477.26437
376 frame__fFQOVvvPXak__0019928.jpg squats_down 643.6155 159.36835 -507.46732 663.6191 145.2375 -506.46085 670.90063 146.0963 -506.37363 678.2508 146.84532 -506.38992 649.01733 143.58153 -467.98657 645.66626 142.76903 -467.79645 642.3799 142.3055 -467.6305 704.85 155.72467 -453.5063 657.8264 148.53499 -285.54358 663.27423 179.43188 -488.26337 644.2297 176.32855 -439.76807 745.8844 231.07375 -504.4847 652.1859 226.82002 -179.34999 651.2115 299.80762 -646.0712 541.405 262.28348 -283.80917 519.6739 284.61618 -701.8142 446.82642 242.96329 -461.71082 487.15326 284.25858 -758.7759 418.5478 232.09874 -483.44864 489.0998 266.5566 -741.50073 422.4192 224.57542 -509.29504 503.03778 270.86105 -697.87036 434.8777 232.24103 -481.40012 811.8379 408.1343 -87.2251 751.4839 399.57263 87.60033 735.8523 430.25616 -540.49634 616.4771 377.98495 36.636063 769.4839 578.9978 -310.3198 637.68744 487.08533 332.55557 782.0188 605.83325 -296.5112 656.71014 510.71075 356.4835 716.75354 613.9475 -458.1467 561.2503 509.95764 289.03503
377 frame__QVNlEfFOWwg__0006900.jpg squats_down 1062.9373 202.11026 -199.91566 1063.5378 171.88481 -175.33997 1062.7615 172.08307 -175.35562 1062.2509 172.40648 -175.4792 1054.503 169.10707 -235.4799 1047.1807 165.87755 -235.43922 1039.6893 162.90039 -235.36281 1023.2271 181.7735 -23.463327 993.0623 164.4253 -294.06268 1037.0996 234.2926 -139.2493 1024.9246 229.39421 -216.14922 889.5255 283.18924 247.83313 882.1817 310.64523 -429.52725 1040.6145 467.70972 369.31158 1024.3699 524.0057 -358.28577 1127.7827 335.45456 419.7376 1122.6202 335.9595 14.822318 1159.973 301.99326 442.75598 1165.1678 295.93622 -12.921925 1129.2329 274.8414 474.09308 1130.3948 262.238 -58.64986 1109.8616 292.11624 426.0155 1101.9247 276.05115 7.0844 540.12665 534.9418 224.84438 522.1802 561.9316 -224.04523 902.1011 584.04065 375.03046 892.28015 639.0336 -227.78616 734.5467 848.67755 655.5827 758.9048 920.143 76.54147 669.99 878.4567 687.50037 695.6441 954.02856 113.70583 812.5925 955.45197 746.06305 869.5348 1014.6321 132.2618
378 Screenshot_2021-02-11 at 14.44.11.png squats_down 155.69533 252.64764 -107.93055 160.74161 245.6198 -92.34387 164.48972 245.607 -92.331 168.27588 245.5156 -92.26315 150.18149 245.93999 -91.62223 146.39508 246.02472 -91.64066 142.5868 246.1878 -91.62392 173.61124 250.99193 -22.392027 137.84938 251.76134 -15.615281 162.60612 262.80426 -83.48465 149.27757 263.07492 -81.53613 192.24826 289.7511 8.423273 118.61989 289.8803 -8.916538 233.87508 316.63034 -88.877144 75.52011 321.58112 -121.59901 175.975 290.7548 -118.726456 125.64742 292.9493 -184.97083 161.71152 282.80313 -122.97457 139.13457 287.0704 -198.97408 157.03183 279.76352 -95.65671 144.01656 280.42026 -167.91684 160.35466 285.80978 -107.694984 141.73448 286.19568 -173.15366 176.58408 378.066 3.2465036 129.45224 378.7917 -3.2520628 207.63783 421.0385 -171.82877 93.631584 426.6294 -195.49925 196.0682 472.0489 -2.208157 102.73373 472.53052 -19.057388 189.27711 477.26404 11.023533 111.74074 478.01874 -4.1100287 203.20634 505.74734 -67.62847 83.34977 503.6192 -81.61433
379 frame__bggX6ocjojk__0001935.jpg squats_down 1859.1095 1095.5989 -453.49313 1872.804 1057.9626 -399.77512 1884.3014 1056.6838 -399.31458 1895.9153 1055.0732 -398.95044 1836.1495 1060.3733 -410.2691 1822.928 1060.15 -409.9072 1809.5524 1060.2083 -410.27213 1909.2698 1055.5143 39.147213 1784.9484 1061.4172 -14.151281 1877.0734 1121.2825 -283.05972 1834.9106 1123.6115 -298.38644 1982.9532 1168.5537 183.63593 1701.7216 1152.2522 118.669136 2011.136 1288.1533 -603.0467 1679.1642 1281.5103 -693.43005 1936.8977 1333.8514 -1583.1459 1773.0789 1318.7284 -1682.9596 1933.2998 1360.2358 -1800.0715 1789.8257 1344.0354 -1876.89 1892.3483 1333.2985 -1782.8125 1821.3748 1318.2784 -1861.1948 1887.6256 1333.4207 -1605.933 1825.1926 1321.794 -1690.7786 1920.2163 1504.199 23.43214 1740.8313 1489.581 -21.69405 2080.0085 1515.9297 -1258.7645 1611.4695 1465.3342 -1318.1958 2052.3071 1842.6945 -1064.8096 1592.0221 1820.2601 -1099.2168 2010.1721 1915.1881 -1077.889 1620.8447 1899.3888 -1104.1532 2152.039 1920.4263 -1527.4188 1513.1774 1909.4437 -1532.6194
380 frame__x5BuK8JqODU__0046768.jpg squats_down 1081.9595 537.6567 -1178.2203 1084.6542 531.2569 -1160.8877 1086.2443 531.4128 -1160.7719 1087.5315 531.67725 -1160.7208 1077.6149 535.1383 -1171.0502 1074.4143 535.9345 -1170.789 1071.6738 536.9892 -1170.3132 1082.5138 536.93744 -934.5409 1060.26 546.23755 -980.4525 1081.3549 548.22314 -1087.0834 1073.8333 549.52185 -1101.033 1103.335 538.69226 -596.6615 1027.6652 606.97125 -633.44885 1091.1473 501.9262 -257.1269 990.1236 622.62714 -419.70728 1110.3966 537.97626 268.13217 1056.6431 599.3729 10.42975 1110.3835 541.67633 405.19748 1070.5394 595.2917 109.8668 1120.2838 549.5566 413.168 1088.6041 603.41455 115.81732 1120.0211 548.41614 295.8956 1082.5637 607.30615 28.538227 1154.4082 600.0222 -0.12709188 1107.2307 640.4208 0.2482024 1092.1299 616.368 -600.7718 1072.4963 744.947 -529.9095 1163.9104 720.4257 -338.55304 1157.3195 912.2478 -392.64163 1177.8711 744.0903 -322.60278 1178.9215 932.9592 -393.39072 1151.7499 732.3268 -556.87146 1165.216 948.2108 -633.9995
381 frame__1BZM2Vre5oc__0005146.jpg squats_down 864.7505 537.9567 -681.2796 871.9003 525.4553 -657.46423 877.4856 524.91144 -657.6102 883.13403 524.3793 -657.61786 856.26904 526.88495 -657.3025 850.7906 527.43 -657.145 845.26416 528.0079 -657.15607 892.87836 531.7356 -503.34253 840.3039 535.12067 -500.12537 876.95935 551.79254 -624.1312 857.13885 553.3709 -622.3453 929.91614 603.9806 -404.48166 805.4062 588.67883 -414.23856 960.2527 698.7007 -659.8946 765.44586 669.74097 -617.1486 930.55347 647.9789 -931.5825 798.506 641.86053 -834.7935 927.2383 632.7237 -986.7186 804.39606 627.40283 -881.5178 925.9838 622.0915 -942.9045 806.5709 618.96344 -855.3069 920.6707 630.66986 -918.55054 809.56006 627.1825 -828.30774 872.4868 708.03644 12.241214 800.279 697.89105 -11.799542 919.87366 763.7948 -276.98575 771.82855 735.21155 -505.85468 914.8557 836.4441 41.182793 796.7517 806.36554 -45.036163 904.40436 850.91315 66.172165 804.31946 812.3599 -7.4838324 942.3277 872.07776 -48.677994 795.8409 849.08453 -128.37274
382 Screenshot_2021-02-11 at 15.37.06.png squats_down 488.6062 187.37756 -193.06203 495.08987 178.01768 -160.35512 500.26694 177.95746 -160.25742 505.55832 177.79893 -160.23047 478.65332 179.46611 -163.79843 472.7923 180.20848 -163.72252 466.9253 181.07968 -163.73749 511.29373 190.02011 -13.498097 456.63217 194.18886 -25.859303 497.79062 206.00237 -141.5884 478.03934 207.6234 -144.89685 547.8874 262.31357 -6.581866 421.93524 267.23184 -52.711437 600.95917 293.22046 -302.75754 403.74585 295.04602 -391.62402 563.7889 286.4767 -571.3185 475.74744 291.517 -647.6733 556.88007 289.6601 -624.3208 487.92615 294.68552 -702.55853 546.0903 282.09027 -606.4344 500.53412 293.90546 -672.7596 545.6413 287.5653 -571.56384 500.14172 299.19724 -641.2414 533.10345 431.15472 10.97953 449.77203 437.81583 -11.002323 616.75494 494.88586 -344.3675 390.47488 516.1909 -395.75015 579.6779 598.89923 -37.98968 427.5612 607.5211 -72.2022 557.0418 616.93506 -16.532806 446.07483 623.81067 -47.06305 621.50433 646.3765 -157.32208 395.43817 653.8243 -186.0038
383 Screenshot_2021-02-11 at 15.04.13.png squats_down 566.3978 327.57526 -187.9749 573.42914 316.19147 -167.43916 577.84766 316.2549 -167.44243 582.30615 316.22443 -167.50807 561.0669 315.945 -168.38751 556.56616 315.54776 -168.41281 552.04486 315.27856 -168.41472 589.5871 321.45947 -49.070362 547.0074 319.83212 -51.528984 574.89374 338.65192 -144.95723 558.64014 337.9749 -145.736 615.27844 368.6304 20.51097 521.13806 362.61398 -7.0237217 666.4465 420.2721 -77.31269 481.27905 422.75995 -150.92099 637.96857 349.6283 -146.16997 507.07645 361.54758 -308.26968 636.0131 326.4843 -170.69376 513.11127 344.2199 -332.1981 628.9629 322.4175 -130.86305 516.5598 335.85287 -320.2829 624.82996 334.34808 -134.17477 518.97614 346.4557 -304.49612 593.63763 489.3806 10.621829 538.71735 487.913 -10.205791 658.5382 481.55283 -352.41818 503.31824 478.8953 -373.58078 628.60864 560.9966 -115.92587 499.32855 562.5394 -169.14383 614.60956 569.34314 -94.96009 506.5571 573.52466 -150.59407 651.07056 606.20776 -200.26833 477.99408 599.9583 -270.5466
384 Screenshot_2021-02-11 at 15.21.25.png squats_down 276.27982 308.39914 -257.83228 282.78644 298.73087 -234.13199 287.2403 298.9523 -234.15263 291.71042 299.07498 -234.08109 269.80627 298.55542 -236.69485 265.09586 298.33487 -236.56152 260.37274 298.23138 -236.49268 295.84418 305.40195 -103.1405 252.66066 303.97717 -113.61289 282.47226 320.9923 -210.2675 266.8641 320.26645 -213.27345 318.8687 349.69406 -43.25013 222.41289 351.12677 -38.7167 356.07065 409.96463 -164.0711 193.64049 410.20844 -205.93335 375.4811 362.47562 -288.42123 180.34024 362.92157 -405.99564 386.25836 343.85132 -320.01614 170.37143 346.93628 -442.12195 382.9312 335.27225 -307.42233 175.09766 337.64542 -431.91818 376.14758 344.10898 -289.12582 182.16417 345.00623 -407.37247 300.43185 464.513 -3.0234869 243.55685 463.99448 3.378607 382.0118 441.0707 -357.43182 182.0952 428.18918 -372.39508 359.91693 537.3178 -259.76596 183.86507 531.4535 -276.23996 346.74902 556.8764 -255.61357 196.91975 555.06604 -272.11392 385.14435 553.88654 -383.70142 143.60881 547.0901 -392.71036
385 Screenshot_2021-02-11_at_16.11.54.png squats_down 1422.3136 591.01746 -1367.561 1434.6613 563.6803 -1335.726 1444.098 562.5699 -1335.9045 1453.4901 561.31866 -1335.8947 1407.4131 565.92487 -1333.7991 1397.7672 565.9231 -1333.5192 1388.0306 566.1441 -1333.3931 1467.3722 562.7494 -1038.5947 1374.369 569.0736 -1037.5392 1440.1469 609.11676 -1246.9092 1406.5012 610.7693 -1246.4019 1537.0753 655.9856 -764.4274 1309.3673 663.41956 -758.3259 1607.7302 830.15875 -1027.7003 1252.3519 838.7234 -1028.786 1484.3357 812.2536 -1451.5781 1374.7133 806.151 -1487.279 1442.6936 812.8858 -1547.4545 1407.7228 804.0569 -1592.1837 1438.6425 781.46967 -1511.9053 1419.4331 776.1224 -1556.802 1445.2102 784.0953 -1440.885 1414.7025 779.75 -1475.024 1487.7528 847.1521 -0.8858117 1363.44 849.8505 1.2382777 1557.9309 942.73566 -830.67694 1323.1165 948.31396 -832.7349 1580.0554 1127.2379 -225.94232 1275.6322 1124.298 -219.94849 1569.2963 1157.3768 -183.95763 1280.0387 1150.5973 -178.13593 1623.2091 1191.191 -540.0912 1239.976 1198.6956 -517.0311
386 frame___0CAcnhL5Sw__0013435.jpg squats_down 741.8344 561.48145 -813.19257 754.88873 535.3263 -815.43225 763.55914 533.5121 -815.39075 772.1792 531.6252 -815.38257 736.8332 538.8185 -774.10547 731.69415 539.196 -773.76685 726.7018 539.7899 -773.3967 801.45807 533.0497 -734.6089 743.93744 541.75885 -558.1527 770.0992 578.5094 -778.66797 745.4742 581.64404 -727.94104 887.452 612.85864 -727.0865 749.03375 615.7628 -382.26608 841.3709 789.30304 -838.5313 672.4623 767.3013 -612.55457 700.5447 706.7065 -870.0532 654.17944 697.20074 -1021.3903 656.96277 693.83636 -913.81793 643.9342 683.39984 -1082.0952 681.74915 656.03436 -923.4066 659.6665 656.3594 -1045.7595 702.38367 656.98956 -869.30743 669.4953 664.3123 -1016.88666 1005.73926 747.98035 -98.04599 921.13434 744.9479 98.942505 947.77264 812.265 -675.8047 735.91437 794.7737 72.682236 1016.8325 999.178 -483.09293 773.3386 906.6882 368.57907 1039.2242 1026.4126 -473.7662 799.6835 925.0659 393.1043 983.6625 1070.0002 -699.1498 699.05725 972.9303 303.9759
387 Screenshot_2021-02-11 at 15.27.41.png squats_down 685.6486 379.66525 -137.73438 691.0072 368.3183 -119.34609 695.5416 368.26614 -119.36278 700.14734 368.12085 -119.4741 678.0974 368.64008 -122.06843 673.0774 368.62854 -121.994774 668.0395 368.71936 -121.96602 704.8213 373.79996 -19.600147 660.414 374.50803 -25.864017 693.4829 391.89755 -102.13088 676.38367 392.06516 -103.91083 733.8504 421.74777 22.497416 627.0535 424.8101 15.446921 782.5 480.3668 -109.88736 586.6971 490.43573 -107.40977 780.168 420.35938 -262.06277 581.9796 422.2543 -241.20639 784.46173 400.93173 -291.2904 576.1003 403.5475 -258.70828 778.42065 392.28494 -268.67792 581.05005 394.7877 -243.9328 771.4078 402.49426 -257.10037 589.0242 404.6121 -236.10077 718.0292 549.2172 4.194096 654.44226 550.5609 -3.7758303 796.9171 544.67096 -278.55643 607.36505 532.08997 -312.68033 744.4742 623.3518 -109.43964 629.878 624.2926 -166.59389 726.8803 629.3919 -94.38012 640.535 636.70496 -154.78589 758.5109 668.65314 -180.67096 620.2944 665.5788 -252.38217
388 Screenshot_2021-02-11 at 14.53.08.png squats_down 210.73312 227.08426 -211.61356 215.18115 217.20679 -205.6956 218.54672 216.73929 -205.63174 221.95691 216.21631 -205.54701 205.7221 217.82599 -204.91246 202.36726 217.7158 -204.89128 198.9801 217.69922 -204.96452 228.23395 215.99072 -132.13525 195.48953 217.60309 -125.43587 217.51639 233.02914 -180.99866 206.39853 233.67834 -178.75758 251.57268 241.29042 -83.6492 180.46265 234.48303 -93.30255 268.63452 272.74765 -227.14484 149.05675 258.66498 -231.67267 239.52646 264.58923 -385.1058 186.84647 258.77933 -368.1647 232.93211 266.56833 -415.11438 195.79086 263.35983 -393.11993 225.868 259.1371 -406.33337 205.02855 257.62857 -380.58713 226.74783 261.87805 -384.6305 203.26175 260.2096 -364.09924 234.87424 322.2165 -2.0922594 191.72588 319.33725 2.0723586 265.9875 341.58746 -212.5585 152.51743 330.5562 -232.97424 249.92125 391.88824 -49.917297 169.6967 379.58978 -37.061516 242.83736 397.58066 -36.909042 180.6106 388.11267 -19.231028 251.49327 425.44226 -116.79868 145.96373 407.47668 -86.14427
389 Screenshot_2021-02-11 at 15.07.48.png squats_down 622.11176 271.32245 -130.33641 627.3251 261.39252 -104.602844 632.03644 260.99695 -104.534294 636.82733 260.55792 -104.70699 613.27423 263.58908 -105.1387 608.15625 264.4775 -104.978455 603.03894 265.53394 -104.9454 643.51855 270.04477 12.17637 596.2708 276.71344 10.597123 632.2022 285.7682 -90.615074 613.7894 288.2053 -90.9308 674.88275 328.48135 -6.303882 570.4359 337.66946 -4.8328004 713.0153 354.41077 -281.86072 543.46936 363.27124 -293.5596 710.70416 332.48257 -546.0422 532.60657 326.61014 -582.6307 720.45703 327.95947 -597.8163 525.5183 323.4616 -626.8655 707.9432 327.1561 -578.3613 533.1438 316.61267 -620.64813 701.1988 332.3164 -546.4752 539.92584 321.6598 -585.77155 657.8777 485.3134 -2.5743368 595.6815 485.43454 2.9576752 704.3641 466.56 -395.79514 538.4845 462.83734 -351.40387 670.72485 569.28217 -202.2851 571.51733 558.00543 -171.88965 659.17206 581.4282 -188.98196 586.4614 571.26526 -156.93843 679.9229 610.82825 -314.77396 554.44666 602.41425 -260.57242
390 Screenshot_2021-02-11 at 14.39.30.png squats_down 356.00873 178.092 -127.864044 363.07983 170.14766 -104.2359 367.53363 170.58441 -104.12943 372.06323 170.96573 -104.07512 349.43845 169.7097 -109.3527 344.78882 169.6098 -109.29869 340.13397 169.60335 -109.45169 377.50543 179.33086 25.82098 332.03198 177.20184 3.526522 362.64963 192.18611 -79.969536 346.70065 191.49637 -85.92863 401.54993 230.75856 24.139418 303.4233 224.17506 -22.807026 428.8894 243.25053 -210.45088 303.9316 237.26425 -284.66583 406.24023 231.07532 -445.58313 348.58044 222.29099 -478.9695 404.0735 231.91212 -507.6154 356.8035 221.1283 -530.76636 394.18768 225.2535 -501.6347 361.34677 218.2171 -524.2691 394.09576 229.16124 -453.41788 358.87363 223.06755 -482.92596 387.99423 371.25134 12.710328 320.2587 373.18686 -12.349103 470.83954 408.75766 -219.73529 250.33957 413.31583 -282.04382 445.93826 503.22818 -31.07502 257.0877 510.75537 -104.315056 425.62473 520.50165 -19.266186 271.11633 530.2818 -94.74577 486.16058 541.797 -131.12726 220.3248 545.6926 -216.62625
391 Screenshot_2021-02-11 at 14.56.30.png squats_down 467.46484 300.08658 -424.15588 474.23013 287.92783 -406.35788 479.0151 287.9441 -406.28647 483.77148 287.8907 -406.20926 461.09515 287.54654 -406.29977 456.2653 287.10004 -406.19336 451.4243 286.75604 -406.20004 489.31375 290.89368 -288.77505 444.96576 289.4032 -291.68097 475.30594 310.85837 -380.12814 458.58344 309.9373 -380.62994 515.27637 337.76807 -210.19818 412.00464 340.90637 -224.58586 538.93335 420.30283 -385.01236 407.16153 431.58212 -405.70325 488.22382 373.0934 -562.4491 453.65042 367.00876 -598.34155 472.07462 359.69922 -594.8654 467.32098 348.91364 -630.7531 476.45413 342.89227 -558.3748 460.6043 334.7051 -596.88574 476.7957 348.97116 -550.3389 461.7483 342.1101 -585.3037 490.99008 428.07724 2.5791113 433.34872 430.1533 -2.3991435 526.84595 437.83908 -373.66254 403.94534 445.6045 -361.19034 505.02887 544.135 -203.74817 420.179 545.5294 -213.60284 494.45444 558.93604 -193.67535 428.11133 560.4717 -206.50874 518.99255 582.97546 -338.90814 413.39697 584.4006 -348.12552
392 Screenshot_2021-02-11_at_15.54.28.png squats_down 1372.9904 625.82574 -333.20868 1385.4489 597.9428 -302.04218 1395.835 596.8096 -301.6786 1406.2941 595.5077 -301.78735 1355.703 601.77826 -306.00818 1344.6001 602.6013 -305.62347 1333.5383 603.7329 -305.77893 1420.4731 605.71185 -47.322536 1317.3619 616.7409 -62.953148 1392.4412 649.4026 -235.04625 1353.7863 652.7294 -239.652 1472.315 680.8088 1.2412318 1246.5239 709.2425 6.0477786 1556.1796 770.403 -483.55582 1184.0404 782.90356 -462.87125 1603.9088 753.325 -1181.5709 1149.4613 754.42535 -1127.5326 1629.7914 758.78436 -1296.742 1127.7854 767.5327 -1242.2812 1606.3291 739.58887 -1326.6663 1153.4896 737.78485 -1247.7485 1593.2664 745.57086 -1211.21 1167.0549 740.8318 -1144.9038 1461.7101 1006.8119 -11.387663 1325.8405 1017.7154 12.374415 1602.2776 990.69916 -609.95575 1121.8711 1029.703 -508.93304 1517.1747 1208.2672 -198.9532 1237.1244 1203.3475 -100.86522 1485.3147 1242.8513 -166.59428 1293.3169 1230.8351 -69.7688 1563.672 1294.9989 -347.66092 1156.3773 1311.5813 -213.30649
393 frame__jPO_jp4Sb00__0008071.jpg squats_down 934.4716 547.78876 -104.87844 942.29285 523.94507 -73.87928 950.00885 522.5507 -73.93296 957.78894 520.9622 -73.98016 920.02057 526.4876 -70.79121 911.77295 526.4591 -70.80731 903.489 526.5964 -70.99292 969.71063 520.4283 115.71597 892.6598 527.3736 132.4744 949.86237 562.2802 -34.064693 923.2947 564.761 -30.26155 1026.952 590.2207 169.69208 839.138 589.5027 164.59875 1061.844 712.3833 -144.3844 776.3769 704.5669 -164.73212 957.84503 606.54443 -343.30634 883.46906 591.9864 -398.85986 939.0493 571.5036 -393.38007 903.55524 560.2829 -447.29556 934.2516 558.9212 -317.28006 912.29956 545.8225 -385.2697 931.4782 574.6993 -318.21692 913.90656 563.414 -374.39502 982.96564 813.7943 2.771325 870.1517 815.8589 -1.9793476 1081.1161 798.07007 -749.02527 764.2254 800.3749 -728.3328 1025.1523 968.42426 -295.2902 806.36005 967.96014 -247.56827 1003.75305 990.2439 -256.1902 832.9182 995.9462 -207.02165 1041.2274 1054.1099 -485.176 755.7071 1036.319 -434.0357
394 Screenshot_2021-02-11 at 14.30.15.png squats_down 477.95422 296.474 -335.56345 482.18164 284.05746 -313.50293 486.7914 283.59552 -313.3899 491.4465 283.0304 -313.2969 468.778 285.03464 -317.5182 463.30872 285.10123 -317.40567 457.86966 285.3318 -317.28943 495.3528 287.72696 -177.65869 449.4786 290.8863 -193.78009 485.99603 307.826 -284.4194 468.37927 308.75656 -289.47736 529.72424 337.32812 -96.99307 413.1436 340.49554 -96.54691 587.8216 394.9789 -248.99965 364.43408 400.9289 -253.25502 594.70734 340.4169 -470.19727 351.4151 345.328 -447.80438 601.52905 318.03513 -509.82812 342.78024 324.86 -481.29776 596.3343 310.42496 -486.45502 345.8213 318.42123 -460.30682 589.55194 320.53943 -466.80466 354.79718 326.94122 -444.28864 512.28503 448.21863 -1.8130931 443.3588 452.61954 2.264332 580.9221 444.80743 -416.51978 371.2618 465.14633 -437.16815 577.09973 548.962 -229.06534 375.32104 558.18494 -286.77087 567.812 567.2184 -216.56815 384.82123 573.92786 -277.77893 601.24927 573.6746 -368.88828 358.17682 582.3125 -419.3984
395 frame__H21pTB9nJ7I__0002366.jpg squats_down 900.0728 458.72742 -45.395405 914.5866 445.90976 -51.09355 920.3639 446.25467 -50.96106 926.3339 446.4757 -50.776375 906.01605 445.7546 0.833297 905.0518 445.55267 0.9062071 904.03894 445.6012 0.65485644 953.5167 459.80206 -59.920624 923.7745 457.8982 168.56828 918.6307 481.79214 -51.126396 905.7625 481.27966 14.875542 1021.1996 548.1081 -172.53557 911.35223 564.3854 246.82317 919.15515 620.42505 -222.28252 809.91064 649.24677 6.5960035 866.6015 514.2179 -30.19184 840.1436 530.56836 -295.60556 854.0125 488.04654 -28.455835 838.05597 496.6845 -329.1897 867.97565 488.3314 -10.988538 860.50464 487.29208 -275.5295 874.5475 501.75732 -13.223733 867.5415 502.49548 -282.17627 1070.6135 745.95135 -91.48497 987.5703 758.0854 92.20792 1019.72455 720.48865 -787.9546 885.7001 718.62317 -407.23022 1075.6926 910.2927 -688.8417 955.7361 881.924 -352.17532 1091.8977 942.7651 -683.12115 985.18054 907.89624 -347.85745 1044.439 970.91064 -889.6885 916.3634 935.75836 -500.8743
396 frame__4e8N8lz6lio__0006459.jpg squats_down 1007.6775 471.5586 139.85979 998.8764 463.9082 146.28288 997.2744 464.74997 146.4574 995.8192 465.5449 146.32953 999.79297 464.51346 109.317825 997.8803 464.9428 109.29437 995.8159 465.61044 109.27409 978.5741 479.58572 174.1016 978.5499 479.61505 6.8756933 998.5756 489.26157 155.00615 997.8406 489.29016 107.093475 949.12054 549.6333 291.72183 954.3715 551.4718 -67.900406 994.284 650.96497 533.22876 1011.5705 634.629 131.16943 994.28125 632.28687 709.5342 1029.3572 552.17834 512.3902 999.11615 631.67737 748.9285 1035.6018 532.0231 545.9974 984.55365 625.3745 747.0061 1029.5078 520.98303 545.3181 977.3257 628.9049 709.8593 1025.4883 529.32074 523.789 911.8397 697.9119 81.35197 893.2579 706.6539 -81.666695 980.8302 686.03345 -62.926933 848.29047 746.84503 -314.73053 914.5818 799.37933 -202.51085 920.93787 804.2453 -106.31157 900.5559 820.12354 -210.13342 929.6502 808.3398 -79.65184 919.5673 818.0397 -255.16637 972.8641 828.16223 -100.584335
397 frame__Spc5yl47h1Y__0009967.jpg squats_down 2027.6833 1176.2946 -1755.2755 2052.246 1135.4718 -1693.9233 2068.0405 1136.363 -1693.8916 2083.7664 1137.0416 -1693.6106 2009.2762 1132.4249 -1697.0559 1993.4409 1130.5494 -1696.7411 1977.4669 1128.9042 -1696.5311 2102.684 1149.282 -1265.3872 1955.5724 1137.9766 -1288.1022 2050.9893 1213.4126 -1593.2181 1996.5612 1208.9281 -1598.5717 2175.535 1305.0552 -967.37134 1848.2535 1300.1918 -978.8555 2147.1829 1601.7677 -1506.2018 1850.5104 1600.3282 -1507.086 2093.5881 1419.3959 -2164.0173 1951.1912 1421.6664 -2159.5986 2083.314 1362.7423 -2305.1287 1980.9613 1368.5525 -2306.198 2103.7607 1321.7616 -2218.2312 1961.3022 1320.9928 -2220.5781 2087.967 1338.0776 -2136.8567 1974.5529 1341.8801 -2132.4263 2106.511 1584.629 5.8059626 1923.956 1583.6012 -4.426164 2248.716 1558.6907 -1355.334 1780.4371 1580.843 -1336.348 2250.8062 1828.6044 -413.3054 1757.5005 1839.7822 -417.09537 2233.6482 1870.0056 -342.08255 1775.7285 1882.1791 -353.20984 2290.8557 1942.0892 -797.8706 1704.3168 1947.1642 -831.13416
398 Screenshot_2021-02-11 at 15.03.16.png squats_down 520.98517 321.96558 -271.7203 528.3013 313.504 -251.69846 532.43134 313.81784 -251.72481 536.5915 314.02463 -251.6845 516.3548 313.15817 -250.70172 512.3716 312.9725 -250.6311 508.37256 312.8634 -250.71158 543.1582 319.14545 -142.05785 504.0652 317.14517 -139.82642 528.61115 333.61252 -231.95386 514.1313 332.7058 -231.04686 571.5592 373.40717 -78.79878 473.6271 375.67154 -76.31363 593.654 452.52084 -186.62093 464.6135 459.02554 -190.15991 555.65625 421.4806 -356.10895 501.347 419.94058 -364.72357 542.26465 413.20364 -392.7734 513.7252 408.29556 -399.83054 544.7442 397.90616 -371.025 508.36063 393.8449 -383.15146 545.3341 401.7601 -351.46014 509.04907 398.78568 -360.30078 550.2841 478.5288 1.0266224 491.28955 482.51428 -0.83629745 608.62445 503.21506 -340.22864 443.64252 511.0942 -345.77832 605.8694 610.119 -151.59743 447.10617 614.7432 -168.75366 596.3883 627.9483 -139.43669 454.51553 630.568 -155.64682 632.83124 637.8686 -266.6565 428.50537 643.63153 -279.66135
399 Screenshot_2021-02-11 at 15.35.59.png squats_down 577.66833 228.63445 -333.7315 587.51196 216.1837 -311.46887 593.5262 216.25244 -311.41785 599.58484 216.20659 -311.35416 570.4618 216.36015 -311.3051 564.5539 216.2817 -311.25516 558.6502 216.31311 -311.21277 608.53625 223.97708 -173.1709 551.6549 223.24353 -170.05615 587.8098 244.51344 -281.91235 567.594 244.30708 -280.67126 641.0643 293.5634 -76.15014 515.9526 294.2529 -87.410904 671.5586 396.33322 -200.68983 485.3549 396.5592 -221.99817 632.7709 354.57275 -466.94785 528.7235 357.0087 -472.89523 617.78064 348.00842 -519.50854 542.2165 348.34592 -521.61475 618.6023 326.52267 -504.9544 544.05255 328.98917 -505.22226 618.1533 331.46588 -464.8553 545.56824 334.78085 -469.87445 615.87 445.6175 -1.9554213 536.5102 446.46494 2.1118453 727.88965 466.87024 -304.70602 417.23178 466.59967 -290.13205 720.2943 587.462 -42.396015 417.88965 584.82477 -63.526054 704.11816 610.295 -20.496338 434.2401 608.1702 -42.78231 759.7876 621.3674 -131.85876 367.52927 613.3732 -140.8638
400 frame__nfRdTJY_xgM__0001146.jpg squats_down 925.96356 506.93222 -384.82095 938.2816 495.95157 -416.30273 940.9722 496.62692 -416.18878 943.8131 497.13934 -415.91852 937.5205 496.13724 -359.39825 939.07666 497.09528 -359.5006 940.94104 498.2538 -359.44678 962.26636 508.8201 -457.20447 959.0365 511.531 -201.43536 934.3356 525.26294 -401.05664 931.82806 525.9736 -326.6367 978.4115 596.34937 -533.8331 1001.5189 583.7194 31.781347 942.45917 715.3783 -610.34937 964.39874 698.8195 52.9506 878.5564 804.7664 -548.5179 908.7275 776.23065 -104.93704 861.79846 817.41455 -636.8788 892.89557 784.0984 -94.487595 857.7089 811.486 -602.0765 895.93756 782.78613 -164.18149 867.5687 809.29034 -541.7648 902.13306 783.22504 -137.35532 1129.0205 741.12256 -183.5654 1128.8799 726.02795 184.04799 1014.1286 701.63947 -287.8303 992.70776 683.9005 377.64676 1042.5176 873.58966 -70.094345 1011.50995 853.60004 629.2064 1061.3873 905.9016 -49.49568 1026.9647 886.058 651.6612 976.4677 896.24036 -155.27322 956.04944 875.69836 624.15784
401 frame__8ghtQpeWov8__0013339.jpg squats_down 1145.2465 525.3618 -49.847683 1143.3698 505.65573 -24.049858 1140.791 504.0619 -24.094934 1138.3804 502.59412 -24.240763 1142.03 506.59665 -86.79312 1138.8048 504.69403 -86.70768 1135.3672 502.98532 -86.68001 1111.4556 501.26096 96.82441 1107.428 498.3576 -189.94653 1125.957 538.24493 1.0149599 1124.0879 539.0415 -80.230156 1029.097 540.3582 315.74713 1049.3141 579.2766 -331.06598 1131.8356 618.0836 455.1011 1149.2759 691.0125 -298.90802 1191.5438 541.5811 470.72 1204.9164 539.9478 -1.648685 1211.3131 527.8411 509.11343 1228.8861 511.17493 -23.547304 1196.7815 512.12354 500.23984 1205.8073 492.7309 -37.845234 1188.0114 520.7109 463.72577 1188.7887 500.7078 2.7330797 841.93744 704.0243 218.3973 847.80444 729.46924 -218.10352 1053.6848 718.13196 394.62833 1084.7241 744.1743 -240.48326 967.56683 866.06226 569.23145 978.07526 898.20264 -68.63406 929.27356 884.8081 586.3316 932.2311 917.96436 -49.223984 1022.3231 915.1517 633.68384 1045.2842 945.26324 -9.995928
402 Screenshot_2021-02-11 at 15.19.45.png squats_down 224.4958 186.35951 -169.18526 228.25328 181.5992 -141.12737 231.3259 181.97101 -141.082 234.47147 182.3037 -141.06711 217.99643 181.5788 -146.83218 214.34491 181.72182 -146.7707 210.68092 181.97554 -146.8055 236.52486 190.45047 -16.130838 202.74455 190.06798 -42.205723 228.67702 199.206 -125.67636 216.63524 198.91054 -133.08867 255.88995 239.62141 -45.46259 176.34564 240.10884 -56.97015 265.93866 263.25775 -316.72662 162.42155 260.79453 -310.51956 247.39404 268.908 -555.8269 200.31195 275.98358 -505.70416 248.5846 273.06992 -613.0385 203.86563 283.57657 -549.63617 239.4187 269.63245 -603.90375 216.2458 281.40012 -540.14984 237.69896 272.5223 -560.2462 215.09424 282.30093 -505.944 247.78293 354.57562 5.9312963 193.32689 353.49594 -5.832512 303.24228 347.89038 -306.67618 148.30138 346.15942 -324.35095 292.89432 454.09927 -247.57285 149.22585 457.40878 -272.31003 278.1694 479.03375 -250.56862 161.34035 482.31696 -274.01196 327.89346 473.06747 -368.71484 117.04192 483.23047 -383.5098
403 Screenshot_2021-02-11 at 15.02.44.png squats_down 835.9879 253.06226 -313.7768 838.6182 247.26427 -286.78143 841.51447 247.21864 -286.76117 844.49744 247.08762 -286.76453 828.2594 247.82951 -292.73758 824.6174 248.0877 -292.68045 820.9687 248.41965 -292.59613 846.14185 253.2364 -163.31358 813.2412 255.07129 -189.65926 840.6487 265.1156 -269.5121 829.2491 265.66 -277.10062 876.37744 311.08493 -120.7972 779.42303 312.79956 -154.28613 918.0465 371.93124 -291.76804 744.6149 369.9592 -341.6788 854.49207 335.81146 -434.24097 808.82306 334.52142 -484.84964 839.1794 327.01242 -468.63132 823.6012 324.7495 -513.5847 834.7509 319.67343 -429.38733 827.17676 316.95746 -485.42407 837.5985 325.78357 -421.87448 823.92145 323.62485 -474.27902 849.1291 431.86313 14.065119 786.27435 434.3801 -14.039665 901.5162 504.22726 -285.68143 753.0117 516.4555 -325.43054 900.2776 612.41364 -103.27281 749.4082 616.55884 -103.21573 890.6215 630.705 -91.77377 753.87146 631.36127 -89.53262 928.9048 645.3099 -226.91835 737.8427 652.67615 -241.70634
404 Screenshot_2021-02-11 at 15.34.24.png squats_down 538.26196 320.55453 -392.95197 543.7058 309.8381 -372.53458 548.2734 309.66495 -372.47644 552.82025 309.41577 -372.39807 530.62115 310.4713 -372.51028 525.8705 310.57324 -372.37323 521.10474 310.77423 -372.34512 558.1177 313.71185 -247.48586 514.5392 315.6798 -249.77536 546.4495 331.2036 -347.03238 529.9471 331.7353 -347.38336 584.2746 364.47577 -186.31403 484.24008 364.82837 -182.6192 593.9251 441.1118 -390.43387 478.71283 437.6437 -375.01666 558.2197 387.80453 -608.3814 516.4371 389.61972 -588.9229 547.54626 371.13968 -651.68616 525.9054 375.92975 -628.3759 552.9536 357.76404 -620.92834 522.5252 365.7213 -600.2982 551.5256 364.4041 -600.1159 524.1744 371.3841 -580.2833 561.6267 467.30566 1.480431 501.24194 468.92984 -1.2150388 619.42487 485.0215 -353.64502 460.0464 492.88696 -360.72702 595.78094 579.9658 -146.64511 467.6618 583.2109 -160.10078 584.10016 590.10767 -132.57681 473.72598 595.7215 -147.2152 607.32605 625.1671 -270.57364 459.2848 621.4825 -290.01752
405 frame__x0BK_DnHsso__0002186.jpg squats_down 860.7588 506.3556 -148.37886 877.3328 491.3814 -158.92209 883.565 492.49118 -158.71646 889.85626 493.48767 -158.61322 866.78015 488.68033 -107.447014 865.281 487.22275 -107.33133 863.7701 486.07675 -107.5486 916.70337 504.66074 -163.92262 881.5736 494.0054 62.84079 879.6279 530.4302 -151.37749 864.98596 526.3771 -86.183876 980.6717 593.42456 -242.90494 875.35736 603.8566 160.6699 908.27637 734.35315 -188.18407 784.4245 726.3524 -143.58752 876.18243 653.4237 20.51375 835.3482 639.2058 -573.4053 862.9563 634.7457 33.87028 835.11633 620.8512 -616.2339 884.9917 623.3936 20.83757 864.0354 604.0852 -553.1749 891.88275 633.1163 28.479092 869.924 613.72784 -557.7674 1067.9567 781.8902 -118.76588 987.97064 786.32166 119.02928 1036.2638 790.109 -811.2069 843.40906 777.60706 -190.84183 1095.2104 979.8237 -655.2418 928.8224 933.67535 -38.28518 1112.8151 1007.62976 -650.00073 963.77094 956.9489 -27.402267 1048.032 1040.8033 -895.8881 858.9418 995.66376 -157.6118
406 Screenshot_2021-02-11 at 15.43.05.png squats_down 632.25745 255.80832 -51.753716 626.3196 247.92802 -89.4978 621.65204 248.53784 -89.17447 617.1467 249.29385 -89.37727 638.54803 248.36047 -88.44962 642.6248 248.49606 -88.24471 646.7609 248.97302 -88.209366 608.5018 261.88922 -179.58832 651.4261 261.08997 -174.5425 624.93646 268.502 -74.385544 637.3701 267.9433 -72.70574 559.8993 306.75485 -150.00491 695.32715 311.52332 -147.5779 539.95013 206.98071 -96.69597 722.327 209.37714 -119.45145 535.05646 99.8226 -142.02562 737.1765 111.24388 -201.82178 516.68756 74.544945 -177.868 750.0995 89.090675 -255.06606 538.0293 69.06783 -192.51797 733.1623 82.562996 -260.8166 552.079 81.04164 -150.32632 722.56885 91.44553 -209.32558 566.9564 536.93396 7.1928425 654.867 539.5981 -6.4051876 529.2178 546.50995 207.74974 750.6134 528.093 123.96171 509.71066 646.50836 313.11166 720.22577 637.84424 175.21132 512.0157 665.7756 325.8725 704.31354 656.2692 182.17697 489.77426 658.53503 335.18723 728.1737 661.0246 216.88533
407 Screenshot_2021-02-11_at_15.38.48.png squats_down 1332.2609 551.61633 -689.54816 1346.4049 531.57544 -628.6201 1356.0269 532.0337 -628.76025 1365.7024 532.3044 -628.6559 1319.0818 531.2983 -631.45557 1309.3679 530.9625 -631.2868 1299.6367 530.8874 -631.1128 1378.7408 546.9511 -344.50745 1287.3998 544.6068 -360.11847 1349.2644 579.13574 -591.27716 1314.1238 577.94617 -595.2392 1438.5812 668.48846 -227.39133 1216.4176 661.9713 -286.5521 1520.1575 817.32135 -712.5775 1125.6099 817.7033 -816.49316 1417.0387 690.64954 -1030.9269 1244.3887 694.3716 -1226.9685 1394.8512 646.2403 -1082.3818 1273.719 658.9547 -1275.1691 1392.9545 631.3846 -966.4742 1277.4026 637.44434 -1178.31 1389.2743 651.965 -988.6136 1277.4257 658.4597 -1185.809 1384.2556 891.969 23.92286 1251.8988 892.2771 -23.023926 1492.4088 885.99603 -867.23535 1187.523 890.4091 -994.29456 1453.4208 1102.2677 -403.4084 1196.9966 1112.6655 -550.8156 1427.006 1139.7712 -373.8373 1211.7736 1146.6411 -523.8041 1518.3625 1172.4054 -679.1037 1176.3813 1188.5226 -863.51135
408 frame__mGvzVjuY8SY__0001209.jpg squats_down 892.9453 489.82913 -684.51874 909.9114 465.9719 -674.89984 918.91504 465.22083 -674.8249 927.88434 464.41483 -674.86926 890.3401 467.6465 -631.8003 884.712 467.57147 -631.42474 879.20386 467.7427 -631.03357 955.4876 470.63425 -552.254 892.9074 473.60797 -365.1737 917.4844 508.995 -637.51825 890.80743 509.8723 -583.7513 1027.6913 557.4596 -557.3788 888.9436 564.28033 -185.54337 980.1759 713.0089 -685.4696 793.30096 723.55994 -554.57776 885.01843 595.2842 -713.87396 829.5971 591.3409 -1042.1327 854.56287 567.4296 -758.81903 823.51196 559.0087 -1111.8877 884.3595 547.8855 -754.31445 852.12805 537.5885 -1035.243 899.6383 555.9954 -703.8778 862.48114 551.4516 -1023.16327 1123.8077 745.3576 -123.18399 1037.8148 740.1275 124.00493 1005.2947 799.9735 -847.28577 836.9447 775.1537 -212.86845 1103.927 979.0198 -473.14233 894.5967 939.66565 181.75732 1136.9448 1007.12805 -453.34683 929.4204 967.906 212.81184 1051.4369 1052.2758 -722.0988 798.1291 1011.08484 70.97562
409 frame__J_8p7qnpUe8__0005093.jpg squats_down 843.25275 491.49304 -288.6453 859.90546 475.87958 -327.6941 864.6552 476.16803 -327.67572 869.35535 476.47626 -327.66202 858.8821 476.19397 -262.23685 861.6975 476.4943 -262.10425 864.9074 476.93225 -262.02994 901.5118 485.1646 -382.42078 895.21625 486.14368 -79.93819 860.6012 513.4312 -313.774 857.83167 513.6175 -225.40984 946.2438 604.67035 -469.7456 925.3324 582.67224 138.93208 835.8736 713.3335 -409.77158 827.57446 687.29016 243.03566 781.6875 598.8528 -140.64984 779.3454 606.34265 224.26958 760.0646 561.9003 -175.24734 761.7371 571.44354 260.80972 785.4174 553.8219 -201.93391 782.51746 566.03 277.27145 798.30817 569.1662 -143.86577 793.0504 583.42786 228.21362 1159.0828 718.0387 -207.94034 1124.0947 702.4871 208.47974 966.9978 758.2924 -404.613 939.13336 740.3397 592.15063 1043.4215 976.65546 -465.1134 1006.1342 899.8839 857.7388 1081.39 1019.6854 -475.39197 1041.3899 931.5818 886.8766 945.15955 1020.94165 -568.9986 921.52814 951.3849 880.40826
410 frame__26X9x2ta4Dw__0005706.jpg squats_down 924.0094 495.93832 -261.64343 935.96497 478.4026 -244.3842 943.65326 477.28806 -244.14757 951.43854 476.1574 -244.02377 917.4124 481.9852 -225.03156 910.856 482.91193 -224.95029 904.3467 484.07812 -224.88397 971.2305 486.06512 -106.39194 909.87134 495.46527 -24.795267 945.32635 512.29706 -208.92429 918.8567 515.8181 -185.53537 991.9765 554.0873 -226.27335 948.6914 565.3212 203.84427 896.1498 584.87445 -227.90369 859.9108 598.93787 126.14598 863.1668 567.3672 20.977386 853.9915 578.2141 -140.20673 858.28986 559.26526 9.682695 844.70557 578.2215 -175.16542 861.9617 563.38086 1.5582509 860.28986 569.89185 -178.93875 869.00366 572.3504 22.668987 863.58624 577.4454 -150.73001 1055.167 783.83655 -144.71283 1020.4719 773.3725 144.60095 922.5524 785.01154 -357.01825 881.392 766.28204 24.590538 995.3715 958.2809 -283.71222 954.87866 917.1709 30.9321 1034.2616 988.3853 -275.4511 989.78735 939.903 30.165638 923.6113 1009.4722 -337.4285 900.7876 968.9808 1.3568829
411 frame__8ghtQpeWov8__0011734.jpg squats_down 985.2182 495.50763 -885.15155 992.0216 475.48016 -850.1677 998.87146 474.4895 -850.149 1005.90753 473.3969 -849.8683 970.9412 477.99753 -862.72125 962.9313 478.5954 -862.6547 954.891 479.30887 -862.6422 1012.0667 481.21204 -618.121 941.04486 487.9721 -671.9508 996.913 513.30084 -797.87427 970.4647 516.3297 -812.1931 1053.331 554.1555 -446.42657 887.26025 563.468 -552.5352 1158.0759 637.5494 -683.7308 796.40015 661.8377 -700.48047 1108.0012 685.77747 -1094.0748 788.365 747.94965 -905.13745 1105.9484 710.4741 -1190.9849 776.5528 779.0369 -980.9919 1075.3293 697.2056 -1185.9348 805.9882 772.1964 -996.503 1072.1959 698.7059 -1103.6499 811.736 764.85364 -913.6002 993.13214 719.06067 32.25701 895.1149 726.1727 -31.695177 1127.0298 721.0405 -384.73755 820.1146 751.954 -641.9093 1094.3977 872.33026 -22.531837 825.477 916.22864 -245.3427 1067.8928 902.27484 1.8797855 835.64825 943.5862 -220.46939 1160.3018 929.555 -181.27145 806.752 975.3414 -460.5398
412 Screenshot_2021-02-11 at 15.25.22.png squats_down 590.5596 335.7018 -108.91583 593.2295 327.25012 -89.45054 596.6883 326.75003 -89.37893 600.23645 326.21887 -89.30544 582.4426 329.23254 -92.69146 578.39014 329.90326 -92.704544 574.3523 330.71326 -92.79763 603.9514 332.35324 14.35345 567.7409 338.53992 1.3168985 597.41437 346.46176 -71.4715 583.9021 348.64902 -74.94024 627.85175 375.64996 -1.3850251 546.56537 377.54648 -25.250404 663.7974 376.628 -275.89273 508.2973 378.99277 -302.73953 659.1339 381.4802 -526.4477 523.8935 374.77274 -546.8491 665.09595 387.7586 -574.72546 522.7699 380.1761 -577.49567 651.9383 388.146 -561.64185 535.97504 380.78766 -568.8704 647.93445 391.30392 -529.0609 538.54724 384.30588 -546.11755 611.6646 497.8878 4.3701005 561.79834 495.225 -4.02319 666.16724 480.23868 -276.46548 505.88855 465.56766 -288.13104 632.4819 578.18945 -170.08884 534.5492 565.2696 -186.94052 616.672 595.2995 -166.90114 549.6337 581.61084 -179.02466 656.32935 608.9041 -277.31427 513.71857 598.2882 -272.53998
413 frame__cTTtZM2I8Ro__0003534.jpg squats_down 891.09283 545.0077 -225.62822 900.4771 531.25793 -266.51178 903.0323 531.40735 -266.38657 905.66187 531.5187 -266.38773 902.66455 530.2985 -205.08986 905.82184 530.40216 -205.1287 909.40283 530.6599 -205.13322 927.899 538.77783 -358.74557 932.55524 538.64185 -80.3994 901.1371 561.7352 -256.44006 902.744 561.64606 -174.60585 955.3254 606.7809 -451.94156 968.89215 598.3234 91.1241 829.33704 634.3023 -618.9359 865.21844 635.8965 109.94727 702.0955 604.9425 -605.5706 745.9142 604.50653 -88.64542 668.46136 588.27954 -700.6231 722.84216 574.33887 -77.707214 674.24115 575.384 -649.5592 712.32794 581.3472 -157.36757 685.96326 584.88116 -593.0659 719.19745 594.18353 -128.08742 1132.3716 756.8888 -190.89627 1125.9897 738.72174 191.67197 994.7873 739.7088 -257.1322 953.92004 714.21277 347.6969 1045.3394 913.1581 -63.20214 1022.58856 869.7801 602.1852 1068.5214 943.8634 -51.547634 1051.2622 894.4499 624.5274 969.2735 937.075 -108.98924 955.7121 905.14795 650.46875
414 frame__VusCUj61wDA__0003802.jpg squats_down 908.16754 441.1526 -748.0093 918.66345 425.2144 -737.58514 925.35913 424.91278 -737.5062 932.0 424.63235 -737.5791 902.3738 426.1893 -707.79694 896.9321 426.0179 -707.491 891.6807 425.94363 -706.9701 947.4315 428.6556 -625.5524 895.9573 429.59647 -498.3537 924.7212 454.68903 -703.238 902.4149 455.52438 -667.08374 998.947 489.17917 -614.47144 892.3036 490.8797 -316.43826 997.3352 622.6329 -754.40564 884.1362 615.05457 -572.1472 894.6705 557.25165 -888.0126 873.3799 551.8473 -1018.39886 859.7702 544.82776 -942.69885 864.3457 537.13586 -1079.1621 876.25116 517.254 -940.3047 873.7566 513.43976 -1054.9518 890.5137 516.9832 -885.31146 879.33997 519.49554 -1018.91486 1086.5012 609.45734 -100.744675 1016.9564 602.4641 101.86813 1049.621 739.1377 -629.5203 885.3969 707.29865 -34.701546 1113.1875 850.6462 -364.7444 885.42755 817.37085 266.9538 1132.5719 866.941 -349.62183 899.12787 836.8315 291.2946 1091.7484 901.1289 -560.39197 830.5193 865.2706 179.6917
415 frame__XJcoOdKlYqk__0010324.jpg squats_down 2596.3877 997.33655 -1829.0626 2615.3213 960.1097 -1779.758 2628.6282 959.877 -1779.7601 2642.1414 959.5156 -1779.7944 2574.1025 959.55835 -1796.8954 2559.147 958.7439 -1796.8354 2544.1626 958.132 -1796.8715 2650.5964 965.5721 -1375.1661 2517.308 963.07166 -1448.668 2613.1694 1029.1715 -1666.8024 2566.6167 1027.5189 -1686.6727 2719.0151 1104.0164 -984.4598 2402.58 1108.7416 -1125.472 2795.8193 1354.13 -1527.2643 2385.9172 1374.3054 -1642.5299 2686.9702 1178.1404 -2292.3945 2560.2346 1186.3146 -2223.5676 2657.782 1126.4412 -2429.7288 2607.2437 1128.9958 -2340.0957 2658.5051 1086.541 -2339.4197 2601.5542 1091.8729 -2249.0312 2654.4517 1111.4122 -2270.4692 2601.8037 1119.0647 -2194.4917 2592.7957 1359.5164 42.748055 2409.5586 1356.8365 -43.10127 2739.19 1519.9615 -933.0137 2318.032 1532.147 -1008.2288 2649.3384 1793.0575 -243.9727 2316.4524 1810.0677 -360.6229 2605.8264 1839.7289 -194.78247 2326.7268 1858.1053 -319.8063 2712.9424 1914.5802 -545.6629 2288.7236 1922.3973 -740.2425
416 frame__RjnyMfZb00M__0002138.jpg squats_down 1000.82416 575.49817 -292.60123 993.8554 560.2963 -259.99097 994.4822 560.44977 -260.18726 995.3135 560.58655 -260.28363 986.3498 560.58105 -310.76135 981.1593 560.5686 -310.80338 976.10834 560.68475 -311.14844 975.3913 568.7019 -84.31223 948.45953 567.72766 -319.8561 994.19196 592.2513 -227.10826 984.1895 592.10693 -293.7103 984.3954 645.29736 6.5848403 871.0054 654.69244 -353.78546 1021.75256 747.20294 -171.99174 904.66235 802.6451 -539.835 1052.7761 672.74365 -540.37964 992.6387 705.8826 -722.9458 1072.867 655.0496 -593.7743 1016.7239 685.8578 -787.4574 1064.199 640.7569 -599.16736 1000.4743 660.67377 -784.66766 1053.0752 648.31586 -552.85535 994.5235 669.0277 -720.1587 909.30536 824.57043 137.42006 838.3181 843.5465 -136.9681 1050.702 774.4634 51.153294 907.5834 781.13043 -647.8169 997.38385 880.5201 220.80916 888.0319 958.96515 -336.8406 967.4087 898.65955 234.21054 867.62506 986.5788 -311.69888 1049.8599 931.9516 127.502716 939.9404 1011.0275 -496.21555
417 frame__LMEb5jsIokU__0007373.jpg squats_down 1092.3529 465.7778 -90.57695 1084.251 449.91266 -79.68928 1081.8519 449.91528 -79.56976 1079.6259 449.98068 -79.40558 1083.556 450.50964 -137.9289 1080.5894 450.01593 -137.7751 1077.4766 449.8164 -137.68896 1057.7632 460.37738 6.301577 1054.503 459.57062 -251.57802 1079.8396 487.3632 -55.719078 1078.4227 487.34 -128.87073 997.6254 548.087 220.43987 1026.6727 570.7417 -393.57785 1075.7837 650.38196 394.55106 1101.3589 687.4588 -219.74272 1113.4209 617.12244 495.61392 1116.2667 605.2833 199.14207 1133.601 605.0714 538.6198 1125.8177 583.3182 199.73526 1111.177 597.62976 538.2702 1110.4667 572.19806 195.75092 1098.3174 604.48413 493.05313 1101.484 583.65967 211.15201 850.48254 750.124 196.31866 858.4768 759.9509 -195.98642 1046.8662 776.80505 300.0368 1070.5675 755.87445 -138.33965 943.6046 898.51135 276.30734 938.4695 908.1655 36.695396 912.647 915.69745 281.3006 902.7296 933.52924 57.17639 975.7761 947.71716 376.63477 970.30676 960.3378 149.92824
418 Screenshot_2021-02-11 at 15.40.26.png squats_down 589.0234 264.0198 -321.1562 598.24524 250.06671 -308.82974 603.3957 249.5325 -308.8276 608.6348 248.88853 -308.9133 584.1649 251.18388 -304.47916 579.56335 251.27463 -304.52808 574.9328 251.41925 -304.5352 620.1108 252.45126 -198.89156 573.7901 254.75983 -176.58696 600.0989 276.04736 -277.85455 584.1895 277.2711 -271.18088 661.5589 316.43204 -92.06385 547.1798 317.09915 -80.603584 669.8921 428.69122 -157.55493 527.5624 430.13943 -170.37865 616.90344 370.5349 -317.46616 572.3873 378.8719 -371.35205 601.3843 354.05368 -361.1202 587.80176 364.825 -410.23386 604.31415 334.3697 -341.1273 582.9449 345.22186 -399.05545 605.20135 340.7197 -312.45956 584.4531 352.23514 -369.75412 642.4554 455.23608 -3.0491111 570.50214 453.4777 3.2081923 738.4834 505.84094 -279.4857 467.74585 493.25253 -237.84682 721.2794 615.10187 -72.68289 488.46765 615.3226 -77.682236 702.70715 638.3538 -56.438267 508.91144 639.3496 -66.88061 768.2329 641.66547 -182.80132 442.52042 646.3337 -184.58876
419 frame__FsqhUFcjL8k__0016706.jpg squats_down 1097.1498 489.7636 -333.356 1097.485 473.2066 -289.74353 1100.3212 474.48325 -289.60883 1103.3811 475.85468 -289.22153 1084.6625 469.77048 -336.80582 1078.4569 468.03934 -336.6128 1072.1328 466.52542 -336.70282 1093.2576 482.60257 -74.251495 1054.4326 470.46396 -285.82538 1098.433 510.8888 -253.87282 1083.0037 507.11963 -311.10107 1043.5197 557.74805 190.35028 1044.2649 568.1624 -406.29517 1147.7079 645.6744 175.1235 1177.0029 671.5268 -371.0684 1176.9225 558.6718 18.900646 1189.6898 551.8606 -109.57033 1201.9373 531.7715 29.433989 1208.8573 522.526 -140.84528 1174.0801 524.3733 45.136993 1173.5101 515.78546 -156.44022 1164.7462 536.06445 15.687241 1159.8419 530.08813 -105.63687 888.84344 729.3938 201.00046 872.0979 753.25104 -200.53793 1066.6759 770.3742 416.21445 1066.6765 818.1793 -271.7283 983.39685 892.54236 553.9316 997.0999 976.0257 -178.18028 963.0463 915.9886 564.1631 970.97955 1006.865 -174.8685 1038.9983 912.9744 596.7388 1072.2137 1001.444 -199.82217
420 Screenshot_2021-02-11 at 14.47.20.png squats_down 433.40555 269.3609 -82.813255 438.8905 254.7968 -69.26043 443.36142 254.036 -69.04074 447.93765 253.15251 -68.950516 425.90448 256.43002 -69.82172 421.1667 256.42996 -69.68332 416.40973 256.53552 -69.87852 453.72092 251.50754 47.828445 409.42056 255.7693 53.211956 441.32834 277.34863 -35.74601 425.7039 278.8302 -33.887848 480.82428 287.87732 102.3369 382.12915 291.67734 90.48432 527.3247 312.24835 -191.72334 360.25485 324.8621 -171.09877 515.2428 294.16568 -495.0523 379.0497 284.32913 -412.64154 517.8522 285.69458 -553.5055 378.81522 271.5213 -459.4921 507.64508 282.3856 -534.79065 386.57367 269.55634 -435.24768 503.77942 288.88226 -496.60416 391.5057 277.8926 -407.75354 457.27057 412.84662 -2.4336977 389.95938 410.1941 3.2211697 525.35175 375.19675 -431.62277 331.45105 368.92004 -428.8643 506.8972 510.05997 -417.02902 344.61597 529.0608 -455.20224 496.92267 532.1414 -423.20068 356.05243 555.81995 -461.9636 521.83594 535.4259 -577.3516 326.8993 565.2836 -602.7529
421 Screenshot_2021-02-11_at_15.50.12.png squats_down 1256.3136 523.2117 -481.3694 1270.2327 500.47476 -443.75067 1280.0791 500.52322 -443.61392 1289.9557 500.36768 -443.79913 1240.7343 501.87186 -449.75027 1230.2344 502.2668 -449.2918 1219.7623 502.87152 -449.25797 1301.9186 514.4899 -167.21869 1203.8624 517.9622 -201.66545 1273.2976 550.42896 -375.09167 1237.054 550.87714 -385.22873 1360.862 614.401 -27.404387 1137.917 629.68286 -41.656887 1422.1085 723.0734 -282.51758 1118.5543 744.3929 -354.23395 1478.5852 710.8574 -909.94556 1096.8757 698.4101 -1011.0594 1505.9327 719.32465 -1029.3132 1088.1614 701.63184 -1137.0161 1484.5735 700.8876 -1066.647 1097.8898 669.888 -1146.1887 1467.4788 701.2121 -936.9094 1109.2926 673.77655 -1026.7329 1355.2075 871.78955 1.5634444 1216.3254 881.90936 -0.56654894 1473.1381 966.2376 -617.5035 1070.8417 1000.1093 -595.39435 1411.1498 1184.4476 -154.83519 1132.0873 1177.3486 -173.26848 1379.6488 1219.9623 -118.8945 1171.5817 1206.0065 -141.05153 1468.5507 1266.7767 -342.97052 1061.3739 1265.033 -363.76645
422 frame__ku3vgejAZ0g__0000864.jpg squats_down 917.7085 339.51636 -1046.441 928.55664 317.7728 -1021.363 936.23334 316.88513 -1021.39185 943.96344 315.88016 -1021.4761 906.45197 319.65228 -1022.3614 898.72546 319.86536 -1022.13525 890.94305 320.22476 -1022.09265 957.7019 319.28168 -790.67236 882.6714 324.487 -798.9164 933.40063 355.5794 -954.95953 906.927 357.23636 -956.40906 1020.9872 399.53067 -580.3483 834.40564 402.10934 -582.32025 1055.6564 551.98663 -801.3349 762.29315 534.52924 -856.6228 960.12866 510.40396 -1210.1432 843.2261 492.82367 -1294.6732 928.13403 503.36057 -1280.5948 870.4091 487.59363 -1363.1428 931.8522 473.8353 -1250.2761 874.6714 457.67645 -1337.8441 936.0584 478.12146 -1198.4597 873.2262 462.9431 -1285.4047 990.7902 570.4017 7.2499685 884.57153 575.2162 -7.682526 1058.6062 685.9891 -456.40762 825.4927 723.8325 -530.09247 1023.84467 844.24194 -57.505028 873.02124 866.9068 -99.22171 1006.33234 870.3715 -28.342337 893.248 892.4717 -69.38155 1052.3763 904.2953 -241.26918 830.938 920.60956 -288.74783
423 frame__8ghtQpeWov8__0000791.jpg squats_down 1072.8373 484.57135 -589.9622 1072.857 463.04773 -550.02 1077.7705 462.79062 -549.91943 1082.9767 462.6167 -549.7005 1054.3778 462.27798 -587.6894 1045.9591 461.3892 -587.5316 1037.4731 460.64764 -587.57056 1073.9548 465.06946 -325.59348 1012.40546 461.19763 -491.40903 1074.0 502.56528 -506.28638 1051.6316 502.48404 -552.0893 1074.3082 535.46246 -133.81683 943.2231 536.8517 -548.0829 1152.0286 606.7998 -282.14078 939.6936 681.7469 -619.5233 1181.0997 668.1368 -691.757 1044.8485 722.3349 -525.6271 1199.8615 689.22595 -756.8419 1071.2839 735.806 -585.8388 1185.3395 674.6287 -784.0709 1080.7415 712.8497 -569.50653 1171.0122 674.7273 -717.11115 1068.1488 712.21844 -515.7444 926.2519 707.7104 124.48936 845.2156 709.4287 -124.546364 1081.9658 723.034 -124.97342 953.43866 741.29016 -699.5696 981.3786 871.7074 66.01198 875.55273 897.5578 -400.99573 938.7555 896.3154 77.32204 841.8934 916.79376 -382.16217 1042.2034 935.6849 -49.3176 930.21716 965.9882 -598.0759
424 frame__4zBnM_uozXM__0006727.jpg squats_down 963.6898 85.96756 -196.18823 983.4327 65.23298 -222.77805 989.23517 66.12457 -222.54575 995.30585 66.72881 -222.8261 977.9875 64.080765 -171.5235 978.2158 64.25187 -171.64313 978.79236 64.85784 -171.67816 1026.4448 86.37095 -245.55124 1007.2335 81.50751 -11.560344 982.55927 118.04524 -197.45784 971.4053 117.44512 -129.63597 1058.8676 232.20293 -348.25076 1064.3145 227.96394 252.13727 849.5164 355.14032 -413.69058 866.5945 329.80402 355.82776 644.18036 414.59845 -324.22195 670.2111 345.33755 216.4718 591.6414 423.26846 -394.6029 632.71295 322.0703 234.44588 595.72626 400.0337 -350.94708 616.89343 323.83655 152.95012 619.4153 401.29385 -307.5721 631.383 343.6624 179.18266 1297.8654 605.86774 -206.28555 1286.2026 581.24426 206.67369 1024.3082 571.7013 -227.19589 1029.7422 552.2706 341.39536 1114.5037 885.70087 54.259388 1095.3838 853.43005 591.8904 1166.3687 935.2176 80.070145 1139.6487 903.1357 612.83276 1004.17 947.22345 46.042713 988.34735 932.56177 621.95856
425 frame__MG69sFM1UIw__0005616.jpg squats_down 922.065 596.5781 -961.76447 930.6007 578.32776 -937.9278 936.98083 578.2857 -937.87604 943.4159 578.1772 -937.728 911.8943 577.56714 -944.99915 905.03253 576.8493 -944.8267 898.141 576.1811 -944.7939 949.03754 582.4226 -747.55774 886.15674 579.1457 -773.0934 931.003 611.16656 -886.18835 908.74835 610.1898 -892.6424 984.2468 640.2131 -558.57056 840.7277 641.4983 -580.1786 983.2425 772.27844 -749.1403 835.9328 782.9387 -785.3152 947.6495 701.717 -1034.2411 897.6611 700.6357 -1072.9551 939.6025 679.8169 -1092.4404 914.39343 671.25336 -1141.1427 945.31067 657.2147 -1061.5011 910.1496 651.83234 -1096.804 942.3574 664.25867 -1024.7244 913.8384 662.67413 -1059.8617 956.251 729.53986 3.76337 875.47955 734.7981 -3.8350031 1036.7186 784.477 -502.11874 794.9465 812.9223 -506.1565 1088.353 900.486 -122.65555 768.12244 918.8079 -112.96174 1086.5986 920.0675 -93.585236 774.5521 935.1967 -88.78218 1120.414 944.8803 -286.9378 745.1842 970.1576 -295.15356
426 Screenshot_2021-02-11 at 14.24.58.png squats_down 621.14435 265.75598 -635.1445 628.0769 250.14865 -611.9321 633.7781 249.30061 -611.89557 639.60156 248.26099 -611.7568 611.7414 252.39592 -609.235 605.8517 252.97658 -609.1124 599.96643 253.64754 -609.041 649.42377 253.75266 -469.19318 594.3962 260.6132 -454.68344 633.80096 278.82834 -581.9129 612.70795 281.3906 -577.2585 696.7112 318.53632 -370.41113 560.68195 323.8759 -336.76282 776.3006 393.31348 -396.26285 485.17642 399.3404 -363.25528 789.9546 486.58685 -489.97342 482.8528 484.3527 -462.2896 803.5555 512.3906 -535.4169 474.44818 510.7603 -504.8553 781.1296 515.9005 -559.7969 496.41724 509.77948 -530.7519 772.4293 508.82645 -501.85968 504.03934 502.2933 -474.42752 668.39154 459.62473 -4.5466046 593.5282 460.6307 4.6453934 761.9833 511.8147 -374.45468 525.1595 514.50226 -320.50262 750.29987 630.7397 -80.81982 531.4048 630.5217 -43.58037 736.2021 646.1034 -56.6297 546.32275 648.19214 -22.48592 782.885 685.2262 -190.81052 495.89285 682.31305 -163.82738
427 frame__NsCiNjVEzTM__0009996.jpg squats_down 1180.4945 315.47253 -6.5863533 1173.9401 293.51675 -5.037045 1169.892 291.7081 -4.9328504 1165.9252 290.05966 -5.129271 1178.402 296.33224 -66.613106 1177.6014 295.90778 -66.453735 1176.5557 295.77454 -66.464905 1143.434 288.8557 62.51004 1155.8413 294.41815 -228.47981 1164.4614 329.0767 27.829866 1170.0448 332.52228 -54.019615 1059.9241 360.24774 330.9012 1122.3414 374.62637 -381.5934 1190.8843 390.71506 709.99615 1283.1501 414.12012 -319.06363 1218.4503 354.99667 979.3189 1225.0974 339.1756 157.8862 1238.1475 347.6312 1042.2043 1211.8608 318.08548 173.33366 1209.1965 348.08936 1031.7307 1200.2412 331.0134 172.65608 1197.9664 353.93124 981.9363 1198.806 339.92896 175.97267 917.34973 617.1081 237.66264 954.91284 627.70166 -238.00156 1038.9086 694.69995 777.3525 1191.6799 710.65765 -152.8248 981.3281 834.6734 1021.77295 1103.9629 909.77045 -125.99698 952.48865 859.47046 1051.243 1056.8005 944.3768 -119.721306 1036.6226 865.6262 1174.653 1188.3785 952.04266 -39.673065
428 frame__8sbJpaXfYwM__0011892.jpg squats_down 954.63916 506.05252 -164.49495 959.2512 482.2601 -134.02457 962.6858 482.4734 -134.1046 966.2668 482.6882 -134.11879 946.05786 479.657 -181.47743 939.1715 477.25497 -181.39859 932.27295 474.9761 -181.69427 951.07837 481.96033 37.674297 908.4885 472.88864 -174.08846 949.1747 524.0728 -97.88185 930.9753 520.0396 -156.94716 890.97015 551.18945 268.24286 864.4551 567.5921 -276.91522 933.4789 665.1367 284.0744 914.78107 730.06824 -189.25356 999.1031 596.5568 66.87644 996.8603 623.9068 108.536835 1018.4769 575.5098 51.677597 1022.93005 596.016 97.29426 1016.30194 556.82117 38.236294 1013.15356 566.0819 96.10374 1007.89056 570.44 54.03483 1002.19 581.18085 118.09116 776.9033 763.1699 200.36725 746.7786 782.7025 -200.42253 972.52386 714.21875 339.86276 966.8178 765.3271 -437.273 899.9934 868.4852 397.0954 850.9173 966.2164 -473.74518 859.5552 899.88275 402.15656 795.24146 996.90234 -475.87604 977.4897 908.735 399.7203 938.59674 1037.368 -531.25806
429 Screenshot_2021-02-11 at 15.05.25.png squats_down 551.467 210.4827 -413.1437 560.5717 197.04532 -385.2728 566.5038 196.55356 -385.25565 572.46796 195.92213 -385.32666 543.38727 199.33908 -383.98425 537.6261 200.07991 -383.88486 531.85364 200.92345 -383.8114 582.8748 203.17303 -230.60417 527.0734 209.08502 -219.61148 564.1195 226.36922 -356.03482 544.10065 228.44215 -353.02258 633.17114 282.10535 -128.78049 493.91473 292.50626 -124.9969 659.64197 404.2255 -281.11136 484.82385 412.05487 -268.89474 595.8296 346.27228 -555.3054 537.6284 351.39572 -539.51587 575.2754 334.83154 -613.68304 551.83093 335.96063 -593.9713 578.4625 310.00125 -592.76685 547.4654 316.81683 -577.96796 581.0589 315.38284 -551.94696 548.6448 324.07816 -537.6485 621.25586 454.92804 -5.7344723 532.48315 461.57346 5.994367 755.3999 488.17947 -324.5247 407.1693 505.363 -316.9156 782.83325 642.5492 -99.75598 392.39468 644.88574 -94.39934 769.6866 672.05493 -82.41911 406.6371 672.0448 -75.949715 836.3435 679.2333 -225.17467 338.11453 679.4642 -198.69963
430 frame__zbt1g9WX6bA__0009416.jpg squats_down 1845.2277 1100.7185 -1328.8918 1867.4148 1071.7982 -1259.6674 1880.0458 1072.9076 -1259.6442 1892.7346 1073.7439 -1259.4264 1830.1288 1069.4286 -1261.1898 1817.4253 1068.3745 -1260.854 1804.6378 1067.5409 -1260.938 1909.6586 1089.3142 -847.01025 1786.9071 1079.4332 -858.6364 1863.7971 1137.5183 -1175.6277 1820.4777 1133.9491 -1178.8599 1988.1956 1264.1593 -563.7739 1682.217 1238.5764 -603.24286 1984.7848 1528.9954 -1022.27466 1634.3458 1492.8215 -1098.76 1891.2672 1385.6077 -1674.6154 1766.9667 1396.5394 -1755.2023 1867.2762 1340.6594 -1834.6755 1798.9587 1363.7631 -1903.3257 1884.1938 1297.545 -1746.7054 1794.2207 1326.3826 -1839.0873 1877.5647 1311.9087 -1653.5109 1800.8302 1341.4407 -1738.9734 1922.8374 1548.8947 10.282632 1745.7234 1540.9946 -9.152322 2118.2944 1571.8514 -1175.2207 1593.0283 1541.8368 -1249.6526 2073.4636 1876.4667 -397.77325 1549.8104 1858.1122 -465.16187 2035.9877 1933.7361 -347.49518 1571.5194 1920.1376 -417.23764 2155.3599 1968.7831 -810.2776 1455.4697 1939.9423 -895.7947
431 Screenshot_2021-02-11 at 15.16.55.png squats_down 482.88248 350.64536 -538.0018 490.46887 335.9975 -519.1931 496.23584 335.39313 -519.1396 502.00983 334.73694 -519.0034 475.81375 337.08078 -515.2368 470.539 336.9884 -515.1725 465.23065 336.97903 -515.0297 513.6578 337.1624 -391.43558 462.12042 340.03616 -366.9986 496.2124 360.21274 -490.3198 476.79025 361.22415 -482.70352 554.5507 379.70865 -285.03662 440.93063 380.662 -282.83334 575.75183 461.1904 -457.6216 406.81815 462.1137 -482.66202 508.64923 407.3151 -602.6878 452.42728 406.18652 -655.5373 490.056 394.8169 -629.10425 466.19873 391.85114 -678.3454 489.76776 381.17828 -583.9929 465.83997 378.03076 -645.89545 492.4107 388.59036 -583.0045 467.12323 386.64297 -642.835 528.7891 481.22766 -2.3954697 464.9971 482.554 2.52048 563.6848 492.30508 -403.55063 443.73846 518.26874 -364.84366 541.5402 594.882 -182.03577 463.98038 600.39233 -126.087814 535.0108 604.1467 -163.85402 470.5374 606.6262 -106.34467 535.057 651.99567 -318.73587 461.7658 653.92444 -247.90967
432 frame__4e8N8lz6lio__0003708.jpg squats_down 1334.1996 597.2565 -43.827114 1329.3942 576.49255 -21.148804 1326.104 575.11816 -21.129618 1322.9314 573.7969 -21.246187 1332.3098 576.61005 -76.61685 1330.9991 574.97144 -76.46584 1329.7781 573.5767 -76.38647 1299.4976 568.34845 72.01807 1308.4463 567.65106 -178.02417 1318.258 607.3364 -7.9368668 1321.083 606.9088 -78.68474 1236.8445 626.94543 205.91196 1273.1533 626.38696 -332.3426 1356.6611 691.29565 217.22923 1381.6337 697.9949 -468.5342 1471.6837 729.39374 28.829258 1484.6892 719.932 -427.02502 1499.571 727.4214 27.261696 1514.9321 719.7984 -490.45874 1497.3676 722.90875 -27.096403 1509.3021 708.3641 -453.36047 1489.2931 728.06525 0.5649997 1496.738 710.6079 -411.86053 1113.6655 814.69586 164.57141 1125.9277 825.3506 -164.33165 1241.979 717.0878 366.00473 1280.6737 720.0008 -198.77042 1207.4541 859.52936 638.7261 1221.8892 884.4169 23.305841 1195.5496 878.1122 668.74347 1201.7783 909.46954 43.720028 1241.6584 905.0763 776.0652 1262.447 917.8209 102.23629
433 frame__R6Bbis0z-o4__0005000.jpg squats_down 873.02325 520.7624 -446.05682 881.232 505.37775 -456.63605 886.0947 503.9134 -456.62006 891.2487 502.4242 -456.55585 872.6206 509.43427 -421.77124 870.6513 510.41916 -421.67255 868.5858 511.53708 -421.65015 916.12726 503.80853 -420.63892 885.13434 515.2394 -251.54535 890.8909 532.044 -429.06854 880.6644 537.1394 -379.2031 995.5277 571.3817 -387.8557 888.9486 562.09357 -121.774734 992.92523 674.607 -523.2693 862.73596 649.7282 -235.16669 889.9838 627.6518 -650.9361 837.38 624.4646 -585.5102 856.7009 626.96204 -690.01 827.7635 621.3715 -641.6206 859.87195 598.47845 -681.5714 833.0087 606.0825 -657.3498 870.9409 602.9184 -642.6466 842.53546 610.432 -600.53455 967.96454 717.7386 -79.33633 902.53876 710.77484 79.732544 1015.8587 742.45905 -523.69275 888.3843 731.3495 78.28158 1038.1641 872.9645 -465.6412 936.9054 790.2436 427.40665 1042.784 901.08655 -461.0257 952.06305 804.6721 463.03592 1025.8986 903.5315 -638.891 924.16473 814.61127 364.9761
434 frame__dxA21IeBB8o__0001291.jpg squats_down 1808.3934 1120.7311 -2057.0894 1830.7594 1081.8647 -1997.0555 1844.6312 1082.672 -1997.2585 1858.474 1083.2361 -1996.785 1790.3583 1078.3644 -2001.28 1775.9519 1076.1223 -2000.8175 1761.4073 1074.0375 -2000.579 1873.3438 1087.0198 -1559.6458 1739.6643 1074.8611 -1573.3698 1826.6699 1152.9196 -1888.3254 1780.2708 1148.3053 -1891.7952 1957.2986 1223.8628 -1251.8137 1628.1053 1212.4268 -1278.0079 1968.0673 1488.5378 -1866.6641 1616.3678 1479.445 -1838.9695 1850.1609 1301.8229 -2422.6707 1756.628 1306.4999 -2297.1245 1829.2457 1232.5348 -2562.7922 1788.5458 1239.8572 -2411.756 1840.0804 1200.9209 -2436.8425 1772.7188 1210.5336 -2318.341 1830.4857 1224.5911 -2379.6345 1780.235 1234.7815 -2265.2463 1892.029 1495.7562 11.76943 1697.0132 1491.7699 -11.303694 2098.211 1524.7804 -1121.8102 1527.1685 1525.3956 -1161.7074 2090.9805 1805.0243 -278.24564 1480.2933 1804.2084 -318.65585 2066.4185 1857.9185 -217.30112 1498.1923 1860.9731 -263.9747 2150.541 1902.2018 -658.64746 1400.0043 1893.8359 -736.75
435 Screenshot_2021-02-11_at_15.47.07.png squats_down 1239.8582 637.4296 -1338.5043 1252.1573 611.51074 -1292.7896 1261.7687 610.8391 -1292.6888 1271.3193 609.9992 -1292.4857 1223.2429 614.26874 -1297.6354 1213.1115 614.95233 -1297.2744 1202.9396 615.8611 -1297.369 1280.2653 616.4197 -994.4226 1187.2023 624.0611 -1012.20734 1255.5319 661.5787 -1224.3759 1222.7494 663.4551 -1229.7567 1346.5771 714.7051 -779.60767 1118.2108 740.7695 -829.82 1407.6112 870.45166 -1271.3291 1086.3308 896.5119 -1358.4352 1294.4417 783.7126 -1823.9824 1200.8563 786.4627 -1835.2365 1258.7898 763.38684 -1914.4198 1221.6525 753.2563 -1924.8467 1263.6569 731.29285 -1841.5891 1227.2161 736.60565 -1837.657 1267.0391 745.6803 -1799.1729 1230.979 752.12665 -1803.392 1309.8888 892.3249 -0.8059434 1177.9979 907.0103 0.7706969 1389.5565 973.8944 -842.2989 1096.9493 1002.14954 -848.6132 1371.4312 1199.2964 -455.93848 1092.6914 1206.1554 -437.56888 1355.3966 1236.2338 -435.6572 1105.2102 1240.9359 -417.8185 1403.8441 1275.7358 -771.06006 1060.9878 1279.3132 -756.5516
436 Screenshot_2021-02-11 at 14.42.01.png squats_down 475.03043 244.11755 -430.4767 482.32745 231.77994 -410.79333 487.64865 231.83902 -410.66504 492.95468 231.83333 -410.47043 468.13812 231.36963 -410.92838 462.8792 230.9124 -410.8179 457.591 230.55804 -410.62387 499.2766 236.96376 -275.47983 450.91095 235.50745 -271.71613 484.16864 255.27051 -380.04803 465.1839 254.59227 -378.55408 521.15247 283.1476 -176.95914 421.47583 285.57782 -189.20439 520.6509 359.6805 -356.55975 425.00156 368.9007 -380.77075 523.9158 294.49323 -594.5641 434.8983 304.8449 -615.8056 526.8332 274.28177 -645.4522 434.13077 283.90784 -661.11816 530.92847 264.75708 -628.2388 430.45316 273.8983 -637.58795 525.6997 271.61307 -594.143 435.05786 281.6354 -612.08545 495.90482 379.50504 6.6395082 438.61804 383.70038 -6.3378115 523.0494 404.03317 -403.46252 435.38977 426.98892 -361.49646 517.2859 512.9815 -177.87894 432.5991 525.2906 -146.82396 511.70572 519.86566 -160.6008 435.8191 533.07745 -132.09816 514.7438 578.36523 -308.08762 430.86 585.22015 -270.08426
437 frame__8ghtQpeWov8__0014360.jpg squats_down 1165.2162 575.99786 -84.055435 1168.7113 557.5744 -60.407074 1166.8846 554.9232 -60.228195 1165.235 552.48584 -60.24122 1167.9094 561.5214 -112.10029 1165.8309 561.19354 -112.04128 1163.6216 561.2056 -112.20929 1145.4648 555.1477 31.484549 1142.7036 563.94604 -202.85112 1147.9595 589.80554 -47.355164 1146.6339 593.22864 -114.03752 1072.2517 603.5532 212.2573 1084.4188 630.74884 -369.73126 1222.3951 633.7856 276.65097 1232.7147 661.05994 -574.93427 1323.052 600.2162 74.97082 1358.6392 613.20245 -545.4284 1345.6572 577.61005 81.12425 1398.3257 598.947 -607.5902 1345.8132 572.10114 20.57316 1380.4656 577.7437 -575.77423 1339.5763 588.9489 42.206615 1362.6405 581.99426 -531.53253 852.77185 772.30426 194.9143 850.5247 790.73663 -194.3318 1070.6006 766.921 317.1814 1077.2096 755.72437 -236.93677 955.0558 892.0233 626.7751 948.0571 899.8996 92.60584 927.861 910.00476 658.6083 914.5365 917.4871 125.031364 968.2584 927.1799 724.1157 971.9531 941.8207 164.32198
438 frame__NTng60w9N7w__0001999.jpg squats_down 832.95044 510.34985 -658.67645 840.4175 488.6741 -666.81995 846.7012 486.3586 -666.7321 852.97437 484.01462 -666.7561 826.6078 492.3442 -630.9161 822.3975 492.6548 -630.55396 818.26086 493.20422 -630.2283 872.6629 476.16153 -595.2278 828.2643 487.79074 -432.09552 852.0437 515.815 -623.98785 834.8084 519.46655 -576.57764 946.9878 510.59012 -515.6764 813.02155 523.4012 -284.41364 954.38904 633.55255 -694.81506 753.03906 629.12067 -569.47375 848.9993 537.83966 -839.31494 768.06665 517.06903 -915.7377 818.2875 519.6268 -878.2523 768.131 488.72256 -956.96173 834.5761 492.72412 -868.7632 781.3322 473.65286 -903.5462 846.4191 498.10468 -831.916 788.1932 485.91983 -901.35876 1000.5967 655.12714 -85.02514 920.9355 656.77045 85.394 989.1839 695.59283 -661.9648 786.6933 681.3213 -134.841 1019.2324 850.4759 -387.16647 798.0661 809.7276 92.39041 1030.0088 875.6548 -371.57843 818.09534 835.0469 108.18826 985.9455 903.6734 -597.9139 725.3107 855.21454 -17.897259
439 Screenshot_2021-02-11_at_15.58.03.png squats_down 1361.8796 473.46875 -375.3339 1374.3231 449.1617 -316.57147 1384.7694 447.88248 -315.8559 1395.2555 446.59903 -316.48212 1343.2909 454.77365 -321.02866 1332.3907 456.9141 -320.71573 1321.4606 459.39166 -320.9038 1413.8383 465.97818 -52.604584 1312.8568 482.50134 -68.22486 1388.4462 502.9603 -285.10876 1347.7815 509.44077 -289.4545 1469.4465 597.1859 -124.44368 1277.1418 610.84955 -83.898705 1492.9001 685.8279 -680.08295 1214.4733 656.8016 -648.2171 1500.4856 621.3787 -1145.1521 1181.1908 573.1774 -1208.1428 1532.693 596.63464 -1253.0737 1151.5731 552.6132 -1305.4116 1506.4418 597.9284 -1212.7742 1165.504 542.0255 -1307.7223 1487.1431 609.88074 -1151.3972 1184.9539 554.7157 -1223.4286 1445.2098 895.24115 -2.114866 1323.9225 894.17664 1.8795991 1521.5023 856.61896 -759.0601 1220.2384 894.44965 -707.3673 1476.7522 1081.0104 -361.7964 1262.4078 1081.2269 -322.59644 1458.3262 1113.5126 -336.27628 1287.2488 1097.767 -297.22537 1507.9303 1170.949 -593.83795 1226.054 1187.5011 -557.104
440 frame__mGvzVjuY8SY__0009296.jpg squats_down 955.8465 545.56274 -800.1119 968.5429 522.5263 -774.9392 976.169 522.3722 -774.96515 983.84503 522.0894 -774.87384 946.42914 521.8105 -774.6644 938.778 520.8642 -774.51196 931.0831 519.99286 -774.5332 993.9871 522.40967 -572.9846 921.423 519.1448 -569.27075 967.83093 561.78973 -721.1936 942.4504 560.4563 -719.7147 1045.211 603.1679 -419.7964 868.12573 601.1622 -415.3198 1058.4955 756.44403 -681.1902 847.49835 750.4445 -674.351 988.20374 667.3198 -1005.7458 915.4862 665.76056 -983.4422 966.6526 639.0297 -1075.1357 934.042 637.50037 -1048.3329 976.28265 613.6004 -1018.9738 926.54395 617.06726 -998.1188 975.84827 624.69006 -987.067 931.017 628.90326 -967.27124 1009.76245 780.3525 -5.308931 907.39703 779.73804 5.7851634 1096.817 831.1055 -614.8232 824.0613 821.05457 -595.51697 1100.057 994.91113 -237.86589 809.1381 983.99524 -219.14003 1091.9221 1021.57404 -211.6201 819.2072 1010.52795 -195.47298 1117.1611 1049.3569 -460.19162 777.3884 1040.3717 -443.5574
441 frame__exXWoE0ZUME__0003930.jpg squats_down 977.95465 441.25784 -948.1458 988.5711 423.73822 -915.9898 995.1632 423.54172 -916.10034 1001.8658 423.1841 -916.13525 968.9494 424.2553 -918.5033 962.16956 424.32697 -918.3597 955.3719 424.5095 -918.4895 1011.9183 430.05463 -692.22046 947.8194 431.22546 -710.784 989.7094 460.29425 -862.54297 966.7576 460.16013 -867.5428 1064.5006 521.71765 -473.54077 894.7229 522.96277 -504.8235 1095.5901 643.32825 -596.8056 856.867 652.14844 -634.98035 1043.9137 630.21277 -973.1118 938.37854 647.59296 -988.145 1030.045 629.2856 -1066.5627 970.624 651.9501 -1069.2384 1022.1681 606.3078 -1057.208 969.5183 622.99854 -1065.5914 1021.5942 605.63464 -978.32654 964.3095 622.6896 -988.2207 1022.4163 654.50134 8.432075 926.20544 654.2888 -8.219311 1057.9332 758.73083 -576.26776 902.2543 748.2028 -610.7368 1063.0354 965.28546 -386.3759 885.2733 951.90137 -376.6256 1051.8813 1000.38544 -382.3949 889.62714 984.5473 -368.61642 1087.7722 1012.338 -656.0539 870.68 1006.3096 -642.60266
442 frame__Rs9IdyUQwlY__0002144.jpg squats_down 1047.9293 613.077 -70.31682 1047.8047 587.18713 -49.43847 1044.6791 585.14325 -49.37758 1041.774 583.1566 -49.31908 1049.0531 588.2857 -118.315445 1046.4152 585.9706 -118.41205 1043.7867 583.9851 -118.368996 1016.64984 575.2948 61.24247 1019.1755 575.9182 -258.2099 1028.6082 624.83075 -25.797369 1029.6122 624.866 -116.67589 956.9947 645.00964 259.41074 954.36145 640.0103 -459.8372 1096.5128 679.3659 329.15292 1085.8674 701.2943 -692.8467 1213.757 668.6556 80.81321 1218.271 677.55383 -660.9371 1236.1726 653.9552 70.19894 1255.995 662.0404 -755.2601 1238.0493 641.0194 -10.240944 1245.664 639.9768 -710.07 1233.672 652.4064 39.037846 1231.7983 648.84924 -645.113 826.34644 878.9208 230.66838 816.6389 888.2764 -229.76526 1026.9044 784.7637 486.84705 1028.2513 793.0945 -319.4181 967.5056 948.98975 809.59766 945.19684 964.9838 43.795773 941.93274 976.23376 839.08405 916.26556 990.75275 79.55443 1016.4161 977.5301 920.60626 982.3909 989.32214 145.07317
443 Screenshot_2021-02-11 at 15.22.02.png squats_down 677.6394 293.78833 -175.1901 680.4515 287.5624 -151.63666 683.6814 287.18954 -151.57732 686.98584 286.7911 -151.68266 670.26526 289.69217 -155.08661 666.51276 290.62497 -154.99037 662.75586 291.6912 -154.9034 691.19763 295.64398 -37.9349 657.34564 302.1234 -54.88473 684.9677 305.47742 -135.53168 671.99457 307.93448 -140.28078 712.9866 344.28732 -52.06885 640.3153 347.90167 -65.60773 732.39636 361.9184 -286.8664 611.5165 357.80392 -319.54916 747.026 331.47104 -481.85086 623.7918 335.83478 -542.03687 761.82385 319.77615 -525.39575 620.06995 332.27615 -580.11456 754.3907 322.53845 -515.98553 627.58246 331.74615 -571.59143 747.0128 329.0391 -487.01614 630.55005 336.6477 -543.73047 701.9833 471.23508 8.708115 651.8561 471.20288 -8.749758 761.2408 498.4505 -282.6257 597.2617 498.30835 -316.475 741.7681 572.09546 -73.47037 615.72327 570.19226 -94.76776 728.2718 584.1139 -58.325275 629.0028 581.0827 -76.069435 769.1478 603.5047 -152.13445 588.7306 605.51874 -163.38887
444 frame__7lVFsE7WJSE__0011255.jpg squats_down 1063.8981 524.8302 -1158.4465 1076.8058 496.52905 -1145.3992 1084.5956 495.96652 -1145.3969 1092.4681 495.29834 -1145.3928 1054.0664 495.21576 -1151.0734 1045.9357 493.4244 -1150.8317 1037.7219 491.69846 -1150.6487 1102.7765 491.38568 -925.9916 1024.9641 484.83258 -943.6374 1074.0289 538.214 -1067.0809 1048.6902 537.0962 -1070.0857 1154.5193 557.5417 -675.03046 963.7017 540.61145 -733.9864 1167.5245 709.0256 -938.9655 935.7416 703.9463 -949.71423 1107.9387 669.55786 -1372.663 1030.783 674.85034 -1274.4403 1096.6375 660.43884 -1468.84 1059.6113 667.7311 -1362.004 1092.9669 632.9273 -1443.3169 1059.7506 638.0926 -1337.1616 1088.1819 636.4285 -1370.8799 1058.754 642.6641 -1271.1963 1097.3008 692.5787 2.4903145 994.40686 687.71405 -2.4187796 1228.3496 688.7838 -529.57495 869.8204 687.8836 -589.5665 1177.3593 819.3236 -45.260654 886.92975 832.0546 -94.521576 1148.2585 844.94293 -6.555493 902.13055 864.13696 -55.780502 1226.1232 886.09686 -205.11154 831.64355 892.8167 -254.28337
445 Screenshot_2021-02-11_at_16.31.06.png squats_down 1390.3772 671.35657 -895.9186 1400.8329 647.2697 -864.6072 1408.9376 646.34155 -864.5169 1417.0126 645.2884 -864.43726 1377.2803 648.69165 -861.5311 1369.0607 648.4637 -861.3214 1360.8059 648.40735 -861.27277 1427.4713 644.99396 -634.16876 1350.6489 649.5179 -624.4129 1405.3171 687.4121 -806.774 1377.8754 688.1914 -803.502 1488.2644 729.109 -464.96805 1294.2446 732.82355 -466.48242 1545.3773 870.45996 -828.7957 1250.7346 862.31226 -841.3929 1457.2972 803.1721 -1201.8612 1336.035 778.66583 -1225.161 1429.5817 781.4234 -1270.1387 1357.8479 752.95514 -1293.6895 1431.1947 755.73615 -1202.8896 1358.0951 736.22485 -1224.9824 1432.7826 767.4592 -1178.1736 1359.7191 749.8959 -1200.5297 1451.5411 920.0272 -2.505481 1336.6876 924.0752 2.8723576 1533.7013 1014.80023 -618.95874 1252.3799 1028.7505 -601.54877 1528.853 1190.3215 -236.00067 1251.2021 1183.1641 -219.17429 1515.3989 1216.2551 -210.45436 1260.6388 1208.7219 -196.05238 1556.0361 1259.5513 -475.73303 1229.3196 1240.3088 -461.20828
446 frame__GauW8uJtvFs__0016681.jpg squats_down 925.3057 417.7319 -297.1941 937.74493 399.82974 -336.82266 941.5742 399.42285 -336.80792 945.39496 398.95505 -336.85315 938.2583 399.52487 -267.10785 941.8874 399.84705 -267.2637 945.8457 400.34775 -267.18625 974.5252 404.82745 -436.6172 976.44965 405.551 -120.80362 942.2099 436.10602 -331.30655 942.66565 436.01324 -239.74837 1037.8212 492.70258 -530.2368 1013.578 485.18933 65.79198 917.44525 573.8021 -659.12317 895.4147 560.8279 107.171715 767.37067 594.17224 -674.4059 761.8449 590.16754 -43.84883 725.0948 588.42554 -788.33264 727.9891 574.34607 -37.2323 725.4823 569.12646 -750.2675 723.9012 579.38416 -126.53085 739.7358 576.0348 -668.92725 737.04846 588.2788 -89.26603 1253.5228 617.0422 -206.54134 1219.0432 601.2879 207.35721 1103.5675 753.60614 -244.2745 1058.2186 723.6397 262.55682 1138.4915 956.0364 -68.976036 1107.0338 909.8418 451.975 1164.5565 1001.2839 -67.04513 1130.4056 946.8393 467.61337 1029.5022 988.95215 -234.17776 1024.4777 947.15186 395.3826
447 frame__BiYyOx9x7ls__0009707.jpg squats_down 1090.9182 379.21082 -49.395603 1106.4891 363.23123 -91.08761 1109.017 365.8747 -90.878624 1111.6188 368.46936 -90.58792 1108.1139 356.5373 -30.176594 1111.35 354.04782 -30.025188 1114.8052 351.6282 -30.107876 1137.6989 385.6913 -196.81224 1142.5084 364.54984 82.85542 1102.4479 409.13507 -93.152695 1101.3193 400.81845 -12.48727 1199.8251 514.77386 -342.79083 1177.2338 521.3558 287.59027 1110.5502 718.04816 -100.092514 1176.4198 698.5208 206.72585 1065.5098 610.5844 260.16522 1100.277 612.9954 -139.5046 1041.4224 588.12396 248.3016 1075.3525 579.9594 -181.67583 1077.4752 579.8055 205.3115 1075.8163 571.30475 -165.57256 1092.7562 590.33276 255.67886 1089.37 581.0223 -150.75046 1355.8333 779.575 -195.28886 1317.0363 764.46124 197.09099 1137.7917 636.86774 -329.50256 1096.8163 633.54895 345.67352 1250.7645 878.58984 -189.84389 1216.0764 838.3703 384.68152 1306.782 910.951 -170.95096 1261.6426 854.66364 386.88815 1164.3865 942.6926 -142.10417 1171.896 928.8834 412.6202
448 frame__NsCiNjVEzTM__0019290.jpg squats_down 1026.4064 507.03534 300.58057 1021.69775 490.97748 298.7839 1017.01746 491.43607 298.92456 1012.53076 491.88544 298.93042 1029.2699 490.54294 251.64073 1028.4718 490.37057 252.02199 1027.5115 490.63763 251.92023 991.50146 501.03464 316.76096 1008.45667 498.1461 85.14247 1010.6301 525.7309 313.20398 1017.9648 526.45703 247.5842 916.1089 561.52625 455.59943 994.6829 590.3575 -47.349472 1037.5725 617.1048 734.0151 1174.0366 666.3923 76.056366 1060.7156 561.58966 1026.631 1084.9689 557.6207 598.0869 1080.4738 538.09644 1077.318 1067.0308 527.4044 616.0575 1061.3492 544.41534 1085.4413 1056.7202 538.6822 599.3544 1050.3364 559.09894 1039.0847 1057.828 558.5594 605.95905 755.25757 810.97845 195.72989 811.2415 817.2212 -194.8904 934.6342 749.3619 579.531 1057.2803 734.21466 -215.70789 862.70886 919.1393 627.7637 966.618 971.6355 -227.71242 832.4199 941.0996 641.91797 925.2965 1019.1417 -233.04498 924.44855 964.4456 755.3492 1063.6985 1016.977 -152.50026
449 frame__H21pTB9nJ7I__0007372.jpg squats_down 844.8275 517.2237 -237.34901 852.8302 494.63654 -218.15842 853.3603 493.67117 -218.09064 854.1767 492.75574 -218.09465 848.3409 493.2735 -266.31897 845.17725 490.15707 -266.31717 841.97565 487.34326 -266.36026 837.0052 478.50995 -62.396706 819.94995 472.3553 -287.21106 829.3336 521.3951 -175.04343 823.08154 518.6011 -239.14049 804.0531 533.5333 102.12878 733.34766 493.8316 -412.4362 903.84094 600.89734 123.22699 833.2947 587.0702 -617.90674 998.3092 628.1594 -61.41981 959.95734 616.5553 -677.4262 1024.1027 640.4256 -91.25753 986.1384 630.5569 -769.8611 1021.0419 623.6296 -143.32321 996.0576 617.0358 -753.5844 1009.15845 623.6163 -95.08026 982.4146 614.23895 -674.8036 656.9304 714.9252 166.61462 596.679 713.6772 -166.33234 838.10486 694.64746 220.63615 805.0051 734.6616 -521.02466 778.5881 862.89166 372.10767 711.98535 897.0764 -288.87018 742.46436 890.0338 385.8656 670.1924 911.91516 -264.07565 834.2017 923.6552 343.86624 768.84 966.8105 -334.78848
450 frame__X2uZY0XRYKI__0005823.jpg squats_down 594.2059 420.031 -1.4734313 594.41504 409.687 -29.746552 595.57446 409.6621 -29.763233 596.80457 409.56915 -29.744091 595.0134 406.77707 9.136512 596.5595 404.75198 9.239777 598.3082 402.7684 9.194794 611.4112 406.67487 -107.89563 613.05566 398.76483 66.97394 605.65546 428.43127 -29.049929 606.1211 424.9782 21.622355 656.8208 443.28903 -192.50526 660.06067 434.45236 186.31514 636.8979 513.8749 -161.90855 646.19806 493.63516 341.45813 596.49396 466.98077 19.393734 597.7097 464.5756 436.02222 580.7903 456.92804 10.647699 583.69934 454.2198 462.17178 592.20135 443.59644 1.9653192 584.95776 448.70258 459.84082 600.7472 447.84857 21.126461 589.721 453.36575 433.54312 785.39856 517.9563 -120.063644 778.1881 509.8182 120.38949 674.53485 536.7905 -183.71559 666.4963 537.91187 229.15831 720.4986 643.8923 -101.9657 710.3113 629.51434 350.8389 739.8987 661.869 -94.82823 725.4292 642.4488 361.6159 686.3169 671.64014 -108.94127 690.61096 662.8251 363.0891
451 Screenshot_2021-02-11 at 14.48.00.png squats_down 462.59427 258.16278 -558.85736 469.23224 245.92328 -542.54663 473.53558 245.89436 -542.5994 477.8836 245.7049 -542.4657 456.55057 245.4758 -542.9129 452.01236 245.01662 -542.74713 447.46332 244.66 -542.7884 483.62152 247.88023 -422.42032 440.37 246.17876 -423.59543 469.5617 267.96844 -511.378 453.8932 267.40662 -511.47888 511.85828 289.35403 -334.66977 406.0349 286.29666 -326.17157 539.49567 359.23022 -341.10245 364.78577 351.81876 -356.9221 547.9143 436.79132 -402.51993 349.23865 425.42258 -420.26352 557.9042 456.80695 -442.56192 336.9989 443.2886 -458.18335 545.542 457.50198 -466.80783 349.88278 446.11945 -486.65195 537.6084 451.3879 -415.2423 358.06195 441.58713 -434.39154 485.89563 378.85065 -6.459825 429.2597 378.18704 6.546063 528.2037 407.55722 -390.495 388.94986 399.0551 -377.1215 513.6115 467.29208 -61.47987 402.70102 472.3024 -58.83315 503.55038 474.53723 -34.247204 413.86624 484.04993 -33.792965 529.05835 505.8774 -144.75792 382.05347 507.966 -164.11124
452 Screenshot_2021-02-11_at_16.24.45.png squats_down 1323.414 639.54535 -61.819195 1337.9736 623.1841 -12.60709 1347.7759 623.819 -12.419044 1357.6631 624.3243 -12.495009 1310.101 624.05115 -7.522454 1300.5195 624.3781 -7.0480437 1290.9095 625.03 -6.8666253 1373.5482 642.61584 215.85991 1278.5748 642.90076 242.5808 1341.736 669.70056 15.594617 1306.7856 669.736 23.467636 1428.8414 754.3564 84.44834 1219.0933 753.32404 166.79828 1434.8873 798.0356 -591.6892 1191.4333 800.7965 -475.67438 1358.6182 757.6171 -1050.0605 1255.1506 750.03094 -961.2382 1338.3022 753.1671 -1149.1902 1268.4945 743.3132 -1048.6392 1329.3658 738.11816 -1106.6343 1282.6223 730.6659 -1017.1962 1331.8695 749.76086 -1044.6893 1283.979 742.3541 -959.09155 1386.9761 1069.1688 -10.95197 1248.8544 1067.1238 12.112725 1522.7196 961.0403 -701.0394 1110.5531 951.89185 -707.20026 1502.3716 1210.4767 -722.549 1151.7914 1191.7278 -632.569 1486.3522 1250.6158 -734.9618 1181.6143 1241.5624 -634.99164 1512.5773 1285.6216 -1004.4804 1094.8079 1253.8439 -851.37427
453 Screenshot_2021-02-11_at_16.20.32.png squats_down 1326.004 720.7076 -257.7466 1334.277 702.7931 -226.31635 1341.0077 702.47955 -226.1845 1347.887 702.0381 -226.32306 1313.554 704.2789 -232.43002 1305.6716 704.6024 -232.33485 1297.8013 705.15375 -232.25986 1355.6296 712.6689 -22.947746 1284.0515 716.40704 -48.48539 1337.5474 740.29565 -181.50955 1311.3408 741.25574 -189.1567 1400.6409 782.44745 25.956701 1239.4451 784.42725 4.374214 1481.0945 836.58826 -332.6543 1175.1682 846.22504 -302.34845 1454.4739 818.26794 -697.9868 1193.8142 829.543 -680.6839 1456.9705 822.64685 -767.158 1189.9352 836.40094 -740.0799 1436.7052 811.76025 -747.20844 1213.2896 823.3935 -735.49304 1432.5559 819.2055 -701.71265 1219.0088 828.21106 -682.3171 1374.8335 992.8688 7.3050275 1281.0475 992.4554 -6.9182777 1465.1006 965.1206 -491.30484 1190.7297 940.5186 -549.3194 1432.4443 1132.2703 -212.53334 1226.893 1109.6033 -236.6445 1407.4716 1163.8746 -192.87762 1258.358 1148.9368 -207.93143 1482.0178 1197.2101 -376.15588 1137.7875 1161.1803 -370.01852
454 frame__8ghtQpeWov8__0012026.jpg squats_down 974.1487 438.54498 -812.6236 981.22156 417.13757 -775.80115 988.54456 416.0168 -775.7986 995.8586 414.76096 -775.69586 959.2406 419.60187 -779.641 951.17163 420.1136 -779.47107 943.13464 420.7332 -779.4001 1004.50916 418.3278 -547.44916 931.3645 426.83667 -567.24115 987.9873 454.68613 -726.9176 961.5661 457.57312 -732.44946 1056.6924 507.2219 -367.1957 882.6733 500.29382 -419.4769 1106.3094 640.6308 -614.25793 859.09247 622.6363 -679.17505 1028.1431 588.7692 -940.15106 956.8807 574.7375 -970.5716 1007.97534 570.67914 -1002.7193 984.9851 564.7529 -1023.1185 1007.04895 552.11176 -948.2329 983.9379 546.6196 -987.73535 1007.80347 558.4781 -923.72205 980.4435 551.95886 -955.9262 1008.60376 671.00946 13.482793 904.56714 669.2056 -13.202712 1110.4323 727.22186 -523.4322 834.3117 758.5792 -558.3568 1113.1211 885.8059 -161.87982 837.3272 912.61743 -182.28418 1098.8248 913.9784 -136.59956 847.1439 937.4216 -157.53368 1159.4014 932.8991 -358.80774 807.3866 966.6596 -411.77365
455 Screenshot_2021-02-11_at_15.39.15.png squats_down 1330.6171 571.3591 -532.7838 1345.6616 545.46063 -482.55267 1356.5096 545.1071 -482.6912 1367.4441 544.5784 -482.6382 1316.2051 546.7411 -482.8958 1305.3677 546.8543 -482.81577 1294.5001 547.2083 -482.50204 1382.4486 557.81573 -236.61464 1282.0754 560.42175 -236.88986 1350.5356 598.4753 -445.2737 1312.2357 599.2761 -445.4969 1435.9436 672.1329 -121.43693 1219.5735 672.11383 -156.94113 1533.5443 818.3388 -458.46396 1119.3658 843.7776 -553.3193 1412.4062 701.7002 -589.68054 1242.6963 719.49866 -801.6908 1389.5673 657.2041 -612.95483 1272.5745 684.578 -832.2352 1377.9624 645.10364 -498.4808 1280.9469 658.3203 -730.3085 1376.5538 667.9142 -542.68036 1281.9132 680.4965 -756.4357 1391.0558 914.21594 22.694078 1259.7343 916.16956 -22.196762 1523.3691 895.026 -858.65405 1161.7441 922.7335 -908.76086 1467.088 1101.279 -281.59488 1197.6045 1105.7003 -344.7169 1437.6332 1134.8868 -235.76541 1219.0706 1133.6321 -300.58286 1526.2491 1180.899 -494.77618 1167.1337 1182.2294 -591.48804
456 Screenshot_2021-02-11 at 15.30.02.png squats_down 155.14902 272.76022 -245.82588 163.14967 262.0225 -223.39528 168.73596 261.57013 -223.29205 174.37973 261.0381 -223.35475 148.73569 264.85654 -217.45793 143.7154 266.02313 -217.41963 138.679 267.36032 -217.49228 186.50917 272.01196 -126.571526 138.59236 279.79135 -96.87954 169.27386 289.3856 -212.5297 150.70753 292.12335 -203.90613 233.21481 345.46777 -121.96551 114.92998 351.52054 -68.1487 214.35672 434.90338 -246.63872 50.727516 420.01553 -238.97609 160.13104 334.42398 -299.20132 106.93473 320.83566 -376.35278 148.5796 309.036 -315.23813 114.49813 295.75372 -400.3826 156.16743 298.32693 -291.8688 127.3991 285.53116 -352.65768 159.5538 309.08478 -291.4433 129.41008 298.58685 -361.3169 231.09833 490.05362 -14.409351 159.98944 498.12692 14.476683 285.5375 466.16772 -358.97275 75.83336 478.97263 -238.52124 294.8958 609.2528 -207.39427 93.180176 601.8298 -82.73266 288.86313 632.74884 -195.22334 111.23908 624.21765 -69.85453 316.13596 663.78076 -317.62634 49.583393 652.03845 -152.40443
457 Screenshot_2021-02-11 at 15.48.48.png squats_down 616.37274 400.30075 -487.74332 622.71967 387.7055 -474.9773 627.95557 387.5279 -474.94473 633.3231 387.3298 -474.84177 608.05286 388.1278 -476.03784 602.8003 388.1624 -475.92725 597.45953 388.2221 -475.89157 640.4351 393.4578 -368.91962 590.1625 392.91614 -365.39413 625.5827 413.46106 -446.02774 607.44763 414.11377 -444.26425 669.5308 438.26257 -262.9252 563.4353 440.70355 -302.735 722.1781 515.0878 -434.41068 532.6368 522.615 -448.9345 649.1552 481.8863 -635.6092 596.30664 487.96588 -604.0947 631.1094 477.25836 -669.9212 615.6574 481.09564 -639.0186 627.19104 462.42758 -645.4211 613.57135 463.6534 -625.1522 629.7745 470.2866 -628.01227 609.96173 469.3808 -601.2267 608.5237 534.67615 18.849226 550.5735 534.8245 -18.729822 701.3104 541.72577 -222.69066 553.52734 539.1254 -443.2975 692.6399 642.8988 -56.356197 539.45636 649.3413 -217.98131 677.4507 664.629 -47.332 541.50806 668.3329 -201.52075 726.84357 677.37616 -142.18912 522.0311 683.04645 -329.7367
458 frame__awBQVJ39sKM__0001470.jpg squats_down 1876.044 1086.8092 -1989.9949 1891.2302 1048.2725 -1931.583 1903.9103 1046.0978 -1931.6588 1916.801 1043.6992 -1931.0499 1854.2933 1053.2487 -1928.2823 1840.441 1054.6095 -1928.0354 1826.697 1056.1621 -1927.8835 1933.1697 1056.1985 -1534.877 1810.5952 1072.4669 -1512.3572 1900.3815 1115.8724 -1838.9011 1852.0308 1121.2318 -1833.1013 2004.0404 1206.2362 -1280.6381 1752.5269 1217.4984 -1222.2133 1953.1357 1463.68 -1402.3463 1828.8333 1477.3867 -1376.302 1811.3741 1665.3805 -1582.2916 1922.8721 1717.6356 -1601.2255 1803.5359 1735.2435 -1713.4547 1927.2917 1799.4626 -1729.655 1752.2444 1733.2837 -1741.3115 1963.9529 1793.6324 -1774.1389 1753.1697 1705.0785 -1596.2251 1964.2864 1760.1709 -1624.8569 1961.291 1461.3196 -25.078856 1806.347 1467.3033 25.47482 2136.9287 1633.6257 -1136.8545 1613.024 1636.4011 -1031.3428 2142.8167 1872.8851 -290.20926 1580.2671 1870.7386 -171.3712 2121.1687 1900.7988 -218.05154 1601.4658 1909.4673 -105.53912 2202.095 2000.9493 -632.4092 1503.9269 1977.241 -572.15674
459 frame__fH_1skamnFk__0011049.jpg squats_down 1490.6439 529.4112 79.177795 1484.2457 508.34692 92.52392 1480.3179 507.8421 92.58306 1476.5055 507.39587 92.6942 1487.0757 507.409 35.566216 1484.7633 505.31503 35.690887 1482.4844 503.49567 35.735046 1447.9589 512.30414 165.51308 1456.8375 507.6078 -94.88902 1472.083 549.8251 105.40509 1472.5227 546.42017 31.221445 1373.8479 623.14075 306.6864 1410.0536 619.52423 -268.2527 1422.2064 747.9147 298.05695 1466.4464 774.44916 -181.86598 1511.171 730.01587 16.339231 1511.8767 730.0023 165.94617 1521.9326 717.8948 -5.172564 1521.0492 710.6092 162.79329 1526.0221 705.64886 -33.45927 1507.9706 692.6492 170.2465 1522.7715 712.7022 -2.2950249 1503.3828 699.71246 178.67494 1247.051 861.64 193.00534 1265.1732 858.1197 -192.78677 1449.2057 741.12933 303.37213 1501.7549 691.7745 -231.18314 1353.7281 913.1717 473.96823 1384.5377 938.2295 -71.301216 1322.1177 936.5089 490.56177 1344.4962 970.757 -50.926945 1376.5764 968.5909 528.5564 1409.6604 1016.70685 5.2028837
460 Screenshot_2021-02-11 at 14.57.35.png squats_down 490.98444 316.2595 -363.80463 499.32074 305.18445 -344.894 503.78992 305.70312 -344.89066 508.2787 306.13205 -344.7601 486.2715 303.7282 -347.39447 481.764 302.9273 -347.3228 477.25116 302.18542 -347.3784 513.2777 309.02258 -227.08836 470.7931 303.40457 -238.6821 497.09332 327.41885 -319.41583 481.8912 325.13953 -322.93207 536.3748 359.96057 -158.59325 434.35385 349.6333 -163.75334 540.56903 445.9737 -310.85315 429.37277 436.7517 -329.7637 501.44867 384.16647 -468.78625 474.7563 384.14282 -495.0336 490.96973 366.10532 -506.54868 483.5723 365.64587 -529.5424 495.87366 352.39304 -467.9298 480.7577 354.88242 -503.9584 496.26822 359.41922 -456.92313 483.0151 362.2508 -487.649 505.404 456.02173 5.299692 445.84457 454.57227 -5.0634665 582.9295 457.13354 -325.445 396.25095 447.77637 -349.3597 578.26624 562.5587 -167.9355 376.3528 555.2898 -186.22287 567.30817 582.1605 -159.83838 380.92252 574.45953 -178.11192 607.20215 594.62897 -284.2274 349.89758 585.74176 -308.6744
461 Screenshot_2021-02-11 at 14.51.02.png squats_down 176.37714 187.5016 -42.491596 183.6399 181.15813 -19.514025 187.91031 181.87473 -19.451176 192.21465 182.48872 -19.456085 171.69102 180.51309 -20.747272 167.37387 180.38673 -20.763924 163.06012 180.39493 -20.824871 198.33899 192.12338 72.44724 157.9849 189.0913 68.211075 183.79187 202.65816 -11.612133 168.60071 201.34787 -13.017949 228.39917 245.58083 80.27325 124.507576 249.40297 67.402824 265.23364 297.50833 -83.464035 92.75667 305.72345 -105.83998 202.21805 230.18277 -182.13234 143.48433 231.81145 -201.80634 187.87427 212.57712 -201.37042 152.8284 212.42093 -215.8639 184.33598 204.96536 -165.49112 157.99704 205.39902 -183.20747 184.79547 215.23575 -169.99347 159.07922 215.90941 -189.38593 210.06772 372.23813 4.4495053 144.62631 375.57642 -4.3717127 271.40594 359.47052 -279.57272 94.06002 363.49533 -255.2955 261.08942 497.32852 -227.56342 101.6281 496.13986 -201.83435 249.19203 519.4504 -226.38657 112.70084 520.9595 -199.63171 281.8654 535.08527 -343.83426 75.77191 529.2712 -295.5624
462 frame__ZwbX1A-LlTs__0010261.jpg squats_down 1086.991 488.63126 -394.52734 1085.0267 467.9639 -372.2298 1083.7534 466.16003 -372.27295 1082.6195 464.2575 -372.53293 1083.5696 471.94864 -429.71454 1080.7157 471.6914 -429.87985 1077.8429 471.65613 -429.58676 1058.9324 457.28537 -211.11487 1054.0929 466.06662 -478.5288 1069.7898 496.50156 -330.7591 1068.7977 500.49222 -405.02875 1032.6626 532.03925 -28.09909 960.4761 509.21045 -587.08844 1100.0565 598.4197 107.676834 989.8321 645.11127 -882.18677 1185.4923 612.8462 95.710434 1115.8649 641.0623 -1080.431 1204.8024 618.37744 104.43724 1149.2971 650.156 -1162.9282 1200.0083 603.78284 64.17647 1154.957 630.3528 -1152.3761 1189.4332 607.026 79.07712 1142.1251 633.65485 -1077.7784 841.26843 670.70984 175.6105 776.7677 669.85706 -176.55971 1004.30365 666.14777 479.67114 873.62036 730.6619 -727.7375 943.0726 785.3349 795.4467 830.68964 927.8528 -642.5161 900.492 806.0963 833.3862 795.6382 963.61975 -634.0143 1013.0301 842.0031 828.90106 899.5835 992.8526 -796.1312
463 frame__h9E_JHENdNI__0002052.jpg squats_down 563.7284 259.43985 -248.98332 573.51306 252.60234 -250.54767 576.90063 253.13779 -250.56319 580.3874 253.5805 -250.48799 567.34766 251.61194 -218.63916 566.20483 251.17604 -218.44952 565.0744 250.85623 -218.3653 595.5484 260.51816 -223.84808 575.80426 256.48764 -78.949104 574.2714 272.62277 -241.59882 566.09064 270.80038 -199.44641 628.2809 308.17657 -281.1831 582.4517 311.5166 12.125722 589.0963 376.36972 -342.90308 548.1619 375.07928 -181.9563 555.18744 317.24496 -250.93825 543.6817 319.54123 -460.09128 541.9059 302.26685 -251.29926 531.26514 302.98285 -489.82092 561.8287 296.60638 -247.00854 543.4644 297.17072 -454.63315 568.8311 303.39767 -240.41574 552.3328 303.176 -454.1719 686.3956 412.17773 -82.62341 650.1971 416.59018 83.03405 671.0753 465.26242 -437.26556 601.1516 484.2709 29.396322 689.0931 551.59125 -299.5404 620.45404 542.8616 249.4474 699.3759 568.05756 -291.9996 635.0788 557.333 267.77557 657.97186 579.8443 -425.04672 572.03577 563.8348 178.72827
464 frame__iPCJs2jh4Hk__0001964.jpg squats_down 1089.3254 577.07025 81.34874 1080.7065 563.388 101.48709 1076.082 563.5619 101.468285 1071.5908 563.73 101.65307 1085.6769 562.42816 45.36801 1084.5117 561.1887 45.4296 1083.1659 560.1466 45.28993 1046.973 569.1539 196.521 1063.0905 563.92206 -66.121506 1072.9552 594.3651 115.13812 1078.7769 592.97925 41.297165 980.3318 650.1519 378.37033 1037.5558 657.1761 -221.7198 1066.9918 743.6549 466.5383 1134.0999 759.2622 -82.53133 1103.6907 672.1943 511.8448 1126.0037 660.1176 275.09103 1125.9093 646.3412 545.1814 1135.144 630.6089 252.45229 1108.8995 647.01215 565.95465 1113.5979 630.0517 230.41632 1098.5469 656.4386 517.6623 1104.3926 647.55475 276.8316 843.35175 808.3167 195.11574 865.6859 817.19714 -194.88652 1002.84863 789.5484 441.21826 1063.6765 825.6935 -253.69812 945.0067 934.19116 493.4572 970.4548 982.7044 -256.19815 925.63617 964.69293 500.71082 941.96466 1017.7016 -259.08038 997.08685 956.6492 587.70984 1024.2091 1004.2839 -201.48634
465 Screenshot_2021-02-11 at 14.40.44.png squats_down 406.39246 207.91615 -345.40448 414.3551 196.01793 -318.18372 419.7902 195.9661 -318.2178 425.2718 195.76955 -318.13187 398.3083 196.86627 -318.5621 392.77164 197.23082 -318.54443 387.22855 197.71121 -318.46066 433.22888 204.25453 -193.14107 380.97687 206.79373 -195.89142 417.51724 223.1135 -302.203 396.84183 223.99477 -302.49948 468.06955 279.3822 -125.87753 342.93518 274.29834 -129.34428 539.9518 335.26428 -92.317696 269.76245 344.98532 -85.796074 477.76077 398.23557 -25.141766 332.7617 395.81104 10.955142 464.20514 413.6627 -28.317501 353.11176 413.4284 11.659438 449.1357 409.38815 -15.471722 365.6441 401.74268 21.93783 452.99783 405.54254 -15.218464 359.93335 398.2164 20.708431 441.10068 422.77594 6.893874 362.22626 422.55212 -7.0778813 550.14764 451.23373 -247.7336 262.481 464.4998 -266.06543 547.29456 571.3799 -6.8295593 238.67226 572.1611 -53.46837 534.36304 590.2755 14.298043 245.63414 589.36743 -35.152878 588.8609 609.7904 -81.0689 204.32669 606.9667 -152.94078
466 frame__QVNlEfFOWwg__0007191.jpg squats_down 1056.1178 224.18138 -24.78703 1054.712 193.23975 -12.437555 1052.6187 190.87517 -12.202885 1050.8894 188.95609 -12.409791 1049.6882 194.2152 -68.33284 1044.2292 191.44235 -68.142136 1038.563 189.02052 -68.33197 1014.9251 186.8741 84.61275 997.6403 187.21721 -168.20439 1028.4517 248.37462 14.479186 1022.0232 246.87689 -57.566364 886.5723 297.79306 283.33267 903.23065 275.3778 -362.36267 1121.9044 372.8434 449.5483 1154.5867 344.31436 -556.45276 1315.1708 378.789 315.943 1367.977 332.33176 -445.19052 1350.1716 355.02234 320.9533 1426.8617 318.0921 -510.5016 1350.2102 343.5371 260.33838 1416.6584 286.6904 -462.67307 1340.9875 358.8777 286.13623 1394.2568 293.7167 -428.03357 512.036 572.3694 214.52466 506.90237 564.5737 -214.04425 848.21344 626.08215 325.09485 872.4845 665.507 -231.0354 705.2313 845.0359 518.9113 725.0132 884.3383 143.31676 653.2799 869.8322 539.6122 669.91095 898.3929 186.37457 768.0154 921.711 568.765 791.8903 979.8822 249.52435
467 Screenshot_2021-02-11_at_15.51.55.png squats_down 1322.8125 553.037 -392.20584 1335.2059 537.3824 -328.75885 1344.8959 537.2856 -328.91608 1354.6904 536.96985 -329.0324 1305.7683 540.6334 -326.7765 1295.7278 542.3935 -326.663 1285.6777 544.40045 -326.71048 1371.5703 559.6745 -83.84457 1275.0555 569.26843 -74.64002 1344.3951 587.612 -313.3461 1309.0853 591.1953 -310.6578 1463.1914 719.0368 -57.116386 1221.8464 729.69885 -43.79653 1527.7963 898.4031 -375.09637 1200.6334 922.56946 -412.16812 1382.6007 778.00946 -611.41016 1318.4756 779.6036 -755.0874 1347.8876 741.3553 -673.8936 1348.7427 738.7171 -806.8799 1345.8176 720.4788 -580.2406 1335.8564 710.01324 -748.82446 1348.1287 738.1582 -578.32544 1337.1316 730.53375 -732.96497 1433.3038 996.4717 7.329498 1284.2479 1000.87244 -6.814107 1569.9792 997.0548 -797.04266 1162.8417 1010.4041 -856.8943 1498.5742 1229.4452 -229.93492 1190.8604 1240.0048 -305.1731 1463.0975 1268.8059 -184.02867 1217.9291 1279.3955 -259.7673 1565.651 1309.6521 -441.3525 1125.2346 1317.999 -531.78864
468 frame__miPKBTdcCIY__0005579.jpg squats_down 945.861 490.77112 -154.9197 947.41046 470.3013 -143.96205 946.48474 467.76547 -144.08728 945.7698 465.4857 -144.1627 945.8048 474.36008 -199.9664 943.53345 473.52985 -199.91708 941.3369 472.95093 -200.19682 931.20056 453.11563 -32.08327 925.4612 463.45346 -290.31787 934.8436 492.22464 -110.30838 933.2761 495.78766 -184.08969 901.6669 502.93008 126.15846 842.4997 487.7276 -379.20038 974.867 471.2089 288.12772 790.7352 456.06924 -602.77496 1004.7074 436.77893 402.77652 777.3452 394.43417 -913.6734 1012.2413 433.08902 429.29996 764.04443 376.12988 -1005.9686 1005.38806 435.5887 393.08752 780.885 370.27295 -1007.00433 1004.07587 439.1569 387.93814 784.34595 377.85898 -925.81555 775.30566 703.475 179.9075 730.2757 709.0833 -179.5047 931.9716 693.55457 300.99768 887.7877 733.23517 -342.15448 846.55023 844.00867 428.09146 779.73773 866.05426 -142.04831 809.0572 865.2122 441.68866 733.60156 869.71014 -112.35144 881.406 891.9812 456.71817 833.7106 937.5939 -133.15439
469 Screenshot_2021-02-11 at 15.00.10.png squats_down 666.9811 275.0581 -575.66907 675.0563 262.4071 -542.6969 681.3156 262.97763 -542.6002 687.5624 263.44113 -542.44055 657.09534 261.87738 -547.40466 650.3866 261.67566 -547.32434 643.6445 261.62183 -547.2664 692.26074 273.17682 -370.8497 632.78125 271.13214 -389.36127 676.3876 293.2074 -514.1522 653.65674 292.05713 -519.26184 726.459 339.3898 -325.22403 591.7787 352.1289 -328.00433 740.365 431.6573 -623.7713 605.20715 454.0639 -639.3981 691.4289 343.0404 -838.5933 648.03455 351.84744 -863.3021 681.3267 315.91162 -883.2578 652.3254 318.63873 -904.3945 685.9974 305.52344 -827.8726 646.8695 310.33127 -853.293 683.6578 317.6574 -820.5802 651.9687 322.45535 -847.8524 705.49194 477.74103 7.9456344 623.2308 485.50815 -7.6731415 769.2293 484.64517 -474.57333 569.74176 497.84656 -519.85474 758.23175 620.89777 -181.39056 566.1231 629.4279 -211.87512 747.8375 639.7509 -161.16939 572.5135 646.71454 -193.47968 777.4386 680.3417 -334.3564 557.5805 689.90826 -377.1292
470 frame__S6J5twMTzGA__0021021.jpg squats_down 986.3324 509.6296 -767.7388 992.2387 492.16028 -760.10297 998.2689 491.88333 -759.95734 1004.17053 491.61118 -760.13477 976.2031 492.4109 -750.57495 970.4433 491.6991 -750.26776 964.7623 491.2248 -750.0884 1009.9963 490.51273 -598.5799 957.4059 491.2044 -557.3289 996.05347 521.8541 -701.5756 975.9714 520.4743 -690.707 1052.9524 521.977 -457.74942 918.4199 554.74786 -397.461 1101.8492 622.5374 -661.62756 917.94354 652.6177 -588.63324 1036.7025 606.4881 -967.26434 955.56934 612.3877 -911.00977 1016.767 611.72485 -1024.9242 962.43005 608.6475 -970.71216 1010.0043 585.2183 -1035.1349 964.56104 593.4864 -958.67664 1015.8188 589.062 -973.6608 966.5506 597.2049 -910.4664 1094.7158 688.787 -26.028296 1006.22546 700.1102 26.445969 1150.6449 648.7697 -497.86017 857.4172 669.0929 -153.51427 1152.4581 824.5577 -296.07025 862.1147 819.8424 -75.93167 1141.6211 846.59607 -278.17722 881.364 847.8817 -74.83924 1178.0491 881.42804 -434.24915 813.2586 874.93536 -198.32507
471 Screenshot_2021-02-11 at 15.12.15.png squats_down 720.1791 519.0098 -338.25833 721.0165 515.41815 -354.66803 723.59906 514.6529 -354.4918 726.10846 514.06775 -354.56808 713.25165 517.0734 -343.46228 710.2184 517.47675 -343.31726 707.0872 517.8033 -343.1212 726.7553 513.1832 -358.4745 700.18115 518.0016 -301.6652 723.1253 518.2924 -333.38614 713.96814 520.50696 -317.70078 733.84863 502.6743 -272.84583 682.9312 530.5764 -171.85133 728.2758 515.1352 -188.5306 655.59344 546.29156 -98.34783 673.0456 510.53018 -116.91911 624.5584 531.5477 -81.084496 659.48975 508.24725 -111.83624 614.1495 523.635 -79.536125 652.3227 507.02142 -129.64241 618.2739 519.8253 -92.65562 654.4199 508.8111 -118.57689 625.2843 521.4447 -85.5589 683.57715 464.55655 -34.10899 659.67004 495.5599 33.953823 636.5908 498.1041 -150.82175 611.9926 552.4917 35.27444 693.08746 612.8731 -64.786705 642.31494 657.25995 159.82619 707.5276 635.7764 -57.922504 653.2776 669.27356 164.76875 696.9604 643.9786 -99.08331 644.85376 700.7648 94.8927
472 Screenshot_2021-02-11 at 14.26.20.png squats_down 637.6488 326.9885 -442.75858 645.809 308.7406 -433.58542 652.37225 308.14798 -433.53986 658.9033 307.44717 -433.56064 628.06995 309.4049 -431.59122 621.49725 309.13745 -431.42313 614.90125 308.9819 -431.53162 668.1604 308.12604 -317.23047 607.21246 310.0277 -314.3224 649.6903 338.9089 -394.4702 627.5563 339.1692 -393.22964 709.8438 364.96432 -211.32774 568.4391 369.43973 -202.93968 750.18945 485.16254 -332.8349 553.5481 491.57474 -310.78708 682.22327 443.88574 -540.9038 610.499 446.43323 -539.6075 657.4326 437.71628 -581.3895 633.32996 437.2406 -575.6087 658.94196 407.34622 -554.0786 626.1572 411.80136 -554.5205 660.7283 410.93478 -531.0651 624.43134 416.17014 -530.74713 689.64825 498.96887 -3.5381367 610.4883 501.93173 3.826958 772.195 535.983 -334.5682 533.95154 549.9446 -294.28375 716.768 646.2678 -141.5714 579.0837 653.13904 -110.21891 698.63354 658.1998 -125.22949 596.7814 669.6444 -96.43718 728.9253 695.2253 -249.7646 558.23926 696.2607 -215.39531
473 Screenshot_2021-02-11 at 15.52.19.png squats_down 204.77391 369.38672 -341.66962 212.90767 354.29758 -332.19382 218.90868 353.1651 -332.03983 224.9722 351.99878 -332.04132 197.48363 357.34573 -323.4768 192.10262 358.17715 -323.46625 186.80777 359.2491 -323.5047 239.80063 356.33658 -242.41063 186.088 365.9372 -204.72743 220.15651 379.81207 -308.56937 199.84071 383.28638 -297.0985 276.62277 397.977 -177.64755 174.5284 411.5054 -151.2053 334.5381 320.54175 -288.083 85.213036 387.80374 -212.82506 240.7722 311.40866 -301.85394 167.76947 335.88727 -201.34637 217.47433 305.2148 -317.99417 187.92998 321.2535 -202.95662 217.88087 314.35095 -277.20966 197.65219 322.21527 -162.2295 224.41138 321.72382 -290.23724 193.24509 331.1184 -185.28242 266.69925 550.0883 -17.023165 208.45964 548.00006 17.343645 270.76096 545.9838 -308.61615 140.08665 535.0737 -196.65819 258.13174 604.1355 -80.580055 198.27852 598.4441 15.901836 252.13472 610.09247 -56.85713 223.96852 608.9223 34.289326 271.81946 643.7268 -104.15468 153.92473 644.18353 -7.647079
474 Screenshot_2021-02-11 at 14.51.26.png squats_down 481.86185 275.148 -457.4672 487.70987 262.27048 -443.10727 492.37387 262.00186 -443.0401 497.0776 261.61612 -442.87344 473.6294 263.05524 -450.0952 468.30508 263.01624 -450.05972 463.00446 263.08765 -450.1496 501.31546 265.9369 -306.27087 453.04257 267.31448 -335.9715 488.77945 286.3013 -401.8413 471.24933 286.9004 -410.55414 526.8015 308.34326 -178.90129 420.54425 316.36694 -200.20946 544.4343 374.40793 -137.66602 408.93185 383.66956 -123.67151 535.63763 428.05118 -309.21298 435.3109 431.04706 -219.12039 541.8825 450.09387 -365.5221 433.72192 452.10754 -268.34512 525.5274 445.3284 -400.9368 453.43985 444.79285 -295.2005 520.7748 438.9556 -328.43936 456.37097 436.70624 -231.91255 504.56772 420.2476 1.2286965 445.65628 423.6927 -1.1514597 591.3353 408.68365 -260.52408 358.45865 411.52356 -243.57715 566.7768 520.9699 -169.62071 388.64874 524.2862 -120.08435 550.69275 545.5845 -166.63809 407.52417 547.99915 -113.1719 603.3388 543.4561 -273.24994 352.79297 555.0064 -221.49324
475 frame__g9QFlwHD_oQ__0005238.jpg squats_down 509.19873 594.258 -335.4155 503.62003 578.74097 -307.3858 504.95172 577.22864 -307.5737 506.49222 575.9251 -307.4375 493.73376 581.98334 -346.09528 488.0624 583.1364 -346.15683 482.39932 584.4144 -346.15015 490.41412 580.6728 -164.11131 459.04382 590.2437 -333.24982 504.75253 606.8103 -286.2718 493.27777 612.97894 -332.77264 479.6491 658.9298 -54.598145 399.57678 645.1375 -400.24838 508.8719 744.3612 -291.25555 429.014 756.50793 -476.49954 526.0908 700.2879 -668.20526 511.63852 696.81744 -403.36462 540.5659 693.21094 -710.1291 541.024 687.22144 -434.6427 524.9453 670.22003 -686.11694 524.94714 667.81744 -435.63757 513.69836 676.38544 -670.52734 511.09897 671.2376 -398.54068 337.73022 755.45667 120.67381 274.03625 746.5167 -120.239296 454.76257 811.30994 1.6653482 347.15607 805.7267 -608.7005 388.14355 901.1059 97.7818 271.84094 938.58124 -466.12204 361.68555 911.9409 107.026306 247.87686 953.96405 -456.57736 418.65582 948.1884 34.35423 300.65607 1003.1273 -611.5608
476 Screenshot_2021-02-11 at 14.21.10.png squats_down 798.76263 383.7053 -391.31445 811.2369 369.57504 -350.70587 818.8659 370.45667 -350.5723 826.4944 371.1552 -350.43918 790.0614 368.03766 -350.96744 782.4705 367.28256 -350.70535 774.87164 366.6781 -350.54776 837.0341 381.84177 -129.40367 765.1883 376.1303 -130.78017 811.4346 402.93304 -312.85965 783.943 400.22424 -313.33594 874.0643 454.0692 -81.67504 714.4146 448.56332 -50.016045 853.6957 562.36847 -492.64352 718.07697 542.6301 -449.509 820.6561 453.6404 -856.39056 759.5561 443.59775 -822.1191 816.0597 424.6491 -925.84454 766.58655 416.6979 -882.549 824.1146 416.65665 -875.1316 764.5411 405.8722 -839.4705 818.35815 426.94998 -841.3278 770.028 417.57104 -808.5446 846.90356 615.88947 -0.10870997 746.3496 621.861 1.1373407 905.9213 644.2168 -654.4349 704.25916 650.63824 -633.3216 911.3102 843.8747 -503.53247 717.41473 849.7198 -484.06564 901.25946 868.80725 -498.7226 726.89905 877.78796 -477.61264 924.4757 925.46173 -753.9144 707.48883 919.4048 -720.21686

View File

@ -0,0 +1,284 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc;
import android.content.ContentResolver;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.graphics.ImageFormat;
import android.graphics.Matrix;
import android.graphics.Rect;
import android.graphics.YuvImage;
import android.media.Image;
import android.media.Image.Plane;
import android.net.Uri;
import android.os.Build.VERSION_CODES;
import android.provider.MediaStore;
import android.util.Log;
import androidx.annotation.Nullable;
import androidx.annotation.RequiresApi;
import androidx.camera.core.ExperimentalGetImage;
import androidx.camera.core.ImageProxy;
import androidx.exifinterface.media.ExifInterface;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.ByteBuffer;
/** Utils functions for bitmap conversions. */
public class BitmapUtils {
private static final String TAG = "BitmapUtils";
/** Converts NV21 format byte buffer to bitmap. */
@Nullable
public static Bitmap getBitmap(ByteBuffer data, FrameMetadata metadata) {
data.rewind();
byte[] imageInBuffer = new byte[data.limit()];
data.get(imageInBuffer, 0, imageInBuffer.length);
try {
YuvImage image =
new YuvImage(
imageInBuffer, ImageFormat.NV21, metadata.getWidth(), metadata.getHeight(), null);
ByteArrayOutputStream stream = new ByteArrayOutputStream();
image.compressToJpeg(new Rect(0, 0, metadata.getWidth(), metadata.getHeight()), 80, stream);
Bitmap bmp = BitmapFactory.decodeByteArray(stream.toByteArray(), 0, stream.size());
stream.close();
return rotateBitmap(bmp, metadata.getRotation(), false, false);
} catch (Exception e) {
Log.e("VisionProcessorBase", "Error: " + e.getMessage());
}
return null;
}
/** Converts a YUV_420_888 image from CameraX API to a bitmap. */
@RequiresApi(VERSION_CODES.LOLLIPOP)
@Nullable
@ExperimentalGetImage
public static Bitmap getBitmap(ImageProxy image) {
FrameMetadata frameMetadata =
new FrameMetadata.Builder()
.setWidth(image.getWidth())
.setHeight(image.getHeight())
.setRotation(image.getImageInfo().getRotationDegrees())
.build();
ByteBuffer nv21Buffer =
yuv420ThreePlanesToNV21(image.getImage().getPlanes(), image.getWidth(), image.getHeight());
return getBitmap(nv21Buffer, frameMetadata);
}
/** Rotates a bitmap if it is converted from a bytebuffer. */
private static Bitmap rotateBitmap(
Bitmap bitmap, int rotationDegrees, boolean flipX, boolean flipY) {
Matrix matrix = new Matrix();
// Rotate the image back to straight.
matrix.postRotate(rotationDegrees);
// Mirror the image along the X or Y axis.
matrix.postScale(flipX ? -1.0f : 1.0f, flipY ? -1.0f : 1.0f);
Bitmap rotatedBitmap =
Bitmap.createBitmap(bitmap, 0, 0, bitmap.getWidth(), bitmap.getHeight(), matrix, true);
// Recycle the old bitmap if it has changed.
if (rotatedBitmap != bitmap) {
bitmap.recycle();
}
return rotatedBitmap;
}
@Nullable
public static Bitmap getBitmapFromContentUri(ContentResolver contentResolver, Uri imageUri)
throws IOException {
Bitmap decodedBitmap = MediaStore.Images.Media.getBitmap(contentResolver, imageUri);
if (decodedBitmap == null) {
return null;
}
int orientation = getExifOrientationTag(contentResolver, imageUri);
int rotationDegrees = 0;
boolean flipX = false;
boolean flipY = false;
// See e.g. https://magnushoff.com/articles/jpeg-orientation/ for a detailed explanation on each
// orientation.
switch (orientation) {
case ExifInterface.ORIENTATION_FLIP_HORIZONTAL:
flipX = true;
break;
case ExifInterface.ORIENTATION_ROTATE_90:
rotationDegrees = 90;
break;
case ExifInterface.ORIENTATION_TRANSPOSE:
rotationDegrees = 90;
flipX = true;
break;
case ExifInterface.ORIENTATION_ROTATE_180:
rotationDegrees = 180;
break;
case ExifInterface.ORIENTATION_FLIP_VERTICAL:
flipY = true;
break;
case ExifInterface.ORIENTATION_ROTATE_270:
rotationDegrees = -90;
break;
case ExifInterface.ORIENTATION_TRANSVERSE:
rotationDegrees = -90;
flipX = true;
break;
case ExifInterface.ORIENTATION_UNDEFINED:
case ExifInterface.ORIENTATION_NORMAL:
default:
// No transformations necessary in this case.
}
return rotateBitmap(decodedBitmap, rotationDegrees, flipX, flipY);
}
private static int getExifOrientationTag(ContentResolver resolver, Uri imageUri) {
// We only support parsing EXIF orientation tag from local file on the device.
// See also:
// https://android-developers.googleblog.com/2016/12/introducing-the-exifinterface-support-library.html
if (!ContentResolver.SCHEME_CONTENT.equals(imageUri.getScheme())
&& !ContentResolver.SCHEME_FILE.equals(imageUri.getScheme())) {
return 0;
}
ExifInterface exif;
try (InputStream inputStream = resolver.openInputStream(imageUri)) {
if (inputStream == null) {
return 0;
}
exif = new ExifInterface(inputStream);
} catch (IOException e) {
Log.e(TAG, "failed to open file to read rotation meta data: " + imageUri, e);
return 0;
}
return exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_NORMAL);
}
/**
* Converts YUV_420_888 to NV21 bytebuffer.
*
* <p>The NV21 format consists of a single byte array containing the Y, U and V values. For an
* image of size S, the first S positions of the array contain all the Y values. The remaining
* positions contain interleaved V and U values. U and V are subsampled by a factor of 2 in both
* dimensions, so there are S/4 U values and S/4 V values. In summary, the NV21 array will contain
* S Y values followed by S/4 VU values: YYYYYYYYYYYYYY(...)YVUVUVUVU(...)VU
*
* <p>YUV_420_888 is a generic format that can describe any YUV image where U and V are subsampled
* by a factor of 2 in both dimensions. {@link Image#getPlanes} returns an array with the Y, U and
* V planes. The Y plane is guaranteed not to be interleaved, so we can just copy its values into
* the first part of the NV21 array. The U and V planes may already have the representation in the
* NV21 format. This happens if the planes share the same buffer, the V buffer is one position
* before the U buffer and the planes have a pixelStride of 2. If this is case, we can just copy
* them to the NV21 array.
*/
private static ByteBuffer yuv420ThreePlanesToNV21(
Plane[] yuv420888planes, int width, int height) {
int imageSize = width * height;
byte[] out = new byte[imageSize + 2 * (imageSize / 4)];
if (areUVPlanesNV21(yuv420888planes, width, height)) {
// Copy the Y values.
yuv420888planes[0].getBuffer().get(out, 0, imageSize);
ByteBuffer uBuffer = yuv420888planes[1].getBuffer();
ByteBuffer vBuffer = yuv420888planes[2].getBuffer();
// Get the first V value from the V buffer, since the U buffer does not contain it.
vBuffer.get(out, imageSize, 1);
// Copy the first U value and the remaining VU values from the U buffer.
uBuffer.get(out, imageSize + 1, 2 * imageSize / 4 - 1);
} else {
// Fallback to copying the UV values one by one, which is slower but also works.
// Unpack Y.
unpackPlane(yuv420888planes[0], width, height, out, 0, 1);
// Unpack U.
unpackPlane(yuv420888planes[1], width, height, out, imageSize + 1, 2);
// Unpack V.
unpackPlane(yuv420888planes[2], width, height, out, imageSize, 2);
}
return ByteBuffer.wrap(out);
}
/** Checks if the UV plane buffers of a YUV_420_888 image are in the NV21 format. */
private static boolean areUVPlanesNV21(Plane[] planes, int width, int height) {
int imageSize = width * height;
ByteBuffer uBuffer = planes[1].getBuffer();
ByteBuffer vBuffer = planes[2].getBuffer();
// Backup buffer properties.
int vBufferPosition = vBuffer.position();
int uBufferLimit = uBuffer.limit();
// Advance the V buffer by 1 byte, since the U buffer will not contain the first V value.
vBuffer.position(vBufferPosition + 1);
// Chop off the last byte of the U buffer, since the V buffer will not contain the last U value.
uBuffer.limit(uBufferLimit - 1);
// Check that the buffers are equal and have the expected number of elements.
boolean areNV21 =
(vBuffer.remaining() == (2 * imageSize / 4 - 2)) && (vBuffer.compareTo(uBuffer) == 0);
// Restore buffers to their initial state.
vBuffer.position(vBufferPosition);
uBuffer.limit(uBufferLimit);
return areNV21;
}
/**
* Unpack an image plane into a byte array.
*
* <p>The input plane data will be copied in 'out', starting at 'offset' and every pixel will be
* spaced by 'pixelStride'. Note that there is no row padding on the output.
*/
private static void unpackPlane(
Plane plane, int width, int height, byte[] out, int offset, int pixelStride) {
ByteBuffer buffer = plane.getBuffer();
buffer.rewind();
// Compute the size of the current plane.
// We assume that it has the aspect ratio as the original image.
int numRow = (buffer.limit() + plane.getRowStride() - 1) / plane.getRowStride();
if (numRow == 0) {
return;
}
int scaleFactor = height / numRow;
int numCol = width / scaleFactor;
// Extract the data in the output buffer.
int outputPos = offset;
int rowStart = 0;
for (int row = 0; row < numRow; row++) {
int inputPos = rowStart;
for (int col = 0; col < numCol; col++) {
out[outputPos] = buffer.get(inputPos);
outputPos += pixelStride;
inputPos += plane.getPixelStride();
}
rowStart += plane.getRowStride();
}
}
}

View File

@ -0,0 +1,38 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc;
import android.graphics.Bitmap;
import android.graphics.Canvas;
import com.empatnusabangsa.poseclassificationpoc.GraphicOverlay.Graphic;
/** Draw camera image to background. */
public class CameraImageGraphic extends Graphic {
private final Bitmap bitmap;
public CameraImageGraphic(GraphicOverlay overlay, Bitmap bitmap) {
super(overlay);
this.bitmap = bitmap;
}
@Override
public void draw(Canvas canvas) {
canvas.drawBitmap(bitmap, getTransformationMatrix(), null);
}
}

View File

@ -0,0 +1,709 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc;
import android.Manifest;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Context;
import android.graphics.ImageFormat;
import android.graphics.SurfaceTexture;
import android.hardware.Camera;
import android.hardware.Camera.CameraInfo;
import android.util.Log;
import android.view.Surface;
import android.view.SurfaceHolder;
import android.view.WindowManager;
import androidx.annotation.Nullable;
import androidx.annotation.RequiresPermission;
import com.google.android.gms.common.images.Size;
import com.empatnusabangsa.poseclassificationpoc.preference.PreferenceUtils;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.IdentityHashMap;
import java.util.List;
/**
* Manages the camera and allows UI updates on top of it (e.g. overlaying extra Graphics or
* displaying extra information). This receives preview frames from the camera at a specified rate,
* sending those frames to child classes' detectors / classifiers as fast as it is able to process.
*/
public class CameraSource {
@SuppressLint("InlinedApi")
public static final int CAMERA_FACING_BACK = CameraInfo.CAMERA_FACING_BACK;
@SuppressLint("InlinedApi")
public static final int CAMERA_FACING_FRONT = CameraInfo.CAMERA_FACING_FRONT;
public static final int IMAGE_FORMAT = ImageFormat.NV21;
public static final int DEFAULT_REQUESTED_CAMERA_PREVIEW_WIDTH = 480;
public static final int DEFAULT_REQUESTED_CAMERA_PREVIEW_HEIGHT = 360;
private static final String TAG = "MIDemoApp:CameraSource";
/**
* The dummy surface texture must be assigned a chosen name. Since we never use an OpenGL context,
* we can choose any ID we want here. The dummy surface texture is not a crazy hack - it is
* actually how the camera team recommends using the camera without a preview.
*/
private static final int DUMMY_TEXTURE_NAME = 100;
/**
* If the absolute difference between a preview size aspect ratio and a picture size aspect ratio
* is less than this tolerance, they are considered to be the same aspect ratio.
*/
private static final float ASPECT_RATIO_TOLERANCE = 0.01f;
protected Activity activity;
private Camera camera;
private int facing = CAMERA_FACING_BACK;
/** Rotation of the device, and thus the associated preview images captured from the device. */
private int rotationDegrees;
private Size previewSize;
private static final float REQUESTED_FPS = 30.0f;
private static final boolean REQUESTED_AUTO_FOCUS = true;
// This instance needs to be held onto to avoid GC of its underlying resources. Even though it
// isn't used outside of the method that creates it, it still must have hard references maintained
// to it.
private SurfaceTexture dummySurfaceTexture;
private final GraphicOverlay graphicOverlay;
/**
* Dedicated thread and associated runnable for calling into the detector with frames, as the
* frames become available from the camera.
*/
private Thread processingThread;
private final FrameProcessingRunnable processingRunnable;
private final Object processorLock = new Object();
public VisionImageProcessor frameProcessor;
/**
* Map to convert between a byte array, received from the camera, and its associated byte buffer.
* We use byte buffers internally because this is a more efficient way to call into native code
* later (avoids a potential copy).
*
* <p><b>Note:</b> uses IdentityHashMap here instead of HashMap because the behavior of an array's
* equals, hashCode and toString methods is both useless and unexpected. IdentityHashMap enforces
* identity ('==') check on the keys.
*/
private final IdentityHashMap<byte[], ByteBuffer> bytesToByteBuffer = new IdentityHashMap<>();
public CameraSource(Activity activity, GraphicOverlay overlay) {
this.activity = activity;
graphicOverlay = overlay;
graphicOverlay.clear();
processingRunnable = new FrameProcessingRunnable();
}
// ==============================================================================================
// Public
// ==============================================================================================
/** Stops the camera and releases the resources of the camera and underlying detector. */
public void release() {
synchronized (processorLock) {
stop();
cleanScreen();
if (frameProcessor != null) {
frameProcessor.stop();
}
}
}
/**
* Opens the camera and starts sending preview frames to the underlying detector. The preview
* frames are not displayed.
*
* @throws IOException if the camera's preview texture or display could not be initialized
*/
@RequiresPermission(Manifest.permission.CAMERA)
public synchronized CameraSource start() throws IOException {
if (camera != null) {
return this;
}
camera = createCamera();
dummySurfaceTexture = new SurfaceTexture(DUMMY_TEXTURE_NAME);
camera.setPreviewTexture(dummySurfaceTexture);
camera.startPreview();
processingThread = new Thread(processingRunnable);
processingRunnable.setActive(true);
processingThread.start();
return this;
}
/**
* Opens the camera and starts sending preview frames to the underlying detector. The supplied
* surface holder is used for the preview so frames can be displayed to the user.
*
* @param surfaceHolder the surface holder to use for the preview frames
* @throws IOException if the supplied surface holder could not be used as the preview display
*/
@RequiresPermission(Manifest.permission.CAMERA)
public synchronized CameraSource start(SurfaceHolder surfaceHolder) throws IOException {
if (camera != null) {
return this;
}
camera = createCamera();
camera.setPreviewDisplay(surfaceHolder);
camera.startPreview();
processingThread = new Thread(processingRunnable);
processingRunnable.setActive(true);
processingThread.start();
return this;
}
/**
* Closes the camera and stops sending frames to the underlying frame detector.
*
* <p>This camera source may be restarted again by calling {@link #start()} or {@link
* #start(SurfaceHolder)}.
*
* <p>Call {@link #release()} instead to completely shut down this camera source and release the
* resources of the underlying detector.
*/
public synchronized void stop() {
processingRunnable.setActive(false);
if (processingThread != null) {
try {
// Wait for the thread to complete to ensure that we can't have multiple threads
// executing at the same time (i.e., which would happen if we called start too
// quickly after stop).
processingThread.join();
} catch (InterruptedException e) {
Log.d(TAG, "Frame processing thread interrupted on release.");
}
processingThread = null;
}
if (camera != null) {
camera.stopPreview();
camera.setPreviewCallbackWithBuffer(null);
try {
camera.setPreviewTexture(null);
dummySurfaceTexture = null;
camera.setPreviewDisplay(null);
} catch (Exception e) {
Log.e(TAG, "Failed to clear camera preview: " + e);
}
camera.release();
camera = null;
}
// Release the reference to any image buffers, since these will no longer be in use.
bytesToByteBuffer.clear();
}
/** Changes the facing of the camera. */
public synchronized void setFacing(int facing) {
if ((facing != CAMERA_FACING_BACK) && (facing != CAMERA_FACING_FRONT)) {
throw new IllegalArgumentException("Invalid camera: " + facing);
}
this.facing = facing;
}
/** Returns the preview size that is currently in use by the underlying camera. */
public Size getPreviewSize() {
return previewSize;
}
/**
* Returns the selected camera; one of {@link #CAMERA_FACING_BACK} or {@link
* #CAMERA_FACING_FRONT}.
*/
public int getCameraFacing() {
return facing;
}
/**
* Opens the camera and applies the user settings.
*
* @throws IOException if camera cannot be found or preview cannot be processed
*/
@SuppressLint("InlinedApi")
private Camera createCamera() throws IOException {
int requestedCameraId = getIdForRequestedCamera(facing);
if (requestedCameraId == -1) {
throw new IOException("Could not find requested camera.");
}
Camera camera = Camera.open(requestedCameraId);
SizePair sizePair = PreferenceUtils.getCameraPreviewSizePair(activity, requestedCameraId);
if (sizePair == null) {
sizePair =
selectSizePair(
camera,
DEFAULT_REQUESTED_CAMERA_PREVIEW_WIDTH,
DEFAULT_REQUESTED_CAMERA_PREVIEW_HEIGHT);
}
if (sizePair == null) {
throw new IOException("Could not find suitable preview size.");
}
previewSize = sizePair.preview;
Log.v(TAG, "Camera preview size: " + previewSize);
int[] previewFpsRange = selectPreviewFpsRange(camera, REQUESTED_FPS);
if (previewFpsRange == null) {
throw new IOException("Could not find suitable preview frames per second range.");
}
Camera.Parameters parameters = camera.getParameters();
Size pictureSize = sizePair.picture;
if (pictureSize != null) {
Log.v(TAG, "Camera picture size: " + pictureSize);
parameters.setPictureSize(pictureSize.getWidth(), pictureSize.getHeight());
}
parameters.setPreviewSize(previewSize.getWidth(), previewSize.getHeight());
parameters.setPreviewFpsRange(
previewFpsRange[Camera.Parameters.PREVIEW_FPS_MIN_INDEX],
previewFpsRange[Camera.Parameters.PREVIEW_FPS_MAX_INDEX]);
// Use YV12 so that we can exercise YV12->NV21 auto-conversion logic for OCR detection
parameters.setPreviewFormat(IMAGE_FORMAT);
setRotation(camera, parameters, requestedCameraId);
if (REQUESTED_AUTO_FOCUS) {
if (parameters
.getSupportedFocusModes()
.contains(Camera.Parameters.FOCUS_MODE_CONTINUOUS_VIDEO)) {
parameters.setFocusMode(Camera.Parameters.FOCUS_MODE_CONTINUOUS_VIDEO);
} else {
Log.i(TAG, "Camera auto focus is not supported on this device.");
}
}
camera.setParameters(parameters);
// Four frame buffers are needed for working with the camera:
//
// one for the frame that is currently being executed upon in doing detection
// one for the next pending frame to process immediately upon completing detection
// two for the frames that the camera uses to populate future preview images
//
// Through trial and error it appears that two free buffers, in addition to the two buffers
// used in this code, are needed for the camera to work properly. Perhaps the camera has
// one thread for acquiring images, and another thread for calling into user code. If only
// three buffers are used, then the camera will spew thousands of warning messages when
// detection takes a non-trivial amount of time.
camera.setPreviewCallbackWithBuffer(new CameraPreviewCallback());
camera.addCallbackBuffer(createPreviewBuffer(previewSize));
camera.addCallbackBuffer(createPreviewBuffer(previewSize));
camera.addCallbackBuffer(createPreviewBuffer(previewSize));
camera.addCallbackBuffer(createPreviewBuffer(previewSize));
return camera;
}
/**
* Gets the id for the camera specified by the direction it is facing. Returns -1 if no such
* camera was found.
*
* @param facing the desired camera (front-facing or rear-facing)
*/
private static int getIdForRequestedCamera(int facing) {
CameraInfo cameraInfo = new CameraInfo();
for (int i = 0; i < Camera.getNumberOfCameras(); ++i) {
Camera.getCameraInfo(i, cameraInfo);
if (cameraInfo.facing == facing) {
return i;
}
}
return -1;
}
/**
* Selects the most suitable preview and picture size, given the desired width and height.
*
* <p>Even though we only need to find the preview size, it's necessary to find both the preview
* size and the picture size of the camera together, because these need to have the same aspect
* ratio. On some hardware, if you would only set the preview size, you will get a distorted
* image.
*
* @param camera the camera to select a preview size from
* @param desiredWidth the desired width of the camera preview frames
* @param desiredHeight the desired height of the camera preview frames
* @return the selected preview and picture size pair
*/
public static SizePair selectSizePair(Camera camera, int desiredWidth, int desiredHeight) {
List<SizePair> validPreviewSizes = generateValidPreviewSizeList(camera);
// The method for selecting the best size is to minimize the sum of the differences between
// the desired values and the actual values for width and height. This is certainly not the
// only way to select the best size, but it provides a decent tradeoff between using the
// closest aspect ratio vs. using the closest pixel area.
SizePair selectedPair = null;
int minDiff = Integer.MAX_VALUE;
for (SizePair sizePair : validPreviewSizes) {
Size size = sizePair.preview;
int diff =
Math.abs(size.getWidth() - desiredWidth) + Math.abs(size.getHeight() - desiredHeight);
if (diff < minDiff) {
selectedPair = sizePair;
minDiff = diff;
}
}
return selectedPair;
}
/**
* Stores a preview size and a corresponding same-aspect-ratio picture size. To avoid distorted
* preview images on some devices, the picture size must be set to a size that is the same aspect
* ratio as the preview size or the preview may end up being distorted. If the picture size is
* null, then there is no picture size with the same aspect ratio as the preview size.
*/
public static class SizePair {
public final Size preview;
@Nullable public final Size picture;
SizePair(Camera.Size previewSize, @Nullable Camera.Size pictureSize) {
preview = new Size(previewSize.width, previewSize.height);
picture = pictureSize != null ? new Size(pictureSize.width, pictureSize.height) : null;
}
public SizePair(Size previewSize, @Nullable Size pictureSize) {
preview = previewSize;
picture = pictureSize;
}
}
/**
* Generates a list of acceptable preview sizes. Preview sizes are not acceptable if there is not
* a corresponding picture size of the same aspect ratio. If there is a corresponding picture size
* of the same aspect ratio, the picture size is paired up with the preview size.
*
* <p>This is necessary because even if we don't use still pictures, the still picture size must
* be set to a size that is the same aspect ratio as the preview size we choose. Otherwise, the
* preview images may be distorted on some devices.
*/
public static List<SizePair> generateValidPreviewSizeList(Camera camera) {
Camera.Parameters parameters = camera.getParameters();
List<Camera.Size> supportedPreviewSizes = parameters.getSupportedPreviewSizes();
List<Camera.Size> supportedPictureSizes = parameters.getSupportedPictureSizes();
List<SizePair> validPreviewSizes = new ArrayList<>();
for (Camera.Size previewSize : supportedPreviewSizes) {
float previewAspectRatio = (float) previewSize.width / (float) previewSize.height;
// By looping through the picture sizes in order, we favor the higher resolutions.
// We choose the highest resolution in order to support taking the full resolution
// picture later.
for (Camera.Size pictureSize : supportedPictureSizes) {
float pictureAspectRatio = (float) pictureSize.width / (float) pictureSize.height;
if (Math.abs(previewAspectRatio - pictureAspectRatio) < ASPECT_RATIO_TOLERANCE) {
validPreviewSizes.add(new SizePair(previewSize, pictureSize));
break;
}
}
}
// If there are no picture sizes with the same aspect ratio as any preview sizes, allow all
// of the preview sizes and hope that the camera can handle it. Probably unlikely, but we
// still account for it.
if (validPreviewSizes.size() == 0) {
Log.w(TAG, "No preview sizes have a corresponding same-aspect-ratio picture size");
for (Camera.Size previewSize : supportedPreviewSizes) {
// The null picture size will let us know that we shouldn't set a picture size.
validPreviewSizes.add(new SizePair(previewSize, null));
}
}
return validPreviewSizes;
}
/**
* Selects the most suitable preview frames per second range, given the desired frames per second.
*
* @param camera the camera to select a frames per second range from
* @param desiredPreviewFps the desired frames per second for the camera preview frames
* @return the selected preview frames per second range
*/
@SuppressLint("InlinedApi")
private static int[] selectPreviewFpsRange(Camera camera, float desiredPreviewFps) {
// The camera API uses integers scaled by a factor of 1000 instead of floating-point frame
// rates.
int desiredPreviewFpsScaled = (int) (desiredPreviewFps * 1000.0f);
// Selects a range with whose upper bound is as close as possible to the desired fps while its
// lower bound is as small as possible to properly expose frames in low light conditions. Note
// that this may select a range that the desired value is outside of. For example, if the
// desired frame rate is 30.5, the range (30, 30) is probably more desirable than (30, 40).
int[] selectedFpsRange = null;
int minUpperBoundDiff = Integer.MAX_VALUE;
int minLowerBound = Integer.MAX_VALUE;
List<int[]> previewFpsRangeList = camera.getParameters().getSupportedPreviewFpsRange();
for (int[] range : previewFpsRangeList) {
int upperBoundDiff =
Math.abs(desiredPreviewFpsScaled - range[Camera.Parameters.PREVIEW_FPS_MAX_INDEX]);
int lowerBound = range[Camera.Parameters.PREVIEW_FPS_MIN_INDEX];
if (upperBoundDiff <= minUpperBoundDiff && lowerBound <= minLowerBound) {
selectedFpsRange = range;
minUpperBoundDiff = upperBoundDiff;
minLowerBound = lowerBound;
}
}
return selectedFpsRange;
}
/**
* Calculates the correct rotation for the given camera id and sets the rotation in the
* parameters. It also sets the camera's display orientation and rotation.
*
* @param parameters the camera parameters for which to set the rotation
* @param cameraId the camera id to set rotation based on
*/
private void setRotation(Camera camera, Camera.Parameters parameters, int cameraId) {
WindowManager windowManager = (WindowManager) activity.getSystemService(Context.WINDOW_SERVICE);
int degrees = 0;
int rotation = windowManager.getDefaultDisplay().getRotation();
switch (rotation) {
case Surface.ROTATION_0:
degrees = 0;
break;
case Surface.ROTATION_90:
degrees = 90;
break;
case Surface.ROTATION_180:
degrees = 180;
break;
case Surface.ROTATION_270:
degrees = 270;
break;
default:
Log.e(TAG, "Bad rotation value: " + rotation);
}
CameraInfo cameraInfo = new CameraInfo();
Camera.getCameraInfo(cameraId, cameraInfo);
int displayAngle;
if (cameraInfo.facing == CameraInfo.CAMERA_FACING_FRONT) {
this.rotationDegrees = (cameraInfo.orientation + degrees) % 360;
displayAngle = (360 - this.rotationDegrees) % 360; // compensate for it being mirrored
} else { // back-facing
this.rotationDegrees = (cameraInfo.orientation - degrees + 360) % 360;
displayAngle = this.rotationDegrees;
}
Log.d(TAG, "Display rotation is: " + rotation);
Log.d(TAG, "Camera face is: " + cameraInfo.facing);
Log.d(TAG, "Camera rotation is: " + cameraInfo.orientation);
// This value should be one of the degrees that ImageMetadata accepts: 0, 90, 180 or 270.
Log.d(TAG, "RotationDegrees is: " + this.rotationDegrees);
camera.setDisplayOrientation(displayAngle);
parameters.setRotation(this.rotationDegrees);
}
/**
* Creates one buffer for the camera preview callback. The size of the buffer is based off of the
* camera preview size and the format of the camera image.
*
* @return a new preview buffer of the appropriate size for the current camera settings
*/
@SuppressLint("InlinedApi")
private byte[] createPreviewBuffer(Size previewSize) {
int bitsPerPixel = ImageFormat.getBitsPerPixel(IMAGE_FORMAT);
long sizeInBits = (long) previewSize.getHeight() * previewSize.getWidth() * bitsPerPixel;
int bufferSize = (int) Math.ceil(sizeInBits / 8.0d) + 1;
// Creating the byte array this way and wrapping it, as opposed to using .allocate(),
// should guarantee that there will be an array to work with.
byte[] byteArray = new byte[bufferSize];
ByteBuffer buffer = ByteBuffer.wrap(byteArray);
if (!buffer.hasArray() || (buffer.array() != byteArray)) {
// I don't think that this will ever happen. But if it does, then we wouldn't be
// passing the preview content to the underlying detector later.
throw new IllegalStateException("Failed to create valid buffer for camera source.");
}
bytesToByteBuffer.put(byteArray, buffer);
return byteArray;
}
// ==============================================================================================
// Frame processing
// ==============================================================================================
/** Called when the camera has a new preview frame. */
private class CameraPreviewCallback implements Camera.PreviewCallback {
@Override
public void onPreviewFrame(byte[] data, Camera camera) {
processingRunnable.setNextFrame(data, camera);
}
}
public void setMachineLearningFrameProcessor(VisionImageProcessor processor) {
synchronized (processorLock) {
cleanScreen();
if (frameProcessor != null) {
frameProcessor.stop();
}
frameProcessor = processor;
}
}
/**
* This runnable controls access to the underlying receiver, calling it to process frames when
* available from the camera. This is designed to run detection on frames as fast as possible
* (i.e., without unnecessary context switching or waiting on the next frame).
*
* <p>While detection is running on a frame, new frames may be received from the camera. As these
* frames come in, the most recent frame is held onto as pending. As soon as detection and its
* associated processing is done for the previous frame, detection on the mostly recently received
* frame will immediately start on the same thread.
*/
private class FrameProcessingRunnable implements Runnable {
// This lock guards all of the member variables below.
private final Object lock = new Object();
private boolean active = true;
// These pending variables hold the state associated with the new frame awaiting processing.
private ByteBuffer pendingFrameData;
FrameProcessingRunnable() {}
/** Marks the runnable as active/not active. Signals any blocked threads to continue. */
void setActive(boolean active) {
synchronized (lock) {
this.active = active;
lock.notifyAll();
}
}
/**
* Sets the frame data received from the camera. This adds the previous unused frame buffer (if
* present) back to the camera, and keeps a pending reference to the frame data for future use.
*/
@SuppressWarnings("ByteBufferBackingArray")
void setNextFrame(byte[] data, Camera camera) {
synchronized (lock) {
if (pendingFrameData != null) {
camera.addCallbackBuffer(pendingFrameData.array());
pendingFrameData = null;
}
if (!bytesToByteBuffer.containsKey(data)) {
Log.d(
TAG,
"Skipping frame. Could not find ByteBuffer associated with the image "
+ "data from the camera.");
return;
}
pendingFrameData = bytesToByteBuffer.get(data);
// Notify the processor thread if it is waiting on the next frame (see below).
lock.notifyAll();
}
}
/**
* As long as the processing thread is active, this executes detection on frames continuously.
* The next pending frame is either immediately available or hasn't been received yet. Once it
* is available, we transfer the frame info to local variables and run detection on that frame.
* It immediately loops back for the next frame without pausing.
*
* <p>If detection takes longer than the time in between new frames from the camera, this will
* mean that this loop will run without ever waiting on a frame, avoiding any context switching
* or frame acquisition time latency.
*
* <p>If you find that this is using more CPU than you'd like, you should probably decrease the
* FPS setting above to allow for some idle time in between frames.
*/
@SuppressLint("InlinedApi")
@SuppressWarnings({"GuardedBy", "ByteBufferBackingArray"})
@Override
public void run() {
ByteBuffer data;
while (true) {
synchronized (lock) {
while (active && (pendingFrameData == null)) {
try {
// Wait for the next frame to be received from the camera, since we
// don't have it yet.
lock.wait();
} catch (InterruptedException e) {
Log.d(TAG, "Frame processing loop terminated.", e);
return;
}
}
if (!active) {
// Exit the loop once this camera source is stopped or released. We check
// this here, immediately after the wait() above, to handle the case where
// setActive(false) had been called, triggering the termination of this
// loop.
return;
}
// Hold onto the frame data locally, so that we can use this for detection
// below. We need to clear pendingFrameData to ensure that this buffer isn't
// recycled back to the camera before we are done using that data.
data = pendingFrameData;
pendingFrameData = null;
}
// The code below needs to run outside of synchronization, because this will allow
// the camera to add pending frame(s) while we are running detection on the current
// frame.
try {
synchronized (processorLock) {
frameProcessor.processByteBuffer(
data,
new FrameMetadata.Builder()
.setWidth(previewSize.getWidth())
.setHeight(previewSize.getHeight())
.setRotation(rotationDegrees)
.build(),
graphicOverlay);
}
} catch (Exception t) {
Log.e(TAG, "Exception thrown from receiver.", t);
} finally {
camera.addCallbackBuffer(data.array());
}
}
}
}
/** Cleans up graphicOverlay and child classes can do their cleanups as well . */
private void cleanScreen() {
graphicOverlay.clear();
}
}

View File

@ -0,0 +1,178 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc;
import android.content.Context;
import android.content.res.Configuration;
import android.util.AttributeSet;
import android.util.Log;
import android.view.SurfaceHolder;
import android.view.SurfaceView;
import android.view.ViewGroup;
import com.google.android.gms.common.images.Size;
import com.empatnusabangsa.poseclassificationpoc.preference.PreferenceUtils;
import java.io.IOException;
/** Preview the camera image in the screen. */
public class CameraSourcePreview extends ViewGroup {
private static final String TAG = "MIDemoApp:Preview";
private final Context context;
private final SurfaceView surfaceView;
private boolean startRequested;
private boolean surfaceAvailable;
private CameraSource cameraSource;
private GraphicOverlay overlay;
public CameraSourcePreview(Context context, AttributeSet attrs) {
super(context, attrs);
this.context = context;
startRequested = false;
surfaceAvailable = false;
surfaceView = new SurfaceView(context);
surfaceView.getHolder().addCallback(new SurfaceCallback());
addView(surfaceView);
}
private void start(CameraSource cameraSource) throws IOException {
this.cameraSource = cameraSource;
if (this.cameraSource != null) {
startRequested = true;
startIfReady();
}
}
public void start(CameraSource cameraSource, GraphicOverlay overlay) throws IOException {
this.overlay = overlay;
start(cameraSource);
}
public void stop() {
if (cameraSource != null) {
cameraSource.stop();
}
}
public void release() {
if (cameraSource != null) {
cameraSource.release();
cameraSource = null;
}
surfaceView.getHolder().getSurface().release();
}
private void startIfReady() throws IOException, SecurityException {
if (startRequested && surfaceAvailable) {
if (PreferenceUtils.isCameraLiveViewportEnabled(context)) {
cameraSource.start(surfaceView.getHolder());
} else {
cameraSource.start();
}
requestLayout();
if (overlay != null) {
Size size = cameraSource.getPreviewSize();
int min = Math.min(size.getWidth(), size.getHeight());
int max = Math.max(size.getWidth(), size.getHeight());
boolean isImageFlipped = cameraSource.getCameraFacing() == CameraSource.CAMERA_FACING_FRONT;
if (isPortraitMode()) {
// Swap width and height sizes when in portrait, since it will be rotated by 90 degrees.
// The camera preview and the image being processed have the same size.
overlay.setImageSourceInfo(min, max, isImageFlipped);
} else {
overlay.setImageSourceInfo(max, min, isImageFlipped);
}
overlay.clear();
}
startRequested = false;
}
}
private class SurfaceCallback implements SurfaceHolder.Callback {
@Override
public void surfaceCreated(SurfaceHolder surface) {
surfaceAvailable = true;
try {
startIfReady();
} catch (IOException e) {
Log.e(TAG, "Could not start camera source.", e);
}
}
@Override
public void surfaceDestroyed(SurfaceHolder surface) {
surfaceAvailable = false;
}
@Override
public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {}
}
@Override
protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
int width = 320;
int height = 240;
if (cameraSource != null) {
Size size = cameraSource.getPreviewSize();
if (size != null) {
width = size.getWidth();
height = size.getHeight();
}
}
// Swap width and height sizes when in portrait, since it will be rotated 90 degrees
if (isPortraitMode()) {
int tmp = width;
width = height;
height = tmp;
}
float previewAspectRatio = (float) width / height;
int layoutWidth = right - left;
int layoutHeight = bottom - top;
float layoutAspectRatio = (float) layoutWidth / layoutHeight;
if (previewAspectRatio > layoutAspectRatio) {
// The preview input is wider than the layout area. Fit the layout height and crop
// the preview input horizontally while keep the center.
int horizontalOffset = (int) (previewAspectRatio * layoutHeight - layoutWidth) / 2;
surfaceView.layout(-horizontalOffset, 0, layoutWidth + horizontalOffset, layoutHeight);
} else {
// The preview input is taller than the layout area. Fit the layout width and crop the preview
// input vertically while keep the center.
int verticalOffset = (int) (layoutWidth / previewAspectRatio - layoutHeight) / 2;
surfaceView.layout(0, -verticalOffset, layoutWidth, layoutHeight + verticalOffset);
}
}
private boolean isPortraitMode() {
int orientation = context.getResources().getConfiguration().orientation;
if (orientation == Configuration.ORIENTATION_LANDSCAPE) {
return false;
}
if (orientation == Configuration.ORIENTATION_PORTRAIT) {
return true;
}
Log.d(TAG, "isPortraitMode returning false by default");
return false;
}
}

View File

@ -0,0 +1,70 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc;
/** Describing a frame info. */
public class FrameMetadata {
private final int width;
private final int height;
private final int rotation;
public int getWidth() {
return width;
}
public int getHeight() {
return height;
}
public int getRotation() {
return rotation;
}
private FrameMetadata(int width, int height, int rotation) {
this.width = width;
this.height = height;
this.rotation = rotation;
}
/** Builder of {@link FrameMetadata}. */
public static class Builder {
private int width;
private int height;
private int rotation;
public Builder setWidth(int width) {
this.width = width;
return this;
}
public Builder setHeight(int height) {
this.height = height;
return this;
}
public Builder setRotation(int rotation) {
this.rotation = rotation;
return this;
}
public FrameMetadata build() {
return new FrameMetadata(width, height, rotation);
}
}
}

View File

@ -0,0 +1,251 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.util.AttributeSet;
import android.view.View;
import com.google.common.base.Preconditions;
import java.util.ArrayList;
import java.util.List;
/**
* A view which renders a series of custom graphics to be overlayed on top of an associated preview
* (i.e., the camera preview). The creator can add graphics objects, update the objects, and remove
* them, triggering the appropriate drawing and invalidation within the view.
*
* <p>Supports scaling and mirroring of the graphics relative the camera's preview properties. The
* idea is that detection items are expressed in terms of an image size, but need to be scaled up
* to the full view size, and also mirrored in the case of the front-facing camera.
*
* <p>Associated {@link Graphic} items should use the following methods to convert to view
* coordinates for the graphics that are drawn:
*
* <ol>
* <li>{@link Graphic#scale(float)} adjusts the size of the supplied value from the image scale
* to the view scale.
* <li>{@link Graphic#translateX(float)} and {@link Graphic#translateY(float)} adjust the
* coordinate from the image's coordinate system to the view coordinate system.
* </ol>
*/
public class GraphicOverlay extends View {
private final Object lock = new Object();
private final List<Graphic> graphics = new ArrayList<>();
// Matrix for transforming from image coordinates to overlay view coordinates.
private final Matrix transformationMatrix = new Matrix();
private int imageWidth;
private int imageHeight;
// The factor of overlay View size to image size. Anything in the image coordinates need to be
// scaled by this amount to fit with the area of overlay View.
private float scaleFactor = 1.0f;
// The number of horizontal pixels needed to be cropped on each side to fit the image with the
// area of overlay View after scaling.
private float postScaleWidthOffset;
// The number of vertical pixels needed to be cropped on each side to fit the image with the
// area of overlay View after scaling.
private float postScaleHeightOffset;
private boolean isImageFlipped;
private boolean needUpdateTransformation = true;
/**
* Base class for a custom graphics object to be rendered within the graphic overlay. Subclass
* this and implement the {@link Graphic#draw(Canvas)} method to define the graphics element. Add
* instances to the overlay using {@link GraphicOverlay#add(Graphic)}.
*/
public abstract static class Graphic {
private GraphicOverlay overlay;
public Graphic(GraphicOverlay overlay) {
this.overlay = overlay;
}
/**
* Draw the graphic on the supplied canvas. Drawing should use the following methods to convert
* to view coordinates for the graphics that are drawn:
*
* <ol>
* <li>{@link Graphic#scale(float)} adjusts the size of the supplied value from the image
* scale to the view scale.
* <li>{@link Graphic#translateX(float)} and {@link Graphic#translateY(float)} adjust the
* coordinate from the image's coordinate system to the view coordinate system.
* </ol>
*
* @param canvas drawing canvas
*/
public abstract void draw(Canvas canvas);
protected void drawRect(
Canvas canvas, float left, float top, float right, float bottom, Paint paint) {
canvas.drawRect(left, top, right, bottom, paint);
}
protected void drawText(Canvas canvas, String text, float x, float y, Paint paint) {
canvas.drawText(text, x, y, paint);
}
/** Adjusts the supplied value from the image scale to the view scale. */
public float scale(float imagePixel) {
return imagePixel * overlay.scaleFactor;
}
/** Returns the application context of the app. */
public Context getApplicationContext() {
return overlay.getContext().getApplicationContext();
}
public boolean isImageFlipped() {
return overlay.isImageFlipped;
}
/**
* Adjusts the x coordinate from the image's coordinate system to the view coordinate system.
*/
public float translateX(float x) {
if (overlay.isImageFlipped) {
return overlay.getWidth() - (scale(x) - overlay.postScaleWidthOffset);
} else {
return scale(x) - overlay.postScaleWidthOffset;
}
}
/**
* Adjusts the y coordinate from the image's coordinate system to the view coordinate system.
*/
public float translateY(float y) {
return scale(y) - overlay.postScaleHeightOffset;
}
/**
* Returns a {@link Matrix} for transforming from image coordinates to overlay view coordinates.
*/
public Matrix getTransformationMatrix() {
return overlay.transformationMatrix;
}
public void postInvalidate() {
overlay.postInvalidate();
}
}
public GraphicOverlay(Context context, AttributeSet attrs) {
super(context, attrs);
addOnLayoutChangeListener(
(view, left, top, right, bottom, oldLeft, oldTop, oldRight, oldBottom) ->
needUpdateTransformation = true);
}
/** Removes all graphics from the overlay. */
public void clear() {
synchronized (lock) {
graphics.clear();
}
postInvalidate();
}
/** Adds a graphic to the overlay. */
public void add(Graphic graphic) {
synchronized (lock) {
graphics.add(graphic);
}
}
/** Removes a graphic from the overlay. */
public void remove(Graphic graphic) {
synchronized (lock) {
graphics.remove(graphic);
}
postInvalidate();
}
/**
* Sets the source information of the image being processed by detectors, including size and
* whether it is flipped, which informs how to transform image coordinates later.
*
* @param imageWidth the width of the image sent to ML Kit detectors
* @param imageHeight the height of the image sent to ML Kit detectors
* @param isFlipped whether the image is flipped. Should set it to true when the image is from the
* front camera.
*/
public void setImageSourceInfo(int imageWidth, int imageHeight, boolean isFlipped) {
Preconditions.checkState(imageWidth > 0, "image width must be positive");
Preconditions.checkState(imageHeight > 0, "image height must be positive");
synchronized (lock) {
this.imageWidth = imageWidth;
this.imageHeight = imageHeight;
this.isImageFlipped = isFlipped;
needUpdateTransformation = true;
}
postInvalidate();
}
public int getImageWidth() {
return imageWidth;
}
public int getImageHeight() {
return imageHeight;
}
private void updateTransformationIfNeeded() {
if (!needUpdateTransformation || imageWidth <= 0 || imageHeight <= 0) {
return;
}
float viewAspectRatio = (float) getWidth() / getHeight();
float imageAspectRatio = (float) imageWidth / imageHeight;
postScaleWidthOffset = 0;
postScaleHeightOffset = 0;
if (viewAspectRatio > imageAspectRatio) {
// The image needs to be vertically cropped to be displayed in this view.
scaleFactor = (float) getWidth() / imageWidth;
postScaleHeightOffset = ((float) getWidth() / imageAspectRatio - getHeight()) / 2;
} else {
// The image needs to be horizontally cropped to be displayed in this view.
scaleFactor = (float) getHeight() / imageHeight;
postScaleWidthOffset = ((float) getHeight() * imageAspectRatio - getWidth()) / 2;
}
transformationMatrix.reset();
transformationMatrix.setScale(scaleFactor, scaleFactor);
transformationMatrix.postTranslate(-postScaleWidthOffset, -postScaleHeightOffset);
if (isImageFlipped) {
transformationMatrix.postScale(-1f, 1f, getWidth() / 2f, getHeight() / 2f);
}
needUpdateTransformation = false;
}
/** Draws the overlay with its associated graphic objects. */
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
synchronized (lock) {
updateTransformationIfNeeded();
for (Graphic graphic : graphics) {
graphic.draw(canvas);
}
}
}
}

View File

@ -0,0 +1,90 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import androidx.annotation.Nullable;
/** Graphic instance for rendering inference info (latency, FPS, resolution) in an overlay view. */
public class InferenceInfoGraphic extends GraphicOverlay.Graphic {
private static final int TEXT_COLOR = Color.WHITE;
private static final float TEXT_SIZE = 60.0f;
private final Paint textPaint;
private final GraphicOverlay overlay;
private final long frameLatency;
private final long detectorLatency;
// Only valid when a stream of input images is being processed. Null for single image mode.
@Nullable private final Integer framesPerSecond;
private boolean showLatencyInfo = true;
public InferenceInfoGraphic(
GraphicOverlay overlay,
long frameLatency,
long detectorLatency,
@Nullable Integer framesPerSecond) {
super(overlay);
this.overlay = overlay;
this.frameLatency = frameLatency;
this.detectorLatency = detectorLatency;
this.framesPerSecond = framesPerSecond;
textPaint = new Paint();
textPaint.setColor(TEXT_COLOR);
textPaint.setTextSize(TEXT_SIZE);
textPaint.setShadowLayer(5.0f, 0f, 0f, Color.BLACK);
postInvalidate();
}
/** Creates an {@link InferenceInfoGraphic} to only display image size. */
public InferenceInfoGraphic(GraphicOverlay overlay) {
this(overlay, 0, 0, null);
showLatencyInfo = false;
}
@Override
public synchronized void draw(Canvas canvas) {
float x = TEXT_SIZE * 0.5f;
float y = TEXT_SIZE * 1.5f;
canvas.drawText(
"InputImage size: " + overlay.getImageHeight() + "x" + overlay.getImageWidth(),
x,
y,
textPaint);
if (!showLatencyInfo) {
return;
}
// Draw FPS (if valid) and inference latency
if (framesPerSecond != null) {
canvas.drawText(
"FPS: " + framesPerSecond + ", Frame latency: " + frameLatency + " ms",
x,
y + TEXT_SIZE,
textPaint);
} else {
canvas.drawText("Frame latency: " + frameLatency + " ms", x, y + TEXT_SIZE, textPaint);
}
canvas.drawText(
"Detector latency: " + detectorLatency + " ms", x, y + TEXT_SIZE * 2, textPaint);
}
}

View File

@ -0,0 +1,270 @@
package com.empatnusabangsa.poseclassificationpoc
import android.Manifest
import android.content.Context
import android.content.pm.PackageManager
import android.os.Bundle
import android.util.Log
import android.view.View
import android.widget.*
import androidx.appcompat.app.AppCompatActivity
import androidx.core.app.ActivityCompat
import androidx.core.content.ContextCompat
import com.empatnusabangsa.poseclassificationpoc.posedetector.PoseDetectorProcessor
import com.empatnusabangsa.poseclassificationpoc.preference.PreferenceUtils
import com.empatnusabangsa.poseclassificationpoc.segmenter.SegmenterProcessor
import java.io.IOException
import kotlin.properties.Delegates
class MainActivity : AppCompatActivity(), AdapterView.OnItemSelectedListener, CompoundButton.OnCheckedChangeListener {
private var cameraSource: CameraSource? = null
private var preview: CameraSourcePreview? = null
private var graphicOverlay: GraphicOverlay? = null
private var selectedModel = POSE_DETECTION
private var selectedPose = STAND_CLASS
private var permissionIsGranted:Boolean = false
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.splash_screen)
if (!allRuntimePermissionsGranted()) {
getRuntimePermissions()
while(!permissionIsGranted) {
permissionIsGranted = allRuntimePermissionsGranted()
}
}
setContentView(R.layout.activity_main)
preview = findViewById(R.id.preview_view)
if (preview == null) {
Log.d(TAG, "Preview is null")
}
graphicOverlay = findViewById(R.id.graphic_overlay)
if (graphicOverlay == null) {
Log.d(TAG, "graphicOverlay is null")
}
val spinner = findViewById<Spinner>(R.id.spinner)
val options: MutableList<String> = ArrayList()
options.add(STAND_CLASS)
options.add(SIT_CLASS)
options.add(FACE_LEFT)
options.add(FACE_RIGHT)
options.add(SQUATS_CLASS)
// options.add(POSE_DETECTION)
// options.add(SELFIE_SEGMENTATION)
// Creating adapter for spinner
val dataAdapter = ArrayAdapter(this, R.layout.spinner_style, options)
// Drop down layout style - list view with radio button
dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item)
// attaching data adapter to spinner
spinner.adapter = dataAdapter
spinner.onItemSelectedListener = this
val facingSwitch = findViewById<ToggleButton>(R.id.facing_switch)
facingSwitch.setOnCheckedChangeListener(this)
// val settingsButton = findViewById<ImageView>(R.id.settings_button)
// settingsButton.setOnClickListener {
// val intent = Intent(applicationContext, SettingsActivity::class.java)
// intent.putExtra(SettingsActivity.EXTRA_LAUNCH_SOURCE, LaunchSource.LIVE_PREVIEW)
// startActivity(intent)
// }
createCameraSource(selectedModel)
}
private fun allRuntimePermissionsGranted(): Boolean {
for (permission in REQUIRED_RUNTIME_PERMISSIONS) {
permission?.let {
if (!isPermissionGranted(this, it)) {
return false
}
}
}
return true
}
private fun getRuntimePermissions() {
val permissionsToRequest = ArrayList<String>()
for (permission in REQUIRED_RUNTIME_PERMISSIONS) {
permission?.let {
if (!isPermissionGranted(this, it)) {
permissionsToRequest.add(permission)
}
}
}
if (permissionsToRequest.isNotEmpty()) {
ActivityCompat.requestPermissions(
this,
permissionsToRequest.toTypedArray(),
PERMISSION_REQUESTS
)
}
}
private fun isPermissionGranted(context: Context, permission: String): Boolean {
if (ContextCompat.checkSelfPermission(context, permission) == PackageManager.PERMISSION_GRANTED
) {
Log.i(TAG, "Permission granted: $permission")
return true
}
Log.i(TAG, "Permission NOT granted: $permission")
return false
}
@Synchronized
override fun onItemSelected(parent: AdapterView<*>?, view: View?, pos: Int, id: Long) {
// An item was selected. You can retrieve the selected item using
// parent.getItemAtPosition(pos)
// selectedModel = parent?.getItemAtPosition(pos).toString()
selectedPose = parent?.getItemAtPosition(pos).toString()
Log.d(TAG, "Selected model: $selectedModel")
// preview?.stop()
// createCameraSource(selectedModel)
// startCameraSource()
this.onResume()
}
override fun onNothingSelected(parent: AdapterView<*>?) {
// Do nothing.
}
override fun onCheckedChanged(buttonView: CompoundButton, isChecked: Boolean) {
Log.d(TAG, "Set facing")
if (cameraSource != null) {
if (isChecked) {
cameraSource?.setFacing(CameraSource.CAMERA_FACING_FRONT)
} else {
cameraSource?.setFacing(CameraSource.CAMERA_FACING_BACK)
}
}
preview?.stop()
startCameraSource()
}
private fun createCameraSource(model: String) {
// If there's no existing cameraSource, create one.
if (cameraSource == null) {
cameraSource = CameraSource(this, graphicOverlay)
}
try {
when (model) {
POSE_DETECTION -> {
val poseDetectorOptions = PreferenceUtils.getPoseDetectorOptionsForLivePreview(this)
Log.i(TAG, "Using Pose Detector with options $poseDetectorOptions")
val shouldShowInFrameLikelihood =
PreferenceUtils.shouldShowPoseDetectionInFrameLikelihoodLivePreview(this)
val visualizeZ = PreferenceUtils.shouldPoseDetectionVisualizeZ(this)
val rescaleZ = PreferenceUtils.shouldPoseDetectionRescaleZForVisualization(this)
val runClassification = PreferenceUtils.shouldPoseDetectionRunClassification(this)
cameraSource!!.setMachineLearningFrameProcessor(
PoseDetectorProcessor(
this,
poseDetectorOptions,
shouldShowInFrameLikelihood,
visualizeZ,
rescaleZ,
runClassification,
/* isStreamMode = */ true,
selectedPose
) {
Log.i(TAG, "Pose Detected $it")
if(it == selectedPose && selectedPose != SQUATS_CLASS) {
preview?.stop()
}
}
)
}
SELFIE_SEGMENTATION -> {
cameraSource!!.setMachineLearningFrameProcessor(SegmenterProcessor(this))
}
else -> Log.e(TAG, "Unknown model: $model")
}
} catch (e: Exception) {
Log.e(TAG, "Can not create image processor: $model", e)
Toast.makeText(
applicationContext,
"Can not create image processor: " + e.message,
Toast.LENGTH_LONG
)
.show()
}
}
/**
* Starts or restarts the camera source, if it exists. If the camera source doesn't exist yet
* (e.g., because onResume was called before the camera source was created), this will be called
* again when the camera source is created.
*/
private fun startCameraSource() {
if (cameraSource != null) {
try {
if (preview == null) {
Log.d(TAG, "resume: Preview is null")
}
if (graphicOverlay == null) {
Log.d(TAG, "resume: graphOverlay is null")
}
preview!!.start(cameraSource, graphicOverlay)
} catch (e: IOException) {
Log.e(TAG, "Unable to start camera source.", e)
cameraSource!!.release()
cameraSource = null
}
}
}
public override fun onResume() {
super.onResume()
Log.d(TAG, "onResume")
createCameraSource(selectedModel)
startCameraSource()
}
/** Stops the camera. */
public override fun onPause() {
super.onPause()
preview?.stop()
}
public override fun onDestroy() {
super.onDestroy()
if (cameraSource != null) {
cameraSource?.release()
}
}
companion object {
private const val OBJECT_DETECTION = "Object Detection"
private const val POSE_DETECTION = "Pose Detection"
private const val SELFIE_SEGMENTATION = "Selfie Segmentation"
private const val SQUATS_CLASS = "squats_down"
private const val SIT_CLASS = "sit"
private const val STAND_CLASS = "stand"
private const val FACE_LEFT = "face_left"
private const val FACE_RIGHT = "face_right"
private const val TAG = "LivePreviewActivity"
private const val PERMISSION_REQUESTS = 1
private val REQUIRED_RUNTIME_PERMISSIONS =
arrayOf(
Manifest.permission.CAMERA,
Manifest.permission.WRITE_EXTERNAL_STORAGE,
Manifest.permission.READ_EXTERNAL_STORAGE
)
}
}

View File

@ -0,0 +1,62 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc;
import androidx.annotation.NonNull;
import java.util.concurrent.Executor;
import java.util.concurrent.atomic.AtomicBoolean;
/**
* Wraps an existing executor to provide a {@link #shutdown} method that allows subsequent
* cancellation of submitted runnables.
*/
public class ScopedExecutor implements Executor {
private final Executor executor;
private final AtomicBoolean shutdown = new AtomicBoolean();
public ScopedExecutor(@NonNull Executor executor) {
this.executor = executor;
}
@Override
public void execute(@NonNull Runnable command) {
// Return early if this object has been shut down.
if (shutdown.get()) {
return;
}
executor.execute(
() -> {
// Check again in case it has been shut down in the mean time.
if (shutdown.get()) {
return;
}
command.run();
});
}
/**
* After this method is called, no runnables that have been submitted or are subsequently
* submitted will start to execute, turning this executor into a no-op.
*
* <p>Runnables that have already started to execute will continue.
*/
public void shutdown() {
shutdown.set(true);
}
}

View File

@ -0,0 +1,43 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc;
import android.graphics.Bitmap;
import androidx.camera.core.ImageProxy;
import com.google.mlkit.common.MlKitException;
import java.nio.ByteBuffer;
/** An interface to process the images with different vision detectors and custom image models. */
public interface VisionImageProcessor {
/** Processes a bitmap image. */
void processBitmap(Bitmap bitmap, GraphicOverlay graphicOverlay);
/** Processes ByteBuffer image data, e.g. used for Camera1 live preview case. */
void processByteBuffer(
ByteBuffer data, FrameMetadata frameMetadata, GraphicOverlay graphicOverlay)
throws MlKitException;
/** Processes ImageProxy image data, e.g. used for CameraX live preview case. */
void processImageProxy(ImageProxy image, GraphicOverlay graphicOverlay) throws MlKitException;
/** Stops the underlying machine learning model and release resources. */
void stop();
}

View File

@ -0,0 +1,415 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc
import android.app.ActivityManager
import android.content.Context
import android.graphics.Bitmap
import android.os.Build.VERSION_CODES
import android.os.SystemClock
import android.util.Log
import android.widget.Toast
import androidx.annotation.GuardedBy
import androidx.annotation.RequiresApi
import androidx.camera.core.ExperimentalGetImage
import androidx.camera.core.ImageProxy
import com.google.android.gms.tasks.OnFailureListener
import com.google.android.gms.tasks.OnSuccessListener
import com.google.android.gms.tasks.Task
import com.google.android.gms.tasks.TaskExecutors
import com.google.android.gms.tasks.Tasks
import com.google.android.odml.image.BitmapMlImageBuilder
import com.google.android.odml.image.ByteBufferMlImageBuilder
import com.google.android.odml.image.MediaMlImageBuilder
import com.google.android.odml.image.MlImage
import com.google.mlkit.common.MlKitException
import com.google.mlkit.vision.common.InputImage
import com.empatnusabangsa.poseclassificationpoc.BitmapUtils
import com.empatnusabangsa.poseclassificationpoc.CameraImageGraphic
import com.empatnusabangsa.poseclassificationpoc.FrameMetadata
import com.empatnusabangsa.poseclassificationpoc.GraphicOverlay
import com.empatnusabangsa.poseclassificationpoc.InferenceInfoGraphic
import com.empatnusabangsa.poseclassificationpoc.ScopedExecutor
import com.empatnusabangsa.poseclassificationpoc.VisionImageProcessor
import com.empatnusabangsa.poseclassificationpoc.preference.PreferenceUtils
import java.lang.Math.max
import java.lang.Math.min
import java.nio.ByteBuffer
import java.util.Timer
import java.util.TimerTask
/**
* Abstract base class for ML Kit frame processors. Subclasses need to implement {@link
* #onSuccess(T, FrameMetadata, GraphicOverlay)} to define what they want to with the detection
* results and {@link #detectInImage(VisionImage)} to specify the detector object.
*
* @param <T> The type of the detected feature.
*/
abstract class VisionProcessorBase<T>(context: Context) : VisionImageProcessor {
companion object {
const val MANUAL_TESTING_LOG = "LogTagForTest"
private const val TAG = "VisionProcessorBase"
}
private var activityManager: ActivityManager =
context.getSystemService(Context.ACTIVITY_SERVICE) as ActivityManager
private val fpsTimer = Timer()
private val executor = ScopedExecutor(TaskExecutors.MAIN_THREAD)
// Whether this processor is already shut down
private var isShutdown = false
// Used to calculate latency, running in the same thread, no sync needed.
private var numRuns = 0
private var totalFrameMs = 0L
private var maxFrameMs = 0L
private var minFrameMs = Long.MAX_VALUE
private var totalDetectorMs = 0L
private var maxDetectorMs = 0L
private var minDetectorMs = Long.MAX_VALUE
// Frame count that have been processed so far in an one second interval to calculate FPS.
private var frameProcessedInOneSecondInterval = 0
private var framesPerSecond = 0
// To keep the latest images and its metadata.
@GuardedBy("this") private var latestImage: ByteBuffer? = null
@GuardedBy("this") private var latestImageMetaData: FrameMetadata? = null
// To keep the images and metadata in process.
@GuardedBy("this") private var processingImage: ByteBuffer? = null
@GuardedBy("this") private var processingMetaData: FrameMetadata? = null
init {
fpsTimer.scheduleAtFixedRate(
object : TimerTask() {
override fun run() {
framesPerSecond = frameProcessedInOneSecondInterval
frameProcessedInOneSecondInterval = 0
}
},
0,
1000
)
}
// -----------------Code for processing single still image----------------------------------------
override fun processBitmap(bitmap: Bitmap?, graphicOverlay: GraphicOverlay) {
val frameStartMs = SystemClock.elapsedRealtime()
if (isMlImageEnabled(graphicOverlay.context)) {
val mlImage = BitmapMlImageBuilder(bitmap!!).build()
requestDetectInImage(
mlImage,
graphicOverlay,
/* originalCameraImage= */ null,
/* shouldShowFps= */ false,
frameStartMs
)
mlImage.close()
return
}
requestDetectInImage(
InputImage.fromBitmap(bitmap!!, 0),
graphicOverlay,
/* originalCameraImage= */ null,
/* shouldShowFps= */ false,
frameStartMs
)
}
// -----------------Code for processing live preview frame from Camera1 API-----------------------
@Synchronized
override fun processByteBuffer(
data: ByteBuffer?,
frameMetadata: FrameMetadata?,
graphicOverlay: GraphicOverlay
) {
latestImage = data
latestImageMetaData = frameMetadata
if (processingImage == null && processingMetaData == null) {
processLatestImage(graphicOverlay)
}
}
@Synchronized
private fun processLatestImage(graphicOverlay: GraphicOverlay) {
processingImage = latestImage
processingMetaData = latestImageMetaData
latestImage = null
latestImageMetaData = null
if (processingImage != null && processingMetaData != null && !isShutdown) {
processImage(processingImage!!, processingMetaData!!, graphicOverlay)
}
}
private fun processImage(
data: ByteBuffer,
frameMetadata: FrameMetadata,
graphicOverlay: GraphicOverlay
) {
val frameStartMs = SystemClock.elapsedRealtime()
// If live viewport is on (that is the underneath surface view takes care of the camera preview
// drawing), skip the unnecessary bitmap creation that used for the manual preview drawing.
val bitmap =
if (PreferenceUtils.isCameraLiveViewportEnabled(graphicOverlay.context)) null
else BitmapUtils.getBitmap(data, frameMetadata)
if (isMlImageEnabled(graphicOverlay.context)) {
val mlImage =
ByteBufferMlImageBuilder(
data,
frameMetadata.width,
frameMetadata.height,
MlImage.IMAGE_FORMAT_NV21
)
.setRotation(frameMetadata.rotation)
.build()
requestDetectInImage(mlImage, graphicOverlay, bitmap, /* shouldShowFps= */ true, frameStartMs)
.addOnSuccessListener(executor) { processLatestImage(graphicOverlay) }
// This is optional. Java Garbage collection can also close it eventually.
mlImage.close()
return
}
requestDetectInImage(
InputImage.fromByteBuffer(
data,
frameMetadata.width,
frameMetadata.height,
frameMetadata.rotation,
InputImage.IMAGE_FORMAT_NV21
),
graphicOverlay,
bitmap,
/* shouldShowFps= */ true,
frameStartMs
)
.addOnSuccessListener(executor) { processLatestImage(graphicOverlay) }
}
// -----------------Code for processing live preview frame from CameraX API-----------------------
@RequiresApi(VERSION_CODES.LOLLIPOP)
@ExperimentalGetImage
override fun processImageProxy(image: ImageProxy, graphicOverlay: GraphicOverlay) {
val frameStartMs = SystemClock.elapsedRealtime()
if (isShutdown) {
return
}
var bitmap: Bitmap? = null
if (!PreferenceUtils.isCameraLiveViewportEnabled(graphicOverlay.context)) {
bitmap = BitmapUtils.getBitmap(image)
}
if (isMlImageEnabled(graphicOverlay.context)) {
val mlImage =
MediaMlImageBuilder(image.image!!).setRotation(image.imageInfo.rotationDegrees).build()
requestDetectInImage(
mlImage,
graphicOverlay,
/* originalCameraImage= */ bitmap,
/* shouldShowFps= */ true,
frameStartMs
)
// When the image is from CameraX analysis use case, must call image.close() on received
// images when finished using them. Otherwise, new images may not be received or the camera
// may stall.
// Currently MlImage doesn't support ImageProxy directly, so we still need to call
// ImageProxy.close() here.
.addOnCompleteListener { image.close() }
return
}
requestDetectInImage(
InputImage.fromMediaImage(image.image!!, image.imageInfo.rotationDegrees),
graphicOverlay,
/* originalCameraImage= */ bitmap,
/* shouldShowFps= */ true,
frameStartMs
)
// When the image is from CameraX analysis use case, must call image.close() on received
// images when finished using them. Otherwise, new images may not be received or the camera
// may stall.
.addOnCompleteListener { image.close() }
}
// -----------------Common processing logic-------------------------------------------------------
private fun requestDetectInImage(
image: InputImage,
graphicOverlay: GraphicOverlay,
originalCameraImage: Bitmap?,
shouldShowFps: Boolean,
frameStartMs: Long
): Task<T> {
return setUpListener(
detectInImage(image),
graphicOverlay,
originalCameraImage,
shouldShowFps,
frameStartMs
)
}
private fun requestDetectInImage(
image: MlImage,
graphicOverlay: GraphicOverlay,
originalCameraImage: Bitmap?,
shouldShowFps: Boolean,
frameStartMs: Long
): Task<T> {
return setUpListener(
detectInImage(image),
graphicOverlay,
originalCameraImage,
shouldShowFps,
frameStartMs
)
}
private fun setUpListener(
task: Task<T>,
graphicOverlay: GraphicOverlay,
originalCameraImage: Bitmap?,
shouldShowFps: Boolean,
frameStartMs: Long
): Task<T> {
val detectorStartMs = SystemClock.elapsedRealtime()
return task
.addOnSuccessListener(
executor,
OnSuccessListener { results: T ->
val endMs = SystemClock.elapsedRealtime()
val currentFrameLatencyMs = endMs - frameStartMs
val currentDetectorLatencyMs = endMs - detectorStartMs
if (numRuns >= 500) {
resetLatencyStats()
}
numRuns++
frameProcessedInOneSecondInterval++
totalFrameMs += currentFrameLatencyMs
maxFrameMs = max(currentFrameLatencyMs, maxFrameMs)
minFrameMs = min(currentFrameLatencyMs, minFrameMs)
totalDetectorMs += currentDetectorLatencyMs
maxDetectorMs = max(currentDetectorLatencyMs, maxDetectorMs)
minDetectorMs = min(currentDetectorLatencyMs, minDetectorMs)
// Only log inference info once per second. When frameProcessedInOneSecondInterval is
// equal to 1, it means this is the first frame processed during the current second.
if (frameProcessedInOneSecondInterval == 1) {
Log.d(TAG, "Num of Runs: $numRuns")
Log.d(
TAG,
"Frame latency: max=" +
maxFrameMs +
", min=" +
minFrameMs +
", avg=" +
totalFrameMs / numRuns
)
Log.d(
TAG,
"Detector latency: max=" +
maxDetectorMs +
", min=" +
minDetectorMs +
", avg=" +
totalDetectorMs / numRuns
)
val mi = ActivityManager.MemoryInfo()
activityManager.getMemoryInfo(mi)
val availableMegs: Long = mi.availMem / 0x100000L
Log.d(TAG, "Memory available in system: $availableMegs MB")
}
graphicOverlay.clear()
if (originalCameraImage != null) {
graphicOverlay.add(CameraImageGraphic(graphicOverlay, originalCameraImage))
}
this@VisionProcessorBase.onSuccess(results, graphicOverlay)
if (!PreferenceUtils.shouldHideDetectionInfo(graphicOverlay.context)) {
graphicOverlay.add(
InferenceInfoGraphic(
graphicOverlay,
currentFrameLatencyMs,
currentDetectorLatencyMs,
if (shouldShowFps) framesPerSecond else null
)
)
}
graphicOverlay.postInvalidate()
}
)
.addOnFailureListener(
executor,
OnFailureListener { e: Exception ->
graphicOverlay.clear()
graphicOverlay.postInvalidate()
val error = "Failed to process. Error: " + e.localizedMessage
Toast.makeText(
graphicOverlay.context,
"""
$error
Cause: ${e.cause}
""".trimIndent(),
Toast.LENGTH_SHORT
)
.show()
Log.d(TAG, error)
e.printStackTrace()
this@VisionProcessorBase.onFailure(e)
}
)
}
override fun stop() {
executor.shutdown()
isShutdown = true
resetLatencyStats()
fpsTimer.cancel()
}
private fun resetLatencyStats() {
numRuns = 0
totalFrameMs = 0
maxFrameMs = 0
minFrameMs = Long.MAX_VALUE
totalDetectorMs = 0
maxDetectorMs = 0
minDetectorMs = Long.MAX_VALUE
}
protected abstract fun detectInImage(image: InputImage): Task<T>
protected open fun detectInImage(image: MlImage): Task<T> {
return Tasks.forException(
MlKitException(
"MlImage is currently not demonstrated for this feature",
MlKitException.INVALID_ARGUMENT
)
)
}
protected abstract fun onSuccess(results: T, graphicOverlay: GraphicOverlay)
protected abstract fun onFailure(e: Exception)
protected open fun isMlImageEnabled(context: Context?): Boolean {
return false
}
}

View File

@ -0,0 +1,146 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.posedetector
import android.content.Context
import android.util.Log
import com.empatnusabangsa.poseclassificationpoc.GraphicOverlay
import com.empatnusabangsa.poseclassificationpoc.MainActivity
import com.empatnusabangsa.poseclassificationpoc.VisionProcessorBase
import com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseClassifierProcessor
import com.google.android.gms.tasks.Task
import com.google.android.odml.image.MlImage
import com.google.mlkit.vision.common.InputImage
import com.google.mlkit.vision.pose.Pose
import com.google.mlkit.vision.pose.PoseDetection
import com.google.mlkit.vision.pose.PoseDetector
import com.google.mlkit.vision.pose.PoseDetectorOptionsBase
import java.util.concurrent.Executor
import java.util.concurrent.Executors
/** A processor to run pose detector. */
class PoseDetectorProcessor(
private val context: Context,
options: PoseDetectorOptionsBase,
private val showInFrameLikelihood: Boolean,
private val visualizeZ: Boolean,
private val rescaleZForVisualization: Boolean,
private val runClassification: Boolean,
private val isStreamMode: Boolean,
private val selectedPose: String,
private val callback: (String) -> Unit
) : VisionProcessorBase<PoseDetectorProcessor.PoseWithClassification>(context) {
private val detector: PoseDetector
private val classificationExecutor: Executor
private var poseClassifierProcessor: PoseClassifierProcessor? = null
/** Internal class to hold Pose and classification results. */
class PoseWithClassification(val pose: Pose, val classificationResult: List<String>)
init {
detector = PoseDetection.getClient(options)
classificationExecutor = Executors.newSingleThreadExecutor()
}
override fun stop() {
super.stop()
detector.close()
}
override fun detectInImage(image: InputImage): Task<PoseWithClassification> {
return detector
.process(image)
.continueWith(
classificationExecutor,
{ task ->
val pose = task.getResult()
var classificationResult: List<String> = ArrayList()
if (runClassification) {
if (poseClassifierProcessor == null) {
poseClassifierProcessor = PoseClassifierProcessor(context, isStreamMode, selectedPose)
}
classificationResult = poseClassifierProcessor!!.getPoseResult(pose)
if(!classificationResult.isEmpty()){
poseClassification = classificationResult[0]
}
}
PoseWithClassification(pose, classificationResult)
}
)
}
override fun detectInImage(image: MlImage): Task<PoseWithClassification> {
return detector
.process(image)
.continueWith(
classificationExecutor,
{ task ->
val pose = task.getResult()
var classificationResult: List<String> = ArrayList()
if (runClassification) {
if (poseClassifierProcessor == null) {
poseClassifierProcessor = PoseClassifierProcessor(context, isStreamMode, selectedPose)
}
classificationResult = poseClassifierProcessor!!.getPoseResult(pose)
if(!classificationResult.isEmpty()){
poseClassification = classificationResult[0]
this.callback.invoke(poseClassification)
}
}
PoseWithClassification(pose, classificationResult)
}
)
}
override fun onSuccess(
poseWithClassification: PoseWithClassification,
graphicOverlay: GraphicOverlay
) {
graphicOverlay.add(
PoseGraphic(
graphicOverlay,
poseWithClassification.pose,
showInFrameLikelihood,
visualizeZ,
rescaleZForVisualization,
poseWithClassification.classificationResult
)
)
}
override fun onFailure(e: Exception) {
Log.e(TAG, "Pose detection failed!", e)
}
override fun isMlImageEnabled(context: Context?): Boolean {
// Use MlImage in Pose Detection by default, change it to OFF to switch to InputImage.
return true
}
fun getPoseClassification(): String {
return poseClassification
}
companion object {
var poseClassification : String = ""
private val TAG = "PoseDetectorProcessor"
}
}

View File

@ -0,0 +1,261 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.posedetector
import android.graphics.Canvas
import android.graphics.Color
import android.graphics.Paint
import com.google.common.primitives.Ints
import com.empatnusabangsa.poseclassificationpoc.GraphicOverlay
import com.empatnusabangsa.poseclassificationpoc.GraphicOverlay.Graphic
import com.google.mlkit.vision.pose.Pose
import com.google.mlkit.vision.pose.PoseLandmark
import java.lang.Math.max
import java.lang.Math.min
import java.util.Locale
/** Draw the detected pose in preview. */
class PoseGraphic internal constructor(
overlay: GraphicOverlay,
private val pose: Pose,
private val showInFrameLikelihood: Boolean,
private val visualizeZ: Boolean,
private val rescaleZForVisualization: Boolean,
private val poseClassification: List<String>
) : Graphic(overlay) {
private var zMin = java.lang.Float.MAX_VALUE
private var zMax = java.lang.Float.MIN_VALUE
private val classificationTextPaint: Paint
private val leftPaint: Paint
private val rightPaint: Paint
private val whitePaint: Paint
init {
classificationTextPaint = Paint()
classificationTextPaint.color = Color.WHITE
classificationTextPaint.textSize = POSE_CLASSIFICATION_TEXT_SIZE
classificationTextPaint.setShadowLayer(5.0f, 0f, 0f, Color.BLACK)
whitePaint = Paint()
whitePaint.strokeWidth = STROKE_WIDTH
whitePaint.color = Color.WHITE
whitePaint.textSize = IN_FRAME_LIKELIHOOD_TEXT_SIZE
leftPaint = Paint()
leftPaint.strokeWidth = STROKE_WIDTH
leftPaint.color = Color.GREEN
rightPaint = Paint()
rightPaint.strokeWidth = STROKE_WIDTH
rightPaint.color = Color.YELLOW
}
override fun draw(canvas: Canvas) {
val landmarks = pose.allPoseLandmarks
if (landmarks.isEmpty()) {
return
}
// Draw pose classification text.
val classificationX = POSE_CLASSIFICATION_TEXT_SIZE * 0.5f
for (i in poseClassification.indices) {
val classificationY = canvas.height - (
POSE_CLASSIFICATION_TEXT_SIZE * 1.5f * (poseClassification.size - i).toFloat()
)
canvas.drawText(
poseClassification[i],
classificationX,
classificationY,
classificationTextPaint
)
}
// Draw all the points
for (landmark in landmarks) {
drawPoint(canvas, landmark, whitePaint)
if (visualizeZ && rescaleZForVisualization) {
zMin = min(zMin, landmark.position3D.z)
zMax = max(zMax, landmark.position3D.z)
}
}
val nose = pose.getPoseLandmark(PoseLandmark.NOSE)
val lefyEyeInner = pose.getPoseLandmark(PoseLandmark.LEFT_EYE_INNER)
val lefyEye = pose.getPoseLandmark(PoseLandmark.LEFT_EYE)
val leftEyeOuter = pose.getPoseLandmark(PoseLandmark.LEFT_EYE_OUTER)
val rightEyeInner = pose.getPoseLandmark(PoseLandmark.RIGHT_EYE_INNER)
val rightEye = pose.getPoseLandmark(PoseLandmark.RIGHT_EYE)
val rightEyeOuter = pose.getPoseLandmark(PoseLandmark.RIGHT_EYE_OUTER)
val leftEar = pose.getPoseLandmark(PoseLandmark.LEFT_EAR)
val rightEar = pose.getPoseLandmark(PoseLandmark.RIGHT_EAR)
val leftMouth = pose.getPoseLandmark(PoseLandmark.LEFT_MOUTH)
val rightMouth = pose.getPoseLandmark(PoseLandmark.RIGHT_MOUTH)
val leftShoulder = pose.getPoseLandmark(PoseLandmark.LEFT_SHOULDER)
val rightShoulder = pose.getPoseLandmark(PoseLandmark.RIGHT_SHOULDER)
val leftElbow = pose.getPoseLandmark(PoseLandmark.LEFT_ELBOW)
val rightElbow = pose.getPoseLandmark(PoseLandmark.RIGHT_ELBOW)
val leftWrist = pose.getPoseLandmark(PoseLandmark.LEFT_WRIST)
val rightWrist = pose.getPoseLandmark(PoseLandmark.RIGHT_WRIST)
val leftHip = pose.getPoseLandmark(PoseLandmark.LEFT_HIP)
val rightHip = pose.getPoseLandmark(PoseLandmark.RIGHT_HIP)
val leftKnee = pose.getPoseLandmark(PoseLandmark.LEFT_KNEE)
val rightKnee = pose.getPoseLandmark(PoseLandmark.RIGHT_KNEE)
val leftAnkle = pose.getPoseLandmark(PoseLandmark.LEFT_ANKLE)
val rightAnkle = pose.getPoseLandmark(PoseLandmark.RIGHT_ANKLE)
val leftPinky = pose.getPoseLandmark(PoseLandmark.LEFT_PINKY)
val rightPinky = pose.getPoseLandmark(PoseLandmark.RIGHT_PINKY)
val leftIndex = pose.getPoseLandmark(PoseLandmark.LEFT_INDEX)
val rightIndex = pose.getPoseLandmark(PoseLandmark.RIGHT_INDEX)
val leftThumb = pose.getPoseLandmark(PoseLandmark.LEFT_THUMB)
val rightThumb = pose.getPoseLandmark(PoseLandmark.RIGHT_THUMB)
val leftHeel = pose.getPoseLandmark(PoseLandmark.LEFT_HEEL)
val rightHeel = pose.getPoseLandmark(PoseLandmark.RIGHT_HEEL)
val leftFootIndex = pose.getPoseLandmark(PoseLandmark.LEFT_FOOT_INDEX)
val rightFootIndex = pose.getPoseLandmark(PoseLandmark.RIGHT_FOOT_INDEX)
// Face
drawLine(canvas, nose, lefyEyeInner, whitePaint)
drawLine(canvas, lefyEyeInner, lefyEye, whitePaint)
drawLine(canvas, lefyEye, leftEyeOuter, whitePaint)
drawLine(canvas, leftEyeOuter, leftEar, whitePaint)
drawLine(canvas, nose, rightEyeInner, whitePaint)
drawLine(canvas, rightEyeInner, rightEye, whitePaint)
drawLine(canvas, rightEye, rightEyeOuter, whitePaint)
drawLine(canvas, rightEyeOuter, rightEar, whitePaint)
drawLine(canvas, leftMouth, rightMouth, whitePaint)
drawLine(canvas, leftShoulder, rightShoulder, whitePaint)
drawLine(canvas, leftHip, rightHip, whitePaint)
// Left body
drawLine(canvas, leftShoulder, leftElbow, leftPaint)
drawLine(canvas, leftElbow, leftWrist, leftPaint)
drawLine(canvas, leftShoulder, leftHip, leftPaint)
drawLine(canvas, leftHip, leftKnee, leftPaint)
drawLine(canvas, leftKnee, leftAnkle, leftPaint)
drawLine(canvas, leftWrist, leftThumb, leftPaint)
drawLine(canvas, leftWrist, leftPinky, leftPaint)
drawLine(canvas, leftWrist, leftIndex, leftPaint)
drawLine(canvas, leftIndex, leftPinky, leftPaint)
drawLine(canvas, leftAnkle, leftHeel, leftPaint)
drawLine(canvas, leftHeel, leftFootIndex, leftPaint)
// Right body
drawLine(canvas, rightShoulder, rightElbow, rightPaint)
drawLine(canvas, rightElbow, rightWrist, rightPaint)
drawLine(canvas, rightShoulder, rightHip, rightPaint)
drawLine(canvas, rightHip, rightKnee, rightPaint)
drawLine(canvas, rightKnee, rightAnkle, rightPaint)
drawLine(canvas, rightWrist, rightThumb, rightPaint)
drawLine(canvas, rightWrist, rightPinky, rightPaint)
drawLine(canvas, rightWrist, rightIndex, rightPaint)
drawLine(canvas, rightIndex, rightPinky, rightPaint)
drawLine(canvas, rightAnkle, rightHeel, rightPaint)
drawLine(canvas, rightHeel, rightFootIndex, rightPaint)
// Draw inFrameLikelihood for all points
if (showInFrameLikelihood) {
for (landmark in landmarks) {
canvas.drawText(
String.format(Locale.US, "%.2f", landmark.inFrameLikelihood),
translateX(landmark.position.x),
translateY(landmark.position.y),
whitePaint
)
}
}
}
internal fun drawPoint(canvas: Canvas, landmark: PoseLandmark, paint: Paint) {
val point = landmark.position3D
maybeUpdatePaintColor(paint, canvas, point.z)
canvas.drawCircle(translateX(point.x), translateY(point.y), DOT_RADIUS, paint)
}
internal fun drawLine(
canvas: Canvas,
startLandmark: PoseLandmark?,
endLandmark: PoseLandmark?,
paint: Paint
) {
val start = startLandmark!!.position3D
val end = endLandmark!!.position3D
// Gets average z for the current body line
val avgZInImagePixel = (start.z + end.z) / 2
maybeUpdatePaintColor(paint, canvas, avgZInImagePixel)
canvas.drawLine(
translateX(start.x),
translateY(start.y),
translateX(end.x),
translateY(end.y),
paint
)
}
internal fun maybeUpdatePaintColor(
paint: Paint,
canvas: Canvas,
zInImagePixel: Float
) {
if (!visualizeZ) {
return
}
// When visualizeZ is true, sets up the paint to different colors based on z values.
// Gets the range of z value.
val zLowerBoundInScreenPixel: Float
val zUpperBoundInScreenPixel: Float
if (rescaleZForVisualization) {
zLowerBoundInScreenPixel = min(-0.001f, scale(zMin))
zUpperBoundInScreenPixel = max(0.001f, scale(zMax))
} else {
// By default, assume the range of z value in screen pixel is [-canvasWidth, canvasWidth].
val defaultRangeFactor = 1f
zLowerBoundInScreenPixel = -defaultRangeFactor * canvas.width
zUpperBoundInScreenPixel = defaultRangeFactor * canvas.width
}
val zInScreenPixel = scale(zInImagePixel)
if (zInScreenPixel < 0) {
// Sets up the paint to draw the body line in red if it is in front of the z origin.
// Maps values within [zLowerBoundInScreenPixel, 0) to [255, 0) and use it to control the
// color. The larger the value is, the more red it will be.
var v = (zInScreenPixel / zLowerBoundInScreenPixel * 255).toInt()
v = Ints.constrainToRange(v, 0, 255)
paint.setARGB(255, 255, 255 - v, 255 - v)
} else {
// Sets up the paint to draw the body line in blue if it is behind the z origin.
// Maps values within [0, zUpperBoundInScreenPixel] to [0, 255] and use it to control the
// color. The larger the value is, the more blue it will be.
var v = (zInScreenPixel / zUpperBoundInScreenPixel * 255).toInt()
v = Ints.constrainToRange(v, 0, 255)
paint.setARGB(255, 255 - v, 255 - v, 255)
}
}
companion object {
private val DOT_RADIUS = 8.0f
private val IN_FRAME_LIKELIHOOD_TEXT_SIZE = 30.0f
private val STROKE_WIDTH = 10.0f
private val POSE_CLASSIFICATION_TEXT_SIZE = 60.0f
}
}

View File

@ -0,0 +1,61 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.posedetector.classification;
import static java.util.Collections.max;
import java.util.HashMap;
import java.util.Map;
import java.util.Set;
/**
* Represents Pose classification result as outputted by {@link PoseClassifier}. Can be manipulated.
*/
public class ClassificationResult {
// For an entry in this map, the key is the class name, and the value is how many times this class
// appears in the top K nearest neighbors. The value is in range [0, K] and could be a float after
// EMA smoothing. We use this number to represent the confidence of a pose being in this class.
private final Map<String, Float> classConfidences;
public ClassificationResult() {
classConfidences = new HashMap<>();
}
public Set<String> getAllClasses() {
return classConfidences.keySet();
}
public float getClassConfidence(String className) {
return classConfidences.containsKey(className) ? classConfidences.get(className) : 0;
}
public String getMaxConfidenceClass() {
return max(
classConfidences.entrySet(),
(entry1, entry2) -> (int) (entry1.getValue() - entry2.getValue()))
.getKey();
}
public void incrementClassConfidence(String className) {
classConfidences.put(className,
classConfidences.containsKey(className) ? classConfidences.get(className) + 1 : 1);
}
public void putClassConfidence(String className, float confidence) {
classConfidences.put(className, confidence);
}
}

View File

@ -0,0 +1,92 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.posedetector.classification;
import android.os.SystemClock;
import java.util.Deque;
import java.util.HashSet;
import java.util.Set;
import java.util.concurrent.LinkedBlockingDeque;
/**
* Runs EMA smoothing over a window with given stream of pose classification results.
*/
public class EMASmoothing {
private static final int DEFAULT_WINDOW_SIZE = 10;
private static final float DEFAULT_ALPHA = 0.2f;
private static final long RESET_THRESHOLD_MS = 100;
private final int windowSize;
private final float alpha;
// This is a window of {@link ClassificationResult}s as outputted by the {@link PoseClassifier}.
// We run smoothing over this window of size {@link windowSize}.
private final Deque<com.empatnusabangsa.poseclassificationpoc.posedetector.classification.ClassificationResult> window;
private long lastInputMs;
public EMASmoothing() {
this(DEFAULT_WINDOW_SIZE, DEFAULT_ALPHA);
}
public EMASmoothing(int windowSize, float alpha) {
this.windowSize = windowSize;
this.alpha = alpha;
this.window = new LinkedBlockingDeque<>(windowSize);
}
public com.empatnusabangsa.poseclassificationpoc.posedetector.classification.ClassificationResult getSmoothedResult(com.empatnusabangsa.poseclassificationpoc.posedetector.classification.ClassificationResult classificationResult) {
// Resets memory if the input is too far away from the previous one in time.
long nowMs = SystemClock.elapsedRealtime();
if (nowMs - lastInputMs > RESET_THRESHOLD_MS) {
window.clear();
}
lastInputMs = nowMs;
// If we are at window size, remove the last (oldest) result.
if (window.size() == windowSize) {
window.pollLast();
}
// Insert at the beginning of the window.
window.addFirst(classificationResult);
Set<String> allClasses = new HashSet<>();
for (com.empatnusabangsa.poseclassificationpoc.posedetector.classification.ClassificationResult result : window) {
allClasses.addAll(result.getAllClasses());
}
com.empatnusabangsa.poseclassificationpoc.posedetector.classification.ClassificationResult smoothedResult = new com.empatnusabangsa.poseclassificationpoc.posedetector.classification.ClassificationResult();
for (String className : allClasses) {
float factor = 1;
float topSum = 0;
float bottomSum = 0;
for (com.empatnusabangsa.poseclassificationpoc.posedetector.classification.ClassificationResult result : window) {
float value = result.getClassConfidence(className);
topSum += factor * value;
bottomSum += factor;
factor = (float) (factor * (1.0 - alpha));
}
smoothedResult.putClassConfidence(className, topSum / bottomSum);
}
return smoothedResult;
}
}

View File

@ -0,0 +1,172 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.posedetector.classification;
import static com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseEmbedding.getPoseEmbedding;
import static com.empatnusabangsa.poseclassificationpoc.posedetector.classification.Utils.maxAbs;
import static com.empatnusabangsa.poseclassificationpoc.posedetector.classification.Utils.multiply;
import static com.empatnusabangsa.poseclassificationpoc.posedetector.classification.Utils.multiplyAll;
import static com.empatnusabangsa.poseclassificationpoc.posedetector.classification.Utils.subtract;
import static com.empatnusabangsa.poseclassificationpoc.posedetector.classification.Utils.sumAbs;
import static java.lang.Math.max;
import static java.lang.Math.min;
import android.util.Pair;
import com.google.mlkit.vision.common.PointF3D;
import com.google.mlkit.vision.pose.Pose;
import com.google.mlkit.vision.pose.PoseLandmark;
import java.util.ArrayList;
import java.util.List;
import java.util.PriorityQueue;
/**
* Classifies {link Pose} based on given {@link com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample}s.
*
* <p>Inspired by K-Nearest Neighbors Algorithm with outlier filtering.
* https://en.wikipedia.org/wiki/K-nearest_neighbors_algorithm
*/
public class PoseClassifier {
private static final String TAG = "PoseClassifier";
private static final int MAX_DISTANCE_TOP_K = 30;
private static final int MEAN_DISTANCE_TOP_K = 10;
// Note Z has a lower weight as it is generally less accurate than X & Y.
private static final PointF3D AXES_WEIGHTS = PointF3D.from(1, 1, 0.2f);
private final List<com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample> poseSamples;
private final int maxDistanceTopK;
private final int meanDistanceTopK;
private final PointF3D axesWeights;
public PoseClassifier(List<com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample> poseSamples) {
this(poseSamples, MAX_DISTANCE_TOP_K, MEAN_DISTANCE_TOP_K, AXES_WEIGHTS);
}
public PoseClassifier(List<com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample> poseSamples, int maxDistanceTopK,
int meanDistanceTopK, PointF3D axesWeights) {
this.poseSamples = poseSamples;
this.maxDistanceTopK = maxDistanceTopK;
this.meanDistanceTopK = meanDistanceTopK;
this.axesWeights = axesWeights;
}
private static List<PointF3D> extractPoseLandmarks(Pose pose) {
List<PointF3D> landmarks = new ArrayList<>();
for (PoseLandmark poseLandmark : pose.getAllPoseLandmarks()) {
landmarks.add(poseLandmark.getPosition3D());
}
return landmarks;
}
/**
* Returns the max range of confidence values.
*
* <p><Since we calculate confidence by counting {@link com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample}s that survived
* outlier-filtering by maxDistanceTopK and meanDistanceTopK, this range is the minimum of two.
*/
public int confidenceRange() {
return min(maxDistanceTopK, meanDistanceTopK);
}
public ClassificationResult classify(Pose pose) {
return classify(extractPoseLandmarks(pose));
}
public com.empatnusabangsa.poseclassificationpoc.posedetector.classification.ClassificationResult classify(List<PointF3D> landmarks) {
com.empatnusabangsa.poseclassificationpoc.posedetector.classification.ClassificationResult result = new com.empatnusabangsa.poseclassificationpoc.posedetector.classification.ClassificationResult();
// Return early if no landmarks detected.
if (landmarks.isEmpty()) {
return result;
}
// We do flipping on X-axis so we are horizontal (mirror) invariant.
List<PointF3D> flippedLandmarks = new ArrayList<>(landmarks);
multiplyAll(flippedLandmarks, PointF3D.from(-1, 1, 1));
List<PointF3D> embedding = getPoseEmbedding(landmarks);
List<PointF3D> flippedEmbedding = getPoseEmbedding(flippedLandmarks);
// Classification is done in two stages:
// * First we pick top-K samples by MAX distance. It allows to remove samples that are almost
// the same as given pose, but maybe has few joints bent in the other direction.
// * Then we pick top-K samples by MEAN distance. After outliers are removed, we pick samples
// that are closest by average.
// Keeps max distance on top so we can pop it when top_k size is reached.
PriorityQueue<Pair<com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample, Float>> maxDistances = new PriorityQueue<>(
maxDistanceTopK, (o1, o2) -> -Float.compare(o1.second, o2.second));
// Retrieve top K poseSamples by least distance to remove outliers.
for (com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample poseSample : poseSamples) {
List<PointF3D> sampleEmbedding = poseSample.getEmbedding();
float originalMax = 0;
float flippedMax = 0;
for (int i = 0; i < embedding.size(); i++) {
originalMax =
max(
originalMax,
maxAbs(multiply(subtract(embedding.get(i), sampleEmbedding.get(i)), axesWeights)));
flippedMax =
max(
flippedMax,
maxAbs(
multiply(
subtract(flippedEmbedding.get(i), sampleEmbedding.get(i)), axesWeights)));
}
// Set the max distance as min of original and flipped max distance.
maxDistances.add(new Pair<>(poseSample, min(originalMax, flippedMax)));
// We only want to retain top n so pop the highest distance.
if (maxDistances.size() > maxDistanceTopK) {
maxDistances.poll();
}
}
// Keeps higher mean distances on top so we can pop it when top_k size is reached.
PriorityQueue<Pair<com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample, Float>> meanDistances = new PriorityQueue<>(
meanDistanceTopK, (o1, o2) -> -Float.compare(o1.second, o2.second));
// Retrive top K poseSamples by least mean distance to remove outliers.
for (Pair<com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample, Float> sampleDistances : maxDistances) {
com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample poseSample = sampleDistances.first;
List<PointF3D> sampleEmbedding = poseSample.getEmbedding();
float originalSum = 0;
float flippedSum = 0;
for (int i = 0; i < embedding.size(); i++) {
originalSum += sumAbs(multiply(
subtract(embedding.get(i), sampleEmbedding.get(i)), axesWeights));
flippedSum += sumAbs(
multiply(subtract(flippedEmbedding.get(i), sampleEmbedding.get(i)), axesWeights));
}
// Set the mean distance as min of original and flipped mean distances.
float meanDistance = min(originalSum, flippedSum) / (embedding.size() * 2);
meanDistances.add(new Pair<>(poseSample, meanDistance));
// We only want to retain top k so pop the highest mean distance.
if (meanDistances.size() > meanDistanceTopK) {
meanDistances.poll();
}
}
for (Pair<com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample, Float> sampleDistances : meanDistances) {
String className = sampleDistances.first.getClassName();
result.incrementClassConfidence(className);
}
return result;
}
}

View File

@ -0,0 +1,185 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.posedetector.classification;
import android.content.Context;
import android.media.AudioManager;
import android.media.ToneGenerator;
import android.os.Looper;
import android.util.Log;
import androidx.annotation.WorkerThread;
import com.empatnusabangsa.poseclassificationpoc.MainActivity;
import com.google.common.base.Preconditions;
import com.google.mlkit.vision.pose.Pose;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
/**
* Accepts a stream of {@link Pose} for classification and Rep counting.
*/
public class PoseClassifierProcessor {
private static final String TAG = "PoseClassifierProcessor";
private static final String POSE_SAMPLES_FILE = "pose/poc_poses.csv";
// private static final String POSE_SAMPLES_FILE = "pose/fitness_pose_samples.csv";
// Specify classes for which we want rep counting.
// These are the labels in the given {@code POSE_SAMPLES_FILE}. You can set your own class labels
// for your pose samples.
private static final String PUSHUPS_CLASS = "pushups_down";
private static final String SQUATS_CLASS = "squats_down";
private static final String SIT_CLASS = "sit";
private static final String STAND_CLASS = "stand";
private static final String FACE_LEFT = "face_left";
private static final String FACE_RIGHT = "face_right";
private static final String[] POSE_CLASSES = {
STAND_CLASS, SIT_CLASS, FACE_LEFT, FACE_RIGHT
};
private static final String[] REPEAT_CLASSES = {
SQUATS_CLASS
};
private final boolean isStreamMode;
private com.empatnusabangsa.poseclassificationpoc.posedetector.classification.EMASmoothing emaSmoothing;
private List<RepetitionCounter> repCounters;
private PoseClassifier poseClassifier;
private String lastRepResult;
private String selectedPose;
@WorkerThread
public PoseClassifierProcessor(Context context, boolean isStreamMode, String selectedPose) {
Preconditions.checkState(Looper.myLooper() != Looper.getMainLooper());
this.isStreamMode = isStreamMode;
this.selectedPose = selectedPose;
if (isStreamMode) {
emaSmoothing = new com.empatnusabangsa.poseclassificationpoc.posedetector.classification.EMASmoothing();
repCounters = new ArrayList<>();
lastRepResult = "";
}
loadPoseSamples(context);
}
private void loadPoseSamples(Context context) {
List<com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample> poseSamples = new ArrayList<>();
try {
BufferedReader reader = new BufferedReader(
new InputStreamReader(context.getAssets().open(POSE_SAMPLES_FILE)));
String csvLine = reader.readLine();
while (csvLine != null) {
// If line is not a valid {@link PoseSample}, we'll get null and skip adding to the list.
com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample poseSample = com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseSample.getPoseSample(csvLine, ",");
if (poseSample != null) {
poseSamples.add(poseSample);
}
csvLine = reader.readLine();
}
} catch (IOException e) {
Log.e(TAG, "Error when loading pose samples.\n" + e);
}
poseClassifier = new PoseClassifier(poseSamples);
if (isStreamMode) {
for (String className : REPEAT_CLASSES) {
repCounters.add(new RepetitionCounter(className));
}
}
}
/**
* Given a new {@link Pose} input, returns a list of formatted {@link String}s with Pose
* classification results.
*
* <p>Currently it returns up to 2 strings as following:
* 0: PoseClass : X reps
* 1: PoseClass : [0.0-1.0] confidence
*/
@WorkerThread
public List<String> getPoseResult(Pose pose) {
Preconditions.checkState(Looper.myLooper() != Looper.getMainLooper());
List<String> result = new ArrayList<>();
ClassificationResult classification = poseClassifier.classify(pose);
// Update {@link RepetitionCounter}s if {@code isStreamMode}.
if (isStreamMode) {
// Feed pose to smoothing even if no pose found.
classification = emaSmoothing.getSmoothedResult(classification);
// Return early without updating repCounter if no pose found.
if (pose.getAllPoseLandmarks().isEmpty()) {
result.add(lastRepResult);
return result;
}
Log.d(TAG, "getPoseResult: " + classification);
Log.d(TAG, "pose: " + pose);
if(selectedPose == SQUATS_CLASS) {
for (RepetitionCounter repCounter : repCounters) {
int repsBefore = repCounter.getNumRepeats();
int repsAfter = repCounter.addClassificationResult(classification);
if (repsAfter > repsBefore && repCounter.getClassName() == SQUATS_CLASS) {
// Play a fun beep when rep counter updates.
ToneGenerator tg = new ToneGenerator(AudioManager.STREAM_NOTIFICATION, 100);
tg.startTone(ToneGenerator.TONE_PROP_BEEP);
lastRepResult = String.format(
Locale.US, "%s : %d reps", repCounter.getClassName(), repsAfter);
break;
}
}
result.add(lastRepResult);
} else {
for(String classes : classification.getAllClasses()) {
float classConfidence = classification.getClassConfidence(classes);
if(classConfidence > 7.5f) {
result.add(classes);
result.add(String.valueOf(classification.getClassConfidence(classes)));
}
}
}
}
// Add maxConfidence class of current frame to result if pose is found.
// if (!pose.getAllPoseLandmarks().isEmpty()) {
// String maxConfidenceClass = classification.getMaxConfidenceClass();
// String maxConfidenceClassResult = String.format(
// Locale.US,
// "%s : %.2f confidence",
// maxConfidenceClass,
// classification.getClassConfidence(maxConfidenceClass)
// / poseClassifier.confidenceRange());
// result.add(maxConfidenceClassResult);
// }
return result;
}
}

View File

@ -0,0 +1,143 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.posedetector.classification;
import static com.empatnusabangsa.poseclassificationpoc.posedetector.classification.Utils.average;
import static com.empatnusabangsa.poseclassificationpoc.posedetector.classification.Utils.l2Norm2D;
import static com.empatnusabangsa.poseclassificationpoc.posedetector.classification.Utils.multiplyAll;
import static com.empatnusabangsa.poseclassificationpoc.posedetector.classification.Utils.subtract;
import static com.empatnusabangsa.poseclassificationpoc.posedetector.classification.Utils.subtractAll;
import com.google.mlkit.vision.common.PointF3D;
import com.google.mlkit.vision.pose.PoseLandmark;
import java.util.ArrayList;
import java.util.List;
/**
* Generates embedding for given list of Pose landmarks.
*/
public class PoseEmbedding {
// Multiplier to apply to the torso to get minimal body size. Picked this by experimentation.
private static final float TORSO_MULTIPLIER = 2.5f;
public static List<PointF3D> getPoseEmbedding(List<PointF3D> landmarks) {
List<PointF3D> normalizedLandmarks = normalize(landmarks);
return getEmbedding(normalizedLandmarks);
}
private static List<PointF3D> normalize(List<PointF3D> landmarks) {
List<PointF3D> normalizedLandmarks = new ArrayList<>(landmarks);
// Normalize translation.
PointF3D center = average(
landmarks.get(PoseLandmark.LEFT_HIP), landmarks.get(PoseLandmark.RIGHT_HIP));
subtractAll(center, normalizedLandmarks);
// Normalize scale.
multiplyAll(normalizedLandmarks, 1 / getPoseSize(normalizedLandmarks));
// Multiplication by 100 is not required, but makes it easier to debug.
multiplyAll(normalizedLandmarks, 100);
return normalizedLandmarks;
}
// Translation normalization should've been done prior to calling this method.
private static float getPoseSize(List<PointF3D> landmarks) {
// Note: This approach uses only 2D landmarks to compute pose size as using Z wasn't helpful
// in our experimentation but you're welcome to tweak.
PointF3D hipsCenter = average(
landmarks.get(PoseLandmark.LEFT_HIP), landmarks.get(PoseLandmark.RIGHT_HIP));
PointF3D shouldersCenter = average(
landmarks.get(PoseLandmark.LEFT_SHOULDER),
landmarks.get(PoseLandmark.RIGHT_SHOULDER));
float torsoSize = l2Norm2D(subtract(hipsCenter, shouldersCenter));
float maxDistance = torsoSize * TORSO_MULTIPLIER;
// torsoSize * TORSO_MULTIPLIER is the floor we want based on experimentation but actual size
// can be bigger for a given pose depending on extension of limbs etc so we calculate that.
for (PointF3D landmark : landmarks) {
float distance = l2Norm2D(subtract(hipsCenter, landmark));
if (distance > maxDistance) {
maxDistance = distance;
}
}
return maxDistance;
}
private static List<PointF3D> getEmbedding(List<PointF3D> lm) {
List<PointF3D> embedding = new ArrayList<>();
// We use several pairwise 3D distances to form pose embedding. These were selected
// based on experimentation for best results with our default pose classes as captued in the
// pose samples csv. Feel free to play with this and add or remove for your use-cases.
// We group our distances by number of joints between the pairs.
// One joint.
embedding.add(subtract(
average(lm.get(PoseLandmark.LEFT_HIP), lm.get(PoseLandmark.RIGHT_HIP)),
average(lm.get(PoseLandmark.LEFT_SHOULDER), lm.get(PoseLandmark.RIGHT_SHOULDER))
));
embedding.add(subtract(
lm.get(PoseLandmark.LEFT_SHOULDER), lm.get(PoseLandmark.LEFT_ELBOW)));
embedding.add(subtract(
lm.get(PoseLandmark.RIGHT_SHOULDER), lm.get(PoseLandmark.RIGHT_ELBOW)));
embedding.add(subtract(lm.get(PoseLandmark.LEFT_ELBOW), lm.get(PoseLandmark.LEFT_WRIST)));
embedding.add(subtract(lm.get(PoseLandmark.RIGHT_ELBOW), lm.get(PoseLandmark.RIGHT_WRIST)));
embedding.add(subtract(lm.get(PoseLandmark.LEFT_HIP), lm.get(PoseLandmark.LEFT_KNEE)));
embedding.add(subtract(lm.get(PoseLandmark.RIGHT_HIP), lm.get(PoseLandmark.RIGHT_KNEE)));
embedding.add(subtract(lm.get(PoseLandmark.LEFT_KNEE), lm.get(PoseLandmark.LEFT_ANKLE)));
embedding.add(subtract(lm.get(PoseLandmark.RIGHT_KNEE), lm.get(PoseLandmark.RIGHT_ANKLE)));
// Two joints.
embedding.add(subtract(
lm.get(PoseLandmark.LEFT_SHOULDER), lm.get(PoseLandmark.LEFT_WRIST)));
embedding.add(subtract(
lm.get(PoseLandmark.RIGHT_SHOULDER), lm.get(PoseLandmark.RIGHT_WRIST)));
embedding.add(subtract(lm.get(PoseLandmark.LEFT_HIP), lm.get(PoseLandmark.LEFT_ANKLE)));
embedding.add(subtract(lm.get(PoseLandmark.RIGHT_HIP), lm.get(PoseLandmark.RIGHT_ANKLE)));
// Four joints.
embedding.add(subtract(lm.get(PoseLandmark.LEFT_HIP), lm.get(PoseLandmark.LEFT_WRIST)));
embedding.add(subtract(lm.get(PoseLandmark.RIGHT_HIP), lm.get(PoseLandmark.RIGHT_WRIST)));
// Five joints.
embedding.add(subtract(
lm.get(PoseLandmark.LEFT_SHOULDER), lm.get(PoseLandmark.LEFT_ANKLE)));
embedding.add(subtract(
lm.get(PoseLandmark.RIGHT_SHOULDER), lm.get(PoseLandmark.RIGHT_ANKLE)));
embedding.add(subtract(lm.get(PoseLandmark.LEFT_HIP), lm.get(PoseLandmark.LEFT_WRIST)));
embedding.add(subtract(lm.get(PoseLandmark.RIGHT_HIP), lm.get(PoseLandmark.RIGHT_WRIST)));
// Cross body.
embedding.add(subtract(lm.get(PoseLandmark.LEFT_ELBOW), lm.get(PoseLandmark.RIGHT_ELBOW)));
embedding.add(subtract(lm.get(PoseLandmark.LEFT_KNEE), lm.get(PoseLandmark.RIGHT_KNEE)));
embedding.add(subtract(lm.get(PoseLandmark.LEFT_WRIST), lm.get(PoseLandmark.RIGHT_WRIST)));
embedding.add(subtract(lm.get(PoseLandmark.LEFT_ANKLE), lm.get(PoseLandmark.RIGHT_ANKLE)));
return embedding;
}
private PoseEmbedding() {}
}

View File

@ -0,0 +1,83 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.posedetector.classification;
import android.util.Log;
import com.google.common.base.Splitter;
import com.google.mlkit.vision.common.PointF3D;
import java.util.ArrayList;
import java.util.List;
/**
* Reads Pose samples from a csv file.
*/
public class PoseSample {
private static final String TAG = "PoseSample";
private static final int NUM_LANDMARKS = 33;
private static final int NUM_DIMS = 3;
private final String name;
private final String className;
private final List<PointF3D> embedding;
public PoseSample(String name, String className, List<PointF3D> landmarks) {
this.name = name;
this.className = className;
this.embedding = com.empatnusabangsa.poseclassificationpoc.posedetector.classification.PoseEmbedding.getPoseEmbedding(landmarks);
}
public String getName() {
return name;
}
public String getClassName() {
return className;
}
public List<PointF3D> getEmbedding() {
return embedding;
}
public static PoseSample getPoseSample(String csvLine, String separator) {
List<String> tokens = Splitter.onPattern(separator).splitToList(csvLine);
// Format is expected to be Name,Class,X1,Y1,Z1,X2,Y2,Z2...
// + 2 is for Name & Class.
if (tokens.size() != (NUM_LANDMARKS * NUM_DIMS) + 2) {
Log.e(TAG, "Invalid number of tokens for PoseSample");
return null;
}
String name = tokens.get(0);
String className = tokens.get(1);
List<PointF3D> landmarks = new ArrayList<>();
// Read from the third token, first 2 tokens are name and class.
for (int i = 2; i < tokens.size(); i += NUM_DIMS) {
try {
landmarks.add(
PointF3D.from(
Float.parseFloat(tokens.get(i)),
Float.parseFloat(tokens.get(i + 1)),
Float.parseFloat(tokens.get(i + 2))));
} catch (NullPointerException | NumberFormatException e) {
Log.e(TAG, "Invalid value " + tokens.get(i) + " for landmark position.");
return null;
}
}
return new PoseSample(name, className, landmarks);
}
}

View File

@ -0,0 +1,80 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.posedetector.classification;
import android.util.Log;
/**
* Counts reps for the give class.
*/
public class RepetitionCounter {
// These thresholds can be tuned in conjunction with the Top K values in {@link PoseClassifier}.
// The default Top K value is 10 so the range here is [0-10].
private static final float DEFAULT_ENTER_THRESHOLD = 6f;
private static final float DEFAULT_EXIT_THRESHOLD = 4f;
private final String className;
private final float enterThreshold;
private final float exitThreshold;
private int numRepeats;
private boolean poseEntered;
public RepetitionCounter(String className) {
this(className, DEFAULT_ENTER_THRESHOLD, DEFAULT_EXIT_THRESHOLD);
}
public RepetitionCounter(String className, float enterThreshold, float exitThreshold) {
this.className = className;
this.enterThreshold = enterThreshold;
this.exitThreshold = exitThreshold;
numRepeats = 0;
poseEntered = false;
}
/**
* Adds a new Pose classification result and updates reps for given class.
*
* @param classificationResult {link ClassificationResult} of class to confidence values.
* @return number of reps.
*/
public int addClassificationResult(com.empatnusabangsa.poseclassificationpoc.posedetector.classification.ClassificationResult classificationResult) {
float poseConfidence = classificationResult.getClassConfidence(className);
Log.d("CONFIDENCEPOSE", String.valueOf(poseConfidence));
if (!poseEntered) {
poseEntered = poseConfidence > enterThreshold;
return numRepeats;
}
if (poseConfidence < exitThreshold) {
numRepeats++;
poseEntered = false;
}
return numRepeats;
}
public String getClassName() {
return className;
}
public int getNumRepeats() {
return numRepeats;
}
}

View File

@ -0,0 +1,93 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.posedetector.classification;
import static com.google.common.primitives.Floats.max;
import com.google.mlkit.vision.common.PointF3D;
import java.util.List;
import java.util.ListIterator;
/**
* Utility methods for operations on {@link PointF3D}.
*/
public class Utils {
private Utils() {}
public static PointF3D add(PointF3D a, PointF3D b) {
return PointF3D.from(a.getX() + b.getX(), a.getY() + b.getY(), a.getZ() + b.getZ());
}
public static PointF3D subtract(PointF3D b, PointF3D a) {
return PointF3D.from(a.getX() - b.getX(), a.getY() - b.getY(), a.getZ() - b.getZ());
}
public static PointF3D multiply(PointF3D a, float multiple) {
return PointF3D.from(a.getX() * multiple, a.getY() * multiple, a.getZ() * multiple);
}
public static PointF3D multiply(PointF3D a, PointF3D multiple) {
return PointF3D.from(
a.getX() * multiple.getX(), a.getY() * multiple.getY(), a.getZ() * multiple.getZ());
}
public static PointF3D average(PointF3D a, PointF3D b) {
return PointF3D.from(
(a.getX() + b.getX()) * 0.5f, (a.getY() + b.getY()) * 0.5f, (a.getZ() + b.getZ()) * 0.5f);
}
public static float l2Norm2D(PointF3D point) {
return (float) Math.hypot(point.getX(), point.getY());
}
public static float maxAbs(PointF3D point) {
return max(Math.abs(point.getX()), Math.abs(point.getY()), Math.abs(point.getZ()));
}
public static float sumAbs(PointF3D point) {
return Math.abs(point.getX()) + Math.abs(point.getY()) + Math.abs(point.getZ());
}
public static void addAll(List<PointF3D> pointsList, PointF3D p) {
ListIterator<PointF3D> iterator = pointsList.listIterator();
while (iterator.hasNext()) {
iterator.set(add(iterator.next(), p));
}
}
public static void subtractAll(PointF3D p, List<PointF3D> pointsList) {
ListIterator<PointF3D> iterator = pointsList.listIterator();
while (iterator.hasNext()) {
iterator.set(subtract(p, iterator.next()));
}
}
public static void multiplyAll(List<PointF3D> pointsList, float multiple) {
ListIterator<PointF3D> iterator = pointsList.listIterator();
while (iterator.hasNext()) {
iterator.set(multiply(iterator.next(), multiple));
}
}
public static void multiplyAll(List<PointF3D> pointsList, PointF3D multiple) {
ListIterator<PointF3D> iterator = pointsList.listIterator();
while (iterator.hasNext()) {
iterator.set(multiply(iterator.next(), multiple));
}
}
}

View File

@ -0,0 +1,122 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.preference;
import android.content.Context;
import android.graphics.SurfaceTexture;
import android.hardware.camera2.CameraAccessException;
import android.hardware.camera2.CameraCharacteristics;
import android.hardware.camera2.CameraManager;
import android.hardware.camera2.params.StreamConfigurationMap;
import android.os.Build.VERSION_CODES;
import android.preference.ListPreference;
import android.preference.PreferenceCategory;
import android.util.Size;
import androidx.annotation.Nullable;
import androidx.annotation.RequiresApi;
import androidx.annotation.StringRes;
import androidx.camera.core.CameraSelector;
import com.empatnusabangsa.poseclassificationpoc.R;
import java.util.Arrays;
import java.util.List;
/** Configures CameraX live preview demo settings. */
@RequiresApi(VERSION_CODES.LOLLIPOP)
public class CameraXLivePreviewPreferenceFragment extends LivePreviewPreferenceFragment {
@Override
void setUpCameraPreferences() {
PreferenceCategory cameraPreference =
(PreferenceCategory) findPreference(getString(R.string.pref_category_key_camera));
cameraPreference.removePreference(
findPreference(getString(R.string.pref_key_rear_camera_preview_size)));
cameraPreference.removePreference(
findPreference(getString(R.string.pref_key_front_camera_preview_size)));
setUpCameraXTargetAnalysisSizePreference(
R.string.pref_key_camerax_rear_camera_target_resolution, CameraSelector.LENS_FACING_BACK);
setUpCameraXTargetAnalysisSizePreference(
R.string.pref_key_camerax_front_camera_target_resolution, CameraSelector.LENS_FACING_FRONT);
}
private void setUpCameraXTargetAnalysisSizePreference(
@StringRes int previewSizePrefKeyId, int lensFacing) {
ListPreference pref = (ListPreference) findPreference(getString(previewSizePrefKeyId));
CameraCharacteristics cameraCharacteristics =
getCameraCharacteristics(getActivity(), lensFacing);
String[] entries;
if (cameraCharacteristics != null) {
StreamConfigurationMap map =
cameraCharacteristics.get(CameraCharacteristics.SCALER_STREAM_CONFIGURATION_MAP);
Size[] outputSizes = map.getOutputSizes(SurfaceTexture.class);
entries = new String[outputSizes.length];
for (int i = 0; i < outputSizes.length; i++) {
entries[i] = outputSizes[i].toString();
}
} else {
entries =
new String[] {
"2000x2000",
"1600x1600",
"1200x1200",
"1000x1000",
"800x800",
"600x600",
"400x400",
"200x200",
"100x100",
};
}
pref.setEntries(entries);
pref.setEntryValues(entries);
pref.setSummary(pref.getEntry() == null ? "Default" : pref.getEntry());
pref.setOnPreferenceChangeListener(
(preference, newValue) -> {
String newStringValue = (String) newValue;
pref.setSummary(newStringValue);
PreferenceUtils.saveString(getActivity(), previewSizePrefKeyId, newStringValue);
return true;
});
}
@Nullable
public static CameraCharacteristics getCameraCharacteristics(
Context context, Integer lensFacing) {
CameraManager cameraManager = (CameraManager) context.getSystemService(Context.CAMERA_SERVICE);
try {
List<String> cameraList = Arrays.asList(cameraManager.getCameraIdList());
for (String availableCameraId : cameraList) {
CameraCharacteristics availableCameraCharacteristics =
cameraManager.getCameraCharacteristics(availableCameraId);
Integer availableLensFacing =
availableCameraCharacteristics.get(CameraCharacteristics.LENS_FACING);
if (availableLensFacing == null) {
continue;
}
if (availableLensFacing.equals(lensFacing)) {
return availableCameraCharacteristics;
}
}
} catch (CameraAccessException e) {
// Accessing camera ID info got error
}
return null;
}
}

View File

@ -0,0 +1,51 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.preference;
import android.os.Build.VERSION_CODES;
import android.os.Bundle;
import android.preference.PreferenceCategory;
import android.preference.PreferenceScreen;
import androidx.annotation.RequiresApi;
import com.empatnusabangsa.poseclassificationpoc.R;
/** Configures CameraXSource live preview demo settings. */
@RequiresApi(VERSION_CODES.LOLLIPOP)
public class CameraXSourceDemoPreferenceFragment extends CameraXLivePreviewPreferenceFragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
PreferenceScreen preferenceScreen =
(PreferenceScreen) findPreference(getResources().getString(R.string.pref_screen));
PreferenceCategory preferenceCategory =
(PreferenceCategory) findPreference(getString(R.string.pref_category_key_camera));
preferenceCategory.removePreference(
findPreference(getString(R.string.pref_key_camera_live_viewport)));
// Remove the PreferenceCategories for hiding camera detection info.
preferenceScreen.removePreference(preferenceScreen.getPreference(1));
// Remove the last 3 PreferenceCategories
preferenceScreen.removePreference(preferenceScreen.getPreference(2));
preferenceScreen.removePreference(preferenceScreen.getPreference(2));
preferenceScreen.removePreference(preferenceScreen.getPreference(2));
}
}

View File

@ -0,0 +1,68 @@
package com.empatnusabangsa.poseclassificationpoc.preference;
import android.preference.EditTextPreference;
import android.preference.ListPreference;
import android.preference.PreferenceFragment;
import android.widget.Toast;
import androidx.annotation.StringRes;
import com.empatnusabangsa.poseclassificationpoc.R;
/** Used to setup face detection for Live Preview Activity and Still Image Activity. */
public class FaceDetectionUtils {
public static void setUpFaceDetectionPreferences(
PreferenceFragment preferenceFragment, boolean isStreamMode) {
setUpListPreference(
preferenceFragment, R.string.pref_key_live_preview_face_detection_landmark_mode);
setUpListPreference(
preferenceFragment, R.string.pref_key_live_preview_face_detection_contour_mode);
setUpListPreference(
preferenceFragment, R.string.pref_key_live_preview_face_detection_classification_mode);
setUpListPreference(
preferenceFragment, R.string.pref_key_live_preview_face_detection_performance_mode);
if (isStreamMode) {
EditTextPreference minFaceSizePreference =
(EditTextPreference)
preferenceFragment.findPreference(
preferenceFragment.getString(
R.string.pref_key_live_preview_face_detection_min_face_size));
minFaceSizePreference.setSummary(minFaceSizePreference.getText());
minFaceSizePreference.setOnPreferenceChangeListener(
(preference, newValue) -> {
try {
float minFaceSize = Float.parseFloat((String) newValue);
if (minFaceSize >= 0.0f && minFaceSize <= 1.0f) {
minFaceSizePreference.setSummary((String) newValue);
return true;
}
} catch (NumberFormatException e) {
// Fall through intentionally.
}
Toast.makeText(
preferenceFragment.getActivity(),
R.string.pref_toast_invalid_min_face_size,
Toast.LENGTH_LONG)
.show();
return false;
});
}
}
private static void setUpListPreference(
PreferenceFragment preferenceFragment, @StringRes int listPreferenceKeyId) {
ListPreference listPreference =
(ListPreference)
preferenceFragment.findPreference(preferenceFragment.getString(listPreferenceKeyId));
listPreference.setSummary(listPreference.getEntry());
listPreference.setOnPreferenceChangeListener(
(preference, newValue) -> {
int index = listPreference.findIndexOfValue((String) newValue);
listPreference.setSummary(listPreference.getEntries()[index]);
return true;
});
}
private FaceDetectionUtils() {}
}

View File

@ -0,0 +1,125 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.preference;
import android.hardware.Camera;
import android.os.Bundle;
import android.preference.ListPreference;
import android.preference.PreferenceCategory;
import android.preference.PreferenceFragment;
import androidx.annotation.StringRes;
import com.empatnusabangsa.poseclassificationpoc.CameraSource;
import com.empatnusabangsa.poseclassificationpoc.CameraSource.SizePair;
import com.empatnusabangsa.poseclassificationpoc.R;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/** Configures live preview demo settings. */
public class LivePreviewPreferenceFragment extends PreferenceFragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.preference_live_preview_quickstart);
setUpCameraPreferences();
FaceDetectionUtils.setUpFaceDetectionPreferences(this, /* isStreamMode = */ true);
}
void setUpCameraPreferences() {
PreferenceCategory cameraPreference =
(PreferenceCategory) findPreference(getString(R.string.pref_category_key_camera));
cameraPreference.removePreference(
findPreference(getString(R.string.pref_key_camerax_rear_camera_target_resolution)));
cameraPreference.removePreference(
findPreference(getString(R.string.pref_key_camerax_front_camera_target_resolution)));
setUpCameraPreviewSizePreference(
R.string.pref_key_rear_camera_preview_size,
R.string.pref_key_rear_camera_picture_size,
CameraSource.CAMERA_FACING_BACK);
setUpCameraPreviewSizePreference(
R.string.pref_key_front_camera_preview_size,
R.string.pref_key_front_camera_picture_size,
CameraSource.CAMERA_FACING_FRONT);
}
private void setUpCameraPreviewSizePreference(
@StringRes int previewSizePrefKeyId, @StringRes int pictureSizePrefKeyId, int cameraId) {
ListPreference previewSizePreference =
(ListPreference) findPreference(getString(previewSizePrefKeyId));
Camera camera = null;
try {
camera = Camera.open(cameraId);
List<SizePair> previewSizeList = CameraSource.generateValidPreviewSizeList(camera);
String[] previewSizeStringValues = new String[previewSizeList.size()];
Map<String, String> previewToPictureSizeStringMap = new HashMap<>();
for (int i = 0; i < previewSizeList.size(); i++) {
SizePair sizePair = previewSizeList.get(i);
previewSizeStringValues[i] = sizePair.preview.toString();
if (sizePair.picture != null) {
previewToPictureSizeStringMap.put(
sizePair.preview.toString(), sizePair.picture.toString());
}
}
previewSizePreference.setEntries(previewSizeStringValues);
previewSizePreference.setEntryValues(previewSizeStringValues);
if (previewSizePreference.getEntry() == null) {
// First time of opening the Settings page.
SizePair sizePair =
CameraSource.selectSizePair(
camera,
CameraSource.DEFAULT_REQUESTED_CAMERA_PREVIEW_WIDTH,
CameraSource.DEFAULT_REQUESTED_CAMERA_PREVIEW_HEIGHT);
String previewSizeString = sizePair.preview.toString();
previewSizePreference.setValue(previewSizeString);
previewSizePreference.setSummary(previewSizeString);
PreferenceUtils.saveString(
getActivity(),
pictureSizePrefKeyId,
sizePair.picture != null ? sizePair.picture.toString() : null);
} else {
previewSizePreference.setSummary(previewSizePreference.getEntry());
}
previewSizePreference.setOnPreferenceChangeListener(
(preference, newValue) -> {
String newPreviewSizeStringValue = (String) newValue;
previewSizePreference.setSummary(newPreviewSizeStringValue);
PreferenceUtils.saveString(
getActivity(),
pictureSizePrefKeyId,
previewToPictureSizeStringMap.get(newPreviewSizeStringValue));
return true;
});
} catch (RuntimeException e) {
// If there's no camera for the given camera id, hide the corresponding preference.
((PreferenceCategory) findPreference(getString(R.string.pref_category_key_camera)))
.removePreference(previewSizePreference);
} finally {
if (camera != null) {
camera.release();
}
}
}
}

View File

@ -0,0 +1,228 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.preference;
import android.content.Context;
import android.content.SharedPreferences;
import android.os.Build.VERSION_CODES;
import android.preference.PreferenceManager;
import androidx.annotation.Nullable;
import androidx.annotation.RequiresApi;
import androidx.annotation.StringRes;
import androidx.camera.core.CameraSelector;
import com.google.android.gms.common.images.Size;
import com.google.common.base.Preconditions;
import com.empatnusabangsa.poseclassificationpoc.CameraSource;
import com.empatnusabangsa.poseclassificationpoc.CameraSource.SizePair;
import com.empatnusabangsa.poseclassificationpoc.R;
import com.google.mlkit.vision.pose.PoseDetectorOptionsBase;
import com.google.mlkit.vision.pose.accurate.AccuratePoseDetectorOptions;
import com.google.mlkit.vision.pose.defaults.PoseDetectorOptions;
/** Utility class to retrieve shared preferences. */
public class PreferenceUtils {
private static final int POSE_DETECTOR_PERFORMANCE_MODE_FAST = 1;
static void saveString(Context context, @StringRes int prefKeyId, @Nullable String value) {
PreferenceManager.getDefaultSharedPreferences(context)
.edit()
.putString(context.getString(prefKeyId), value)
.apply();
}
@Nullable
public static SizePair getCameraPreviewSizePair(Context context, int cameraId) {
Preconditions.checkArgument(
cameraId == CameraSource.CAMERA_FACING_BACK
|| cameraId == CameraSource.CAMERA_FACING_FRONT);
String previewSizePrefKey;
String pictureSizePrefKey;
if (cameraId == CameraSource.CAMERA_FACING_BACK) {
previewSizePrefKey = context.getString(R.string.pref_key_rear_camera_preview_size);
pictureSizePrefKey = context.getString(R.string.pref_key_rear_camera_picture_size);
} else {
previewSizePrefKey = context.getString(R.string.pref_key_front_camera_preview_size);
pictureSizePrefKey = context.getString(R.string.pref_key_front_camera_picture_size);
}
try {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
return new SizePair(
Size.parseSize(sharedPreferences.getString(previewSizePrefKey, null)),
Size.parseSize(sharedPreferences.getString(pictureSizePrefKey, null)));
} catch (Exception e) {
return null;
}
}
@RequiresApi(VERSION_CODES.LOLLIPOP)
@Nullable
public static android.util.Size getCameraXTargetResolution(Context context, int lensfacing) {
Preconditions.checkArgument(
lensfacing == CameraSelector.LENS_FACING_BACK
|| lensfacing == CameraSelector.LENS_FACING_FRONT);
String prefKey =
lensfacing == CameraSelector.LENS_FACING_BACK
? context.getString(R.string.pref_key_camerax_rear_camera_target_resolution)
: context.getString(R.string.pref_key_camerax_front_camera_target_resolution);
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
try {
return android.util.Size.parseSize(sharedPreferences.getString(prefKey, null));
} catch (Exception e) {
return null;
}
}
public static boolean shouldHideDetectionInfo(Context context) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey = context.getString(R.string.pref_key_info_hide);
return sharedPreferences.getBoolean(prefKey, false);
}
public static PoseDetectorOptionsBase getPoseDetectorOptionsForLivePreview(Context context) {
int performanceMode =
getModeTypePreferenceValue(
context,
R.string.pref_key_live_preview_pose_detection_performance_mode,
POSE_DETECTOR_PERFORMANCE_MODE_FAST);
boolean preferGPU = preferGPUForPoseDetection(context);
if (performanceMode == POSE_DETECTOR_PERFORMANCE_MODE_FAST) {
PoseDetectorOptions.Builder builder =
new PoseDetectorOptions.Builder().setDetectorMode(PoseDetectorOptions.STREAM_MODE);
if (preferGPU) {
builder.setPreferredHardwareConfigs(PoseDetectorOptions.CPU_GPU);
}
return builder.build();
} else {
AccuratePoseDetectorOptions.Builder builder =
new AccuratePoseDetectorOptions.Builder()
.setDetectorMode(AccuratePoseDetectorOptions.STREAM_MODE);
if (preferGPU) {
builder.setPreferredHardwareConfigs(AccuratePoseDetectorOptions.CPU_GPU);
}
return builder.build();
}
}
public static PoseDetectorOptionsBase getPoseDetectorOptionsForStillImage(Context context) {
int performanceMode =
getModeTypePreferenceValue(
context,
R.string.pref_key_still_image_pose_detection_performance_mode,
POSE_DETECTOR_PERFORMANCE_MODE_FAST);
boolean preferGPU = preferGPUForPoseDetection(context);
if (performanceMode == POSE_DETECTOR_PERFORMANCE_MODE_FAST) {
PoseDetectorOptions.Builder builder =
new PoseDetectorOptions.Builder().setDetectorMode(PoseDetectorOptions.SINGLE_IMAGE_MODE);
if (preferGPU) {
builder.setPreferredHardwareConfigs(PoseDetectorOptions.CPU_GPU);
}
return builder.build();
} else {
AccuratePoseDetectorOptions.Builder builder =
new AccuratePoseDetectorOptions.Builder()
.setDetectorMode(AccuratePoseDetectorOptions.SINGLE_IMAGE_MODE);
if (preferGPU) {
builder.setPreferredHardwareConfigs(AccuratePoseDetectorOptions.CPU_GPU);
}
return builder.build();
}
}
public static boolean shouldGroupRecognizedTextInBlocks(Context context) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey = context.getString(R.string.pref_key_group_recognized_text_in_blocks);
return sharedPreferences.getBoolean(prefKey, false);
}
public static boolean showLanguageTag(Context context) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey = context.getString(R.string.pref_key_show_language_tag);
return sharedPreferences.getBoolean(prefKey, false);
}
public static boolean shouldShowTextConfidence(Context context) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey = context.getString(R.string.pref_key_show_text_confidence);
return sharedPreferences.getBoolean(prefKey, false);
}
public static boolean preferGPUForPoseDetection(Context context) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey = context.getString(R.string.pref_key_pose_detector_prefer_gpu);
return sharedPreferences.getBoolean(prefKey, true);
}
public static boolean shouldShowPoseDetectionInFrameLikelihoodLivePreview(Context context) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey =
context.getString(R.string.pref_key_live_preview_pose_detector_show_in_frame_likelihood);
return sharedPreferences.getBoolean(prefKey, true);
}
public static boolean shouldShowPoseDetectionInFrameLikelihoodStillImage(Context context) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey =
context.getString(R.string.pref_key_still_image_pose_detector_show_in_frame_likelihood);
return sharedPreferences.getBoolean(prefKey, true);
}
public static boolean shouldPoseDetectionVisualizeZ(Context context) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey = context.getString(R.string.pref_key_pose_detector_visualize_z);
return sharedPreferences.getBoolean(prefKey, true);
}
public static boolean shouldPoseDetectionRescaleZForVisualization(Context context) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey = context.getString(R.string.pref_key_pose_detector_rescale_z);
return sharedPreferences.getBoolean(prefKey, true);
}
public static boolean shouldPoseDetectionRunClassification(Context context) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey = context.getString(R.string.pref_key_pose_detector_run_classification);
return sharedPreferences.getBoolean(prefKey, true);
}
public static boolean shouldSegmentationEnableRawSizeMask(Context context) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey = context.getString(R.string.pref_key_segmentation_raw_size_mask);
return sharedPreferences.getBoolean(prefKey, false);
}
/**
* Mode type preference is backed by {@link android.preference.ListPreference} which only support
* storing its entry value as string type, so we need to retrieve as string and then convert to
* integer.
*/
private static int getModeTypePreferenceValue(
Context context, @StringRes int prefKeyResId, int defaultValue) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey = context.getString(prefKeyResId);
return Integer.parseInt(sharedPreferences.getString(prefKey, String.valueOf(defaultValue)));
}
public static boolean isCameraLiveViewportEnabled(Context context) {
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
String prefKey = context.getString(R.string.pref_key_camera_live_viewport);
return sharedPreferences.getBoolean(prefKey, false);
}
private PreferenceUtils() {}
}

View File

@ -0,0 +1,79 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.preference;
import android.os.Bundle;
import android.preference.PreferenceFragment;
import androidx.appcompat.app.ActionBar;
import androidx.appcompat.app.AppCompatActivity;
import com.empatnusabangsa.poseclassificationpoc.R;
/**
* Hosts the preference fragment to configure settings for a demo activity that specified by the
* {@link LaunchSource}.
*/
public class SettingsActivity extends AppCompatActivity {
public static final String EXTRA_LAUNCH_SOURCE = "extra_launch_source";
/** Specifies where this activity is launched from. */
@SuppressWarnings("NewApi") // CameraX is only available on API 21+
public enum LaunchSource {
LIVE_PREVIEW(R.string.pref_screen_title_live_preview, LivePreviewPreferenceFragment.class);//,
// STILL_IMAGE(R.string.pref_screen_title_still_image, StillImagePreferenceFragment.class),
// CAMERAX_LIVE_PREVIEW(
// R.string.pref_screen_title_camerax_live_preview,
// CameraXLivePreviewPreferenceFragment.class),
// CAMERAXSOURCE_DEMO(
// R.string.pref_screen_title_cameraxsource_demo, CameraXSourceDemoPreferenceFragment.class);
private final int titleResId;
private final Class<? extends PreferenceFragment> prefFragmentClass;
LaunchSource(int titleResId, Class<? extends PreferenceFragment> prefFragmentClass) {
this.titleResId = titleResId;
this.prefFragmentClass = prefFragmentClass;
}
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_settings);
LaunchSource launchSource =
(LaunchSource) getIntent().getSerializableExtra(EXTRA_LAUNCH_SOURCE);
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setTitle(launchSource.titleResId);
}
try {
getFragmentManager()
.beginTransaction()
.replace(
R.id.settings_container,
launchSource.prefFragmentClass.getDeclaredConstructor().newInstance())
.commit();
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}

View File

@ -0,0 +1,33 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.preference;
import android.os.Bundle;
import android.preference.PreferenceFragment;
import com.empatnusabangsa.poseclassificationpoc.R;
/** Configures still image demo settings. */
public class StillImagePreferenceFragment extends PreferenceFragment {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
addPreferencesFromResource(R.xml.preference_still_image);
FaceDetectionUtils.setUpFaceDetectionPreferences(this, /* isStreamMode = */false);
}
}

View File

@ -0,0 +1,84 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.segmenter
import android.graphics.Bitmap
import android.graphics.Canvas
import android.graphics.Color
import android.graphics.Matrix
import androidx.annotation.ColorInt
import com.empatnusabangsa.poseclassificationpoc.GraphicOverlay
import com.google.mlkit.vision.segmentation.SegmentationMask
import java.nio.ByteBuffer
/** Draw the mask from SegmentationResult in preview. */
class SegmentationGraphic(overlay: GraphicOverlay, segmentationMask: SegmentationMask) :
GraphicOverlay.Graphic(overlay) {
private val mask: ByteBuffer
private val maskWidth: Int
private val maskHeight: Int
private val isRawSizeMaskEnabled: Boolean
private val scaleX: Float
private val scaleY: Float
/** Draws the segmented background on the supplied canvas. */
override fun draw(canvas: Canvas) {
val bitmap = Bitmap.createBitmap(
maskColorsFromByteBuffer(mask), maskWidth, maskHeight, Bitmap.Config.ARGB_8888
)
if (isRawSizeMaskEnabled) {
val matrix = Matrix(getTransformationMatrix())
matrix.preScale(scaleX, scaleY)
canvas.drawBitmap(bitmap, matrix, null)
} else {
canvas.drawBitmap(bitmap, getTransformationMatrix(), null)
}
bitmap.recycle()
// Reset byteBuffer pointer to beginning, so that the mask can be redrawn if screen is refreshed
mask.rewind()
}
/** Converts byteBuffer floats to ColorInt array that can be used as a mask. */
@ColorInt
private fun maskColorsFromByteBuffer(byteBuffer: ByteBuffer): IntArray {
@ColorInt val colors =
IntArray(maskWidth * maskHeight)
for (i in 0 until maskWidth * maskHeight) {
val backgroundLikelihood = 1 - byteBuffer.float
if (backgroundLikelihood > 0.9) {
colors[i] = Color.argb(128, 255, 0, 255)
} else if (backgroundLikelihood > 0.2) {
// Linear interpolation to make sure when backgroundLikelihood is 0.2, the alpha is 0 and
// when backgroundLikelihood is 0.9, the alpha is 128.
// +0.5 to round the float value to the nearest int.
val alpha = (182.9 * backgroundLikelihood - 36.6 + 0.5).toInt()
colors[i] = Color.argb(alpha, 255, 0, 255)
}
}
return colors
}
init {
mask = segmentationMask.buffer
maskWidth = segmentationMask.width
maskHeight = segmentationMask.height
isRawSizeMaskEnabled =
maskWidth != overlay.getImageWidth() || maskHeight != overlay.getImageHeight()
scaleX = overlay.getImageWidth() * 1f / maskWidth
scaleY = overlay.getImageHeight() * 1f / maskHeight
}
}

View File

@ -0,0 +1,81 @@
/*
* Copyright 2020 Google LLC. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.empatnusabangsa.poseclassificationpoc.segmenter
import android.content.Context
import android.util.Log
import com.google.android.gms.tasks.Task
import com.google.mlkit.vision.common.InputImage
import com.empatnusabangsa.poseclassificationpoc.GraphicOverlay
import com.empatnusabangsa.poseclassificationpoc.VisionProcessorBase
import com.empatnusabangsa.poseclassificationpoc.preference.PreferenceUtils
import com.google.mlkit.vision.segmentation.Segmentation
import com.google.mlkit.vision.segmentation.SegmentationMask
import com.google.mlkit.vision.segmentation.Segmenter
import com.google.mlkit.vision.segmentation.selfie.SelfieSegmenterOptions
/** A processor to run Segmenter. */
class SegmenterProcessor :
VisionProcessorBase<SegmentationMask> {
private val segmenter: Segmenter
constructor(context: Context) : this(context, /* isStreamMode= */ true)
constructor(
context: Context,
isStreamMode: Boolean
) : super(
context
) {
val optionsBuilder = SelfieSegmenterOptions.Builder()
optionsBuilder.setDetectorMode(
if(isStreamMode) SelfieSegmenterOptions.STREAM_MODE
else SelfieSegmenterOptions.SINGLE_IMAGE_MODE
)
if (PreferenceUtils.shouldSegmentationEnableRawSizeMask(context)) {
optionsBuilder.enableRawSizeMask()
}
val options = optionsBuilder.build()
segmenter = Segmentation.getClient(options)
Log.d(TAG, "SegmenterProcessor created with option: " + options)
}
override fun detectInImage(image: InputImage): Task<SegmentationMask> {
return segmenter.process(image)
}
override fun onSuccess(
segmentationMask: SegmentationMask,
graphicOverlay: GraphicOverlay
) {
graphicOverlay.add(
SegmentationGraphic(
graphicOverlay,
segmentationMask
)
)
}
override fun onFailure(e: Exception) {
Log.e(TAG, "Segmentation failed: $e")
}
companion object {
private const val TAG = "SegmenterProcessor"
}
}

View File

@ -0,0 +1,30 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path android:pathData="M31,63.928c0,0 6.4,-11 12.1,-13.1c7.2,-2.6 26,-1.4 26,-1.4l38.1,38.1L107,108.928l-32,-1L31,63.928z">
<aapt:attr name="android:fillColor">
<gradient
android:endX="85.84757"
android:endY="92.4963"
android:startX="42.9492"
android:startY="49.59793"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M65.3,45.828l3.8,-6.6c0.2,-0.4 0.1,-0.9 -0.3,-1.1c-0.4,-0.2 -0.9,-0.1 -1.1,0.3l-3.9,6.7c-6.3,-2.8 -13.4,-2.8 -19.7,0l-3.9,-6.7c-0.2,-0.4 -0.7,-0.5 -1.1,-0.3C38.8,38.328 38.7,38.828 38.9,39.228l3.8,6.6C36.2,49.428 31.7,56.028 31,63.928h46C76.3,56.028 71.8,49.428 65.3,45.828zM43.4,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2c-0.3,-0.7 -0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C45.3,56.528 44.5,57.328 43.4,57.328L43.4,57.328zM64.6,57.328c-0.8,0 -1.5,-0.5 -1.8,-1.2s-0.1,-1.5 0.4,-2.1c0.5,-0.5 1.4,-0.7 2.1,-0.4c0.7,0.3 1.2,1 1.2,1.8C66.5,56.528 65.6,57.328 64.6,57.328L64.6,57.328z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

View File

@ -0,0 +1,170 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#3DDC84"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>

Binary file not shown.

After

Width:  |  Height:  |  Size: 536 B

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- This is an example InsetDrawable. It should be manually reviewed. -->
<inset xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/ic_switch_camera_white_48dp_inset"
android:insetTop="3dp"
android:insetLeft="3dp"
android:insetBottom="7dp"
android:insetRight="3dp"
android:visible="true" />

Binary file not shown.

After

Width:  |  Height:  |  Size: 343 B

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:keepScreenOn="true">
<com.empatnusabangsa.poseclassificationpoc.CameraSourcePreview
android:id="@+id/preview_view"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@+id/control"/>
<com.empatnusabangsa.poseclassificationpoc.GraphicOverlay
android:id="@+id/graphic_overlay"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintLeft_toLeftOf="@id/preview_view"
app:layout_constraintRight_toRightOf="@id/preview_view"
app:layout_constraintTop_toTopOf="@id/preview_view"
app:layout_constraintBottom_toBottomOf="@id/preview_view"/>
<!-- <include-->
<!-- android:id="@+id/settings_button"-->
<!-- layout="@layout/settings_style"-->
<!-- android:layout_width="wrap_content"-->
<!-- android:layout_height="wrap_content"-->
<!-- app:layout_constraintRight_toRightOf="@id/preview_view"-->
<!-- app:layout_constraintTop_toTopOf="@id/preview_view" />-->
<LinearLayout
android:id="@id/control"
android:layout_width="match_parent"
android:layout_height="60dp"
app:layout_constraintBottom_toBottomOf="parent"
android:background="#000"
android:orientation="horizontal">
<ToggleButton
android:id="@+id/facing_switch"
android:layout_width="48dp"
android:layout_height="48dp"
android:layout_gravity="center_vertical"
android:background="@layout/toggle_style"
android:checked="false"
android:textOff=""
android:textOn=""/>
<Spinner
android:id="@+id/spinner"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:layout_gravity="center"/>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/settings_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
</LinearLayout>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<ImageView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="12dp"
android:contentDescription="@string/menu_item_settings"
android:src="@drawable/ic_settings_white_24dp"/>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:textStyle="bold"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="1dip"
android:gravity="center"
android:textColor="#FFF"
android:textSize="16sp"/>

View File

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#414940">
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Pose Clasification"
android:textAllCaps="true"
android:textColor="#FFFFFF"
android:textSize="34sp"
tools:layout_editor_absoluteX="40dp"
tools:layout_editor_absoluteY="343dp" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:drawable="@drawable/ic_switch_camera_white_48dp"
android:state_checked="true"/>
<item
android:drawable="@drawable/ic_switch_camera_white_48dp"
android:state_checked="false"/>
</selector>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 982 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.6 KiB

View File

@ -0,0 +1,16 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.PoseClassificationPoC" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_200</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorOnPrimary">@color/black</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>
<item name="colorSecondaryVariant">@color/teal_200</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
</resources>

View File

@ -0,0 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string-array name="pref_entries_face_detector_landmark_mode">
<item>@string/pref_entries_face_detector_landmark_mode_no_landmarks</item>
<item>@string/pref_entries_face_detector_landmark_mode_all_landmarks</item>
</string-array>
<string-array name="pref_entry_values_face_detector_landmark_mode">
<item>@string/pref_entry_values_face_detector_landmark_mode_no_landmarks</item>
<item>@string/pref_entry_values_face_detector_landmark_mode_all_landmarks</item>
</string-array>
<string-array name="pref_entries_face_detector_contour_mode">
<item>@string/pref_entries_face_detector_contour_mode_no_contours</item>
<item>@string/pref_entries_face_detector_contour_mode_all_contours</item>
</string-array>
<string-array name="pref_entry_values_face_detector_contour_mode">
<item>@string/pref_entry_values_face_detector_contour_mode_no_contours</item>
<item>@string/pref_entry_values_face_detector_contour_mode_all_contours</item>
</string-array>
<string-array name="pref_entries_face_detector_classification_mode">
<item>@string/pref_entries_face_detector_classification_mode_no_classifications</item>
<item>@string/pref_entries_face_detector_classification_mode_all_classifications</item>
</string-array>
<string-array name="pref_entry_values_face_detector_classification_mode">
<item>@string/pref_entry_values_face_detector_classification_mode_no_classifications</item>
<item>@string/pref_entry_values_face_detector_classification_mode_all_classifications</item>
</string-array>
<string-array name="pref_entries_face_detector_performance_mode">
<item>@string/pref_entries_face_detector_performance_mode_fast</item>
<item>@string/pref_entries_face_detector_performance_mode_accurate</item>
</string-array>
<string-array name="pref_entry_values_face_detector_performance_mode">
<item>@string/pref_entry_values_face_detector_performance_mode_fast</item>
<item>@string/pref_entry_values_face_detector_performance_mode_accurate</item>
</string-array>
<string-array name="pref_entries_values_pose_detector_performance_mode">
<item>@string/pref_entries_pose_detector_performance_mode_fast</item>
<item>@string/pref_entries_pose_detector_performance_mode_accurate</item>
</string-array>
<string-array name="pref_entry_values_pose_detector_performance_mode">
<item>@string/pref_entry_values_pose_detector_performance_mode_fast</item>
<item>@string/pref_entry_values_pose_detector_performance_mode_accurate</item>
</string-array>
</resources>

View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="purple_200">#FFBB86FC</color>
<color name="purple_500">#FF6200EE</color>
<color name="purple_700">#FF3700B3</color>
<color name="teal_200">#FF03DAC5</color>
<color name="teal_700">#FF018786</color>
<color name="black">#FF000000</color>
<color name="white">#FFFFFFFF</color>
</resources>

View File

@ -0,0 +1,154 @@
<resources>
<string name="app_name">Pose Classification PoC</string>
<string name="java_entry_title" translatable="false">Run the ML Kit quickstart written in Java</string>
<string name="kotlin_entry_title" translatable="false">Run the ML Kit quickstart written in Kotlin</string>
<string name="ok" translatable="false">OK</string>
<string name="permission_camera_rationale" translatable="false">Access to the camera is needed for detection</string>
<string name="no_camera_permission" translatable="false">This application cannot run because it does not have the camera permission. The application will now exit.</string>
<string name="low_storage_error" translatable="false">Face detector dependencies cannot be downloaded due to low device storage</string>
<string name="toggle_turn_on" translatable="false">Front</string>
<string name="toggle_turn_off" translatable="false">Back</string>
<string name="desc_camera_source_activity" translatable="false">Vision detectors demo with live camera preview</string>
<string name="desc_still_image_activity" translatable="false">Vision detectors demo with a still image</string>
<string name="desc_camerax_live_preview_activity" translatable="false">Vision detectors demo with live preview using CameraX. Note that CameraX is only supported on API 21+</string>
<string name="desc_cameraxsource_demo_activity" translatable="false">Object detection with custom classifier using ML Kit CameraXSource API. Note that CameraX is only supported on API 21+</string>
<string name="download_error" translatable="false">Download error</string>
<string name="start_over" translatable="false">Start over</string>
<string name="menu_item_settings" translatable="false">Settings</string>
<string name="select_image" translatable="false">Select image</string>
<string name="custom_object_detection" translatable="false">Custom Object Detector</string>
<!-- Settings related strings. -->
<string name="pref_screen" translatable="false">ps</string>
<string name="pref_screen_title_live_preview" translatable="false">Live preview settings</string>
<string name="pref_screen_title_still_image" translatable="false">Still image settings</string>
<string name="pref_screen_title_camerax_live_preview" translatable="false">CameraX live preview settings</string>
<string name="pref_screen_title_cameraxsource_demo" translatable="false">CameraXSource live preview settings</string>
<string name="pref_category_info" translatable="false">Detection Info</string>
<string name="pref_category_face_detection" translatable="false">Face Detection</string>
<string name="pref_category_object_detection" translatable="false">Object Detection / Custom Object Detection</string>
<string name="pref_category_automl" translatable="false">AutoML Image Labeling</string>
<string name="pref_category_pose_detection" translatable="false">Pose Detection</string>
<string name="pref_category_segmentation" translatable="false">Selfie Segmentation</string>
<string name="pref_category_text_recognition" translatable="false">Text Recognition</string>
<!-- Strings for camera settings. -->
<string name="pref_category_key_camera" translatable="false">pckc</string>
<string name="pref_category_title_camera" translatable="false">Camera</string>
<string name="pref_key_rear_camera_preview_size" translatable="false">rcpvs</string>
<string name="pref_key_rear_camera_picture_size" translatable="false">rcpts</string>
<string name="pref_key_front_camera_preview_size" translatable="false">fcpvs</string>
<string name="pref_key_front_camera_picture_size" translatable="false">fcpts</string>
<string name="pref_key_camerax_rear_camera_target_resolution" translatable="false">crctas</string>
<string name="pref_key_camerax_front_camera_target_resolution" translatable="false">cfctas</string>
<string name="pref_key_camera_live_viewport" translatable="false">clv</string>
<string name="pref_title_rear_camera_preview_size" translatable="false">Rear camera preview size</string>
<string name="pref_title_front_camera_preview_size" translatable="false">Front camera preview size</string>
<string name="pref_title_camerax_rear_camera_target_resolution" translatable="false">CameraX rear camera target resolution</string>
<string name="pref_title_camerax_front_camera_target_resolution" translatable="false">CameraX front camera target resolution</string>
<string name="pref_title_camera_live_viewport" translatable="false">Enable live viewport</string>
<string name="pref_summary_camera_live_viewport" translatable="false">Do not block camera preview drawing on detection</string>
<!-- Strings for info preference. -->
<string name="pref_title_info_hide" translatable="false">Hide detection info</string>
<string name="pref_key_info_hide" translatable="false">ih</string>
<!-- Strings for text recognition preference. -->
<string name="pref_title_group_recognized_text_in_blocks" translatable="false">Group recognized text in paragraphs</string>
<string name="pref_key_group_recognized_text_in_blocks" translatable="false">grtib</string>
<string name="pref_title_show_language_tag" translatable="false">Show language identified</string>
<string name="pref_key_show_language_tag" translatable="false">slt</string>
<string name="pref_title_show_text_confidence" translatable="false">Show confidence score</string>
<string name="pref_key_show_text_confidence" translatable="false">stc</string>
<!-- Strings for object detector enable multiple objects preference. -->
<string name="pref_title_object_detector_enable_multiple_objects" translatable="false">Enable multiple objects</string>
<string name="pref_key_live_preview_object_detector_enable_multiple_objects" translatable="false">lpodemo</string>
<string name="pref_key_still_image_object_detector_enable_multiple_objects" translatable="false">siodemo</string>
<!-- Strings for object detector enable classification preference. -->
<string name="pref_title_object_detector_enable_classification" translatable="false">Enable classification</string>
<string name="pref_key_live_preview_object_detector_enable_classification" translatable="false">lpodec</string>
<string name="pref_key_still_image_object_detector_enable_classification" translatable="false">siodec</string>
<!-- Strings for face detector landmark mode preference. -->
<string name="pref_title_face_detector_landmark_mode" translatable="false">Landmark mode</string>
<string name="pref_key_live_preview_face_detection_landmark_mode" translatable="false">lpfdlm</string>
<string name="pref_entries_face_detector_landmark_mode_no_landmarks" translatable="false">No landmarks</string>
<string name="pref_entries_face_detector_landmark_mode_all_landmarks" translatable="false">All landmarks</string>
<!-- The following entry values must match the ones in FaceDetectorOptions#LandmarkMode -->
<string name="pref_entry_values_face_detector_landmark_mode_no_landmarks" translatable="false">1</string>
<string name="pref_entry_values_face_detector_landmark_mode_all_landmarks" translatable="false">2</string>
<!-- Strings for face detector contour mode preference. -->
<string name="pref_title_face_detector_contour_mode" translatable="false">Contour mode</string>
<string name="pref_key_live_preview_face_detection_contour_mode" translatable="false">lpfdcm</string>
<string name="pref_entries_face_detector_contour_mode_no_contours" translatable="false">No contours</string>
<string name="pref_entries_face_detector_contour_mode_all_contours" translatable="false">All contours</string>
<!-- The following entry values must match the ones in FaceDetectorOptions#ContourMode -->
<string name="pref_entry_values_face_detector_contour_mode_no_contours" translatable="false">1</string>
<string name="pref_entry_values_face_detector_contour_mode_all_contours" translatable="false">2</string>
<!-- Strings for face detector classification mode preference. -->
<string name="pref_title_face_detector_classification_mode" translatable="false">Classification mode</string>
<string name="pref_key_live_preview_face_detection_classification_mode" translatable="false">lpfdcfm</string>
<string name="pref_entries_face_detector_classification_mode_no_classifications" translatable="false">No classifications</string>
<string name="pref_entries_face_detector_classification_mode_all_classifications" translatable="false">All classifications</string>
<!-- The following entry values must match the ones in FaceDetectorOptions#ClassificationMode -->
<string name="pref_entry_values_face_detector_classification_mode_no_classifications" translatable="false">1</string>
<string name="pref_entry_values_face_detector_classification_mode_all_classifications" translatable="false">2</string>
<!-- Strings for face detector performance mode preference. -->
<string name="pref_title_face_detector_performance_mode" translatable="false">Performance mode</string>
<string name="pref_key_live_preview_face_detection_performance_mode" translatable="false">lpfdpm</string>
<string name="pref_entries_face_detector_performance_mode_fast" translatable="false">Fast</string>
<string name="pref_entries_face_detector_performance_mode_accurate" translatable="false">Accurate</string>
<!-- The following entry values must match the ones in FaceDetectorOptions#PerformanceMode -->
<string name="pref_entry_values_face_detector_performance_mode_fast" translatable="false">1</string>
<string name="pref_entry_values_face_detector_performance_mode_accurate" translatable="false">2</string>
<!-- Strings for face detector face tracking preference. -->
<string name="pref_title_face_detector_face_tracking" translatable="false">Face tracking</string>
<string name="pref_key_live_preview_face_detection_face_tracking" translatable="false">lpfdft</string>
<!-- Strings for face detector min face size preference. -->
<string name="pref_title_face_detector_min_face_size" translatable="false">Minimum face size</string>
<string name="pref_key_live_preview_face_detection_min_face_size" translatable="false">lpfdmfs</string>
<string name="pref_dialog_message_face_detector_min_face_size" translatable="false">Proportion of the head width to the image width, and the valid value range is [0.0, 1.0]</string>
<string name="pref_toast_invalid_min_face_size" translatable="false">Minimum face size must be a float value and in the range [0.0, 1.0]</string>
<!-- Strings for pose detector performance mode preference. -->
<string name="pref_title_pose_detector_performance_mode" translatable="false">Performance mode</string>
<string name="pref_key_live_preview_pose_detection_performance_mode" translatable="false">lppdpm</string>
<string name="pref_key_still_image_pose_detection_performance_mode" translatable="false">sipdpm</string>
<string name="pref_entries_pose_detector_performance_mode_fast" translatable="false">Fast</string>
<string name="pref_entries_pose_detector_performance_mode_accurate" translatable="false">Accurate</string>
<string name="pref_entry_values_pose_detector_performance_mode_fast" translatable="false">1</string>
<string name="pref_entry_values_pose_detector_performance_mode_accurate" translatable="false">2</string>
<!-- Strings for pose detector prefer gpu preference. -->
<string name="pref_title_pose_detector_prefer_gpu" translatable="false">Prefer using GPU</string>
<string name="pref_key_pose_detector_prefer_gpu" translatable="false">pdpg</string>
<string name="pref_summary_pose_detector_prefer_gpu" translatable="false">If enabled, GPU will be used as long as it is available, stable and returns correct results. In this case, the detector will not check if GPU is really faster than CPU.</string>
<!-- Strings for pose detector showInFrameLikelihood preference. -->
<string name="pref_title_pose_detector_show_in_frame_likelihood" translatable="false">Show in-frame likelihood</string>
<string name="pref_key_live_preview_pose_detector_show_in_frame_likelihood" translatable="false">lppdsifl</string>
<string name="pref_key_still_image_pose_detector_show_in_frame_likelihood" translatable="false">sipdsifl</string>
<!-- Strings for pose detector z value visualization preference. -->
<string name="pref_title_pose_detector_visualize_z" translatable="false">Visualize z value</string>
<string name="pref_key_pose_detector_visualize_z" translatable="false">pdvz</string>
<string name="pref_title_pose_detector_rescale_z" translatable="false">Rescale z value for visualization</string>
<string name="pref_key_pose_detector_rescale_z" translatable="false">pdrz</string>
<!-- Strings for pose classification preference. -->
<string name="pref_title_pose_detector_run_classification" translatable="false">Run Classification</string>
<string name="pref_key_pose_detector_run_classification" translatable="false">pdrc</string>
<string name="pref_summary_pose_detector_run_classification" translatable="false">Classify squat and pushup poses. Count reps in streaming mode. To get the best classification results based on the current sample data, face the camera side way and make sure your full body is in the frame.</string>
<!-- Strings for segmentation preference. -->
<string name="pref_title_segmentation_raw_size_mask" translatable="false">Enable raw size mask</string>
<string name="pref_key_segmentation_raw_size_mask" translatable="false">srsm</string>
</resources>

View File

@ -0,0 +1,16 @@
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.PoseClassificationPoC" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- Primary brand color. -->
<item name="colorPrimary">@color/purple_500</item>
<item name="colorPrimaryVariant">@color/purple_700</item>
<item name="colorOnPrimary">@color/white</item>
<!-- Secondary brand color. -->
<item name="colorSecondary">@color/teal_200</item>
<item name="colorSecondaryVariant">@color/teal_700</item>
<item name="colorOnSecondary">@color/black</item>
<!-- Status bar color. -->
<item name="android:statusBarColor" tools:targetApi="l">?attr/colorPrimaryVariant</item>
<!-- Customize your theme here. -->
</style>
</resources>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?><!--
Sample backup rules file; uncomment and customize as necessary.
See https://developer.android.com/guide/topics/data/autobackup
for details.
Note: This file is ignored for devices older that API 31
See https://developer.android.com/about/versions/12/backup-restore
-->
<full-backup-content>
<!--
<include domain="sharedpref" path="."/>
<exclude domain="sharedpref" path="device.xml"/>
-->
</full-backup-content>

View File

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?><!--
Sample data extraction rules file; uncomment and customize as necessary.
See https://developer.android.com/about/versions/12/backup-restore#xml-changes
for details.
-->
<data-extraction-rules>
<cloud-backup>
<!-- TODO: Use <include> and <exclude> to control what is backed up.
<include .../>
<exclude .../>
-->
</cloud-backup>
<!--
<device-transfer>
<include .../>
<exclude .../>
</device-transfer>
-->
</data-extraction-rules>

View File

@ -0,0 +1,181 @@
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android"
android:key="@string/pref_screen">
<PreferenceCategory
android:enabled="true"
android:key="@string/pref_category_key_camera"
android:title="@string/pref_category_title_camera">
<ListPreference
android:key="@string/pref_key_rear_camera_preview_size"
android:persistent="true"
android:title="@string/pref_title_rear_camera_preview_size"/>
<ListPreference
android:key="@string/pref_key_front_camera_preview_size"
android:persistent="true"
android:title="@string/pref_title_front_camera_preview_size"/>
<ListPreference
android:key="@string/pref_key_camerax_rear_camera_target_resolution"
android:persistent="true"
android:title="@string/pref_title_camerax_rear_camera_target_resolution"/>
<ListPreference
android:key="@string/pref_key_camerax_front_camera_target_resolution"
android:persistent="true"
android:title="@string/pref_title_camerax_front_camera_target_resolution"/>
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_camera_live_viewport"
android:persistent="true"
android:summary="@string/pref_summary_camera_live_viewport"
android:title="@string/pref_title_camera_live_viewport"/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_info">
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_info_hide"
android:persistent="true"
android:title="@string/pref_title_info_hide"/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_text_recognition">
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_group_recognized_text_in_blocks"
android:persistent="true"
android:title="@string/pref_title_group_recognized_text_in_blocks"/>
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_show_language_tag"
android:persistent="true"
android:title="@string/pref_title_show_language_tag"/>
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_show_text_confidence"
android:persistent="true"
android:title="@string/pref_title_show_text_confidence"/>
</PreferenceCategory>
<PreferenceCategory
android:title="@string/pref_category_object_detection">
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_live_preview_object_detector_enable_multiple_objects"
android:persistent="true"
android:title="@string/pref_title_object_detector_enable_multiple_objects"/>
<SwitchPreference
android:defaultValue="true"
android:key="@string/pref_key_live_preview_object_detector_enable_classification"
android:persistent="true"
android:title="@string/pref_title_object_detector_enable_classification"/>
</PreferenceCategory>
<PreferenceCategory
android:title="@string/pref_category_face_detection">
<ListPreference
android:defaultValue="@string/pref_entry_values_face_detector_landmark_mode_no_landmarks"
android:entries="@array/pref_entries_face_detector_landmark_mode"
android:entryValues="@array/pref_entry_values_face_detector_landmark_mode"
android:key="@string/pref_key_live_preview_face_detection_landmark_mode"
android:persistent="true"
android:title="@string/pref_title_face_detector_landmark_mode"/>
<ListPreference
android:defaultValue="@string/pref_entry_values_face_detector_contour_mode_all_contours"
android:entries="@array/pref_entries_face_detector_contour_mode"
android:entryValues="@array/pref_entry_values_face_detector_contour_mode"
android:key="@string/pref_key_live_preview_face_detection_contour_mode"
android:persistent="true"
android:title="@string/pref_title_face_detector_contour_mode"/>
<ListPreference
android:defaultValue="@string/pref_entry_values_face_detector_classification_mode_no_classifications"
android:entries="@array/pref_entries_face_detector_classification_mode"
android:entryValues="@array/pref_entry_values_face_detector_classification_mode"
android:key="@string/pref_key_live_preview_face_detection_classification_mode"
android:persistent="true"
android:title="@string/pref_title_face_detector_classification_mode"/>
<ListPreference
android:defaultValue="@string/pref_entry_values_face_detector_performance_mode_fast"
android:entries="@array/pref_entries_face_detector_performance_mode"
android:entryValues="@array/pref_entry_values_face_detector_performance_mode"
android:key="@string/pref_key_live_preview_face_detection_performance_mode"
android:persistent="true"
android:title="@string/pref_title_face_detector_performance_mode"/>
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_live_preview_face_detection_face_tracking"
android:persistent="true"
android:title="@string/pref_title_face_detector_face_tracking"/>
<EditTextPreference
android:defaultValue="0.1"
android:dialogMessage="@string/pref_dialog_message_face_detector_min_face_size"
android:key="@string/pref_key_live_preview_face_detection_min_face_size"
android:persistent="true"
android:title="@string/pref_title_face_detector_min_face_size"/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_pose_detection">
<ListPreference
android:defaultValue="@string/pref_entry_values_pose_detector_performance_mode_fast"
android:entries="@array/pref_entries_values_pose_detector_performance_mode"
android:entryValues="@array/pref_entry_values_pose_detector_performance_mode"
android:key="@string/pref_key_live_preview_pose_detection_performance_mode"
android:persistent="true"
android:title="@string/pref_title_pose_detector_performance_mode"
android:summary="%s"/>
<SwitchPreference
android:defaultValue="true"
android:key="@string/pref_key_pose_detector_prefer_gpu"
android:persistent="true"
android:title="@string/pref_title_pose_detector_prefer_gpu"
android:summary="@string/pref_summary_pose_detector_prefer_gpu"/>
<SwitchPreference
android:defaultValue="true"
android:key="@string/pref_key_live_preview_pose_detector_show_in_frame_likelihood"
android:persistent="true"
android:title="@string/pref_title_pose_detector_show_in_frame_likelihood"/>
<SwitchPreference
android:defaultValue="true"
android:key="@string/pref_key_pose_detector_visualize_z"
android:persistent="true"
android:title="@string/pref_title_pose_detector_visualize_z"/>
<SwitchPreference
android:defaultValue="true"
android:key="@string/pref_key_pose_detector_rescale_z"
android:persistent="true"
android:title="@string/pref_title_pose_detector_rescale_z"/>
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_pose_detector_run_classification"
android:persistent="true"
android:title="@string/pref_title_pose_detector_run_classification"
android:summary="@string/pref_summary_pose_detector_run_classification"/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_segmentation">
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_segmentation_raw_size_mask"
android:persistent="true"
android:title="@string/pref_title_segmentation_raw_size_mask"/>
</PreferenceCategory>
</PreferenceScreen>

View File

@ -0,0 +1,132 @@
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/pref_category_info">
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_info_hide"
android:persistent="true"
android:title="@string/pref_title_info_hide"/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_text_recognition">
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_group_recognized_text_in_blocks"
android:persistent="true"
android:title="@string/pref_title_group_recognized_text_in_blocks"/>
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_show_language_tag"
android:persistent="true"
android:title="@string/pref_title_show_language_tag"/>
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_show_text_confidence"
android:persistent="true"
android:title="@string/pref_title_show_text_confidence"/>
</PreferenceCategory>
<PreferenceCategory
android:title="@string/pref_category_object_detection">
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_still_image_object_detector_enable_multiple_objects"
android:persistent="true"
android:title="@string/pref_title_object_detector_enable_multiple_objects"/>
<SwitchPreference
android:defaultValue="true"
android:key="@string/pref_key_still_image_object_detector_enable_classification"
android:persistent="true"
android:title="@string/pref_title_object_detector_enable_classification"/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_pose_detection">
<ListPreference
android:defaultValue="@string/pref_entry_values_pose_detector_performance_mode_fast"
android:entries="@array/pref_entries_values_pose_detector_performance_mode"
android:entryValues="@array/pref_entry_values_pose_detector_performance_mode"
android:key="@string/pref_key_still_image_pose_detection_performance_mode"
android:persistent="true"
android:title="@string/pref_title_pose_detector_performance_mode"
android:summary="%s"/>
<SwitchPreference
android:defaultValue="true"
android:key="@string/pref_key_pose_detector_prefer_gpu"
android:persistent="true"
android:title="@string/pref_title_pose_detector_prefer_gpu"
android:summary="@string/pref_summary_pose_detector_prefer_gpu"/>
<SwitchPreference
android:defaultValue="true"
android:key="@string/pref_key_still_image_pose_detector_show_in_frame_likelihood"
android:persistent="true"
android:title="@string/pref_title_pose_detector_show_in_frame_likelihood"/>
<SwitchPreference
android:defaultValue="true"
android:key="@string/pref_key_pose_detector_visualize_z"
android:persistent="true"
android:title="@string/pref_title_pose_detector_visualize_z"/>
<SwitchPreference
android:defaultValue="true"
android:key="@string/pref_key_pose_detector_rescale_z"
android:persistent="true"
android:title="@string/pref_title_pose_detector_rescale_z"/>
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_pose_detector_run_classification"
android:persistent="true"
android:title="@string/pref_title_pose_detector_run_classification"/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/pref_category_segmentation">
<SwitchPreference
android:defaultValue="false"
android:key="@string/pref_key_segmentation_raw_size_mask"
android:persistent="true"
android:title="@string/pref_title_segmentation_raw_size_mask"/>
</PreferenceCategory>
<PreferenceCategory
android:title="@string/pref_category_face_detection">
<ListPreference
android:defaultValue="@string/pref_entry_values_face_detector_landmark_mode_no_landmarks"
android:entries="@array/pref_entries_face_detector_landmark_mode"
android:entryValues="@array/pref_entry_values_face_detector_landmark_mode"
android:key="@string/pref_key_live_preview_face_detection_landmark_mode"
android:persistent="true"
android:title="@string/pref_title_face_detector_landmark_mode"/>
<ListPreference
android:defaultValue="@string/pref_entry_values_face_detector_contour_mode_all_contours"
android:entries="@array/pref_entries_face_detector_contour_mode"
android:entryValues="@array/pref_entry_values_face_detector_contour_mode"
android:key="@string/pref_key_live_preview_face_detection_contour_mode"
android:persistent="true"
android:title="@string/pref_title_face_detector_contour_mode"/>
<ListPreference
android:defaultValue="@string/pref_entry_values_face_detector_classification_mode_no_classifications"
android:entries="@array/pref_entries_face_detector_classification_mode"
android:entryValues="@array/pref_entry_values_face_detector_classification_mode"
android:key="@string/pref_key_live_preview_face_detection_classification_mode"
android:persistent="true"
android:title="@string/pref_title_face_detector_classification_mode"/>
<ListPreference
android:defaultValue="@string/pref_entry_values_face_detector_performance_mode_fast"
android:entries="@array/pref_entries_face_detector_performance_mode"
android:entryValues="@array/pref_entry_values_face_detector_performance_mode"
android:key="@string/pref_key_live_preview_face_detection_performance_mode"
android:persistent="true"
android:title="@string/pref_title_face_detector_performance_mode"/>
</PreferenceCategory>
</PreferenceScreen>

View File

@ -0,0 +1,17 @@
package com.empatnusabangsa.poseclassificationpoc
import org.junit.Test
import org.junit.Assert.*
/**
* Example local unit test, which will execute on the development machine (host).
*
* See [testing documentation](http://d.android.com/tools/testing).
*/
class ExampleUnitTest {
@Test
fun addition_isCorrect() {
assertEquals(4, 2 + 2)
}
}

10
build.gradle Normal file
View File

@ -0,0 +1,10 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.2' apply false
id 'com.android.library' version '7.2.2' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}

23
gradle.properties Normal file
View File

@ -0,0 +1,23 @@
# Project-wide Gradle settings.
# IDE (e.g. Android Studio) users:
# Gradle settings configured through the IDE *will override*
# any settings specified in this file.
# For more details on how to configure your build environment visit
# http://www.gradle.org/docs/current/userguide/build_environment.html
# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app"s APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
# Enables namespacing of each library's R class so that its R class includes only the
# resources declared in the library itself and none from the library's dependencies,
# thereby reducing the size of the R class for that library
android.nonTransitiveRClass=true

BIN
gradle/wrapper/gradle-wrapper.jar vendored Normal file

Binary file not shown.

View File

@ -0,0 +1,6 @@
#Thu Oct 13 13:59:56 ICT 2022
distributionBase=GRADLE_USER_HOME
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME

185
gradlew vendored Normal file
View File

@ -0,0 +1,185 @@
#!/usr/bin/env sh
#
# Copyright 2015 the original author or authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn () {
echo "$*"
}
die () {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
nonstop=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
NONSTOP* )
nonstop=true
;;
esac
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin or MSYS, switch paths to Windows format before running java
if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=`expr $i + 1`
done
case $i in
0) set -- ;;
1) set -- "$args0" ;;
2) set -- "$args0" "$args1" ;;
3) set -- "$args0" "$args1" "$args2" ;;
4) set -- "$args0" "$args1" "$args2" "$args3" ;;
5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Escape application args
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}
APP_ARGS=`save "$@"`
# Collect all arguments for the java command, following the shell quoting and substitution rules
eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
exec "$JAVACMD" "$@"

89
gradlew.bat vendored Normal file
View File

@ -0,0 +1,89 @@
@rem
@rem Copyright 2015 the original author or authors.
@rem
@rem Licensed under the Apache License, Version 2.0 (the "License");
@rem you may not use this file except in compliance with the License.
@rem You may obtain a copy of the License at
@rem
@rem https://www.apache.org/licenses/LICENSE-2.0
@rem
@rem Unless required by applicable law or agreed to in writing, software
@rem distributed under the License is distributed on an "AS IS" BASIS,
@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@rem See the License for the specific language governing permissions and
@rem limitations under the License.
@rem
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Resolve any "." and ".." in APP_HOME to make it shorter.
for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto execute
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto execute
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega

16
settings.gradle Normal file
View File

@ -0,0 +1,16 @@
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "Pose Classification PoC"
include ':app'