├── .gitignore ├── LICENSE.md ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lgvalle │ │ └── material_animations │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── lgvalle │ │ └── material_animations │ │ ├── AnimationsActivity1.java │ │ ├── AnimationsActivity2.java │ │ ├── BaseDetailActivity.java │ │ ├── MainActivity.java │ │ ├── RevealActivity.java │ │ ├── Sample.java │ │ ├── SamplesRecyclerAdapter.java │ │ ├── SharedElementActivity.java │ │ ├── SharedElementFragment1.java │ │ ├── SharedElementFragment2.java │ │ ├── TransitionActivity1.java │ │ ├── TransitionActivity2.java │ │ ├── TransitionActivity3.java │ │ └── TransitionHelper.java │ └── res │ ├── drawable │ ├── circle_24dp.xml │ └── square.xml │ ├── layout │ ├── activity_animations1.xml │ ├── activity_animations2.xml │ ├── activity_animations_scene0.xml │ ├── activity_animations_scene1.xml │ ├── activity_animations_scene2.xml │ ├── activity_animations_scene3.xml │ ├── activity_animations_scene4.xml │ ├── activity_main.xml │ ├── activity_reveal.xml │ ├── activity_sharedelement.xml │ ├── activity_sharedelement_fragment1.xml │ ├── activity_sharedelement_fragment2.xml │ ├── activity_transition1.xml │ ├── activity_transition2.xml │ ├── activity_transition3.xml │ ├── row_sample.xml │ └── square.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── transition │ ├── changebounds_with_arcmotion.xml │ ├── explode.xml │ ├── slide_and_changebounds.xml │ ├── slide_and_changebounds_sequential.xml │ ├── slide_and_changebounds_sequential_with_interpolators.xml │ └── slide_from_bottom.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── gradlew.bat ├── screenshots ├── A_startActivity_B.png ├── B_back_A.png ├── a_b_shared_element.png ├── example1.gif ├── example2.gif ├── example3.gif ├── reveal_blue.gif ├── reveal_green.gif ├── reveal_red.gif ├── reveal_yellow.gif ├── scene-transition.gif ├── scenes_anim.gif ├── shared_element.png ├── shared_element_anim.gif ├── shared_element_no_overlap.gif ├── shared_element_overlap.gif ├── shared_reveal_anim.gif ├── transition-shared-elements.gif ├── transition-shared-elements2.gif ├── transition_A_to_B.png ├── transition_B_to_A.png ├── transition_explode.gif ├── transition_fade.gif ├── transition_fade2.gif ├── transition_slide.gif └── view_layout_anim.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/lgvalle/material_animations/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/androidTest/java/com/lgvalle/material_animations/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/AnimationsActivity1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/AnimationsActivity1.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/AnimationsActivity2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/AnimationsActivity2.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/BaseDetailActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/BaseDetailActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/RevealActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/RevealActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/Sample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/Sample.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/SamplesRecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/SamplesRecyclerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/SharedElementActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/SharedElementActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/SharedElementFragment1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/SharedElementFragment1.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/SharedElementFragment2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/SharedElementFragment2.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/TransitionActivity1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/TransitionActivity1.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/TransitionActivity2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/TransitionActivity2.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/TransitionActivity3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/TransitionActivity3.java -------------------------------------------------------------------------------- /app/src/main/java/com/lgvalle/material_animations/TransitionHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/java/com/lgvalle/material_animations/TransitionHelper.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/drawable/circle_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/drawable/square.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_animations1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_animations1.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_animations2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_animations2.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_animations_scene0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_animations_scene0.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_animations_scene1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_animations_scene1.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_animations_scene2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_animations_scene2.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_animations_scene3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_animations_scene3.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_animations_scene4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_animations_scene4.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_reveal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_reveal.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_sharedelement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_sharedelement.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_sharedelement_fragment1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_sharedelement_fragment1.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_sharedelement_fragment2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_sharedelement_fragment2.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_transition1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_transition1.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_transition2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_transition2.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_transition3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/activity_transition3.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/row_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/row_sample.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/layout/square.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/transition/changebounds_with_arcmotion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/transition/changebounds_with_arcmotion.xml -------------------------------------------------------------------------------- /app/src/main/res/transition/explode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/transition/explode.xml -------------------------------------------------------------------------------- /app/src/main/res/transition/slide_and_changebounds.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/transition/slide_and_changebounds.xml -------------------------------------------------------------------------------- /app/src/main/res/transition/slide_and_changebounds_sequential.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/transition/slide_and_changebounds_sequential.xml -------------------------------------------------------------------------------- /app/src/main/res/transition/slide_and_changebounds_sequential_with_interpolators.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/transition/slide_and_changebounds_sequential_with_interpolators.xml -------------------------------------------------------------------------------- /app/src/main/res/transition/slide_from_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/transition/slide_from_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/A_startActivity_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/A_startActivity_B.png -------------------------------------------------------------------------------- /screenshots/B_back_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/B_back_A.png -------------------------------------------------------------------------------- /screenshots/a_b_shared_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/a_b_shared_element.png -------------------------------------------------------------------------------- /screenshots/example1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/example1.gif -------------------------------------------------------------------------------- /screenshots/example2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/example2.gif -------------------------------------------------------------------------------- /screenshots/example3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/example3.gif -------------------------------------------------------------------------------- /screenshots/reveal_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/reveal_blue.gif -------------------------------------------------------------------------------- /screenshots/reveal_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/reveal_green.gif -------------------------------------------------------------------------------- /screenshots/reveal_red.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/reveal_red.gif -------------------------------------------------------------------------------- /screenshots/reveal_yellow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/reveal_yellow.gif -------------------------------------------------------------------------------- /screenshots/scene-transition.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/scene-transition.gif -------------------------------------------------------------------------------- /screenshots/scenes_anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/scenes_anim.gif -------------------------------------------------------------------------------- /screenshots/shared_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/shared_element.png -------------------------------------------------------------------------------- /screenshots/shared_element_anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/shared_element_anim.gif -------------------------------------------------------------------------------- /screenshots/shared_element_no_overlap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/shared_element_no_overlap.gif -------------------------------------------------------------------------------- /screenshots/shared_element_overlap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/shared_element_overlap.gif -------------------------------------------------------------------------------- /screenshots/shared_reveal_anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/shared_reveal_anim.gif -------------------------------------------------------------------------------- /screenshots/transition-shared-elements.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/transition-shared-elements.gif -------------------------------------------------------------------------------- /screenshots/transition-shared-elements2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/transition-shared-elements2.gif -------------------------------------------------------------------------------- /screenshots/transition_A_to_B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/transition_A_to_B.png -------------------------------------------------------------------------------- /screenshots/transition_B_to_A.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/transition_B_to_A.png -------------------------------------------------------------------------------- /screenshots/transition_explode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/transition_explode.gif -------------------------------------------------------------------------------- /screenshots/transition_fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/transition_fade.gif -------------------------------------------------------------------------------- /screenshots/transition_fade2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/transition_fade2.gif -------------------------------------------------------------------------------- /screenshots/transition_slide.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/transition_slide.gif -------------------------------------------------------------------------------- /screenshots/view_layout_anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaole0310/Material-Animations/HEAD/screenshots/view_layout_anim.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------