How do you know when to use SHIFT+INSERT vs CTRL-V vs right-click-paste to paste?












24















Some times I copy something to the clipboard, and it doesn't paste with Shift+Insert, but with Ctrl+V or right-click paste. The behavior seems confusing and a bit unpredictable. Is there some logic behind the variation?










share|improve this question





























    24















    Some times I copy something to the clipboard, and it doesn't paste with Shift+Insert, but with Ctrl+V or right-click paste. The behavior seems confusing and a bit unpredictable. Is there some logic behind the variation?










    share|improve this question



























      24












      24








      24


      9






      Some times I copy something to the clipboard, and it doesn't paste with Shift+Insert, but with Ctrl+V or right-click paste. The behavior seems confusing and a bit unpredictable. Is there some logic behind the variation?










      share|improve this question
















      Some times I copy something to the clipboard, and it doesn't paste with Shift+Insert, but with Ctrl+V or right-click paste. The behavior seems confusing and a bit unpredictable. Is there some logic behind the variation?







      clipboard






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 16 '11 at 16:27









      8128

      24.9k21101137




      24.9k21101137










      asked Feb 16 '11 at 16:15









      dandan

      1,24032135




      1,24032135






















          4 Answers
          4






          active

          oldest

          votes


















          6














          This question seems to be related to the behaviour of keys combinations, but you don't give an application in which you perform these keys combo. So, taking in consideration what Javier Rivera says, the reason of why it is needed to use SHIFT+CTRL in a terminal, is because of some of these combinations are used in terminal command's control.



          In example: when you wish to "cancel" the current command, you pŕess CTRL+C, which is used in the majority of the systems to perform the "Copy" task. This way, if you press CTRL+C in a terminal in order to "Copy" a portion of text and an application or process is running, you will "cancel" the process or "close" the running application.



          a command is terminated by the ctrl-c keys combo



          Depending on the GUI that you use, or the software application itself, SHIFT+CTRL is useful for formatting or performing the "special-paste" task, which allow you to choose the format on which the copied text will be dropped into the application.



          In example: if you use OpenOffice Word Processor or Spreadsheet, when SHIFT+CTRL+V you will be prompted to choose what format will you use for the clipboard to be dropped into the document.



          The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document:
          illustration



          The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document, AFTER CHOOSING THE FORMAT in the right side documen:
          illustration



          In certain cases, as code (html, php, javascript) editors, you can choose between pasting the portion of text copied from a website or the code that generates the text in the website. In example: when copying from a formatted table, you can choose to paste the text in the table or to paste the code for generating the table into a web.



          You should check into the application's "Edit" menu in order to see how the "Paste special" task is handled.



          The next image illustrates how OpenOffice Word Processor handles the "Paste Special" feature:
          enter image description here






          share|improve this answer



















          • 3





            The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).

            – blueyed
            Oct 9 '13 at 22:29













          • This "answer" makes no reference to Shift+Insert as mentioned in the question?

            – MrWhite
            Nov 2 '18 at 15:18





















          27














          There are two types of clipboards in Unix/Linux: PRIMARY (often used with Ctrl-X/C/V) and SELECTION (mouse selected text, inserted with Shift-Insert or clicking the mouse middle button).



          See https://wiki.archlinux.org/index.php/clipboard for more details.






          share|improve this answer



















          • 2





            I think this is the best answer.

            – Wyatt8740
            Oct 23 '14 at 21:35



















          19














          Here's what I used to do:



          Ctrl+Insert : Copy to the clipboard



          Shift+Insert : PASTE from the clipboard



          Shift+Delete : Cut TO the clipboard



          Now I have an Apple Keyboard, I do:
          (The apple keyboard does not have an insert key)



          Ctrl+C to Copy to the clipboard



          Ctrl+V to PASTE FROM the clipboard



          Shift+Delete to cut TO THE clipboard.



          In a terminal using Putty:



          Select the text with the mouse copies directly to the clipboard



          Right-Clicking anywhere in the terminal window does the paste



          In a regular shell session:



          I select with the mouse, and use Ctrl+Shift+C to COPY to clipboard



          I use Ctrl+Shift+V to paste.






          share|improve this answer

































            0














            As far as I know I use always CRTL+V to paste but when I'm in the terminal. For historical reasons CTRL+letter can't be used there, so I use SHIFT+CTRL+V in terminal.



            I always believe that Shitf+Insert is an heritage from older Unix keep them to get old timers comfortable, but that modern GUIs use CTRL+V as default.






            share|improve this answer
























            • They are just two different clipboards, as explained by blueyed.

              – Pietro Battiston
              May 9 '15 at 9:06











            Your Answer








            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "89"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f26655%2fhow-do-you-know-when-to-use-shiftinsert-vs-ctrl-v-vs-right-click-paste-to-paste%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            4 Answers
            4






            active

            oldest

            votes








            4 Answers
            4






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            6














            This question seems to be related to the behaviour of keys combinations, but you don't give an application in which you perform these keys combo. So, taking in consideration what Javier Rivera says, the reason of why it is needed to use SHIFT+CTRL in a terminal, is because of some of these combinations are used in terminal command's control.



            In example: when you wish to "cancel" the current command, you pŕess CTRL+C, which is used in the majority of the systems to perform the "Copy" task. This way, if you press CTRL+C in a terminal in order to "Copy" a portion of text and an application or process is running, you will "cancel" the process or "close" the running application.



            a command is terminated by the ctrl-c keys combo



            Depending on the GUI that you use, or the software application itself, SHIFT+CTRL is useful for formatting or performing the "special-paste" task, which allow you to choose the format on which the copied text will be dropped into the application.



            In example: if you use OpenOffice Word Processor or Spreadsheet, when SHIFT+CTRL+V you will be prompted to choose what format will you use for the clipboard to be dropped into the document.



            The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document:
            illustration



            The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document, AFTER CHOOSING THE FORMAT in the right side documen:
            illustration



            In certain cases, as code (html, php, javascript) editors, you can choose between pasting the portion of text copied from a website or the code that generates the text in the website. In example: when copying from a formatted table, you can choose to paste the text in the table or to paste the code for generating the table into a web.



            You should check into the application's "Edit" menu in order to see how the "Paste special" task is handled.



            The next image illustrates how OpenOffice Word Processor handles the "Paste Special" feature:
            enter image description here






            share|improve this answer



















            • 3





              The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).

              – blueyed
              Oct 9 '13 at 22:29













            • This "answer" makes no reference to Shift+Insert as mentioned in the question?

              – MrWhite
              Nov 2 '18 at 15:18


















            6














            This question seems to be related to the behaviour of keys combinations, but you don't give an application in which you perform these keys combo. So, taking in consideration what Javier Rivera says, the reason of why it is needed to use SHIFT+CTRL in a terminal, is because of some of these combinations are used in terminal command's control.



            In example: when you wish to "cancel" the current command, you pŕess CTRL+C, which is used in the majority of the systems to perform the "Copy" task. This way, if you press CTRL+C in a terminal in order to "Copy" a portion of text and an application or process is running, you will "cancel" the process or "close" the running application.



            a command is terminated by the ctrl-c keys combo



            Depending on the GUI that you use, or the software application itself, SHIFT+CTRL is useful for formatting or performing the "special-paste" task, which allow you to choose the format on which the copied text will be dropped into the application.



            In example: if you use OpenOffice Word Processor or Spreadsheet, when SHIFT+CTRL+V you will be prompted to choose what format will you use for the clipboard to be dropped into the document.



            The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document:
            illustration



            The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document, AFTER CHOOSING THE FORMAT in the right side documen:
            illustration



            In certain cases, as code (html, php, javascript) editors, you can choose between pasting the portion of text copied from a website or the code that generates the text in the website. In example: when copying from a formatted table, you can choose to paste the text in the table or to paste the code for generating the table into a web.



            You should check into the application's "Edit" menu in order to see how the "Paste special" task is handled.



            The next image illustrates how OpenOffice Word Processor handles the "Paste Special" feature:
            enter image description here






            share|improve this answer



















            • 3





              The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).

              – blueyed
              Oct 9 '13 at 22:29













            • This "answer" makes no reference to Shift+Insert as mentioned in the question?

              – MrWhite
              Nov 2 '18 at 15:18
















            6












            6








            6







            This question seems to be related to the behaviour of keys combinations, but you don't give an application in which you perform these keys combo. So, taking in consideration what Javier Rivera says, the reason of why it is needed to use SHIFT+CTRL in a terminal, is because of some of these combinations are used in terminal command's control.



            In example: when you wish to "cancel" the current command, you pŕess CTRL+C, which is used in the majority of the systems to perform the "Copy" task. This way, if you press CTRL+C in a terminal in order to "Copy" a portion of text and an application or process is running, you will "cancel" the process or "close" the running application.



            a command is terminated by the ctrl-c keys combo



            Depending on the GUI that you use, or the software application itself, SHIFT+CTRL is useful for formatting or performing the "special-paste" task, which allow you to choose the format on which the copied text will be dropped into the application.



            In example: if you use OpenOffice Word Processor or Spreadsheet, when SHIFT+CTRL+V you will be prompted to choose what format will you use for the clipboard to be dropped into the document.



            The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document:
            illustration



            The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document, AFTER CHOOSING THE FORMAT in the right side documen:
            illustration



            In certain cases, as code (html, php, javascript) editors, you can choose between pasting the portion of text copied from a website or the code that generates the text in the website. In example: when copying from a formatted table, you can choose to paste the text in the table or to paste the code for generating the table into a web.



            You should check into the application's "Edit" menu in order to see how the "Paste special" task is handled.



            The next image illustrates how OpenOffice Word Processor handles the "Paste Special" feature:
            enter image description here






            share|improve this answer













            This question seems to be related to the behaviour of keys combinations, but you don't give an application in which you perform these keys combo. So, taking in consideration what Javier Rivera says, the reason of why it is needed to use SHIFT+CTRL in a terminal, is because of some of these combinations are used in terminal command's control.



            In example: when you wish to "cancel" the current command, you pŕess CTRL+C, which is used in the majority of the systems to perform the "Copy" task. This way, if you press CTRL+C in a terminal in order to "Copy" a portion of text and an application or process is running, you will "cancel" the process or "close" the running application.



            a command is terminated by the ctrl-c keys combo



            Depending on the GUI that you use, or the software application itself, SHIFT+CTRL is useful for formatting or performing the "special-paste" task, which allow you to choose the format on which the copied text will be dropped into the application.



            In example: if you use OpenOffice Word Processor or Spreadsheet, when SHIFT+CTRL+V you will be prompted to choose what format will you use for the clipboard to be dropped into the document.



            The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document:
            illustration



            The next image illustrates how the CTRL-V and SHIFT+CTRL+V keys drops the clipboard's content into a document, AFTER CHOOSING THE FORMAT in the right side documen:
            illustration



            In certain cases, as code (html, php, javascript) editors, you can choose between pasting the portion of text copied from a website or the code that generates the text in the website. In example: when copying from a formatted table, you can choose to paste the text in the table or to paste the code for generating the table into a web.



            You should check into the application's "Edit" menu in order to see how the "Paste special" task is handled.



            The next image illustrates how OpenOffice Word Processor handles the "Paste Special" feature:
            enter image description here







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Feb 16 '11 at 17:25









            Geppettvs D'ConstanzoGeppettvs D'Constanzo

            16.4k43383




            16.4k43383








            • 3





              The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).

              – blueyed
              Oct 9 '13 at 22:29













            • This "answer" makes no reference to Shift+Insert as mentioned in the question?

              – MrWhite
              Nov 2 '18 at 15:18
















            • 3





              The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).

              – blueyed
              Oct 9 '13 at 22:29













            • This "answer" makes no reference to Shift+Insert as mentioned in the question?

              – MrWhite
              Nov 2 '18 at 15:18










            3




            3





            The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).

            – blueyed
            Oct 9 '13 at 22:29







            The question appears to me about the two types of clipboards: PRIMARY (usually Ctrl-C/V/X) and CLIPBOARD (mouse selection, insertion with Shift-Ins), and not having to use Shift additionally in a terminal for the PRIMARY clipboard's shortcuts (or LibreOffice's special paste).

            – blueyed
            Oct 9 '13 at 22:29















            This "answer" makes no reference to Shift+Insert as mentioned in the question?

            – MrWhite
            Nov 2 '18 at 15:18







            This "answer" makes no reference to Shift+Insert as mentioned in the question?

            – MrWhite
            Nov 2 '18 at 15:18















            27














            There are two types of clipboards in Unix/Linux: PRIMARY (often used with Ctrl-X/C/V) and SELECTION (mouse selected text, inserted with Shift-Insert or clicking the mouse middle button).



            See https://wiki.archlinux.org/index.php/clipboard for more details.






            share|improve this answer



















            • 2





              I think this is the best answer.

              – Wyatt8740
              Oct 23 '14 at 21:35
















            27














            There are two types of clipboards in Unix/Linux: PRIMARY (often used with Ctrl-X/C/V) and SELECTION (mouse selected text, inserted with Shift-Insert or clicking the mouse middle button).



            See https://wiki.archlinux.org/index.php/clipboard for more details.






            share|improve this answer



















            • 2





              I think this is the best answer.

              – Wyatt8740
              Oct 23 '14 at 21:35














            27












            27








            27







            There are two types of clipboards in Unix/Linux: PRIMARY (often used with Ctrl-X/C/V) and SELECTION (mouse selected text, inserted with Shift-Insert or clicking the mouse middle button).



            See https://wiki.archlinux.org/index.php/clipboard for more details.






            share|improve this answer













            There are two types of clipboards in Unix/Linux: PRIMARY (often used with Ctrl-X/C/V) and SELECTION (mouse selected text, inserted with Shift-Insert or clicking the mouse middle button).



            See https://wiki.archlinux.org/index.php/clipboard for more details.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Oct 9 '13 at 22:32









            blueyedblueyed

            6,26922231




            6,26922231








            • 2





              I think this is the best answer.

              – Wyatt8740
              Oct 23 '14 at 21:35














            • 2





              I think this is the best answer.

              – Wyatt8740
              Oct 23 '14 at 21:35








            2




            2





            I think this is the best answer.

            – Wyatt8740
            Oct 23 '14 at 21:35





            I think this is the best answer.

            – Wyatt8740
            Oct 23 '14 at 21:35











            19














            Here's what I used to do:



            Ctrl+Insert : Copy to the clipboard



            Shift+Insert : PASTE from the clipboard



            Shift+Delete : Cut TO the clipboard



            Now I have an Apple Keyboard, I do:
            (The apple keyboard does not have an insert key)



            Ctrl+C to Copy to the clipboard



            Ctrl+V to PASTE FROM the clipboard



            Shift+Delete to cut TO THE clipboard.



            In a terminal using Putty:



            Select the text with the mouse copies directly to the clipboard



            Right-Clicking anywhere in the terminal window does the paste



            In a regular shell session:



            I select with the mouse, and use Ctrl+Shift+C to COPY to clipboard



            I use Ctrl+Shift+V to paste.






            share|improve this answer






























              19














              Here's what I used to do:



              Ctrl+Insert : Copy to the clipboard



              Shift+Insert : PASTE from the clipboard



              Shift+Delete : Cut TO the clipboard



              Now I have an Apple Keyboard, I do:
              (The apple keyboard does not have an insert key)



              Ctrl+C to Copy to the clipboard



              Ctrl+V to PASTE FROM the clipboard



              Shift+Delete to cut TO THE clipboard.



              In a terminal using Putty:



              Select the text with the mouse copies directly to the clipboard



              Right-Clicking anywhere in the terminal window does the paste



              In a regular shell session:



              I select with the mouse, and use Ctrl+Shift+C to COPY to clipboard



              I use Ctrl+Shift+V to paste.






              share|improve this answer




























                19












                19








                19







                Here's what I used to do:



                Ctrl+Insert : Copy to the clipboard



                Shift+Insert : PASTE from the clipboard



                Shift+Delete : Cut TO the clipboard



                Now I have an Apple Keyboard, I do:
                (The apple keyboard does not have an insert key)



                Ctrl+C to Copy to the clipboard



                Ctrl+V to PASTE FROM the clipboard



                Shift+Delete to cut TO THE clipboard.



                In a terminal using Putty:



                Select the text with the mouse copies directly to the clipboard



                Right-Clicking anywhere in the terminal window does the paste



                In a regular shell session:



                I select with the mouse, and use Ctrl+Shift+C to COPY to clipboard



                I use Ctrl+Shift+V to paste.






                share|improve this answer















                Here's what I used to do:



                Ctrl+Insert : Copy to the clipboard



                Shift+Insert : PASTE from the clipboard



                Shift+Delete : Cut TO the clipboard



                Now I have an Apple Keyboard, I do:
                (The apple keyboard does not have an insert key)



                Ctrl+C to Copy to the clipboard



                Ctrl+V to PASTE FROM the clipboard



                Shift+Delete to cut TO THE clipboard.



                In a terminal using Putty:



                Select the text with the mouse copies directly to the clipboard



                Right-Clicking anywhere in the terminal window does the paste



                In a regular shell session:



                I select with the mouse, and use Ctrl+Shift+C to COPY to clipboard



                I use Ctrl+Shift+V to paste.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Feb 22 '11 at 20:23









                Marco Ceppi

                37.1k24154192




                37.1k24154192










                answered Feb 16 '11 at 17:14









                jfmessierjfmessier

                4,17132026




                4,17132026























                    0














                    As far as I know I use always CRTL+V to paste but when I'm in the terminal. For historical reasons CTRL+letter can't be used there, so I use SHIFT+CTRL+V in terminal.



                    I always believe that Shitf+Insert is an heritage from older Unix keep them to get old timers comfortable, but that modern GUIs use CTRL+V as default.






                    share|improve this answer
























                    • They are just two different clipboards, as explained by blueyed.

                      – Pietro Battiston
                      May 9 '15 at 9:06
















                    0














                    As far as I know I use always CRTL+V to paste but when I'm in the terminal. For historical reasons CTRL+letter can't be used there, so I use SHIFT+CTRL+V in terminal.



                    I always believe that Shitf+Insert is an heritage from older Unix keep them to get old timers comfortable, but that modern GUIs use CTRL+V as default.






                    share|improve this answer
























                    • They are just two different clipboards, as explained by blueyed.

                      – Pietro Battiston
                      May 9 '15 at 9:06














                    0












                    0








                    0







                    As far as I know I use always CRTL+V to paste but when I'm in the terminal. For historical reasons CTRL+letter can't be used there, so I use SHIFT+CTRL+V in terminal.



                    I always believe that Shitf+Insert is an heritage from older Unix keep them to get old timers comfortable, but that modern GUIs use CTRL+V as default.






                    share|improve this answer













                    As far as I know I use always CRTL+V to paste but when I'm in the terminal. For historical reasons CTRL+letter can't be used there, so I use SHIFT+CTRL+V in terminal.



                    I always believe that Shitf+Insert is an heritage from older Unix keep them to get old timers comfortable, but that modern GUIs use CTRL+V as default.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Feb 16 '11 at 16:37









                    Javier RiveraJavier Rivera

                    30.1k978101




                    30.1k978101













                    • They are just two different clipboards, as explained by blueyed.

                      – Pietro Battiston
                      May 9 '15 at 9:06



















                    • They are just two different clipboards, as explained by blueyed.

                      – Pietro Battiston
                      May 9 '15 at 9:06

















                    They are just two different clipboards, as explained by blueyed.

                    – Pietro Battiston
                    May 9 '15 at 9:06





                    They are just two different clipboards, as explained by blueyed.

                    – Pietro Battiston
                    May 9 '15 at 9:06


















                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f26655%2fhow-do-you-know-when-to-use-shiftinsert-vs-ctrl-v-vs-right-click-paste-to-paste%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    How did Captain America manage to do this?

                    迪纳利

                    南乌拉尔铁路局