Spaces:
Running
Running
Niharmahesh
commited on
Upload 20 files
Browse files- .gitattributes +2 -0
- 1705768215998.jpeg +0 -0
- AWS Certified Cloud Practitioner certificate.png +0 -0
- IMG_6142.JPG +3 -0
- ML_DS.png +0 -0
- README.md +1 -13
- app.py +235 -0
- aws.png +0 -0
- bio.json +0 -0
- educatiuion.json +0 -0
- experiecne.json +0 -0
- mlds-pyt.png +0 -0
- nihar palem.pdf +0 -0
- otheracheivements.json +1 -0
- requirements.txt +6 -0
- sql_basic certificate (1).png +3 -0
- style.css +25 -0
- test.py +26 -0
- testsda.py +185 -0
- toolsandtech.json +0 -0
- udemy_CLF__003.png +0 -0
.gitattributes
CHANGED
@@ -33,3 +33,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
IMG_6142.JPG filter=lfs diff=lfs merge=lfs -text
|
37 |
+
sql_basic[[:space:]]certificate[[:space:]](1).png filter=lfs diff=lfs merge=lfs -text
|
1705768215998.jpeg
ADDED
AWS Certified Cloud Practitioner certificate.png
ADDED
IMG_6142.JPG
ADDED
Git LFS Details
|
ML_DS.png
ADDED
README.md
CHANGED
@@ -1,13 +1 @@
|
|
1 |
-
|
2 |
-
title: Portfolio
|
3 |
-
emoji: 🏃
|
4 |
-
colorFrom: pink
|
5 |
-
colorTo: green
|
6 |
-
sdk: streamlit
|
7 |
-
sdk_version: 1.40.1
|
8 |
-
app_file: app.py
|
9 |
-
pinned: false
|
10 |
-
short_description: My portfolio
|
11 |
-
---
|
12 |
-
|
13 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
1 |
+
# portfolio
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
app.py
ADDED
@@ -0,0 +1,235 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
import streamlit as st
|
3 |
+
from PIL import Image
|
4 |
+
from streamlit_lottie import st_lottie
|
5 |
+
import json
|
6 |
+
from streamlit_option_menu import option_menu # Import the option_menu
|
7 |
+
|
8 |
+
#setting layout to wide
|
9 |
+
st.set_page_config(layout="wide")
|
10 |
+
# Load CSS for styling with a minimalist grey background
|
11 |
+
with open("style.css") as f:
|
12 |
+
css_content = f.read()
|
13 |
+
css_content += '''
|
14 |
+
body {
|
15 |
+
background-color: #f0f2f6;
|
16 |
+
}
|
17 |
+
'''
|
18 |
+
st.markdown('<style>{}</style>'.format(css_content), unsafe_allow_html=True)
|
19 |
+
|
20 |
+
def load_lottiefile(filepath: str):
|
21 |
+
with open(filepath, "r") as file:
|
22 |
+
return json.load(file)
|
23 |
+
|
24 |
+
def display_header():
|
25 |
+
st.write('''
|
26 |
+
# Nihar Palem
|
27 |
+
#####
|
28 |
+
''')
|
29 |
+
# Assuming you have a Lottie animation to display
|
30 |
+
lottie_animation = load_lottiefile("bio.json")
|
31 |
+
st_lottie(lottie_animation, height=300, key="header_animation")
|
32 |
+
|
33 |
+
def display_summary():
|
34 |
+
#st.markdown('## Summary', unsafe_allow_html=True)
|
35 |
+
st.markdown("""Hello!, This is Nihar Palem. I'm originally from Hyderabad and currently residing in the Silicon Valley Bay Area, San Jose. I'm pursuing a Master's degree in Data Analytics at San Jose State University.
|
36 |
+
In this portfolio, you can explore my academic background, work experience, and projects in the data science field.
|
37 |
+
You'll also find links to my skills, other hobbies, and certifications.""")
|
38 |
+
|
39 |
+
def display_education():
|
40 |
+
st.markdown('## Education')
|
41 |
+
st.write("""
|
42 |
+
- **Masters In Data Analytics**, *San Jose State University*, USA (2023-2024)
|
43 |
+
- Courses: Data Mining, Deep Learning, Big Data Technologies, Data Visualization, Machine Learning, Database Management Systems
|
44 |
+
- Achievements:
|
45 |
+
- A Grade in Deep Learning
|
46 |
+
- Instructional Student Assistant (ISA)
|
47 |
+
- Mentored 80+ students on technical aspects of data modeling projects, guiding them through comprehensive project report writing and adhering to proper grading formats.
|
48 |
+
- Reviewed and provided feedback on data pipeline demonstrations, ensuring quality and best practices, while offering expert advice on resolving complex technical issues related to data analysis and machine learning models.
|
49 |
+
|
50 |
+
- **Bachelor of Technology (B.Tech) in Electrical and Electronics Engineering (EEE)**, *Sreenidhi Institute of Science and Technology (SNIST)*, Hyderabad (2015-2019)
|
51 |
+
- Activities:
|
52 |
+
- Memeber of the Robotics Club:, built line follower and theft-alert detection bots.
|
53 |
+
- Member of the college cricket team; won the Hyderabad zone-level tournament
|
54 |
+
""")
|
55 |
+
def display_work_experience():
|
56 |
+
st.markdown('## Work Experience')
|
57 |
+
st.write("""
|
58 |
+
**Bharat Electronics Limited, Hyderabad**
|
59 |
+
February 2021 - March 2022
|
60 |
+
- **Data Analyst**
|
61 |
+
- Optimized complex SQL queries for multi-million row datasets, boosting performance by 40% and accelerating reporting capabilities.
|
62 |
+
- Engineered robust Python scripts with Pandas for large-scale data extraction and analysis from SQL Server.
|
63 |
+
- Designed and implemented interactive dashboards using Matplotlib and Seaborn, delivering real-time insights into key business indicators and financial metrics, enhancing strategic decision-making and streamlining centralized government reporting.
|
64 |
+
- Automated monthly processes and improved data quality by implementing SQL stored procedures and triggers, resulting in a 30% reduction in data entry errors and a 40% decrease in routine reporting time.
|
65 |
+
|
66 |
+
**Technical Writer**
|
67 |
+
2023-Present
|
68 |
+
- Embarked on a new journey in 2023 as a technical writer, sharing insights and developments in data science and data engineering with a growing audience.
|
69 |
+
- Authored numerous articles that explore complex topics in an accessible and informative manner, focusing on data science, machine learning, bioinformatics, and data engineering.
|
70 |
+
- This new habit aims to educate and inspire, bridging the gap between technical expertise and practical application in the modern data landscape.
|
71 |
+
- Find my work on [Medium](https://medium.com/@nihar-palem) and [Substack](https://niharpalem.substack.com/publish/posts).
|
72 |
+
""")
|
73 |
+
|
74 |
+
|
75 |
+
import streamlit as st
|
76 |
+
|
77 |
+
def display_projects():
|
78 |
+
st.title('My Projects')
|
79 |
+
|
80 |
+
# Define tab titles
|
81 |
+
tab_titles = [
|
82 |
+
"Squat Easy",
|
83 |
+
"ASL Translator",
|
84 |
+
"Face Recognition",
|
85 |
+
"Stock Market Chatbot",
|
86 |
+
"Twitter Trend Analysis",
|
87 |
+
"Restaurant Recommendation System",
|
88 |
+
"Bitcoin Lightning Path Optimization",
|
89 |
+
"National Infrastructure Monitoring"
|
90 |
+
]
|
91 |
+
|
92 |
+
# Create tabs
|
93 |
+
tabs = st.tabs(tab_titles)
|
94 |
+
|
95 |
+
# Add content to each tab
|
96 |
+
with tabs[0]:
|
97 |
+
st.header("Squat Easy")
|
98 |
+
st.markdown("""
|
99 |
+
- **Description**: Engineered a custom BiLSTM architecture in PyTorch with extensive hyperparameter tuning, achieving 81% training and 75% test accuracy in classifying six types of squatting errors from video data. Optimized through data augmentation and CUDA-based GPU acceleration.
|
100 |
+
- **Technologies Used**: PyTorch, Object-Oriented Programming (OOP), GitHub
|
101 |
+
- **Reference**: [Link to Project](https://github.com/niharpalem/squateasy_DL)
|
102 |
+
""")
|
103 |
+
|
104 |
+
with tabs[1]:
|
105 |
+
st.header("ASL Translator")
|
106 |
+
st.markdown("""
|
107 |
+
- **Description**: Crafted a ASL translation system using MediaPipe for point detection and trained a Random Forest Model , achieving 95% accuracy in real-time gesture interpretation. Implemented an adaptive hand skeleton GIF generator for intuitive visual representation.
|
108 |
+
- **Technologies Used**: MediaPipe Hand Detection, Hugging Face Platform
|
109 |
+
- **Reference**: [Link to Project](https://huggingface.co/spaces/Niharmahesh/slr-easz)
|
110 |
+
""")
|
111 |
+
|
112 |
+
with tabs[2]:
|
113 |
+
st.header("Face Recognition")
|
114 |
+
st.markdown("""
|
115 |
+
- **Description**: Integrated fiducial point features, CNN-extracted image features, and Siamese networks in TensorFlow, attaining 85% test accuracy for facial recognition. Optimized for real-world security applications by balancing computational efficiency with accuracy.
|
116 |
+
- **Technologies Used**: TensorFlow, Siamese Networks
|
117 |
+
- **Reference**: [Link to Project](#)
|
118 |
+
""")
|
119 |
+
|
120 |
+
with tabs[3]:
|
121 |
+
st.header("Stock Market Chatbot")
|
122 |
+
st.markdown("""
|
123 |
+
- **Description**: Architected a multilingual stock analysis system using Apache Spark and a custom LLM, boosting query performance by 25% over traditional SQL approaches. Interfaced with Snowflake for efficient financial data retrieval and real-time insights in English and Chinese.
|
124 |
+
- **Technologies Used**: PySpark for Querying, Data Warehousing with Redshift and Snowflake
|
125 |
+
- **Reference**: [Link to Project](#)
|
126 |
+
""")
|
127 |
+
|
128 |
+
with tabs[4]:
|
129 |
+
st.header("Twitter Trend Analysis")
|
130 |
+
st.markdown("""
|
131 |
+
- **Description**: Engineered an ELT pipeline using GCP's BigQuery for Twitter data processing and sentiment analysis. Integrated Tableau for live, interactive dashboards, showcasing advanced cloud data engineering skills and cost-effective data storage solutions.
|
132 |
+
- **Technologies Used**: Apache Airflow for Automation, Docker, Tableau for Dashboards
|
133 |
+
- **Reference**: [Link to Project](#)
|
134 |
+
""")
|
135 |
+
|
136 |
+
with tabs[5]:
|
137 |
+
st.header("Restaurant Recommendation System")
|
138 |
+
st.markdown("""
|
139 |
+
- **Description**: Engineered a recommendation engine using collaborative and content-based filtering, achieving a 15% accuracy increase. Constructed a Flask web app with Folium integration for an interactive, location-based restaurant suggestion interface.
|
140 |
+
- **Technologies Used**: Collaborative Filtering, Content-Based Filtering
|
141 |
+
- **Reference**: [Link to Project](#)
|
142 |
+
""")
|
143 |
+
|
144 |
+
with tabs[6]:
|
145 |
+
st.header("Bitcoin Lightning Path Optimization")
|
146 |
+
st.markdown("""
|
147 |
+
- **Description**: Implemented a graph-based algorithm to optimize payment routing in the Bitcoin Lightning Network. Created a simulation environment to validate improved efficiency in multi-channel transactions under various network conditions.
|
148 |
+
- **Technologies Used**: Graph-Based Algorithms, Simulation Environments
|
149 |
+
- **Reference**: [Link to Project](#)
|
150 |
+
""")
|
151 |
+
|
152 |
+
with tabs[7]:
|
153 |
+
st.header("National Infrastructure Monitoring")
|
154 |
+
st.markdown("""
|
155 |
+
- **Description**: Utilized satellite imagery to detect changes between different time frames by fine-tuning a Change ViT model. Developed a UI where users can draw bounding boxes on a Python map library; these coordinates are used in Google Earth Engine (GEE) to extract Sentinel-2 imagery. Users can select the resolution of images for caching. The processing function includes contrast adjustments and automatic image chipping as the model requires 256x256 inputs, generating change masks effectively.
|
156 |
+
- **Technologies Used**: Satellite Imagery Analysis, Change ViT Model, Google Earth Engine (GEE), Python Map Libraries
|
157 |
+
- **Reference**: [Link to Project](https://huggingface.co/spaces/Niharmahesh/Data298)
|
158 |
+
""")
|
159 |
+
|
160 |
+
|
161 |
+
def display_skills():
|
162 |
+
st.markdown('## Skills')
|
163 |
+
st.write("""
|
164 |
+
- **Programming Languages**: Python, SQL
|
165 |
+
- **Data Processing/Wrangling**: pandas, NumPy
|
166 |
+
- **Data Visualization**: Matplotlib, Seaborn, Plotly, Tableau, Power BI
|
167 |
+
- **Machine Learning/Deep Learning**: scikit-learn, TensorFlow, Keras
|
168 |
+
- **Model Deployment**: Streamlit, Flask
|
169 |
+
- **Cloud Platforms**: AWS, Google Cloud Platform (GCP), Azure
|
170 |
+
- **Big Data Technologies**: Apache Spark, Hadoop
|
171 |
+
- **Databases**: MySQL, PostgreSQL, MongoDB
|
172 |
+
- **Version Control**: Git, GitHub
|
173 |
+
- **Collaboration Tools**: JIRA, Notion
|
174 |
+
""")
|
175 |
+
def display_apps():
|
176 |
+
st.markdown('## Apps')
|
177 |
+
st.markdown("""
|
178 |
+
- [CNN arch](https://cnn-arch.streamlit.app/)
|
179 |
+
""")
|
180 |
+
|
181 |
+
def display_certifications():
|
182 |
+
st.markdown('## Certifications')
|
183 |
+
certifications = [
|
184 |
+
{"path": 'mlds-pyt.png', "title": "Python for Data Science and Machine Learning Bootcamp"},
|
185 |
+
{"path": 'sql_basic certificate (1).png', "title": "HackerRank SQL (Basic)"},
|
186 |
+
{"path": 'aws.png', "title": "AWS Cloud Practitioner Udemy Course by Stephane Maarek"},
|
187 |
+
{"path": 'AWS Certified Cloud Practitioner certificate.png', "title": "AWS Certified Cloud Practitioner"}
|
188 |
+
]
|
189 |
+
|
190 |
+
for certification in certifications:
|
191 |
+
st.image(certification["path"], caption=certification["title"], width=150)
|
192 |
+
|
193 |
+
def display_social_media():
|
194 |
+
st.markdown('## Social Media')
|
195 |
+
st.markdown("""
|
196 |
+
- [LinkedIn](https://www.linkedin.com/in/sai-nihar-1b955a183/)
|
197 |
+
- [GitHub](https://github.com/niharpalem)
|
198 |
+
- [Medium](https://medium.com/@nihar-palem)
|
199 |
+
- [Twitter](https://twitter.com/niharpalem_2497)
|
200 |
+
- [Email](mailto:[email protected])
|
201 |
+
""")
|
202 |
+
menu_items_with_icons = {
|
203 |
+
"🎓": display_education,
|
204 |
+
"💼": display_work_experience,
|
205 |
+
"📁": display_projects,
|
206 |
+
"🛠️": display_skills,
|
207 |
+
"🌐": display_social_media,
|
208 |
+
"🏆": display_certifications,
|
209 |
+
"📱": display_apps
|
210 |
+
}
|
211 |
+
|
212 |
+
def main():
|
213 |
+
# Initialize session state for selected function
|
214 |
+
if 'selected_function' not in st.session_state:
|
215 |
+
st.session_state.selected_function = None # Default to None to not display any section initially
|
216 |
+
|
217 |
+
# Display the header with your name and Lottie animation first
|
218 |
+
display_header()
|
219 |
+
|
220 |
+
# Display the summary section immediately after the header
|
221 |
+
display_summary()
|
222 |
+
|
223 |
+
# Create a row of buttons for each icon in the menu
|
224 |
+
cols = st.columns(len(menu_items_with_icons))
|
225 |
+
for col, (icon, func) in zip(cols, menu_items_with_icons.items()):
|
226 |
+
if col.button(icon):
|
227 |
+
# Update the session state to the selected function
|
228 |
+
st.session_state.selected_function = func
|
229 |
+
|
230 |
+
# If a function has been selected, call it
|
231 |
+
if st.session_state.selected_function is not None:
|
232 |
+
st.session_state.selected_function()
|
233 |
+
|
234 |
+
if __name__ == "__main__":
|
235 |
+
main()
|
aws.png
ADDED
bio.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
educatiuion.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
experiecne.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
mlds-pyt.png
ADDED
nihar palem.pdf
ADDED
Binary file (226 kB). View file
|
|
otheracheivements.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"v":"5.5.2","fr":24,"ip":0,"op":64,"w":1029,"h":690,"nm":"add_bank_00D492","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[514.5,345,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-98,24],[-94,-16],[-146,-6],[-66,10]],"o":[[0,0],[98,-24],[94,16],[146,6],[66,-10]],"v":[[-766.5,13],[-444.5,-23],[-180.5,-59],[149.5,-11],[599.5,41]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":23,"s":[0],"e":[100]},{"t":58}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":26,"s":[0],"e":[100]},{"t":61}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":23,"op":65,"st":23,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[514.5,345,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-122,-22],[-158,54],[-380,-36]],"o":[[0,0],[122,22],[158,-54],[91.784,8.695]],"v":[[-640.5,233],[-390.5,159],[3.5,193],[649.5,137]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0],"e":[100]},{"t":35}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":3,"s":[0],"e":[100]},{"t":38}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":38,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":3,"nm":"Null 664","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[414.5,345,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"Head","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0],"e":[3]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":36,"s":[3],"e":[0]},{"t":64}],"ix":10},"p":{"a":0,"k":[-41.984,-105.699,0],"ix":2},"a":{"a":0,"k":[19.042,54.788,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.267,-0.375],[0.46,-1.18],[0.745,1.756],[-0.087,-2.859],[0.067,-0.276],[-0.257,-0.712],[-1.274,-2.418],[-0.005,-0.06],[0.268,0.62],[1.891,0.461],[-4.058,5.982],[-1.57,2.053],[-0.982,13.223],[2.563,-0.494],[0.001,0.003],[1.759,-1.264]],"o":[[-0.702,2.022],[-0.808,2.078],[-2.721,-0.959],[0.131,4.288],[0.13,0.453],[0.362,1.002],[0.004,0.06],[-0.885,-0.463],[-0.664,-1.538],[-2.537,0.077],[2.123,-3.129],[7.938,-10.38],[10.457,9.793],[-0.002,-0.003],[-10.251,3.19],[-0.315,0.226]],"v":[[-5.514,-0.133],[-7.147,5.071],[-9.478,5.554],[-13.428,8.403],[-10.884,11.48],[-10.353,14.421],[-7.898,19.553],[-7.885,19.734],[-9.614,18.109],[-12.252,13.356],[-15.579,-6.984],[-11.941,-9.354],[9.18,-16.99],[10.291,-1.122],[10.286,-1.131],[-4.643,-1.035]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.258999992819,0.156999999402,0.109999997008,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[20.198,19.984],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.447,1.186],[0,0],[-0.038,-2.574],[-1.631,-0.346],[-0.61,4.102],[-3.172,0.135],[0.479,-2.6],[2.388,-3.652],[3.988,1.428],[1.934,0.91],[0.106,3.444]],"o":[[0,0],[0.35,1.277],[0.172,11.45],[1.631,0.346],[0.406,-2.734],[2.766,0.193],[-0.811,2.566],[-2.388,3.652],[-3.022,-1.082],[-3.099,-1.459],[0.375,-4.534]],"v":[[-12.88,-13.324],[-9.434,-15.707],[-8.85,-9.931],[-2.353,3.258],[1.339,-0.01],[6.706,-4.314],[10.135,-0.122],[10.492,11.612],[-0.661,14.279],[-5.93,12.113],[-11.273,-4.745]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[-0.035,-1.156],[0,0],[-1.15,0.035],[0,0],[-0.4,1.341],[0,0],[0.044,0.248],[0.821,-0.155]],"o":[[-1.1,0.208],[0,0],[0.036,1.188],[0,0],[1.358,-0.041],[0,0],[0.071,-0.241],[-0.153,-0.848],[0,0]],"v":[[4.602,-2.255],[2.75,0.118],[2.755,0.259],[4.902,2.346],[5.09,2.34],[8.029,0.03],[8.223,-0.616],[8.264,-1.361],[6.503,-2.615]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.258999992819,0.156999999402,0.109999997008,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[21.548,38.319],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.419,2.726],[-0.045,1.066],[1.876,6.384],[0.44,1.534],[0.132,4.316],[-2.731,-0.967],[-0.502,2.702],[-5.456,-0.208],[-0.392,-12.888],[8.158,-0.97],[0,0],[2.66,-0.081]],"o":[[-0.033,1.454],[0.044,-1.067],[-1.812,-4.161],[0.067,-0.278],[-0.087,-2.877],[1.365,0.129],[0.754,-4.053],[5.455,0.209],[0.262,8.592],[0,0],[0.875,3.978],[-3.234,0.099]],"v":[[-4.61,17.052],[-4.592,17.634],[-7.34,6.457],[-10.718,-2.086],[-13.38,-5.686],[-9.414,-8.551],[-6.614,-12.41],[0.897,-20.884],[13.205,-4.102],[1.361,10.242],[2.288,14.905],[-0.388,20.993]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.677999997606,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[19.517,33.789],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"Neck","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-37.074,-119.545,0],"ix":2},"a":{"a":0,"k":[11.295,14.299,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.956,-3.601],[4.829,-0.874],[-0.912,2.667],[0.3,3.564],[-0.452,0.234]],"o":[[-0.186,0.391],[0.22,0.826],[-5.485,0.992],[0.912,-2.667],[-0.3,-3.566],[0.451,-0.233]],"v":[[5.159,-4.893],[4.723,2.104],[6.215,13.056],[-10.129,3.931],[-9.19,-4.289],[-10.592,-13.815]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.651000019148,0.430999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[11.294,14.299],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"Col","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-37.67,-103.812,0],"ix":2},"a":{"a":0,"k":[13.767,6.39,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.019,-0.116],[-1.888,4.864],[-0.741,0.154],[0.133,-0.39],[-5.485,0.992],[1.512,2.802],[-0.493,-0.13]],"o":[[-4.336,0.062],[0.726,-0.223],[-0.108,0.368],[-0.912,2.667],[3.881,-0.702],[0.497,0.117],[3.056,4.204]],"v":[[5.498,6.078],[-11.628,-5.577],[-9.428,-6.141],[-9.79,-5.008],[6.554,4.117],[5.744,-5.503],[7.23,-5.13]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.290658479578,0.193878727333,0.49206495098,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[13.766,6.391],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"Bag Front","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-34.013,-70.941,0],"ix":2},"a":{"a":0,"k":[23.025,25.333,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.197,-10.706],[2.007,0.181],[-0.406,1.551],[10.113,6.341],[-2.276,1.521]],"o":[[0,0],[1.198,10.707],[-2.007,-0.182],[3.614,-13.808],[-1.212,-1.62],[2.276,-1.522]],"v":[[1.113,-25.063],[6.686,-8.178],[-2.137,24.902],[-4.863,16.964],[-6.672,-20.147],[-3.801,-23.561]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.165000002992,0.298000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[8.134,25.333],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.796,-18.819],[9.961,4.754]],"o":[[3.051,2.712],[0.219,-0.007],[-2.431,-1.16]],"v":[[-7.429,-15.846],[4.387,16.956],[-2.532,-15.796]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.165000002992,0.298000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[38.37,18.173],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"Hand L","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[101.446,-120.551,0],"ix":2},"a":{"a":0,"k":[7.998,6.622,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.405,-3.795],[-1.906,0.507],[0,0],[0.776,2.928],[2.947,-0.784],[0,0],[0.602,-1.625]],"o":[[1.34,1.241],[0,0],[2.947,-0.784],[-0.775,-2.927],[0,0],[-1.809,0.481],[0,0]],"v":[[-5.343,4.585],[-0.163,5.866],[3.04,5.012],[6.973,-1.708],[0.233,-5.589],[-2.973,-4.734],[-6.745,-1.309]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.677999997606,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[7.998,6.623],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"Arm L","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[60.375,-104.673,0],"ix":2},"a":{"a":0,"k":[20.659,10.709,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.716,-1.296],[0,0],[-0.808,0.449],[-7.07,1.576]],"o":[[-6.956,2.536],[-3.161,1.506],[-1.769,-2.947],[0.711,-0.395],[0,0]],"v":[[20.409,-4.849],[-12.741,8.953],[-18.64,7.074],[-17.544,-1.898],[18.281,-10.459]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.677999997606,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[20.659,10.709],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"Sleeve L","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1.394,-97.826,0],"ix":2},"a":{"a":0,"k":[25.048,9.209,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-3.709,2.645],[-0.888,-2.388],[4.73,-3.495]],"o":[[-1.943,-1.611],[1.681,-1.198],[1.478,3.975],[-4.73,3.494]],"v":[[-9.486,4.949],[-21.089,-6.8],[17.164,-6.571],[20.068,5.465]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.426999978458,0.282000014361,0.728999956916,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[25.048,9.209],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"Sleeve R","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-72.832,-106.345,0],"ix":2},"a":{"a":0,"k":[33.418,1.578,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.365,-0.483],[0.362,-0.032],[0.729,-0.497],[0,0],[0.325,-1.205],[0.159,0.098],[0,0],[-1.118,1.8],[-0.049,0.069],[-2.068,3.443],[-3.239,-3.9],[2.966,-2.812]],"o":[[0,0],[0.487,0.367],[-0.009,0.013],[-0.878,0.079],[0,0],[-1.031,0.704],[-0.087,0.322],[0,0],[-1.812,-1.128],[0.043,-0.072],[15.062,-21.02],[3.263,-5.433],[2.702,3.253],[0,0]],"v":[[-7.416,17.027],[-4.66,18.736],[-4.438,20.276],[-5.103,20.349],[-7.555,21.227],[-9.675,22.674],[-11.834,25.604],[-12.186,26.034],[-19.013,21.947],[-20.27,16.646],[-20.131,16.436],[5.563,-20.26],[18.686,-22.232],[16.647,-11.749]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.426999978458,0.282000014361,0.728999956916,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[21.638,26.382],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"Arm R","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[8.504,44.111,0],"ix":2},"a":{"a":0,"k":[71.606,105.318,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.707,-1.282],[-0.076,-0.054],[0,0],[-1.488,-1.294],[0,0],[-1.989,2.283],[2.301,2],[0,0],[1.684,-0.412],[5.773,4.057]],"o":[[0.075,0.055],[0,0],[-0.276,1.804],[0,0],[2.303,2.002],[1.989,-2.283],[0,0],[-1.415,-1.228],[-10.003,-7.997],[0,0]],"v":[[-19.901,7.633],[-19.75,7.742],[7.854,26.477],[9.698,31.483],[12.201,33.657],[19.972,33.146],[19.406,25.389],[16.903,23.214],[11.947,22.01],[-11.709,3.934]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":1,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.677999997606,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[88.439,101.384],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"Body","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-32.909,-42.56,0],"ix":2},"a":{"a":0,"k":[26.514,45.228,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-11.461,-4.515],[-6.299,-29.056],[7.827,1.334],[7.597,-3.403],[0.294,0.249],[4.325,17.869],[-2.36,2.456]],"o":[[5.937,2.339],[0.926,4.273],[-8.205,-1.398],[-1.492,0.668],[-3.937,-3.338],[-5.126,-21.177],[10.114,-10.531]],"v":[[12.537,-37.266],[25.338,39.049],[11.98,40.31],[-12.254,43.44],[-15.28,44.729],[-16.736,-4.992],[-23.904,-34.447]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.426999978458,0.282000014361,0.728999956916,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[26.513,45.228],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"Short","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-19.846,91.034,0],"ix":2},"a":{"a":0,"k":[25.979,38.344,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.806,4.145],[-0.499,-0.645],[-3.061,4.234],[-0.128,3.62]],"o":[[0.034,3.257],[2.767,3.576],[0.588,-0.813],[-6.221,4.335]],"v":[[-10.769,-3.694],[-9.518,2.55],[9.727,0.831],[10.769,-6.126]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.216000007181,0.275,0.356999984442,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[38.919,66.076],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.202,2.072],[-0.681,4.724],[-0.575,0.436],[-0.106,0.507],[0,0],[0.639,-3.75],[-0.474,-4.097]],"o":[[3.513,-3.308],[0.144,-1.001],[0.078,-0.513],[0,0],[0,0],[-1.101,6.445],[2.986,-0.034]],"v":[[0.656,7.457],[6.711,-6.633],[7.867,-8.753],[8.143,-10.282],[-1.481,-10.048],[-7.042,-4.788],[-7.424,10.282]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.216000007181,0.275,0.356999984442,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[9.725,11.153],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.709,4.216],[-0.175,-0.32],[-1.581,2.356],[-0.29,3.07]],"o":[[0.044,2.089],[5.543,10.101],[0.333,-0.495],[-5.463,3.649]],"v":[[-10.684,-6.915],[-10.34,-3.186],[9.747,0.539],[10.684,-5.177]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.216000007181,0.275,0.356999984442,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[12.221,69.522],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.142,-0.767],[-2.027,-4.273],[-0.374,-0.594],[0.614,3.351],[0,0]],"o":[[0.865,4.66],[0.32,0.678],[-0.705,-7.518],[0,0],[0.402,0.42]],"v":[[-2.145,-6.765],[1.948,6.728],[3.001,8.616],[0.927,-8.616],[-3.001,-8.52]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.216000007181,0.275,0.356999984442,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[42.408,8.866],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.859,0.656],[0,0],[0,0],[0.002,-1.598],[0.016,-0.089],[-1.695,-2.19],[-1.702,-0.337],[-0.06,4.517],[-0.577,10.975],[-0.178,2.865]],"o":[[1.588,1.091],[0,0],[0.065,1.253],[0.016,0.09],[-0.044,12.661],[0.694,0.898],[-1.698,-3.993],[0.143,-10.99],[0.045,-0.85],[-2.418,3.213]],"v":[[-6.8,-20.081],[-1.705,-18.156],[0.807,-18.62],[0.893,-14.305],[0.893,-14.042],[2.968,22.24],[6.729,24.079],[5.262,10.712],[3.631,-17.766],[6.8,-24.079]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.231000010173,0.301999978458,0.4,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[26.433,46.386],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.923,-2.486],[-3.061,4.234],[2.187,11.961],[0,0],[0.64,-3.75],[1.322,-11.546],[-0.596,-1.088],[-1.581,2.355],[0,0],[0,0]],"o":[[2.768,3.576],[3.062,-4.233],[0,0],[0,0],[-2.432,14.246],[-1.791,15.65],[5.543,10.102],[1.581,-2.356],[0,0],[0.573,11.147]],"v":[[3.422,30.283],[22.667,28.564],[17.357,-38.094],[-17.735,-37.239],[-23.297,-31.98],[-22.921,-1.295],[-24.099,27.992],[-4.012,31.718],[-1.251,-10.114],[1.261,-10.579]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.255000005984,0.325,0.447000002394,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[25.979,38.344],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"Bag Back","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-53.597,-50.596,0],"ix":2},"a":{"a":0,"k":[29.712,54.125,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.687,0.745],[1.192,0.056],[3.298,-0.217],[4.795,-3.119],[-0.374,-3.632],[0.391,-2.797],[0.797,-3.051],[-0.425,-3.967],[-2.623,-1.348],[-8.946,0.614],[-3.107,1.982],[0.17,5.568],[1.972,2.944]],"o":[[-1.182,-0.216],[-3.304,-0.156],[-5.989,0.394],[-0.438,2.097],[0.52,5.047],[-0.391,2.8],[-0.796,3.053],[0.425,3.969],[2.625,1.35],[8.944,-0.618],[3.106,-1.983],[-0.168,-5.569],[-1.149,-1.713]],"v":[[14.615,-43.846],[11.057,-44.295],[1.146,-43.979],[-15.117,-39.131],[-15.904,-29.167],[-14.563,-7.825],[-17.575,16.761],[-21.312,35.64],[-19.599,41.988],[-0.248,43.837],[18.093,42.402],[22.053,-7.082],[18.369,-40.194]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.165000002992,0.298000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[34.947,63.548],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[4.849,-0.414],[3.73,-2.266],[0.674,-2.807],[-0.512,-2.638],[0,0],[-2.924,2.119],[-1.636,0.93],[-2.765,0.579],[0,0]],"o":[[0,0],[-4.849,0.412],[-3.73,2.268],[-0.673,2.807],[0.509,2.64],[0,0],[2.922,-2.12],[1.638,-0.93],[2.767,-0.579],[0,0]],"v":[[19.478,-7.482],[1.083,-10.732],[-10.565,-9.081],[-17.457,-0.879],[-18.966,4.38],[-17.945,11.348],[-14.379,3.712],[-4.738,-2.51],[9.057,-6.686],[14.708,-7.335]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.165000002992,0.298000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[24.91,26.875],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[1.154,3.016],[-1.285,7.734],[0.597,4.626],[-2.093,3.954],[-2.79,0.965],[0,0],[0.058,-3.053],[0.408,-6.515],[0.073,-3.4],[0,0]],"o":[[0,0],[-1.156,-3.017],[1.283,-7.737],[-0.597,-4.626],[2.095,-3.954],[2.791,-0.965],[0,0],[-0.06,3.054],[-0.41,6.514],[-0.074,3.398],[0,0]],"v":[[0.87,40.006],[-6.874,32.643],[-6.488,-9.566],[-6.059,-25.371],[-5.359,-34.374],[2.523,-40.013],[6.973,-41.427],[7.971,-8.681],[5.708,16.734],[3.152,36.769],[3.16,41.427]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.984000052658,0.689999988032,0.250999989229,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[13.155,64.515],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.985,-0.492],[0.005,-7.754],[0.012,-0.046],[0,0],[-0.013,8.384]],"o":[[0,0],[0,0],[-0.005,7.641],[0,0],[0,0],[0.01,-6.988]],"v":[[-2.081,-9.681],[-0.962,-9.59],[2.076,-0.022],[-0.948,9.804],[-1.941,10.082],[1.222,-0.499]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.922000002394,0.525,0.046999998654,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[21.448,14.408],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-9.596,1.886],[-4.227,0.054],[-0.053,6.272],[0,0],[9.685,1.304],[-1.361,-5.07],[1.655,-2.6]],"o":[[1.492,-0.111],[3.797,-0.747],[0,0],[0.054,-6.273],[0,0],[0,0],[1.198,4.462],[-2.551,4.006]],"v":[[-25.254,13.794],[-6.698,8.579],[23.013,5.591],[25.21,-2.811],[21.966,-13.794],[-25.263,-9.206],[-18.84,-1.943],[-19.908,9.307]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.681999954523,0.211999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[33.909,14.044],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.987,-0.854],[0.34,-3.859],[-1.268,0.118]],"o":[[-0.625,0.179],[-0.192,2.158],[2.52,-0.236]],"v":[[-0.191,-4.954],[-2.004,0.379],[0.115,4.999]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.404000016755,0.282000014361,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[8.47,17.751],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.198,-3.537],[1.359,0.376],[-0.504,4.79],[-0.946,0.268],[-2.065,0.237]],"o":[[-0.883,1.132],[-1.884,-0.523],[0.442,-4.19],[0.947,-0.268],[2.885,2.963]],"v":[[3.183,5.505],[-1.025,6.93],[-4.877,-0.469],[-1.249,-6.876],[2.182,-7.307]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.709999952129,0.388000009574,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[9.756,17.675],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.299,3.603],[0,0],[1.784,-0.041],[0.054,-0.003],[7.002,-1.216],[0.014,-0.056],[-0.788,0.423]],"o":[[0.35,-4.22],[0,0],[-0.054,0.001],[6.829,2.357],[-0.009,0.058],[1.921,-0.268],[2.387,-1.282]],"v":[[4.684,0.584],[5.629,-9.536],[-3.13,-9.184],[-3.291,-9.17],[-3.877,9.478],[-3.697,9.451],[3.127,7.723]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.922000002394,0.525,0.046999998654,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[12.51,17.417],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.35,-4.22],[2.387,-1.282],[1.054,0.088],[-0.417,5.018],[-3.75,0.084],[0,0]],"o":[[-0.299,3.603],[-0.937,0.503],[-3.738,-0.31],[0.416,-5.018],[1.784,-0.041],[0,0]],"v":[[8.22,0.55],[6.663,7.689],[-0.991,9.482],[-7.006,-0.165],[0.406,-9.218],[9.165,-9.57]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811999990426,0.442999985639,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[8.974,17.451],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.492,-5.93],[4.188,0.348],[-0.492,5.93],[-4.188,-0.348]],"o":[[-0.492,5.929],[-4.187,-0.347],[0.492,-5.929],[4.186,0.346]],"v":[[7.582,0.629],[-0.891,10.736],[-7.581,-0.629],[0.892,-10.736]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.607999973671,0.13300000359,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[8.323,17.14],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"Leg R","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-43.466,181.87,0],"ix":2},"a":{"a":0,"k":[10.191,39.398,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.219,1.001],[0.36,-8.374],[-2.805,0.601]],"o":[[2.139,-9.772],[-0.031,0.712],[2.806,-0.604]],"v":[[5.561,3.562],[-7.669,5.225],[0.062,5.609]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.681999954523,0.211999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[8.117,68.032],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[1.088,-0.547],[1.188,-0.128],[1.348,0.185],[-0.198,1.617],[0,0]],"o":[[0.382,1.924],[-1.142,0.598],[-1.331,0.108],[-1.727,-0.294],[0,0],[0,0]],"v":[[6.523,-3.476],[5.304,1.828],[-0.053,2.951],[-4.344,3.291],[-6.707,-1.813],[-2.817,-2.499]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.165000002992,0.298000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[7.155,75.07],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.268,-1.847],[0,0],[4.827,-4.212]],"o":[[-0.007,-0.903],[0,0],[0,0],[0,0]],"v":[[-3.723,-0.776],[3.462,-2.674],[2.648,3.839],[-3.697,4.521]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.165000002992,0.298000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[8.559,63.424],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.281,1.459],[2.063,-1.86],[0.049,-1.732],[-0.372,-0.174]],"o":[[-0.323,-0.942],[2.054,-10.664],[-0.392,0.353],[0,0],[0.371,0.173]],"v":[[3.233,9.667],[4.276,-0.187],[-5.939,0.348],[-5.684,9.82],[0.557,10.678]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.681999954523,0.211999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[9.794,57.37],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-1.996,0.549],[0,0],[0,0]],"o":[[0,0],[0,0],[2.066,0.144],[0,0],[0,0],[0,0]],"v":[[-4.091,4.661],[-5.117,-3.599],[-3.146,-3.462],[2.99,-4.075],[5.117,-4.661],[3.635,2.9]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.8,0.847000002394,0.898000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[8.939,54.195],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.27,-17.857],[0,0],[2.079,10.663],[0,0]],"o":[[0.976,11.099],[0,0],[5.419,-39.715],[0,0],[0,0]],"v":[[-9.248,-12.941],[-5.546,29.563],[1.683,29.058],[7.48,-17.839],[-9.559,-29.563]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.677999997606,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[10.573,29.814],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"Leg L","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[14.744,186.663,0],"ix":2},"a":{"a":0,"k":[15.231,34.269,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.122,-1.191],[-0.102,-0.668],[-3.571,1.52]],"o":[[-1.287,0.429],[0.124,1.19],[0.101,0.666],[0,0]],"v":[[0.948,-3.301],[-3.796,-0.288],[-3.337,2.635],[3.918,1.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.165000002992,0.298000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[17.565,54.887],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.178,-3.692],[-4.917,0.231],[-1.99,0.118],[-0.221,0.798],[3.241,0.928],[0,0],[0.1,1.668],[2.009,0.588]],"o":[[0.921,4.311],[0.037,0.803],[4.918,-0.232],[2.434,-0.145],[1.901,-5.614],[0,0],[0.514,-1.446],[-5.023,-0.658],[0,0]],"v":[[-10.668,-1.766],[-10.96,8.01],[-4.574,9.415],[6.888,9.797],[9.529,8.531],[2.112,0.648],[-0.856,-3.774],[0.105,-9.257],[-11.43,-5.015]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.984000052658,0.689999988032,0.250999989229,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[18.782,55.36],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.47,-0.246],[1.116,-0.014],[0.264,-0.001],[0.528,0.006],[2.049,0.073],[0.293,0.009],[0.325,0.012],[0.441,0.015],[0.252,0.011],[0.385,0.037],[-0.421,4.03],[-0.277,0.041]],"o":[[0.198,2.777],[-0.891,0.468],[-0.264,0.003],[-0.528,0.001],[-2.037,-0.015],[-0.291,-0.009],[-0.322,-0.012],[-0.504,-0.018],[-0.277,-0.01],[-0.469,-0.02],[-2.657,-0.265],[0,0],[0.278,-0.041]],"v":[[10.537,-1.908],[9.619,2.877],[6.489,3.402],[5.351,2.571],[4.107,3.405],[-2.012,3.249],[-2.955,2.373],[-3.859,3.184],[-5.275,3.138],[-6.206,2.183],[-7.348,3.025],[-10.313,-2.149],[-4.596,-3.37]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.165000002992,0.298000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[18.691,64.877],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[2.444,-0.061]],"o":[[0,0],[0,0],[0,0],[0,0],[-2.319,0.773],[0,0]],"v":[[-5.442,-2.892],[-3.692,4.824],[5.442,1.791],[5.372,-4.824],[3.48,-4.194],[-3.702,-2.936]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.8,0.847000002394,0.898000021542,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[12.34,47.373],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.855,-27.491],[0,0],[2.164,11.682]],"o":[[3.469,10.296],[0,0],[-4.724,-22.881],[0,0]],"v":[[5.608,-25.973],[8.374,22.214],[-0.678,25.973],[-9.077,-23.581]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.677999997606,0.486000001197,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[9.326,26.223],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"Flag Poteau","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[86.05,-1.6,0],"ix":2},"a":{"a":0,"k":[16.815,141.541,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[16.312,-137.984],[-17.306,143.098]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.258999992819,0.156999999402,0.109999997008,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":2,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[17.312,138.984],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"Flag 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[522.399,134.403,0],"ix":2},"a":{"a":0,"k":[29.229,22.793,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[-7,-8.48],[0.785,0.88],[10.597,-0.755],[0,0]],"o":[[0,0],[7.321,8.87],[0,0],[-7.442,0.53],[0,0]],"v":[[-11.874,-19.083],[-0.689,-10.236],[16.507,4.824],[-0.84,11.457],[-16.223,19.367]],"c":true}],"e":[{"i":[[0,0],[-5.889,-6.329],[0.785,0.88],[10.605,-0.638],[0,0]],"o":[[0,0],[7.835,8.42],[0,0],[-6.448,0.388],[0,0]],"v":[[-12.3,-17.804],[1.584,-9.099],[16.223,5.392],[2.427,9.326],[-16.507,21.497]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":2,"s":[{"i":[[0,0],[-5.889,-6.329],[0.785,0.88],[10.605,-0.638],[0,0]],"o":[[0,0],[7.835,8.42],[0,0],[-6.448,0.388],[0,0]],"v":[[-12.3,-17.804],[1.584,-9.099],[16.223,5.392],[2.427,9.326],[-16.507,21.497]],"c":true}],"e":[{"i":[[0,0],[-5.889,-6.329],[0.785,0.88],[5.389,-3.425],[0,0]],"o":[[0,0],[7.835,8.42],[0,0],[-11.562,7.348],[0,0]],"v":[[-12.3,-16.668],[3.999,-7.395],[16.649,5.818],[1.433,9.752],[-16.365,20.645]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":4,"s":[{"i":[[0,0],[-5.889,-6.329],[0.785,0.88],[5.389,-3.425],[0,0]],"o":[[0,0],[7.835,8.42],[0,0],[-11.562,7.348],[0,0]],"v":[[-12.3,-16.668],[3.999,-7.395],[16.649,5.818],[1.433,9.752],[-16.365,20.645]],"c":true}],"e":[{"i":[[0,0],[-6.883,-4.056],[-0.925,-2.212],[4.944,-4.042],[0,0]],"o":[[0,0],[9.909,5.839],[0,0],[-11.42,9.337],[0,0]],"v":[[-12.3,-16.668],[3.999,-7.395],[15.939,4.54],[1.433,9.752],[-16.081,19.935]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":6,"s":[{"i":[[0,0],[-6.883,-4.056],[-0.925,-2.212],[4.944,-4.042],[0,0]],"o":[[0,0],[9.909,5.839],[0,0],[-11.42,9.337],[0,0]],"v":[[-12.3,-16.668],[3.999,-7.395],[15.939,4.54],[1.433,9.752],[-16.081,19.935]],"c":true}],"e":[{"i":[[0,0],[-8.446,-3.914],[-0.925,-2.212],[4.944,-4.042],[0,0]],"o":[[0,0],[10.435,4.836],[0,0],[-11.42,9.337],[0,0]],"v":[[-12.158,-17.662],[2.436,-7.395],[15.797,3.119],[1.717,10.888],[-16.081,18.23]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8,"s":[{"i":[[0,0],[-8.446,-3.914],[-0.925,-2.212],[4.944,-4.042],[0,0]],"o":[[0,0],[10.435,4.836],[0,0],[-11.42,9.337],[0,0]],"v":[[-12.158,-17.662],[2.436,-7.395],[15.797,3.119],[1.717,10.888],[-16.081,18.23]],"c":true}],"e":[{"i":[[0,0],[-8.446,-3.914],[-2.701,-1.644],[5.083,-3.866],[0,0]],"o":[[0,0],[10.435,4.836],[0,0],[-9.289,7.064],[0,0]],"v":[[-12.016,-18.941],[2.862,-6.258],[16.081,2.125],[4.416,10.178],[-16.081,17.236]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":10,"s":[{"i":[[0,0],[-8.446,-3.914],[-2.701,-1.644],[5.083,-3.866],[0,0]],"o":[[0,0],[10.435,4.836],[0,0],[-9.289,7.064],[0,0]],"v":[[-12.016,-18.941],[2.862,-6.258],[16.081,2.125],[4.416,10.178],[-16.081,17.236]],"c":true}],"e":[{"i":[[0,0],[-7.592,-5.762],[-2.76,-1.703],[8.251,-1.13],[0,0]],"o":[[0,0],[6.54,4.964],[0,0],[-9.573,1.311],[0,0]],"v":[[-11.874,-20.219],[2.223,-5.974],[16.223,2.196],[-2.686,13.8],[-16.081,17.236]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":12,"s":[{"i":[[0,0],[-7.592,-5.762],[-2.76,-1.703],[8.251,-1.13],[0,0]],"o":[[0,0],[6.54,4.964],[0,0],[-9.573,1.311],[0,0]],"v":[[-11.874,-20.219],[2.223,-5.974],[16.223,2.196],[-2.686,13.8],[-16.081,17.236]],"c":true}],"e":[{"i":[[0,0],[-6.386,-7.181],[-2.76,-1.703],[8.274,-0.944],[0,0]],"o":[[0,0],[5.456,6.135],[0,0],[-13.976,1.595],[0,0]],"v":[[-11.874,-20.219],[2.223,-5.974],[16.081,3.332],[0.936,12.167],[-15.797,18.017]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":14,"s":[{"i":[[0,0],[-6.386,-7.181],[-2.76,-1.703],[8.274,-0.944],[0,0]],"o":[[0,0],[5.456,6.135],[0,0],[-13.976,1.595],[0,0]],"v":[[-11.874,-20.219],[2.223,-5.974],[16.081,3.332],[0.936,12.167],[-15.797,18.017]],"c":true}],"e":[{"i":[[0,0],[-6.386,-7.181],[-2.76,-1.703],[9.605,-1.229],[0,0]],"o":[[0,0],[5.456,6.135],[0,0],[-11.917,1.524],[0,0]],"v":[[-11.874,-19.438],[2.294,-7.182],[16.294,4.966],[0.51,10.817],[-16.01,19.864]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":16,"s":[{"i":[[0,0],[-6.386,-7.181],[-2.76,-1.703],[9.605,-1.229],[0,0]],"o":[[0,0],[5.456,6.135],[0,0],[-11.917,1.524],[0,0]],"v":[[-11.874,-19.438],[2.294,-7.182],[16.294,4.966],[0.51,10.817],[-16.01,19.864]],"c":true}],"e":[{"i":[[0,0],[-6.386,-7.181],[-2.76,-1.703],[9.9,-1.141],[0,0]],"o":[[0,0],[5.456,6.135],[0,0],[-8.295,0.956],[0,0]],"v":[[-12.087,-18.088],[2.578,-7.963],[16.223,5.321],[3.422,9.255],[-16.436,20.787]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":18,"s":[{"i":[[0,0],[-6.386,-7.181],[-2.76,-1.703],[9.9,-1.141],[0,0]],"o":[[0,0],[5.456,6.135],[0,0],[-8.295,0.956],[0,0]],"v":[[-12.087,-18.088],[2.578,-7.963],[16.223,5.321],[3.422,9.255],[-16.436,20.787]],"c":true}],"e":[{"i":[[0,0],[-6.883,-6.4],[-2.76,-1.703],[7.093,-1.567],[0,0]],"o":[[0,0],[6.013,5.591],[0,0],[-2.4,0.53],[0,0]],"v":[[-12.3,-16.81],[5.206,-6.756],[16.223,5.321],[2.782,8.474],[-16.578,21.142]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":20,"s":[{"i":[[0,0],[-6.883,-6.4],[-2.76,-1.703],[7.093,-1.567],[0,0]],"o":[[0,0],[6.013,5.591],[0,0],[-2.4,0.53],[0,0]],"v":[[-12.3,-16.81],[5.206,-6.756],[16.223,5.321],[2.782,8.474],[-16.578,21.142]],"c":true}],"e":[{"i":[[0,0],[-6.031,-3.062],[-2.697,-1.809],[5.565,-4.668],[0,0]],"o":[[0,0],[6.909,3.507],[0,0],[-10.283,8.627],[0,0]],"v":[[-12.3,-16.81],[4.283,-7.253],[16.365,4.398],[2.924,9.113],[-16.649,20.361]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[{"i":[[0,0],[-6.031,-3.062],[-2.697,-1.809],[5.565,-4.668],[0,0]],"o":[[0,0],[6.909,3.507],[0,0],[-10.283,8.627],[0,0]],"v":[[-12.3,-16.81],[4.283,-7.253],[16.365,4.398],[2.924,9.113],[-16.649,20.361]],"c":true}],"e":[{"i":[[0,0],[-9.3,-4.408],[-2.697,-1.809],[5.565,-4.668],[0,0]],"o":[[-0.68,-0.28],[7.002,3.318],[0,0],[-10.283,8.627],[0,0]],"v":[[-12.3,-17.662],[4.283,-6.613],[16.507,2.906],[3.28,9.681],[-16.294,18.656]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":24,"s":[{"i":[[0,0],[-9.3,-4.408],[-2.697,-1.809],[5.565,-4.668],[0,0]],"o":[[-0.68,-0.28],[7.002,3.318],[0,0],[-10.283,8.627],[0,0]],"v":[[-12.3,-17.662],[4.283,-6.613],[16.507,2.906],[3.28,9.681],[-16.294,18.656]],"c":true}],"e":[{"i":[[0,0],[-9.369,-4.127],[-2.697,-1.809],[5.489,-5.36],[0,0]],"o":[[-0.68,-0.28],[7.656,3.372],[0,0],[-7.016,6.851],[0,0]],"v":[[-11.945,-19.722],[3.644,-5.548],[16.649,2.551],[3.99,10.249],[-16.01,17.023]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":26,"s":[{"i":[[0,0],[-9.369,-4.127],[-2.697,-1.809],[5.489,-5.36],[0,0]],"o":[[-0.68,-0.28],[7.656,3.372],[0,0],[-7.016,6.851],[0,0]],"v":[[-11.945,-19.722],[3.644,-5.548],[16.649,2.551],[3.99,10.249],[-16.01,17.023]],"c":true}],"e":[{"i":[[0,0],[-6.031,-3.275],[-2.697,-1.809],[5.981,-0.677],[0,0]],"o":[[-0.6,-0.227],[7.352,3.992],[0,0],[-9.802,1.11],[0,0]],"v":[[-11.448,-20.006],[4.354,-4.057],[16.01,2.409],[-2.757,14.085],[-16.01,17.023]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":28,"s":[{"i":[[0,0],[-6.031,-3.275],[-2.697,-1.809],[5.981,-0.677],[0,0]],"o":[[-0.6,-0.227],[7.352,3.992],[0,0],[-9.802,1.11],[0,0]],"v":[[-11.448,-20.006],[4.354,-4.057],[16.01,2.409],[-2.757,14.085],[-16.01,17.023]],"c":true}],"e":[{"i":[[0,0],[-5.818,-6.045],[-2.697,-1.809],[6.265,-0.464],[0,0]],"o":[[-0.6,-0.227],[5.801,6.027],[0,0],[-14.5,1.075],[0,0]],"v":[[-11.448,-20.006],[5.206,-3.56],[16.152,3.332],[2.427,11.812],[-16.294,18.443]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":30,"s":[{"i":[[0,0],[-5.818,-6.045],[-2.697,-1.809],[6.265,-0.464],[0,0]],"o":[[-0.6,-0.227],[5.801,6.027],[0,0],[-14.5,1.075],[0,0]],"v":[[-11.448,-20.006],[5.206,-3.56],[16.152,3.332],[2.427,11.812],[-16.294,18.443]],"c":true}],"e":[{"i":[[0,0],[-5.096,-6.665],[-2.697,-1.809],[6.265,-0.464],[0,0]],"o":[[3.308,2.234],[6.185,8.089],[0,0],[-14.5,1.075],[0,0]],"v":[[-11.59,-19.509],[3.928,-5.69],[16.223,4.469],[2.995,10.675],[-16.365,20.361]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":32,"s":[{"i":[[0,0],[-5.096,-6.665],[-2.697,-1.809],[6.265,-0.464],[0,0]],"o":[[3.308,2.234],[6.185,8.089],[0,0],[-14.5,1.075],[0,0]],"v":[[-11.59,-19.509],[3.928,-5.69],[16.223,4.469],[2.995,10.675],[-16.365,20.361]],"c":true}],"e":[{"i":[[0,0],[-5.096,-6.665],[-2.697,-1.809],[8.479,-0.499],[0,0]],"o":[[3.308,2.234],[6.185,8.089],[0,0],[-5.383,0.317],[0,0]],"v":[[-11.661,-18.301],[4.496,-6.187],[16.223,5.25],[1.433,9.61],[-16.365,20.361]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":34,"s":[{"i":[[0,0],[-5.096,-6.665],[-2.697,-1.809],[8.479,-0.499],[0,0]],"o":[[3.308,2.234],[6.185,8.089],[0,0],[-5.383,0.317],[0,0]],"v":[[-11.661,-18.301],[4.496,-6.187],[16.223,5.25],[1.433,9.61],[-16.365,20.361]],"c":true}],"e":[{"i":[[0,0],[-6.457,-3.843],[-2.697,-1.809],[7.864,-3.211],[5.526,-0.846]],"o":[[2.171,0.885],[7.826,4.658],[0,0],[-8.081,3.3],[-0.649,0.099]],"v":[[-11.874,-16.881],[-0.689,-11.017],[16.436,5.534],[3.706,8.758],[-16.436,20.219]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":36,"s":[{"i":[[0,0],[-6.457,-3.843],[-2.697,-1.809],[7.864,-3.211],[5.526,-0.846]],"o":[[2.171,0.885],[7.826,4.658],[0,0],[-8.081,3.3],[-0.649,0.099]],"v":[[-11.874,-16.881],[-0.689,-11.017],[16.436,5.534],[3.706,8.758],[-16.436,20.219]],"c":true}],"e":[{"i":[[0,0],[-7.167,-2.138],[-2.697,-1.809],[3.802,-2.369],[8.864,-1.84]],"o":[[2.171,0.885],[8.727,2.604],[0,0],[-5.525,3.442],[-0.642,0.133]],"v":[[-11.874,-16.881],[-0.831,-10.307],[16.436,4.469],[6.049,7.053],[-16.436,20.219]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":38,"s":[{"i":[[0,0],[-7.167,-2.138],[-2.697,-1.809],[3.802,-2.369],[8.864,-1.84]],"o":[[2.171,0.885],[8.727,2.604],[0,0],[-5.525,3.442],[-0.642,0.133]],"v":[[-11.874,-16.881],[-0.831,-10.307],[16.436,4.469],[6.049,7.053],[-16.436,20.219]],"c":true}],"e":[{"i":[[0,0],[-5.889,-2.281],[-2.697,-1.809],[3.586,-2.684],[9.148,0.219]],"o":[[2.668,2.163],[6.398,2.478],[0,0],[-5.17,3.868],[-0.656,-0.016]],"v":[[-11.874,-17.165],[1.3,-8.176],[16.365,2.835],[6.049,7.479],[-16.365,18.656]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":40,"s":[{"i":[[0,0],[-5.889,-2.281],[-2.697,-1.809],[3.586,-2.684],[9.148,0.219]],"o":[[2.668,2.163],[6.398,2.478],[0,0],[-5.17,3.868],[-0.656,-0.016]],"v":[[-11.874,-17.165],[1.3,-8.176],[16.365,2.835],[6.049,7.479],[-16.365,18.656]],"c":true}],"e":[{"i":[[0,0],[-5.889,-2.281],[-2.697,-1.809],[3.586,-2.684],[15.043,-1.556]],"o":[[2.882,3.797],[6.398,2.478],[0,0],[-5.17,3.868],[-0.653,0.068]],"v":[[-11.732,-18.727],[6.2,-4.057],[16.365,2.054],[6.476,8.687],[-16.294,17.307]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":42,"s":[{"i":[[0,0],[-5.889,-2.281],[-2.697,-1.809],[3.586,-2.684],[15.043,-1.556]],"o":[[2.882,3.797],[6.398,2.478],[0,0],[-5.17,3.868],[-0.653,0.068]],"v":[[-11.732,-18.727],[6.2,-4.057],[16.365,2.054],[6.476,8.687],[-16.294,17.307]],"c":true}],"e":[{"i":[[0,0],[-5.414,-3.251],[-2.697,-1.809],[3.316,-3.011],[7.728,-3.261]],"o":[[2.882,3.797],[5.546,3.33],[0,0],[-5.667,5.146],[-0.604,0.255]],"v":[[-11.59,-19.864],[5.206,-3.56],[16.294,2.551],[7.044,9.397],[-16.294,17.307]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":44,"s":[{"i":[[0,0],[-5.414,-3.251],[-2.697,-1.809],[3.316,-3.011],[7.728,-3.261]],"o":[[2.882,3.797],[5.546,3.33],[0,0],[-5.667,5.146],[-0.604,0.255]],"v":[[-11.59,-19.864],[5.206,-3.56],[16.294,2.551],[7.044,9.397],[-16.294,17.307]],"c":true}],"e":[{"i":[[0,0],[-5.414,-3.251],[-2.697,-1.809],[4.231,-1.469],[8.154,-6.528]],"o":[[4.941,3.086],[5.546,3.33],[0,0],[-7.868,2.732],[-1.12,0.897]],"v":[[-11.59,-19.864],[5.206,-3.56],[16.223,3.616],[4.487,11.102],[-16.152,18.443]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":46,"s":[{"i":[[0,0],[-5.414,-3.251],[-2.697,-1.809],[4.231,-1.469],[8.154,-6.528]],"o":[[4.941,3.086],[5.546,3.33],[0,0],[-7.868,2.732],[-1.12,0.897]],"v":[[-11.59,-19.864],[5.206,-3.56],[16.223,3.616],[4.487,11.102],[-16.152,18.443]],"c":true}],"e":[{"i":[[0,0],[-3.851,-5.005],[-2.697,-1.809],[4.475,-0.2],[8.154,-6.528]],"o":[[4.941,3.086],[4.694,6.1],[0,0],[-7.087,0.317],[-1.12,0.897]],"v":[[-11.59,-19.864],[2.436,-7.253],[16.294,4.895],[4.842,10.32],[-16.223,19.58]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":48,"s":[{"i":[[0,0],[-3.851,-5.005],[-2.697,-1.809],[4.475,-0.2],[8.154,-6.528]],"o":[[4.941,3.086],[4.694,6.1],[0,0],[-7.087,0.317],[-1.12,0.897]],"v":[[-11.59,-19.864],[2.436,-7.253],[16.294,4.895],[4.842,10.32],[-16.223,19.58]],"c":true}],"e":[{"i":[[0,0],[-3.851,-5.005],[-2.697,-1.809],[7.544,-0.606],[8.154,-6.528]],"o":[[5.438,2.447],[4.694,6.1],[0,0],[-8.219,0.661],[-1.12,0.897]],"v":[[-11.803,-18.159],[3.289,-7.608],[16.081,5.321],[4.913,8.829],[-16.294,21.071]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":50,"s":[{"i":[[0,0],[-3.851,-5.005],[-2.697,-1.809],[7.544,-0.606],[8.154,-6.528]],"o":[[5.438,2.447],[4.694,6.1],[0,0],[-8.219,0.661],[-1.12,0.897]],"v":[[-11.803,-18.159],[3.289,-7.608],[16.081,5.321],[4.913,8.829],[-16.294,21.071]],"c":true}],"e":[{"i":[[0,0],[-4.67,-4.251],[-2.417,-2.425],[7.448,-1.339],[9.361,-5.036]],"o":[[5.438,2.447],[5.688,5.177],[0,0],[-8.081,1.453],[-1.264,0.68]],"v":[[-11.945,-16.597],[3.928,-7.466],[16.294,5.392],[5.694,7.692],[-16.294,21.071]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":52,"s":[{"i":[[0,0],[-4.67,-4.251],[-2.417,-2.425],[7.448,-1.339],[9.361,-5.036]],"o":[[5.438,2.447],[5.688,5.177],[0,0],[-8.081,1.453],[-1.264,0.68]],"v":[[-11.945,-16.597],[3.928,-7.466],[16.294,5.392],[5.694,7.692],[-16.294,21.071]],"c":true}],"e":[{"i":[[0,0],[-5.889,-3.488],[-2.417,-2.425],[6.723,-3.474],[10.001,-3.048]],"o":[[5.296,4.436],[6.617,3.919],[0,0],[-6.661,3.442],[-1.373,0.418]],"v":[[-12.016,-17.023],[3.928,-7.466],[16.223,4.398],[4.558,7.977],[-16.081,20.219]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":54,"s":[{"i":[[0,0],[-5.889,-3.488],[-2.417,-2.425],[6.723,-3.474],[10.001,-3.048]],"o":[[5.296,4.436],[6.617,3.919],[0,0],[-6.661,3.442],[-1.373,0.418]],"v":[[-12.016,-17.023],[3.928,-7.466],[16.223,4.398],[4.558,7.977],[-16.081,20.219]],"c":true}],"e":[{"i":[[0,0],[-6.102,-2.209],[-2.417,-2.425],[5.797,-4.864],[10.285,-1.698]],"o":[[5.296,4.436],[7.232,2.619],[0,0],[-5.88,4.933],[-1.416,0.234]],"v":[[-12.016,-17.023],[4.851,-6.045],[16.152,2.906],[4.558,8.758],[-15.939,18.727]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":56,"s":[{"i":[[0,0],[-6.102,-2.209],[-2.417,-2.425],[5.797,-4.864],[10.285,-1.698]],"o":[[5.296,4.436],[7.232,2.619],[0,0],[-5.88,4.933],[-1.416,0.234]],"v":[[-12.016,-17.023],[4.851,-6.045],[16.152,2.906],[4.558,8.758],[-15.939,18.727]],"c":true}],"e":[{"i":[[0,0],[-5.983,-2.514],[-2.843,-2.212],[6.1,-4.479],[9.503,-2.479]],"o":[[5.296,4.436],[7.25,3.046],[0,0],[-10.78,7.916],[-1.389,0.362]],"v":[[-11.945,-18.514],[5.277,-4.412],[16.365,2.125],[3.99,10.391],[-15.726,17.449]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":58,"s":[{"i":[[0,0],[-5.983,-2.514],[-2.843,-2.212],[6.1,-4.479],[9.503,-2.479]],"o":[[5.296,4.436],[7.25,3.046],[0,0],[-10.78,7.916],[-1.389,0.362]],"v":[[-11.945,-18.514],[5.277,-4.412],[16.365,2.125],[3.99,10.391],[-15.726,17.449]],"c":true}],"e":[{"i":[[0,0],[-5.514,-3.421],[-2.843,-2.212],[7.388,-2.562],[4.816,-3.048]],"o":[[5.367,4.578],[6.398,3.969],[0,0],[-8.081,2.803],[-1.213,0.767]],"v":[[-11.874,-19.154],[5.277,-3.702],[16.152,2.551],[0.155,13.019],[-15.726,16.952]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":60,"s":[{"i":[[0,0],[-5.514,-3.421],[-2.843,-2.212],[7.388,-2.562],[4.816,-3.048]],"o":[[5.367,4.578],[6.398,3.969],[0,0],[-8.081,2.803],[-1.213,0.767]],"v":[[-11.874,-19.154],[5.277,-3.702],[16.152,2.551],[0.155,13.019],[-15.726,16.952]],"c":true}],"e":[{"i":[[0,0],[-4.839,-4.324],[-2.914,-1.573],[7.677,-1.487],[5.597,-5.036]],"o":[[5.367,4.578],[5.475,4.893],[0,0],[-7.868,1.524],[-1.067,0.96]],"v":[[-11.661,-20.148],[5.277,-3.702],[16.152,3.474],[1.93,12.025],[-16.01,18.159]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":62,"s":[{"i":[[0,0],[-4.839,-4.324],[-2.914,-1.573],[7.677,-1.487],[5.597,-5.036]],"o":[[5.367,4.578],[5.475,4.893],[0,0],[-7.868,1.524],[-1.067,0.96]],"v":[[-11.661,-20.148],[5.277,-3.702],[16.152,3.474],[1.93,12.025],[-16.01,18.159]],"c":true}],"e":[{"i":[[0,0],[-4.468,-5.477],[-2.914,-1.573],[8.538,-0.464],[5.597,-5.036]],"o":[[5.367,4.578],[4.642,5.689],[0,0],[-8.003,0.435],[-1.067,0.96]],"v":[[-11.661,-20.148],[4.638,-4.838],[16.294,4.753],[1.291,10.888],[-16.01,19.509]],"c":true}]},{"t":64}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.426999978458,0.282000014361,0.728999956916,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[45.665,22.793],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":65,"st":0,"bm":0},{"ddd":0,"ind":22,"ty":4,"nm":"Mountain","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-127.408,345.841,0],"ix":2},"a":{"a":0,"k":[220.867,185.406,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[17.592,0],[0,0],[7.975,-2.334],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[-8.309,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-13.388,-11.412]],"v":[[83.187,-28.492],[12.85,-28.492],[-11.702,-24.971],[-79.721,-5.055],[-98.816,-11.837],[-177.238,27.994],[177.339,27.994],[131.182,-10.811]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.145679817948,0.572352270987,0.850091911765,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[264.196,156.914],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-69.915,-70.459],[-66.646,-73.89],[-40.769,-74.754],[-19.845,-88.061],[-4.923,-92.578],[18.812,-74.754],[35.192,-52.783],[56.8,-17.085],[106.935,18.386],[127.425,38.714],[23.99,92.081],[-65.92,92.114],[-69.919,92.114]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.285894655714,0.690236529182,0.953615196078,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[127.675,92.828],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":65,"op":65,"st":0,"bm":0,"hidden":0},{"ddd":0,"ind":23,"ty":4,"nm":"Clouds ","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[441.394,342.411,0],"ix":2},"a":{"a":0,"k":[196.602,97.025,0],"ix":1},"s":{"a":0,"k":[176,176,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[5.986,0],[0.753,-0.163],[9.657,0],[1.117,-0.216],[5.984,0],[1.07,-6.984],[3.265,-4.052],[1.943,0],[0,-6.732],[-0.003,-0.111],[0,-2.334],[0,0]],"o":[[-0.804,0],[-0.395,-9.558],[-1.179,0],[-2.234,-5.161],[-7.284,0],[-5.419,0.694],[-1.629,-0.811],[-6.733,0],[0,0.113],[-2.071,0.762],[0,0],[0,-5.981]],"v":[[37.582,7.268],[35.242,7.529],[17.315,-9.658],[13.867,-9.327],[0.514,-18.102],[-13.851,-5.762],[-27.295,1.773],[-32.696,0.497],[-44.887,12.689],[-44.868,13.023],[-48.419,18.102],[48.419,18.102]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.483164858351,0.796219290939,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[308.287,175.698],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.271,0],[0.409,-0.091],[5.277,0],[0.609,-0.12],[3.27,0],[0.585,-3.817],[1.783,-2.213],[1.061,0],[0,-3.678],[-0.002,-0.062],[0,-1.276],[0,0]],"o":[[-0.439,0],[-0.22,-5.222],[-0.645,0],[-1.221,-2.82],[-3.978,0],[-2.961,0.378],[-0.891,-0.442],[-3.677,0],[0,0.062],[-1.132,0.417],[0,0],[0,-3.27]],"v":[[20.533,3.971],[19.257,4.113],[9.46,-5.279],[7.577,-5.096],[0.281,-9.891],[-7.568,-3.148],[-14.911,0.968],[-17.863,0.271],[-24.523,6.93],[-24.513,7.115],[-26.453,9.891],[26.454,9.891]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.483164858351,0.796219290939,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[366.501,10.141],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.27,0],[0.411,-0.091],[5.277,0],[0.609,-0.12],[3.27,0],[0.584,-3.817],[1.783,-2.213],[1.061,0],[0,-3.679],[-0.001,-0.063],[0,-1.276],[0,0]],"o":[[-0.439,0],[-0.216,-5.223],[-0.645,0],[-1.221,-2.82],[-3.978,0],[-2.961,0.378],[-0.89,-0.442],[-3.678,0],[0,0.061],[-1.131,0.415],[0,0],[0,-3.27]],"v":[[20.533,3.97],[19.255,4.113],[9.46,-5.278],[7.577,-5.096],[0.281,-9.891],[-7.567,-3.148],[-14.912,0.968],[-17.863,0.271],[-24.523,6.931],[-24.514,7.116],[-26.453,9.891],[26.453,9.891]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.483164858351,0.796219290939,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[26.703,74.271],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":65,"op":65,"st":0,"bm":0,"hidden":0},{"ddd":0,"ind":24,"ty":4,"nm":"BG","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[514.5,345,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[1029,690],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725501299,0.729411780834,1,0],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":65,"op":65,"st":0,"bm":0,"hidden":0}],"markers":[]}
|
requirements.txt
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
streamlit
|
3 |
+
Pillow
|
4 |
+
streamlit_lottie
|
5 |
+
requests
|
6 |
+
streamlit_option_menu
|
sql_basic certificate (1).png
ADDED
Git LFS Details
|
style.css
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
ul {
|
2 |
+
padding-left: 1.5rem;
|
3 |
+
}
|
4 |
+
|
5 |
+
h1 {
|
6 |
+
text-align:center;
|
7 |
+
}
|
8 |
+
|
9 |
+
h5 {
|
10 |
+
text-align:center;
|
11 |
+
}
|
12 |
+
|
13 |
+
img {
|
14 |
+
margin-left: 17.2rem;
|
15 |
+
}
|
16 |
+
|
17 |
+
#MainMenu {
|
18 |
+
visibility: hidden;
|
19 |
+
}
|
20 |
+
footer {
|
21 |
+
visibility: hidden;
|
22 |
+
}
|
23 |
+
header {
|
24 |
+
visibility: hidden;
|
25 |
+
}
|
test.py
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
|
3 |
+
# Assuming 'data' and 'url' need to be defined for this context
|
4 |
+
data = "Example data here" # Placeholder for actual data
|
5 |
+
url = "https://example.com" # Placeholder URL
|
6 |
+
|
7 |
+
st.button("Click me")
|
8 |
+
st.download_button("Download file", data)
|
9 |
+
st.link_button("Go to gallery", url)
|
10 |
+
st.page_link("app.py", label="Home")
|
11 |
+
st.data_editor("Edit data", data)
|
12 |
+
st.checkbox("I agree")
|
13 |
+
st.toggle("Enable")
|
14 |
+
st.radio("Pick one", ["cats", "dogs"])
|
15 |
+
st.selectbox("Pick one", ["cats", "dogs"])
|
16 |
+
st.multiselect("Buy", ["milk", "apples", "potatoes"])
|
17 |
+
st.slider("Pick a number", 0, 100)
|
18 |
+
st.select_slider("Pick a size", ["S", "M", "L"])
|
19 |
+
st.text_input("First name")
|
20 |
+
st.number_input("Pick a number", 0, 10)
|
21 |
+
st.text_area("Text to translate")
|
22 |
+
st.date_input("Your birthday")
|
23 |
+
st.time_input("Meeting time")
|
24 |
+
st.file_uploader("Upload a CSV")
|
25 |
+
st.camera_input("Take a picture")
|
26 |
+
st.color_picker("Pick a color")
|
testsda.py
ADDED
@@ -0,0 +1,185 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import streamlit as st
|
2 |
+
from PIL import Image
|
3 |
+
|
4 |
+
with open("/Users/niharpalem/Desktop/cursor_codes/portfolio/style.css") as f:
|
5 |
+
st.markdown('<style>{}</style>'.format(f.read()), unsafe_allow_html=True)
|
6 |
+
|
7 |
+
#####################
|
8 |
+
# Header
|
9 |
+
st.write('''
|
10 |
+
# Nihar Palem
|
11 |
+
##### *Resume*
|
12 |
+
''')
|
13 |
+
|
14 |
+
image = Image.open('/Users/niharpalem/Desktop/cursor_codes/portfolio/IMG_6142.JPG')
|
15 |
+
st.image(image, width=150)
|
16 |
+
|
17 |
+
st.markdown('## Summary', unsafe_allow_html=True)
|
18 |
+
st.info("""
|
19 |
+
Hi 👋, I'm Nihar! Currently advancing my skills with a Master's in Data Analytics, I am deeply fascinated by the power of deep learning and its application in interpreting complex image data. Originating from Hyderabad, India, and holding a Bachelor's degree in Electrical Engineering, I am passionate about how deep learning concepts are revolutionizing industries by enabling machines to 'see' and 'understand' the world in unprecedented ways. This blend of technology and creativity challenges conventional problem-solving and paves the way for innovative solutions.
|
20 |
+
|
21 |
+
My enthusiasm extends beyond the technical aspects, as I am captivated by the broader impact of AI and deep learning in transforming industries. The potential to drive significant advancements and efficiencies across various sectors fuels my curiosity and dedication to the field. It's this combination of deep technical understanding and the ability to foresee practical applications that I believe is crucial for the future of technology and innovation. 🚀🤓
|
22 |
+
"""
|
23 |
+
)
|
24 |
+
|
25 |
+
#####################
|
26 |
+
# Navigation
|
27 |
+
|
28 |
+
st.markdown('<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">', unsafe_allow_html=True)
|
29 |
+
|
30 |
+
st.markdown("""
|
31 |
+
<nav class="navbar fixed-top navbar-expand-lg navbar-dark" style="background-color: #16A2CB;">
|
32 |
+
<a class="navbar-brand" href="https://youtube.com/dataprofessor" target="_blank">Nihar Palem</a>
|
33 |
+
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
34 |
+
<span class="navbar-toggler-icon"></span>
|
35 |
+
</button>
|
36 |
+
<div class="collapse navbar-collapse" id="navbarNav">
|
37 |
+
<ul class="navbar-nav">
|
38 |
+
<li class="nav-item active">
|
39 |
+
<a class="nav-link disabled" href="/">Home <span class="sr-only">(current)</span></a>
|
40 |
+
</li>
|
41 |
+
<li class="nav-item">
|
42 |
+
<a class="nav-link" href="#education">Education</a>
|
43 |
+
</li>
|
44 |
+
<li class="nav-item">
|
45 |
+
<a class="nav-link" href="#work-experience">Work Experience</a>
|
46 |
+
</li>
|
47 |
+
<li class="nav-item">
|
48 |
+
<a class="nav-link" href="#Projects">Projects</a>
|
49 |
+
</li>
|
50 |
+
<li class="nav-item">
|
51 |
+
<a class="nav-link" href="#social-media">Social Media</a>
|
52 |
+
</li>
|
53 |
+
</ul>
|
54 |
+
</div>
|
55 |
+
</nav>
|
56 |
+
""", unsafe_allow_html=True)
|
57 |
+
|
58 |
+
#####################
|
59 |
+
# Custom function for printing text
|
60 |
+
def txt(a, b):
|
61 |
+
col1, col2 = st.columns([4,1])
|
62 |
+
with col1:
|
63 |
+
st.markdown(a)
|
64 |
+
with col2:
|
65 |
+
st.markdown(b)
|
66 |
+
|
67 |
+
def txt2(a, b):
|
68 |
+
col1, col2 = st.columns([1,4])
|
69 |
+
with col1:
|
70 |
+
st.markdown(f'`{a}`')
|
71 |
+
with col2:
|
72 |
+
st.markdown(b)
|
73 |
+
|
74 |
+
def txt3(a, b):
|
75 |
+
col1, col2 = st.columns([1,2])
|
76 |
+
with col1:
|
77 |
+
st.markdown(a)
|
78 |
+
with col2:
|
79 |
+
st.markdown(b)
|
80 |
+
|
81 |
+
def txt4(a, b, c):
|
82 |
+
col1, col2, col3 = st.columns([1.5,2,2])
|
83 |
+
with col1:
|
84 |
+
st.markdown(f'`{a}`')
|
85 |
+
with col2:
|
86 |
+
st.markdown(b)
|
87 |
+
with col3:
|
88 |
+
st.markdown(c)
|
89 |
+
|
90 |
+
#####################
|
91 |
+
st.markdown('''
|
92 |
+
## Education
|
93 |
+
''')
|
94 |
+
|
95 |
+
txt('**Masters In Data Analytics**, *San Jose State University*, USA',
|
96 |
+
'2023-2024')
|
97 |
+
st.markdown('''
|
98 |
+
- Acquired a robust foundation in **Database Management Systems (DBMS)**, **Big Data**, **Machine Learning**, **Deep Learning**, **Data Visualization**, and **Cloud Computing**, with practical applications using **Airflow**, **GCP**, **Docker**, **Apache Spark**, and **Hadoop**.
|
99 |
+
- Implemented key projects demonstrating real-world applications of learned skills:
|
100 |
+
- **Twitter Sentiment Analysis** using SQL and MongoDB for real-time data insights.
|
101 |
+
- **Stock Market Analysis** through predictive modeling to forecast market trends.
|
102 |
+
- **Face Recognition System** leveraging deep learning for enhanced security.
|
103 |
+
- **Pathfinding in Lightning Networks** to optimize blockchain network efficiency.
|
104 |
+
- These projects underscored my ability to harness advanced analytics techniques and cloud-based tools for scalable solutions, preparing me for impactful contributions in the field of data analytics.
|
105 |
+
''')
|
106 |
+
|
107 |
+
txt('**Bachelor of Technology (B.Tech) in Electrical and Electronics Engineering (EEE)**, *Sreenidhi Institute of Science and Technology (SNIST)*, Hyderabad',
|
108 |
+
'2015-2019')
|
109 |
+
st.markdown('''
|
110 |
+
- Actively participated in various clubs, contributing to a vibrant campus life and developing leadership skills alongside technical expertise.
|
111 |
+
- Engaged in projects that applied electrical engineering principles to solve real-world problems, including:
|
112 |
+
- **Pathfinder**: Developed a solution for efficient navigation and routing.
|
113 |
+
- **Theft Alarm Detection using IoT**: Implemented an Internet of Things (IoT) based system for enhanced security and theft prevention.
|
114 |
+
- **Automatic Dust Collector**: Designed a project focused on automation and environmental cleanliness.
|
115 |
+
- These experiences not only enriched my electrical engineering knowledge but also honed my problem-solving skills and creativity in technology applications.
|
116 |
+
''')
|
117 |
+
|
118 |
+
#####################
|
119 |
+
st.markdown('''
|
120 |
+
## Work Experience
|
121 |
+
''')
|
122 |
+
|
123 |
+
txt('**Graduate Trainee Apprentice**, Bharat Electronics Limited (BEL)',
|
124 |
+
'February 2021 - March 2022')
|
125 |
+
st.markdown('''
|
126 |
+
- Gained hands-on experience with **MySQL**, focusing on office data analysis including handling employee logs and data wrangling tasks.
|
127 |
+
- Utilized **Computer-Aided Design (CAD)** software for designing circuit diagrams and adjusting plan diagrams to meet company requirements.
|
128 |
+
- Developed a solid understanding of practical applications in electrical engineering and technology within a leading electronics company.
|
129 |
+
- Contributed to the team by applying technical skills to solve real-world problems, enhancing operational efficiency and supporting project requirements.
|
130 |
+
''')
|
131 |
+
|
132 |
+
txt('**Content Creator & Photographer**, [Instagram: @antharnayan](https://www.instagram.com/antharnayan?igshid=OGQ5ZDc2ODk2ZA%3D%3D)',
|
133 |
+
'Year Started - Present')
|
134 |
+
st.markdown('''
|
135 |
+
- Developed **@antharnayan** on Instagram to share my vision through photography, which serves as a stress buster and a passion project. The name translates to "inner vision," reflecting my approach to capturing moments.
|
136 |
+
- Active member of several Hyderabad photography clubs, engaging with the community and participating in collaborative projects.
|
137 |
+
- Worked on a notable project with a South Indian film star, showcasing my ability to handle high-profile photography assignments.
|
138 |
+
- My major interest lies in **landscape photography**, where I focus on capturing the beauty and serenity of natural landscapes, translating my travels and explorations into visual stories.
|
139 |
+
''')
|
140 |
+
|
141 |
+
txt('**Technical Writer**, [Nihar Palem Blog](https://medium.com/@nihar-palem)',
|
142 |
+
'2023-Present')
|
143 |
+
st.markdown('''
|
144 |
+
- Embarked on a new journey in **2023** as a technical writer, sharing insights and developments in **data science** and **data engineering** with a growing audience on Medium.
|
145 |
+
- Authored numerous articles that explore complex topics in an accessible and informative manner, focusing on **data science**, **machine learning**, **bioinformatics**, and **data engineering**.
|
146 |
+
- This new habit aims to educate and inspire, bridging the gap between technical expertise and practical application in the modern data landscape.
|
147 |
+
''')
|
148 |
+
|
149 |
+
#####################
|
150 |
+
st.markdown('''
|
151 |
+
## Projects
|
152 |
+
''')
|
153 |
+
txt4('Optimal Pathfinding for Lightning Networks', 'Utilized machine learning to find optimal payment paths in lightning networks, enhancing transaction efficiency.', 'Project URL or more info if available')
|
154 |
+
txt4('Face Recognition', 'Developed a deep learning model capable of distinguishing between myself and a friend, trained on our images.', 'Project URL or more info if available')
|
155 |
+
txt4('Stock Market Chatbot', 'Implemented a chatbot using Spark for real-time data streaming, powered by a large language model (LLM) to query and respond based on the database.', 'Project URL or more info if available')
|
156 |
+
txt4('Twitter Sentiment Analysis', 'Analyzed Twitter sentiment using SQL and NoSQL databases to gain real-time insights into public opinion.', 'Project URL or more info if available')
|
157 |
+
txt4('Stock Market Analysis', 'Conducted stock market analysis using SQL, applying data analytics to forecast market trends.', 'Project URL or more info if available')
|
158 |
+
|
159 |
+
|
160 |
+
#####################
|
161 |
+
st.markdown('''
|
162 |
+
## Skills
|
163 |
+
''')
|
164 |
+
txt3('Programming', '`Python`, `R`, `Linux`')
|
165 |
+
txt3('Data processing/wrangling', '`SQL`, `pandas`, `numpy`')
|
166 |
+
txt3('Data visualization', '`matplotlib`, `seaborn`, `plotly`, `altair`, `ggplot2`')
|
167 |
+
txt3('Machine Learning', '`scikit-learn`')
|
168 |
+
txt3('Deep Learning', '`TensorFlow`')
|
169 |
+
txt3('Web development', '`Flask`, `HTML`, `CSS`')
|
170 |
+
txt3('Model deployment', '`streamlit`, `gradio`, `R Shiny`, `Heroku`, `AWS`, `Digital Ocean`')
|
171 |
+
|
172 |
+
#####################
|
173 |
+
st.markdown('''
|
174 |
+
## Social Media
|
175 |
+
''')
|
176 |
+
txt2('LinkedIn', 'https://www.linkedin.com/in/chanin-nantasenamat')
|
177 |
+
txt2('Twitter', 'https://twitter.com/thedataprof')
|
178 |
+
txt2('GitHub', 'https://github.com/chaninn/')
|
179 |
+
txt2('', 'https://github.com/chaninlab/')
|
180 |
+
txt2('', 'https://github.com/dataprofessor')
|
181 |
+
txt2('ORCID', 'http://orcid.org/0000-0003-1040-663X')
|
182 |
+
txt2('Scopus', 'http://www.scopus.com/authid/detail.url?authorId=12039071300')
|
183 |
+
txt2('ResearcherID', 'http://www.researcherid.com/rid/F-1021-2010')
|
184 |
+
txt2('ResearchGate', 'https://www.researchgate.net/profile/Chanin_Nantasenamat')
|
185 |
+
txt2('Publons', 'https://publons.com/a/303133/')
|
toolsandtech.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
udemy_CLF__003.png
ADDED