description
stringlengths 0
8.24k
| regex
stringlengths 1
26.3k
| text
stringlengths 0
2.47M
⌀ | title
stringlengths 1
150
| created_at
stringlengths 24
24
|
---|---|---|---|---|
JOIN:0x[a-zA-Z0-9]{16},OK | JOIN:2,ERR
JOIN:0x000b57fffe00e8c6,OK | Find join | 2015-12-30T16:24:40.000Z |
|
((A)(B(C))) | ABCD | regex | 2015-12-17T11:49:44.000Z |
|
This can be used to find all zone files that contain authoritative nameservers - e.g.
perl -ne 'print if /^([\w.]+\.)\s+.+\sNS\s.+\1/' /var/named/*.db | awk '{print $1}' | sort | uniq | ^([\w.]+\.)\s+.+\sNS\s.+\1 | piggyvoucher.com. 86400 IN SOA ns1.krystal.co.uk. admin.krystal.co.uk. (
2014060600 ;Serial Number
86400 ;refresh
7200 ;retry
3600000 ;expire
86400 ;minimum
)
piggyvoucher.com. 86400 IN NS ns1.piggyvoucher.com.
piggyvoucher.com. 86400 IN NS ns2.krystal.co.uk.
piggyvoucher.com. 14400 IN A 77.72.0.110
localhost 14400 IN A 127.0.0.1
mail 14400 IN CNAME piggyvoucher.com.
www 14400 IN CNAME piggyvoucher.com.
ftp 14400 IN A 77.72.0.110
cpanel 14400 IN A 77.72.0.110 | Detect DNS Zones with Authoritative Nameservers | 2015-04-11T08:34:49.000Z |
\[(?P<date>.*)\]\s(?<channel>.*)\.(?<severity>.*):\s(?<message>.*)\s(\[|\{)(?<context>.*)(\]|\})\s\[(?<extra>.*)\] | [2013-08-15 14:19:51] context.INFO: multicontext test {foo} {bat} [{"foo":"bar"},{"bat":"baz"}] [] | Monolog Line Regex | 2020-07-22T07:16:46.000Z |
|
Useful when working with css | (-?)\d+(\.?(\d+?)?(\w+))? | -1
-1.2
-1px
-11.35px
1
1.2
1px
11.43px
| Tests string if it is a valid number with or without its unit | 2019-10-16T09:16:36.000Z |
(.*)_(\d{8})_(NOZ\d{7})_(\d{2}.\d{2}.\d{4}) | Hans Wurst_12345678_NOZ1234567_24.04.2018
peterf_12345678_NOZ1234567_12.06.2017
Hans Joachim Wurst_12345678_NOZ1234567_24.04.2018
Hans Joachim Wurst GmbH_12345678_NOZ1234567_24.04.2018
| Betreffzeile auflösen | 2018-04-24T11:30:22.000Z |
|
提取步骤1 | ["]|\s+|\[ | 提取步骤1 | 2022-04-26T12:48:49.000Z |
|
<div\s[\s\S]*?featurebullets_feature_div[\s\S]*?>\s*<div\s[\s\S]*?feature-bullets[\s\S]*?>\s*(<ul[\s\S]*?<\/ul>)[\s\S]*?<\/div>[\s\S]*?<\/div> | <div id="featurebullets_feature_div" class="feature" data-feature-name="featurebullets" data-cel-widget="featurebullets_feature_div">
<div id="feature-bullets" class="a-section a-spacing-medium a-spacing-top-small">
<ul class="a-unordered-list a-vertical a-spacing-none">
<li><span class="a-list-item">
100% Washed Twill
</span></li>
<li><span class="a-list-item">
Imported
</span></li>
<li><span class="a-list-item">
Rubber sole
</span></li>
<li><span class="a-list-item">
Shaft measures approximately Low-Top" from arch
</span></li>
<li><span class="a-list-item">
Heel measures approximately 0.75"
</span></li>
<li><span class="a-list-item">
Platform measures approximately 0.5"
</span></li>
<li><span class="a-list-item">
Slip-on canvas sneaker featuring laceless vamp and small logo tags at tongue and topline
</span></li>
</ul>
<!-- Loading EDP related metadata -->
<span class="edp-feature-declaration" data-edp-feature-name="featurebullets" data-edp-asin="B00NNA39IE" data-data-hash="3757568849" data-defects="[{"id":"defect-mismatch-info","value":"Different from product"},{"id":"defect-missing-information","value":"Missing information"},{"id":"defect-unessential-info","value":"Unimportant information"},{"id":"defect-other-productinfo-issue","value":"Other"}]" data-metadata="CATALOG" data-feature-container-id="" data-custom-event-handler="" data-display-name="Bullet Points" data-edit-data-state="featureBulletsEDPEditData" data-position="" data-resolver="CQResolver"></span>
</div>
</div> | bullet v3 (pag2) | 2018-12-24T02:36:36.000Z |
|
Pars such a log:
{"log":"2017-12-19 13:32:01.280700 I | etcdmain: etcd Version: 3.0.17\n","stream":"stderr","time":"2017-12-19T13:32:01.281026986Z"}
| ^\D{8}(?<time>\d[^\s]*\s[^\s]*)\s(?<severity>\w)\s[/|]\s(?<source>[^\s]*[\:])[\s]*(?<message>.*[/\/n])([\W]*[\w]*){3}[\W]{3}(?<logdate>[\d]*\-[\d]*\-[\d]*)\w(?<logtime>[\d]*\:[\d]*\:[\d]*\.[\d]*)\w\W*$ | {"log":"2017-12-19 13:32:01.280700 I | etcdmain: etcd Version: 3.0.17\n","stream":"stderr","time":"2017-12-19T13:32:01.281026986Z"}
{"log":"2017-12-19 13:32:01.280914 I | etcdmain: Git SHA: cc198e2\n","stream":"stderr","time":"2017-12-19T13:32:01.281103421Z"}
{"log":"2017-12-19 13:32:01.280923 I | etcdmain: Go Version: go1.6.4\n","stream":"stderr","time":"2017-12-19T13:32:01.281107072Z"}
{"log":"2017-12-19 13:32:01.280928 I | etcdmain: Go OS/Arch: linux/amd64\n","stream":"stderr","time":"2017-12-19T13:32:01.281108985Z"}
{"log":"2017-12-19 13:32:01.280933 I | etcdmain: setting maximum number of CPUs to 4, total number of available CPUs is 4\n","stream":"stderr","time":"2017-12-19T13:32:01.281110867Z"}
{"log":"2017-12-19 13:32:01.281161 N | etcdmain: the server is already initialized as member before, starting as etcd member...\n","stream":"stderr","time":"2017-12-19T13:32:01.281297016Z"}
{"log":"2017-12-19 13:32:01.282067 I | etcdmain: listening for peers on http://localhost:2380\n","stream":"stderr","time":"2017-12-19T13:32:01.282350397Z"}
{"log":"2017-12-19 13:32:01.282152 I | etcdmain: listening for client requests on 127.0.0.1:2379\n","stream":"stderr","time":"2017-12-19T13:32:01.282361979Z"}
{"log":"2017-12-19 13:32:01.286927 I | etcdserver: recovered store from snapshot at index 15161518\n","stream":"stderr","time":"2017-12-19T13:32:01.29074204Z"}
{"log":"2017-12-19 13:32:01.286950 I | etcdserver: name = default\n","stream":"stderr","time":"2017-12-19T13:32:01.290753557Z"}
{"log":"2017-12-19 13:32:01.286955 I | etcdserver: data dir = /var/lib/etcd\n","stream":"stderr","time":"2017-12-19T13:32:01.290756077Z"}
{"log":"2017-12-19 13:32:01.286960 I | etcdserver: member dir = /var/lib/etcd/member\n","stream":"stderr","time":"2017-12-19T13:32:01.290758045Z"}
{"log":"2017-12-19 13:32:01.286965 I | etcdserver: heartbeat = 100ms\n","stream":"stderr","time":"2017-12-19T13:32:01.290759777Z"}
{"log":"2017-12-19 13:32:01.286968 I | etcdserver: election = 1000ms\n","stream":"stderr","time":"2017-12-19T13:32:01.290761577Z"}
{"log":"2017-12-19 13:32:01.286972 I | etcdserver: snapshot count = 10000\n","stream":"stderr","time":"2017-12-19T13:32:01.290763342Z"}
{"log":"2017-12-19 13:32:01.286983 I | etcdserver: advertise client URLs = http://127.0.0.1:2379\n","stream":"stderr","time":"2017-12-19T13:32:01.290765215Z"}
{"log":"2017-12-19 13:32:01.786992 I | etcdserver: restarting member 8e9e05c52164694d in cluster cdf818194e3a8c32 at commit index 15168960\n","stream":"stderr","time":"2017-12-19T13:32:01.787878528Z"}
{"log":"2017-12-19 13:32:01.788412 I | raft: 8e9e05c52164694d became follower at term 9\n","stream":"stderr","time":"2017-12-19T13:32:01.791064352Z"}
{"log":"2017-12-19 13:32:01.788435 I | raft: newRaft 8e9e05c52164694d [peers: [8e9e05c52164694d], term: 9, commit: 15168960, applied: 15161518, lastindex: 15168960, lastterm: 9]\n","stream":"stderr","time":"2017-12-19T13:32:01.791076857Z"}
{"log":"2017-12-19 13:32:01.788561 I | api: enabled capabilities for version 3.0\n","stream":"stderr","time":"2017-12-19T13:32:01.791079764Z"}
{"log":"2017-12-19 13:32:01.788574 I | membership: added member 8e9e05c52164694d [http://localhost:2380] to cluster cdf818194e3a8c32 from store\n","stream":"stderr","time":"2017-12-19T13:32:01.791082008Z"}
{"log":"2017-12-19 13:32:01.788582 I | membership: set the cluster version to 3.0 from store\n","stream":"stderr","time":"2017-12-19T13:32:01.791084212Z"}
{"log":"2017-12-19 13:32:01.792500 I | mvcc: restore compact to 5751429\n","stream":"stderr","time":"2017-12-19T13:32:01.794829127Z"}
{"log":"2017-12-19 13:32:01.797258 I | etcdserver: starting server... [version: 3.0.17, cluster version: 3.0]\n","stream":"stderr","time":"2017-12-19T13:32:01.797433251Z"}
{"log":"2017-12-19 13:32:02.588875 I | raft: 8e9e05c52164694d is starting a new election at term 9\n","stream":"stderr","time":"2017-12-19T13:32:02.589552499Z"}
{"log":"2017-12-19 13:32:02.589298 I | raft: 8e9e05c52164694d became candidate at term 10\n","stream":"stderr","time":"2017-12-19T13:32:02.589571444Z"}
{"log":"2017-12-19 13:32:02.589306 I | raft: 8e9e05c52164694d received vote from 8e9e05c52164694d at term 10\n","stream":"stderr","time":"2017-12-19T13:32:02.589574111Z"}
{"log":"2017-12-19 13:32:02.589319 I | raft: 8e9e05c52164694d became leader at term 10\n","stream":"stderr","time":"2017-12-19T13:32:02.589584935Z"}
{"log":"2017-12-19 13:32:02.589327 I | raft: raft.node: 8e9e05c52164694d elected leader 8e9e05c52164694d at term 10\n","stream":"stderr","time":"2017-12-19T13:32:02.58958702Z"}
{"log":"2017-12-19 13:32:02.590591 I | etcdserver: published {Name:default ClientURLs:[http://127.0.0.1:2379]} to cluster cdf818194e3a8c32\n","stream":"stderr","time":"2017-12-19T13:32:02.605236261Z"}
{"log":"2017-12-19 13:32:02.590605 I | etcdmain: ready to serve client requests\n","stream":"stderr","time":"2017-12-19T13:32:02.605250506Z"}
{"log":"2017-12-19 13:32:02.590922 N | etcdmain: serving insecure client requests on 127.0.0.1:2379, this is strongly discouraged!\n","stream":"stderr","time":"2017-12-19T13:32:02.605253194Z"}
{"log":"2017-12-19 13:32:13.727465 W | etcdserver: apply entries took too long [18.964348ms for 1 entries]\n","stream":"stderr","time":"2017-12-19T13:32:13.73174732Z"}
{"log":"2017-12-19 13:32:13.728444 W | etcdserver: avoid queries with large range/delete range!\n","stream":"stderr","time":"2017-12-19T13:32:13.731786609Z"}
{"log":"2017-12-19 13:32:17.119442 W | etcdserver: apply entries took too long [11.388753ms for 1 entries]\n","stream":"stderr","time":"2017-12-19T13:32:17.136726266Z"}
{"log":"2017-12-19 13:32:17.119466 W | etcdserver: avoid queries with large range/delete range!\n","stream":"stderr","time":"2017-12-19T13:32:17.13674029Z"}
{"log":"2017-12-19 13:33:12.813262 W | etcdserver: apply entries took too long [12.968146ms for 1 entries]\n","stream":"stderr","time":"2017-12-19T13:33:12.817703884Z"}
{"log":"2017-12-19 13:33:12.814159 W | etcdserver: avoid queries with large range/delete range!\n","stream":"stderr","time":"2017-12-19T13:33:12.817722819Z"}
{"log":"2017-12-19 13:33:53.019317 W | etcdserver: apply entries took too long [34.109947ms for 1 entries]\n","stream":"stderr","time":"2017-12-19T13:33:53.027210205Z"}
{"log":"2017-12-19 13:33:53.019867 W | etcdserver: avoid queries with large range/delete range!\n","stream":"stderr","time":"2017-12-19T13:33:53.027233576Z"}
| etcd_log_regx | 2017-12-19T14:24:33.000Z |
[\w\-\.]+txt:route-policy\sGERENCIA_UBB_STATIC.+ | RMAGRJO-MTC01-01.txt:route-policy GERENCIA_UBB_STATIC_TO_BGP
RMAGRJO-MTC01-01.txt:route-policy GERENCIA_UBB_STATIC_TO_BGP
RMAGRJO-MTC01-01.txt- if tag eq 30210 then
| extract_STATIC_TO_BGP_policy | 2017-11-09T09:47:33.000Z |
|
google.com:80 212.111.203.171 - - [02/Mar/2015:10:27:04 +0000] "GET /css/style.css HTTP/1.1" 304 138 "http://google.com" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36" | (?<src_host>\w+\.\w+:\d{2})\s(?<src_ip>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})\D{1,6}(?<date_time>[^ ]+)\s(?<GMT_offset>[^ ]+)\]\s"(?<action>(GET|POST|HEAD|TRACE|PUT|DELETE|CONNECT))\s(?<hash_url>[^ ]+)\s(?<protocol>[^\"]+)\"\s(?<code>\d{1,3})\s(?<size>[^ ]+)\s\"(?<referrer>[^ ]+)\"\s\"(?<user_agent>[^ ]+.+)\" | google.com:80 212.111.203.171 - - [02/Mar/2015:10:27:04 +0000] "GET /css/style.css HTTP/1.1" 304 138 "http://google.com" "Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36" | my apache2 access.log regex | 2015-07-22T10:48:46.000Z |
^(\w*\$)[\s]*(\/[\w]*)[\s]*([\w\s]*)\n\s*([\w\\]*)[\s\/]*([\w\s]*).*^(\w*\$)\s*([\w\/\-]*)\s*([\w \-\/]*)[\n\s]*([\w\/\-\\]*)[\s\/]*([\w\s]*)\n\s*([\w\/\-\\]*)[\s\/]*([\w\/\-\\ ]*)\n([\s\^\(\w\\\$\)\[\]\*\/\-\?\:]*) |
Name Mount Point Description
---- ----------- -----------
ETC$ /etc Remote Administration
BUILTIN\Administrators / Full Control
C$ / Remote Administration
BUILTIN\Administrators / Full Control
HYDROQC\APPL-NETAPP-ADMIN / Full Control
^(ETC\$)[\s]*(\/[\w]*)[\s]*([a-zA-Z\s]*)\n\s*([\w\\]*)[\s\/]*([a-zA-Z\s]*)\n^(C\$)[\s]*(\/[\w]*)[\s]*([\w\s]*)\n(?:\s*([\w\\]*)[\s\/]*([a-zA-Z\s]*)\n) | evething captured | 2016-01-07T15:33:23.000Z |
|
validator voor kenteken
vb: 11-AA-BB | [1-9]{2}[-][A-JL-Z][A-Z][-][A-Z]{2} | 11-AA-BB | kenteken validator | 2016-01-06T14:30:40.000Z |
The Pesian Alphabet Chhars | ^[\u0600-\u06FF\s]+$ | Persian Alphabet Characters | 2015-09-07T07:47:09.000Z |
|
Valid Date format: | ^(0[1-9]|1[0-2])\/(0[1-9]|1\d|2\d|3[01])\/(19|20)\d{2}$ | 03/02/2011 | Date | 2016-03-16T14:25:40.000Z |
Detects Honorifics in a string. proceeding character after Honorifics needs to be an non alph numeric to be detected | (Master[^a-z0-9]|Mr[^a-z0-9]|Miss[^a-z0-9]|Mrs[^a-z0-9]|Ms[^a-z0-9]|Mx[^a-z0-9]|Dr[^a-z0-9]|Professor[^a-z0-9]|QC[^a-z0-9]){1,9} | Honorifics Detection | 2017-08-09T13:58:56.000Z |
|
^(\d+) <(\w+)> (\d+) (\d+) (\d+) (?:(\d+) )?</\w+>$ | 1111 <CARRE> 123 321 111 222 </CARRE>
2222 <RECTANGLE> 234 432 333 444 </RECTANGLE>
3333 <CERCLE> 345 543 555 </CERCLE>
4444 <OVALE> 456 654 666 777 </OVALE>
5555 <LIGNE> 567 765 888 999 </LIGNE> | Lab1 compact | 2017-05-15T21:03:28.000Z |
|
(<ahref="[a-z.-_"]*)(<\/a>) | '<ahref="hhjfj.com">hullo</a><aclass="jump-to-footer"href="#bottom-of-content"target="_self"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-down-arrow"><usexlink:href="#icon-down-arrow"></use></svg></a><!--logoandusertoolbar--><divclass="container"><divclass="logo"><ahref="/"target="_self"><h1><spanclass="white">ask</span><spanclass="green">metafilter</span></h1><spanclass="tagline">queryingthehivemind</span></a></div><divclass="mobile-menu-toggle"id="user-nav-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-user"><usexlink:href="#icon-user"></use></svg></div><navclass="user"role="menu"><divclass="fixed-menu-toggle"id="fixed-user-nav-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconuser"><usexlink:href="#icon-user"></use></svg></div><ul><liclass="log-out"><ahref="https://login.metafilter.com/"target="_self"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-log-out"><usexlink:href="#icon-log-out"></use></svg><spanclass="nav-label">login</span></a></li><liclass="sign-up"><ahref="//www.metafilter.com/newuser.mefi"target="_self"><svgxmlns="http://www.w3.org/2000/svg"class="iconuser"><usexlink:href="#icon-user"></use></svg><spanclass="nav-label">signup</span></a></li></ul></nav></div><divclass="mobile-menu-toggle"id="primary-nav-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-list"><usexlink:href="#icon-list"></use></svg></div><navclass="primary"><divclass="fixed-menu-toggle"id="fixed-header-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-close"><usexlink:href="#icon-close"></use></svg><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-two-lines"><usexlink:href="#icon-two-lines"></use></svg></div><divclass="container"><divclass="fixed-menu-toggle"id="fixed-primary-nav-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-list"><usexlink:href="#icon-list"></use></svg></div><ul><li><ahref="//www.metafilter.com"target="_self">metafilter</a></li><liclass="current"><ahref="//ask.metafilter.com"target="_self">askmefi</a></li><li><ahref="//fanfare.metafilter.com"target="_self">fanfare</a></li><li><ahref="//projects.metafilter.com"target="_self">projects</a></li><li><ahref="//music.metafilter.com"target="_self">music</a></li><li><ahref="//jobs.metafilter.com"target="_self">jobs</a></li><li><ahref="//irl.metafilter.com"target="_self">irl</a></li><li><ahref="//metatalk.metafilter.com"target="_self">metatalk</a></li><liclass="subnavmore-nav"><spanid="more-nav-toggle">more<svgxmlns="http://www.w3.org/2000/svg"class="iconicon-caret-down"><usexlink:href="#icon-caret-down"></use></svg></span><ul><li><ahref="//bestof.metafilter.com"target="_self">bestof</a></li><li><ahref="//podcast.metafilter.com"target="_self">podcast</a></li><li><ahref="//www.metafilter.com/chat/"target="_self">chat</a></li><li><ahref="//labs.metafilter.com/"target="_self">labs</a></li></ul></li></ul><divclass="search"><formclass="form-inline"action="/search.mefi"method="get"target="_self"><labelclass="sr-only"for="query">searchmetafilter…</label><inputname="site"value="ask"type="hidden"><inputclass="form-control"type="search"id="query"placeholder="search…"name="q"><buttonclass="btnbtn-defaultsubmit"type="submit"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-search-white"><usexlink:href="#icon-search-white"></use></svg></button></form></div></div></nav></div><!--secondarynavigation(sectionsofsubsite)--><navclass="secondary"><divclass="container"><divclass="fixed-menu-toggle"id="fixed-secondary-nav-toggle"><span>menu</span><svgxmlns="http://www.w3.org/2000/svg"class="iconcaret-down"><usexlink:href="#icon-caret-down"></use></svg></div><ul><li><ahref="/"target="_self">home</a></li><li><ahref="/faq.mefi"target="_self">faq</a></li><li><ahref="/about.mefi"target="_self">about</a></li><li><ahref="/archive.mefi"target="_self">archives</a></li><li><ahref="/tags"target="_self">tags</a></li><li><ahref="/popular.mefi"target="_self">popular</a></li><li><ahref="/random"target="_self">random</a></li></ul></div></nav></header><divclass="content"role="main"><divclass="container"><divclass="row"><aname="posts"></a><aclass="go-to-anchorgo-to-sidebar"href="#sidebar"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-go-to-bottom"><usexlink:href="#icon-go-to-bottom"></use></svg></a><divid="posts"><h1class="posttitle">songsthattakeplaceduringanuclearblast<br><spanclass="smallcopy">february28,2019<span>10:38am</span> <ahref="http://ask.metafilter.com/331739/songs-that-take-place-during-a-nuclear-blast/rss"><iclass="feedicon"></i></a><ahref="http://ask.metafilter.com/331739/songs-that-take-place-during-a-nuclear-blast/rss">subscribe</a></span></h1><divclass="copy">icancomeupwith"everydayislikesunday"(morrissey),"breathing"(katebush),and"imeltwithyou"(modernenglish).whatothersongstakeplaceduringanuclearbombing?<br><span></span><divclass="miseperator"><br>askingbecauseiheardthebowdlerized"imeltwithyou"bybowlingforsoupafterreading<ahref="https://ask.metafilter.com/331730/ska-covers-of-songs-that-are-not-ska">theskacoversthreadfromthismorning</a>("beingfriendswithyouwasneversecondbest")anddiscovereditwasbecausedisneyuseditforamoviein2005.greatpick,disney,asongaboutfuckingduringanuclearbombing!</div><spanclass="smallcopypostbyline">postedby<ahref="http://www.metafilter.com/user/47772"target="_self">fiercecupcake</a>to<ahref="/media-arts"target="_self">media&arts</a>(66answerstotal)<spanid="favcnt3331739"><ahref="http://ask.metafilter.com/favorited/3/331739"style="font-weight:normal;"target="_self">8usersmarkedthisasafavorite</a></span></span></div><divclass="copy"style="margin-right:0px;padding:0;margin-top:0px;margin-bottom:50px;max-width:730px;"><scriptasyncsrc="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!--askresponsive--><insclass="adsbygoogle"style="display:block"data-ad-client="ca-pub-8621957794194569"data-ad-slot="8281515025"data-ad-format="auto"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div><divstyle="clear:left;height:1px;"> </div><aname="4774093"></a><divclass="comments"id="c4774093"><ahref="https://www.youtube.com/watch?v=psqwuz8a2ho">dancingwithtearsinmyeyes</a>byultravoxismostlypre-blastbutsortofwrapsupattheblast.thereisablastinthevideo.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/292"target="_self">jessamyn</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774093"target="_self">10:41am</a>onfebruary28[<ahref="/favorited/4/4774093"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774095"></a><divclass="comments"id="c4774095">"twosunsinthesunset,"pinkfloyd<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/216027"target="_self">thephlegmaticking</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774095"target="_self">10:43am</a>onfebruary28[<ahref="/favorited/4/4774095"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774096"></a><divclass="comments"id="c4774096">pinkfloyd\'s"<ahref="https://www.youtube.com/watch?v=3tsz30nj2n4">twosunsinthesunset</a>."<br><br>idon\'tknowifanyofthesongsspecificallyreferencethis,butmymindalsowentstraighttomidnightoil\'s<em>redsailsinthesunset</em>,whichhascoverartofanuclearstrikeonsydneyharbour.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/24040"target="_self">jzb</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774096"target="_self">10:44am</a>onfebruary28</span></div><br><br><aname="4774098"></a><divclass="comments"id="c4774098">twofromtomlehrer:<br><ahref="https://www.youtube.com/watch?v=fraemhqdlfs">wewillallgotogetherwhenwego</a><br><ahref="https://www.youtube.com/watch?v=yrbv40enu_o">solong,mom</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/1951"target="_self">briank</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774098"target="_self">10:47am</a>onfebruary28[<ahref="/favorited/4/4774098"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774100"></a><divclass="comments"id="c4774100">iguessarguably"whenivanmeetsg.i.joe"bytheclash,althoughit\'snot*quite*asdirect<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/216027"target="_self">thephlegmaticking</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774100"target="_self">10:49am</a>onfebruary28[<ahref="/favorited/4/4774100"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774101"></a><divclass="comments"id="c4774101">moxyfruvous,<ahref="https://www.youtube.com/watch?v=wcf1vxjazmg">"thedrinkingsong"</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/189190"target="_self">bileandsyntax</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774101"target="_self">10:52am</a>onfebruary28[<ahref="/favorited/4/4774101"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774104"></a><divclass="comments"id="c4774104">whataboutthedecemberists\'<ahref="https://www.youtube.com/watch?v=xjpfk7l404i">calamitysong</a>?ithaslyricsabouttheendoftheworld,andthemusicvideoisatennisgamesimulationofglobalthermonuclearwarfrom<em>infinitejest</em>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/18528"target="_self">beandip</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774104"target="_self">10:56am</a>onfebruary28[<ahref="/favorited/4/4774104"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774108"></a><divclass="comments"id="c4774108">timbuk3\'s"<ahref="https://www.youtube.com/watch?v=8qrrikcwvly">thefuture\'ssobright,igottawearshades</a>,"atleastasiinterpretit.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/32795"target="_self">thecorpseinthelibrary</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774108"target="_self">10:57am</a>onfebruary28[<ahref="/favorited/4/4774108"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774112"></a><divclass="comments"id="c4774112">weirdalyankovic,<ahref="https://www.youtube.com/watch?v=t039p6xqutu">christmasatgroundzero</a>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/132869"target="_self">doctornecessiter</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774112"target="_self">11:01am</a>onfebruary28[<ahref="/favorited/4/4774112"style="font-weight:normal;"title="7usersmarkedthisasfavorite">7favorites</a>]</span></div><br><br><aname="4774114"></a><divclass="comments"id="c4774114"><ahref="https://www.youtube.com/watch?v=15ygdrhrcm8">"we\'llmeetagain"</a>asusedinthefilmdr.strangelove.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/7961"target="_self">beagle</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774114"target="_self">11:01am</a>onfebruary28[<ahref="/favorited/4/4774114"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774120"></a><divclass="comments"id="c4774120"><ahref="https://youtu.be/iyc0rxysqd0">bowie,"bombers"</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/268866"target="_self">gendernullpointerexception</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774120"target="_self">11:05am</a>onfebruary28</span></div><br><br><aname="4774124"></a><divclass="comments"id="c4774124">nena\'s"99luftballons."<br><br>ireallyquestionthistheorythat"imeltwithyou"isaboutanuclearattack--idon\'tknowwhereitcomesfrombutlet\'sjustsaythatthelyricsaren\'tverystronglydeterminedinthatdirection.<br><br>(alsotechnicallyithink"sunday"isset<em>after</em>anuclearattack.)<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/235772"target="_self">praemunire</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774124"target="_self">11:10am</a>onfebruary28[<ahref="/favorited/4/4774124"style="font-weight:normal;"title="9usersmarkedthisasfavorite">9favorites</a>]</span></div><br><br><aname="4774129"></a><divclass="comments"id="c4774129"><ahref="https://www.youtube.com/watch?v=o69l2mo9y-4">woodenships</a>bycrosby,stills&nash<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/143406"target="_self">wellred</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774129"target="_self">11:14am</a>onfebruary28</span></div><br><br><aname="4774136"></a><divclass="comments"id="c4774136">joshritter\'s<ahref="https://www.youtube.com/watch?v=fh9mhoviy9g&frags=pl%2cwn">"thetemptationofadam"</a>takesplaceinthemomentsbeforeahypotheticalnuclearblastandisareallyprettysong.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/265688"target="_self">dapati</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774136"target="_self">11:17am</a>onfebruary28[<ahref="/favorited/4/4774136"style="font-weight:normal;"title="9usersmarkedthisasfavorite">9favorites</a>]</span></div><br><br><aname="4774139"></a><divclass="comments"id="c4774139">klausnomi"totaleclipse"<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/198268"target="_self">noxperpetua</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774139"target="_self">11:21am</a>onfebruary28[<ahref="/favorited/4/4774139"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774140"></a><divclass="comments"id="c4774140">tomlehrer\'s<em><ahref="https://www.youtube.com/watch?v=4ky0rotsd14">solongmom,i\'mofftodropthebomb</a></em>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/24315"target="_self">ubiquity</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774140"target="_self">11:21am</a>onfebruary28[<ahref="/favorited/4/4774140"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774143"></a><divclass="comments"id="c4774143">oh,duh:"nuclearwar(onthedancefloor),"theelectricsix<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/216027"target="_self">thephlegmaticking</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774143"target="_self">11:26am</a>onfebruary28[<ahref="/favorited/4/4774143"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774145"></a><divclass="comments"id="c4774145">bigdipper\'s<ahref="https://www.youtube.com/watch?v=xpewheslpmi">allgoingouttogether</a>isgreat.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/25798"target="_self">johngoren</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774145"target="_self">11:26am</a>onfebruary28</span></div><br><br><aname="4774149"></a><divclass="comments"id="c4774149">there\'safakednuclearattackduringthe"<ahref="https://www.youtube.com/watch?v=gjotkr6lpye">doitforourcountry</a>"numberin<ahref="https://www.yahoo.com/entertainment/the-five-most-ridiculous-musical-numbers-in-214615454.html">grease2</a>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/120964"target="_self">irisgambol</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774149"target="_self">11:31am</a>onfebruary28[<ahref="/favorited/4/4774149"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774152"></a><divclass="comments"id="c4774152">fishbone-<ahref="https://www.youtube.com/watch?v=vronib9gq-k">partyatgroundzero</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/60264"target="_self">robotvoodoopower</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774152"target="_self">11:33am</a>onfebruary28[<ahref="/favorited/4/4774152"style="font-weight:normal;"title="9usersmarkedthisasfavorite">9favorites</a>]</span></div><br><br><aname="4774154"></a><divclass="comments"id="c4774154">thelastverseofnewmodelarmy\'s"<ahref="https://www.youtube.com/watch?v=mrt2n5qymmc">ilovetheworld</a>"contemplatesaworld-endingeventi\'vealwaysunderstoodtobenucleardestruction.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/275001"target="_self">20yearlurk</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774154"target="_self">11:36am</a>onfebruary28</span></div><br><br><aname="4774156"></a><divclass="comments"id="c4774156">i\'veneverinterpreted"meltwithyou"asbeingaboutanuclearattack.ijustfigureditwasabouthavingsex.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/14450"target="_self">sarcasticah</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774156"target="_self">11:37am</a>onfebruary28[<ahref="/favorited/4/4774156"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774157"></a><divclass="comments"id="c4774157"><ahref="https://youtu.be/aawu-kpl5p8">morningdew</a>,bonniedobson<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/103998"target="_self">eviemath</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774157"target="_self">11:40am</a>onfebruary28</span></div><br><br><aname="4774159"></a><divclass="comments"id="c4774159"><ahref="https://www.youtube.com/watch?v=0rkc7elktuq">wewillbecomesilhouettes</a>bydeathcabforcutie.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/189341"target="_self">peppercorn</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774159"target="_self">11:43am</a>onfebruary28[<ahref="/favorited/4/4774159"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774160"></a><divclass="comments"id="c4774160">livingthroughanothercuba–xtc<br>bombers–davidbowie<br>comeandstandateverydoor-byrds<br>mushroom–can<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/56724"target="_self">mr.remy</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774160"target="_self">11:43am</a>onfebruary28[<ahref="/favorited/4/4774160"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774163"></a><divclass="comments"id="c4774163"><ahref="https://www.youtube.com/watch?v=hi5q3gq6uhi">jesushitsliketheatombomb</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/275001"target="_self">20yearlurk</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774163"target="_self">11:46am</a>onfebruary28[<ahref="/favorited/4/4774163"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774164"></a><divclass="comments"id="c4774164"><ahref="https://www.youtube.com/watch?v=4lrdg4wznwk">cassiopeia</a>-karinepolwart.<br><ahref="https://www.youtube.com/watch?v=2hkjhapgkqw">stopthecavalry</a>-jonahlewie.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/190231"target="_self">rhamphorhynchus</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774164"target="_self">11:46am</a>onfebruary28</span></div><br><br><aname="4774178"></a><divclass="comments"id="c4774178">"solongandthanksforallthefish"byaperfectcircleseemstobeabouttheeveofatomicdestruction:<br><br><em>allthedolphinshavemovedon<br>signalingthefinalcurtaincallinallitsatomicpageantry</em><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/138139"target="_self">sunburnt</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774178"target="_self">11:55am</a>onfebruary28[<ahref="/favorited/4/4774178"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774198"></a><divclass="comments"id="c4774198">icameintosuggestthesongdapatialreadymentioned.<br><small>ohmarie,there\'ssomethingtellsmethingsjustwon\'tworkoutabove<br>thatourlovewouldliveahalf-lifeonthesurface<br>soatnightwhileyouaresleeping,iholdyoucloserjustbecause<br>asourtimegrowsshort,igetalittlenervous<br><br>oh,ithinkaboutthebigone,wwiii<br>wouldweeverreallycaretheworldhadended?<br>youcouldholdmehereforeverlikeyou\'reholdingmetonight<br>ithinkaboutthatbigredbuttonandi\'mtempted</small><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/16956"target="_self">emelenjr</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774198"target="_self">12:17pm</a>onfebruary28[<ahref="/favorited/4/4774198"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774204"></a><divclass="comments"id="c4774204"><ahref="https://www.youtube.com/watch?v=ai6plftgoim">shadesof45</a>,bygaryo.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/62109"target="_self">hanov3r</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774204"target="_self">12:20pm</a>onfebruary28</span></div><br><br><aname="4774211"></a><divclass="comments"id="c4774211"><ahref="https://www.youtube.com/watch?v=g9xb7usnspo">thegreatatomicpowerbythelouvinbrothers</a>isabout<em>whatwillhappen</em>inthenuclearapocalypseratherthanbeingdirectlysetinit,butitisamazingandyoumustlistentoit.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/55318"target="_self">showbiz_liz</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774211"target="_self">12:27pm</a>onfebruary28[<ahref="/favorited/4/4774211"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774220"></a><divclass="comments"id="c4774220"><ahref="https://www.youtube.com/watch?v=-fysfvqoapu">thesunisburning</a>,simon&garfunkel<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/12409"target="_self">devilsadvocate</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774220"target="_self">12:38pm</a>onfebruary28</span></div><br><br><aname="4774236"></a><divclass="comments"id="c4774236"><ahref="https://www.youtube.com/watch?v=ahzhiqa6-aw">atomicgardenbybadreligion</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/224846"target="_self">evilmonk</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774236"target="_self">12:58pm</a>onfebruary28[<ahref="/favorited/4/4774236"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774237"></a><divclass="comments"id="c4774237"><ahref="https://www.youtube.com/watch?v=rblt2etffc4">1999</a>byprince!<br><br><small>"iwasdreamin\'wheniwrotethis,forgivemeifitgoesastray<br>butwheniwokeupthismornin\',could\'veswornitwasjudgmentday<br>theskywasallpurple,therewerepeoplerunnin\'everywhere<br>tryin\'torunfromthedestruction,youknowididn\'tevencare<br><br>saysaytwothousandzerozeropartyover,oops,outoftime<br>sotonighti\'mgonnapartylikeit\'snineteenninety-nine<br><br>iwasdreamin\'wheniwrotethis,sosuemeifigotoofast<br>butlifeisjustapartyandpartiesweren\'tmeanttolast<br>warisallaroundus,mymindsayspreparetofight<br>soifigottadiei\'mgonnalistentomybodytonight"</small><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/93447"target="_self">castlebravo</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774237"target="_self">1:00pm</a>onfebruary28[<ahref="/favorited/4/4774237"style="font-weight:normal;"title="6usersmarkedthisasfavorite">6favorites</a>]</span></div><br><br><aname="4774245"></a><divclass="comments"id="c4774245">blacksabbath:"electricfuneral"<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/197589"target="_self">andrewindc</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774245"target="_self">1:13pm</a>onfebruary28[<ahref="/favorited/4/4774245"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774261"></a><divclass="comments"id="c4774261"><ahref="https://www.discogs.com/various-atomic-platters-cold-war-music-from-the-golden-age-of-homeland-security/release/11515820">atomicplatters:coldwarmusicfromthegoldenageofhomelandsecurity</a>mayberelevanttoyourinterests.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17573"target="_self">box</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774261"target="_self">1:29pm</a>onfebruary28[<ahref="/favorited/4/4774261"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774269"></a><divclass="comments"id="c4774269"><ahref="https://www.youtube.com/watch?v=vb7htojak7g">herecomestheflood</a>,petergabriel<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/134219"target="_self">prizebulloctorok</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774269"target="_self">1:44pm</a>onfebruary28</span></div><br><br><aname="4774273"></a><divclass="comments"id="c4774273">the<ahref="https://m.youtube.com/watch?v=xhfpuh5ieww">annihilationmix</a>of<em>twotribes</em>byfrankiegoestohollywoodconjuresuptheapocalypseprettyeffectively.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/101497"target="_self">handfulofdust</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774273"target="_self">1:50pm</a>onfebruary28[<ahref="/favorited/4/4774273"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774291"></a><divclass="comments"id="c4774291">manysuggestionson<ahref="http://www.files.mlww.net/nuclear-songs.html">thispage</a>and<ahref="http://inthe00s.com/archive/inthe80s/smf/1235945010.shtml">thisone</a>(itwasapopularsongtopicinthe80sforsure).<br><br>twoofmyfavoritesfromthatera:anneclark\'s<ahref="https://open.spotify.com/track/6hh2qjpzumi8tgwcvtrx9t?si=hks-8e--qowtjwvudorasa">poemforanuclearromance</a>(whichwasthefirstsongithoughtof)andsiguesiguesputnik,<ahref="https://open.spotify.com/track/0mbpdcirbu6drrzn8ypvrm?si=lxflczoiqas1kao5w2vziq">massiveretaliation</a>.<br><br>slightlymorecurrent:thepostalservice,<ahref="https://open.spotify.com/track/73pzetzdf4kvi2s2s2bdh2?si=hhokzlnjtzu_exspz_sgig">wewillbecomesilhouettes</a>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/1461"target="_self">acridrabbit</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774291"target="_self">2:10pm</a>onfebruary28[<ahref="/favorited/4/4774291"style="font-weight:normal;"title="5usersmarkedthisasfavorite">5favorites</a>]</span></div><br><br><aname="4774301"></a><divclass="comments"id="c4774301"><ahref="https://www.youtube.com/watch?v=cqnwg6gtx6e">radioactivemama</a>bysheldonallman.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/148919"target="_self">dsime</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774301"target="_self">2:29pm</a>onfebruary28</span></div><br><br><aname="4774334"></a><divclass="comments"id="c4774334">theescapeclub\'s<ahref="https://youtu.be/6ve5ewvxdfo">"wild,wildwest"</a>isaboutwaitingforthebombthat\'sjustabouttodrop.<br><br><small>("ronnie\'sgotanewgun"referstoreagan,forpeoplenotasancientasi)</small><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/174859"target="_self">theunderpantsmonster</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774334"target="_self">3:19pm</a>onfebruary28[<ahref="/favorited/4/4774334"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774341"></a><divclass="comments"id="c4774341">tearsforfears-everybodywantstoruletheworld<br><br>siouxieandthebanshees-citiesindust<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/98572"target="_self">mchelly</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774341"target="_self">3:27pm</a>onfebruary28[<ahref="/favorited/4/4774341"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774358"></a><divclass="comments"id="c4774358">anothersetshortlybeforeorinfearof:<ahref="https://johndavidmusic.co.uk/track/you-are-the-new-day">"youarethenewday"byjohndavid</a>.<br><br>"thoughtsthatweashumanssmall<br>couldslowworldsandenditall<br>liearoundmewheretheyfall<br>beforethenewday"<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/260102"target="_self">readinghippo</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774358"target="_self">3:57pm</a>onfebruary28</span></div><br><br><aname="4774385"></a><divclass="comments"id="c4774385">theentirekillingjokebackcatalog.<br><ahref="https://youtu.be/czqunehyzgq">einstein-a-go-go</a>bylandscape<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/4354"target="_self">thatwhichfalls</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774385"target="_self">4:31pm</a>onfebruary28</span></div><br><br><aname="4774387"></a><divclass="comments"id="c4774387"><ahref="https://m.youtube.com/watch?v=hxn9zkpx6cy">ahardrain\'sgonnafall</a>,bobdylan.<br><br>secondingthenotionthatmeltwithyouisaboutsexandwonderingaboutthedarkerinterpretation.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/153508"target="_self">she\'snotthere</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774387"target="_self">4:34pm</a>onfebruary28</span></div><br><br><aname="4774392"></a><divclass="comments"id="c4774392">i<em>think</em><ahref="https://www.youtube.com/watch?v=cu4xdsmbq28">star</a>byerasureis?<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/21704"target="_self">exceptinsects</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774392"target="_self">4:41pm</a>onfebruary28</span></div><br><br><aname="4774401"></a><divclass="comments"id="c4774401">tilthatmeltwithyouisabout<ahref="https://en.m.wikipedia.org/wiki/i_melt_with_you">acouplemakinglovewhileanatomicbombisdropped</a>.<br><br>i\'llbedamned.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/153508"target="_self">she\'snotthere</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774401"target="_self">4:50pm</a>onfebruary28</span></div><br><br><aname="4774415"></a><divclass="comments"id="c4774415"><ahref="https://m.youtube.com/watch?v=-m-l3wdceqg">sweetscorchedearth-eels</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/155675"target="_self">wheekwheekwheek</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774415"target="_self">5:09pm</a>onfebruary28</span></div><br><br><aname="4774424"></a><divclass="comments"id="c4774424">notliterallyduringthebombs.butwaltzingmatildawasthesadfinale,irecall,inonthebeach,whichtakesplacesoonaftertheconflagration.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/106267"target="_self">lonniek</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774424"target="_self">5:49pm</a>onfebruary28[<ahref="/favorited/4/4774424"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774425"></a><divclass="comments"id="c4774425">there\'sapersistentrumorthat"herecomesyourman"bythepixiesisaboutthebombingofnagasaki.blackfrancishasdeniedit,butthelyricsfit,mostlyduetothefactthattheb-29thatcarriedthebombwasnamed"bockscar".<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/228761"target="_self">kevinbelt</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774425"target="_self">5:52pm</a>onfebruary28</span></div><br><br><aname="4774427"></a><divclass="comments"id="c4774427">alsobyblacksabbath,warpigs...<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/75645"target="_self">redhush</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774427"target="_self">5:58pm</a>onfebruary28</span></div><br><br><aname="4774440"></a><divclass="comments"id="c4774440"><em>siouxieandthebanshees-citiesindust</em><br><br>thisone’sactuallyaboutpompeiibeingdestroyedinavolcaniceruption.greatsong.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/196797"target="_self">ejs</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774440"target="_self">6:17pm</a>onfebruary28[<ahref="/favorited/4/4774440"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774446"></a><divclass="comments"id="c4774446">havingbeenterrified/obsessedbynuclearwarsincemycoldwarchildhood,icreatedthis<ahref="https://open.spotify.com/user/arizona.jedi/playlist/1b7fwxkrt9nwncraxoflyd?si=ktqh37b0ryarlglikznevg">spotifyplaylist</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/239823"target="_self">arizonajedi</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774446"target="_self">6:30pm</a>onfebruary28[<ahref="/favorited/4/4774446"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774480"></a><divclass="comments"id="c4774480">discharge-<ahref="https://vimeo.com/14417313">thepossibilityoflife\'sdestruction</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17447"target="_self">mwhybark</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774480"target="_self">7:48pm</a>onfebruary28</span></div><br><br><aname="4774482"></a><divclass="comments"id="c4774482"><ahref="https://youtu.be/d5xj2gir6bo">enolagay</a>,byorchestralmanoeuvresinthedark.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/197599"target="_self">terooot</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774482"target="_self">7:49pm</a>onfebruary28[<ahref="/favorited/4/4774482"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774491"></a><divclass="comments"id="c4774491">(conceptually,everysingletrackon<em><ahref="https://www.youtube.com/playlist?list=pl1g1-okh_imomn66qaim1mxn5d6c7knln">urgh:amusicwar</a></em>.loveseeingallthecitationsupthread)<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17447"target="_self">mwhybark</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774491"target="_self">8:14pm</a>onfebruary28</span></div><br><br><aname="4774500"></a><divclass="comments"id="c4774500">funkadelic\'s<ahref="https://www.youtube.com/watch?v=ddganzkdb4y">"warsofarmageddon"</a>endswithanatomicblastandthepunchline"lookatthatpollution!"<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17750"target="_self">hydrophonic</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774500"target="_self">8:47pm</a>onfebruary28[<ahref="/favorited/4/4774500"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774508"></a><divclass="comments"id="c4774508">"<ahref="https://youtu.be/t1tcdhrkqyg">foreveryoung</a>"byalphaville.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/274077"target="_self">allthelightwecannotsee</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774508"target="_self">9:30pm</a>' ]
statusCode: 200
[ '<aclass="jump-to-footer"href="#bottom-of-content"target="_self"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-down-arrow"><usexlink:href="#icon-down-arrow"></use></svg></a><!--logoandusertoolbar--><divclass="container"><divclass="logo"><ahref="/"target="_self"><h1><spanclass="white">ask</span><spanclass="green">metafilter</span></h1><spanclass="tagline">queryingthehivemind</span></a></div><divclass="mobile-menu-toggle"id="user-nav-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-user"><usexlink:href="#icon-user"></use></svg></div><navclass="user"role="menu"><divclass="fixed-menu-toggle"id="fixed-user-nav-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconuser"><usexlink:href="#icon-user"></use></svg></div><ul><liclass="log-out"><ahref="https://login.metafilter.com/"target="_self"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-log-out"><usexlink:href="#icon-log-out"></use></svg><spanclass="nav-label">login</span></a></li><liclass="sign-up"><ahref="//www.metafilter.com/newuser.mefi"target="_self"><svgxmlns="http://www.w3.org/2000/svg"class="iconuser"><usexlink:href="#icon-user"></use></svg><spanclass="nav-label">signup</span></a></li></ul></nav></div><divclass="mobile-menu-toggle"id="primary-nav-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-list"><usexlink:href="#icon-list"></use></svg></div><navclass="primary"><divclass="fixed-menu-toggle"id="fixed-header-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-close"><usexlink:href="#icon-close"></use></svg><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-two-lines"><usexlink:href="#icon-two-lines"></use></svg></div><divclass="container"><divclass="fixed-menu-toggle"id="fixed-primary-nav-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-list"><usexlink:href="#icon-list"></use></svg></div><ul><li><ahref="//www.metafilter.com"target="_self">metafilter</a></li><liclass="current"><ahref="//ask.metafilter.com"target="_self">askmefi</a></li><li><ahref="//fanfare.metafilter.com"target="_self">fanfare</a></li><li><ahref="//projects.metafilter.com"target="_self">projects</a></li><li><ahref="//music.metafilter.com"target="_self">music</a></li><li><ahref="//jobs.metafilter.com"target="_self">jobs</a></li><li><ahref="//irl.metafilter.com"target="_self">irl</a></li><li><ahref="//metatalk.metafilter.com"target="_self">metatalk</a></li><liclass="subnavmore-nav"><spanid="more-nav-toggle">more<svgxmlns="http://www.w3.org/2000/svg"class="iconicon-caret-down"><usexlink:href="#icon-caret-down"></use></svg></span><ul><li><ahref="//bestof.metafilter.com"target="_self">bestof</a></li><li><ahref="//podcast.metafilter.com"target="_self">podcast</a></li><li><ahref="//www.metafilter.com/chat/"target="_self">chat</a></li><li><ahref="//labs.metafilter.com/"target="_self">labs</a></li></ul></li></ul><divclass="search"><formclass="form-inline"action="/search.mefi"method="get"target="_self"><labelclass="sr-only"for="query">searchmetafilter…</label><inputname="site"value="ask"type="hidden"><inputclass="form-control"type="search"id="query"placeholder="search…"name="q"><buttonclass="btnbtn-defaultsubmit"type="submit"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-search-white"><usexlink:href="#icon-search-white"></use></svg></button></form></div></div></nav></div><!--secondarynavigation(sectionsofsubsite)--><navclass="secondary"><divclass="container"><divclass="fixed-menu-toggle"id="fixed-secondary-nav-toggle"><span>menu</span><svgxmlns="http://www.w3.org/2000/svg"class="iconcaret-down"><usexlink:href="#icon-caret-down"></use></svg></div><ul><li><ahref="/"target="_self">home</a></li><li><ahref="/faq.mefi"target="_self">faq</a></li><li><ahref="/about.mefi"target="_self">about</a></li><li><ahref="/archive.mefi"target="_self">archives</a></li><li><ahref="/tags"target="_self">tags</a></li><li><ahref="/popular.mefi"target="_self">popular</a></li><li><ahref="/random"target="_self">random</a></li></ul></div></nav></header><divclass="content"role="main"><divclass="container"><divclass="row"><aname="posts"></a><aclass="go-to-anchorgo-to-sidebar"href="#sidebar"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-go-to-bottom"><usexlink:href="#icon-go-to-bottom"></use></svg></a><divid="posts"><h1class="posttitle">songsthattakeplaceduringanuclearblast<br><spanclass="smallcopy">february28,2019<span>10:38am</span> <ahref="http://ask.metafilter.com/331739/songs-that-take-place-during-a-nuclear-blast/rss"><iclass="feedicon"></i></a><ahref="http://ask.metafilter.com/331739/songs-that-take-place-during-a-nuclear-blast/rss">subscribe</a></span></h1><divclass="copy">icancomeupwith"everydayislikesunday"(morrissey),"breathing"(katebush),and"imeltwithyou"(modernenglish).whatothersongstakeplaceduringanuclearbombing?<br><span></span><divclass="miseperator"><br>askingbecauseiheardthebowdlerized"imeltwithyou"bybowlingforsoupafterreading<ahref="https://ask.metafilter.com/331730/ska-covers-of-songs-that-are-not-ska">theskacoversthreadfromthismorning</a>("beingfriendswithyouwasneversecondbest")anddiscovereditwasbecausedisneyuseditforamoviein2005.greatpick,disney,asongaboutfuckingduringanuclearbombing!</div><spanclass="smallcopypostbyline">postedby<ahref="http://www.metafilter.com/user/47772"target="_self">fiercecupcake</a>to<ahref="/media-arts"target="_self">media&arts</a>(66answerstotal)<spanid="favcnt3331739"><ahref="http://ask.metafilter.com/favorited/3/331739"style="font-weight:normal;"target="_self">8usersmarkedthisasafavorite</a></span></span></div><divclass="copy"style="margin-right:0px;padding:0;margin-top:0px;margin-bottom:50px;max-width:730px;"><scriptasyncsrc="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!--askresponsive--><insclass="adsbygoogle"style="display:block"data-ad-client="ca-pub-8621957794194569"data-ad-slot="8281515025"data-ad-format="auto"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div><divstyle="clear:left;height:1px;"> </div><aname="4774093"></a><divclass="comments"id="c4774093"><ahref="https://www.youtube.com/watch?v=psqwuz8a2ho">dancingwithtearsinmyeyes</a>byultravoxismostlypre-blastbutsortofwrapsupattheblast.thereisablastinthevideo.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/292"target="_self">jessamyn</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774093"target="_self">10:41am</a>onfebruary28[<ahref="/favorited/4/4774093"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774095"></a><divclass="comments"id="c4774095">"twosunsinthesunset,"pinkfloyd<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/216027"target="_self">thephlegmaticking</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774095"target="_self">10:43am</a>onfebruary28[<ahref="/favorited/4/4774095"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774096"></a><divclass="comments"id="c4774096">pinkfloyd\'s"<ahref="https://www.youtube.com/watch?v=3tsz30nj2n4">twosunsinthesunset</a>."<br><br>idon\'tknowifanyofthesongsspecificallyreferencethis,butmymindalsowentstraighttomidnightoil\'s<em>redsailsinthesunset</em>,whichhascoverartofanuclearstrikeonsydneyharbour.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/24040"target="_self">jzb</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774096"target="_self">10:44am</a>onfebruary28</span></div><br><br><aname="4774098"></a><divclass="comments"id="c4774098">twofromtomlehrer:<br><ahref="https://www.youtube.com/watch?v=fraemhqdlfs">wewillallgotogetherwhenwego</a><br><ahref="https://www.youtube.com/watch?v=yrbv40enu_o">solong,mom</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/1951"target="_self">briank</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774098"target="_self">10:47am</a>onfebruary28[<ahref="/favorited/4/4774098"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774100"></a><divclass="comments"id="c4774100">iguessarguably"whenivanmeetsg.i.joe"bytheclash,althoughit\'snot*quite*asdirect<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/216027"target="_self">thephlegmaticking</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774100"target="_self">10:49am</a>onfebruary28[<ahref="/favorited/4/4774100"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774101"></a><divclass="comments"id="c4774101">moxyfruvous,<ahref="https://www.youtube.com/watch?v=wcf1vxjazmg">"thedrinkingsong"</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/189190"target="_self">bileandsyntax</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774101"target="_self">10:52am</a>onfebruary28[<ahref="/favorited/4/4774101"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774104"></a><divclass="comments"id="c4774104">whataboutthedecemberists\'<ahref="https://www.youtube.com/watch?v=xjpfk7l404i">calamitysong</a>?ithaslyricsabouttheendoftheworld,andthemusicvideoisatennisgamesimulationofglobalthermonuclearwarfrom<em>infinitejest</em>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/18528"target="_self">beandip</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774104"target="_self">10:56am</a>onfebruary28[<ahref="/favorited/4/4774104"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774108"></a><divclass="comments"id="c4774108">timbuk3\'s"<ahref="https://www.youtube.com/watch?v=8qrrikcwvly">thefuture\'ssobright,igottawearshades</a>,"atleastasiinterpretit.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/32795"target="_self">thecorpseinthelibrary</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774108"target="_self">10:57am</a>onfebruary28[<ahref="/favorited/4/4774108"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774112"></a><divclass="comments"id="c4774112">weirdalyankovic,<ahref="https://www.youtube.com/watch?v=t039p6xqutu">christmasatgroundzero</a>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/132869"target="_self">doctornecessiter</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774112"target="_self">11:01am</a>onfebruary28[<ahref="/favorited/4/4774112"style="font-weight:normal;"title="7usersmarkedthisasfavorite">7favorites</a>]</span></div><br><br><aname="4774114"></a><divclass="comments"id="c4774114"><ahref="https://www.youtube.com/watch?v=15ygdrhrcm8">"we\'llmeetagain"</a>asusedinthefilmdr.strangelove.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/7961"target="_self">beagle</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774114"target="_self">11:01am</a>onfebruary28[<ahref="/favorited/4/4774114"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774120"></a><divclass="comments"id="c4774120"><ahref="https://youtu.be/iyc0rxysqd0">bowie,"bombers"</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/268866"target="_self">gendernullpointerexception</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774120"target="_self">11:05am</a>onfebruary28</span></div><br><br><aname="4774124"></a><divclass="comments"id="c4774124">nena\'s"99luftballons."<br><br>ireallyquestionthistheorythat"imeltwithyou"isaboutanuclearattack--idon\'tknowwhereitcomesfrombutlet\'sjustsaythatthelyricsaren\'tverystronglydeterminedinthatdirection.<br><br>(alsotechnicallyithink"sunday"isset<em>after</em>anuclearattack.)<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/235772"target="_self">praemunire</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774124"target="_self">11:10am</a>onfebruary28[<ahref="/favorited/4/4774124"style="font-weight:normal;"title="9usersmarkedthisasfavorite">9favorites</a>]</span></div><br><br><aname="4774129"></a><divclass="comments"id="c4774129"><ahref="https://www.youtube.com/watch?v=o69l2mo9y-4">woodenships</a>bycrosby,stills&nash<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/143406"target="_self">wellred</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774129"target="_self">11:14am</a>onfebruary28</span></div><br><br><aname="4774136"></a><divclass="comments"id="c4774136">joshritter\'s<ahref="https://www.youtube.com/watch?v=fh9mhoviy9g&frags=pl%2cwn">"thetemptationofadam"</a>takesplaceinthemomentsbeforeahypotheticalnuclearblastandisareallyprettysong.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/265688"target="_self">dapati</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774136"target="_self">11:17am</a>onfebruary28[<ahref="/favorited/4/4774136"style="font-weight:normal;"title="9usersmarkedthisasfavorite">9favorites</a>]</span></div><br><br><aname="4774139"></a><divclass="comments"id="c4774139">klausnomi"totaleclipse"<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/198268"target="_self">noxperpetua</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774139"target="_self">11:21am</a>onfebruary28[<ahref="/favorited/4/4774139"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774140"></a><divclass="comments"id="c4774140">tomlehrer\'s<em><ahref="https://www.youtube.com/watch?v=4ky0rotsd14">solongmom,i\'mofftodropthebomb</a></em>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/24315"target="_self">ubiquity</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774140"target="_self">11:21am</a>onfebruary28[<ahref="/favorited/4/4774140"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774143"></a><divclass="comments"id="c4774143">oh,duh:"nuclearwar(onthedancefloor),"theelectricsix<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/216027"target="_self">thephlegmaticking</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774143"target="_self">11:26am</a>onfebruary28[<ahref="/favorited/4/4774143"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774145"></a><divclass="comments"id="c4774145">bigdipper\'s<ahref="https://www.youtube.com/watch?v=xpewheslpmi">allgoingouttogether</a>isgreat.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/25798"target="_self">johngoren</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774145"target="_self">11:26am</a>onfebruary28</span></div><br><br><aname="4774149"></a><divclass="comments"id="c4774149">there\'safakednuclearattackduringthe"<ahref="https://www.youtube.com/watch?v=gjotkr6lpye">doitforourcountry</a>"numberin<ahref="https://www.yahoo.com/entertainment/the-five-most-ridiculous-musical-numbers-in-214615454.html">grease2</a>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/120964"target="_self">irisgambol</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774149"target="_self">11:31am</a>onfebruary28[<ahref="/favorited/4/4774149"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774152"></a><divclass="comments"id="c4774152">fishbone-<ahref="https://www.youtube.com/watch?v=vronib9gq-k">partyatgroundzero</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/60264"target="_self">robotvoodoopower</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774152"target="_self">11:33am</a>onfebruary28[<ahref="/favorited/4/4774152"style="font-weight:normal;"title="9usersmarkedthisasfavorite">9favorites</a>]</span></div><br><br><aname="4774154"></a><divclass="comments"id="c4774154">thelastverseofnewmodelarmy\'s"<ahref="https://www.youtube.com/watch?v=mrt2n5qymmc">ilovetheworld</a>"contemplatesaworld-endingeventi\'vealwaysunderstoodtobenucleardestruction.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/275001"target="_self">20yearlurk</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774154"target="_self">11:36am</a>onfebruary28</span></div><br><br><aname="4774156"></a><divclass="comments"id="c4774156">i\'veneverinterpreted"meltwithyou"asbeingaboutanuclearattack.ijustfigureditwasabouthavingsex.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/14450"target="_self">sarcasticah</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774156"target="_self">11:37am</a>onfebruary28[<ahref="/favorited/4/4774156"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774157"></a><divclass="comments"id="c4774157"><ahref="https://youtu.be/aawu-kpl5p8">morningdew</a>,bonniedobson<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/103998"target="_self">eviemath</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774157"target="_self">11:40am</a>onfebruary28</span></div><br><br><aname="4774159"></a><divclass="comments"id="c4774159"><ahref="https://www.youtube.com/watch?v=0rkc7elktuq">wewillbecomesilhouettes</a>bydeathcabforcutie.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/189341"target="_self">peppercorn</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774159"target="_self">11:43am</a>onfebruary28[<ahref="/favorited/4/4774159"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774160"></a><divclass="comments"id="c4774160">livingthroughanothercuba–xtc<br>bombers–davidbowie<br>comeandstandateverydoor-byrds<br>mushroom–can<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/56724"target="_self">mr.remy</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774160"target="_self">11:43am</a>onfebruary28[<ahref="/favorited/4/4774160"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774163"></a><divclass="comments"id="c4774163"><ahref="https://www.youtube.com/watch?v=hi5q3gq6uhi">jesushitsliketheatombomb</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/275001"target="_self">20yearlurk</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774163"target="_self">11:46am</a>onfebruary28[<ahref="/favorited/4/4774163"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774164"></a><divclass="comments"id="c4774164"><ahref="https://www.youtube.com/watch?v=4lrdg4wznwk">cassiopeia</a>-karinepolwart.<br><ahref="https://www.youtube.com/watch?v=2hkjhapgkqw">stopthecavalry</a>-jonahlewie.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/190231"target="_self">rhamphorhynchus</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774164"target="_self">11:46am</a>onfebruary28</span></div><br><br><aname="4774178"></a><divclass="comments"id="c4774178">"solongandthanksforallthefish"byaperfectcircleseemstobeabouttheeveofatomicdestruction:<br><br><em>allthedolphinshavemovedon<br>signalingthefinalcurtaincallinallitsatomicpageantry</em><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/138139"target="_self">sunburnt</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774178"target="_self">11:55am</a>onfebruary28[<ahref="/favorited/4/4774178"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774198"></a><divclass="comments"id="c4774198">icameintosuggestthesongdapatialreadymentioned.<br><small>ohmarie,there\'ssomethingtellsmethingsjustwon\'tworkoutabove<br>thatourlovewouldliveahalf-lifeonthesurface<br>soatnightwhileyouaresleeping,iholdyoucloserjustbecause<br>asourtimegrowsshort,igetalittlenervous<br><br>oh,ithinkaboutthebigone,wwiii<br>wouldweeverreallycaretheworldhadended?<br>youcouldholdmehereforeverlikeyou\'reholdingmetonight<br>ithinkaboutthatbigredbuttonandi\'mtempted</small><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/16956"target="_self">emelenjr</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774198"target="_self">12:17pm</a>onfebruary28[<ahref="/favorited/4/4774198"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774204"></a><divclass="comments"id="c4774204"><ahref="https://www.youtube.com/watch?v=ai6plftgoim">shadesof45</a>,bygaryo.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/62109"target="_self">hanov3r</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774204"target="_self">12:20pm</a>onfebruary28</span></div><br><br><aname="4774211"></a><divclass="comments"id="c4774211"><ahref="https://www.youtube.com/watch?v=g9xb7usnspo">thegreatatomicpowerbythelouvinbrothers</a>isabout<em>whatwillhappen</em>inthenuclearapocalypseratherthanbeingdirectlysetinit,butitisamazingandyoumustlistentoit.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/55318"target="_self">showbiz_liz</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774211"target="_self">12:27pm</a>onfebruary28[<ahref="/favorited/4/4774211"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774220"></a><divclass="comments"id="c4774220"><ahref="https://www.youtube.com/watch?v=-fysfvqoapu">thesunisburning</a>,simon&garfunkel<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/12409"target="_self">devilsadvocate</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774220"target="_self">12:38pm</a>onfebruary28</span></div><br><br><aname="4774236"></a><divclass="comments"id="c4774236"><ahref="https://www.youtube.com/watch?v=ahzhiqa6-aw">atomicgardenbybadreligion</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/224846"target="_self">evilmonk</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774236"target="_self">12:58pm</a>onfebruary28[<ahref="/favorited/4/4774236"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774237"></a><divclass="comments"id="c4774237"><ahref="https://www.youtube.com/watch?v=rblt2etffc4">1999</a>byprince!<br><br><small>"iwasdreamin\'wheniwrotethis,forgivemeifitgoesastray<br>butwheniwokeupthismornin\',could\'veswornitwasjudgmentday<br>theskywasallpurple,therewerepeoplerunnin\'everywhere<br>tryin\'torunfromthedestruction,youknowididn\'tevencare<br><br>saysaytwothousandzerozeropartyover,oops,outoftime<br>sotonighti\'mgonnapartylikeit\'snineteenninety-nine<br><br>iwasdreamin\'wheniwrotethis,sosuemeifigotoofast<br>butlifeisjustapartyandpartiesweren\'tmeanttolast<br>warisallaroundus,mymindsayspreparetofight<br>soifigottadiei\'mgonnalistentomybodytonight"</small><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/93447"target="_self">castlebravo</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774237"target="_self">1:00pm</a>onfebruary28[<ahref="/favorited/4/4774237"style="font-weight:normal;"title="6usersmarkedthisasfavorite">6favorites</a>]</span></div><br><br><aname="4774245"></a><divclass="comments"id="c4774245">blacksabbath:"electricfuneral"<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/197589"target="_self">andrewindc</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774245"target="_self">1:13pm</a>onfebruary28[<ahref="/favorited/4/4774245"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774261"></a><divclass="comments"id="c4774261"><ahref="https://www.discogs.com/various-atomic-platters-cold-war-music-from-the-golden-age-of-homeland-security/release/11515820">atomicplatters:coldwarmusicfromthegoldenageofhomelandsecurity</a>mayberelevanttoyourinterests.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17573"target="_self">box</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774261"target="_self">1:29pm</a>onfebruary28[<ahref="/favorited/4/4774261"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774269"></a><divclass="comments"id="c4774269"><ahref="https://www.youtube.com/watch?v=vb7htojak7g">herecomestheflood</a>,petergabriel<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/134219"target="_self">prizebulloctorok</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774269"target="_self">1:44pm</a>onfebruary28</span></div><br><br><aname="4774273"></a><divclass="comments"id="c4774273">the<ahref="https://m.youtube.com/watch?v=xhfpuh5ieww">annihilationmix</a>of<em>twotribes</em>byfrankiegoestohollywoodconjuresuptheapocalypseprettyeffectively.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/101497"target="_self">handfulofdust</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774273"target="_self">1:50pm</a>onfebruary28[<ahref="/favorited/4/4774273"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774291"></a><divclass="comments"id="c4774291">manysuggestionson<ahref="http://www.files.mlww.net/nuclear-songs.html">thispage</a>and<ahref="http://inthe00s.com/archive/inthe80s/smf/1235945010.shtml">thisone</a>(itwasapopularsongtopicinthe80sforsure).<br><br>twoofmyfavoritesfromthatera:anneclark\'s<ahref="https://open.spotify.com/track/6hh2qjpzumi8tgwcvtrx9t?si=hks-8e--qowtjwvudorasa">poemforanuclearromance</a>(whichwasthefirstsongithoughtof)andsiguesiguesputnik,<ahref="https://open.spotify.com/track/0mbpdcirbu6drrzn8ypvrm?si=lxflczoiqas1kao5w2vziq">massiveretaliation</a>.<br><br>slightlymorecurrent:thepostalservice,<ahref="https://open.spotify.com/track/73pzetzdf4kvi2s2s2bdh2?si=hhokzlnjtzu_exspz_sgig">wewillbecomesilhouettes</a>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/1461"target="_self">acridrabbit</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774291"target="_self">2:10pm</a>onfebruary28[<ahref="/favorited/4/4774291"style="font-weight:normal;"title="5usersmarkedthisasfavorite">5favorites</a>]</span></div><br><br><aname="4774301"></a><divclass="comments"id="c4774301"><ahref="https://www.youtube.com/watch?v=cqnwg6gtx6e">radioactivemama</a>bysheldonallman.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/148919"target="_self">dsime</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774301"target="_self">2:29pm</a>onfebruary28</span></div><br><br><aname="4774334"></a><divclass="comments"id="c4774334">theescapeclub\'s<ahref="https://youtu.be/6ve5ewvxdfo">"wild,wildwest"</a>isaboutwaitingforthebombthat\'sjustabouttodrop.<br><br><small>("ronnie\'sgotanewgun"referstoreagan,forpeoplenotasancientasi)</small><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/174859"target="_self">theunderpantsmonster</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774334"target="_self">3:19pm</a>onfebruary28[<ahref="/favorited/4/4774334"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774341"></a><divclass="comments"id="c4774341">tearsforfears-everybodywantstoruletheworld<br><br>siouxieandthebanshees-citiesindust<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/98572"target="_self">mchelly</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774341"target="_self">3:27pm</a>onfebruary28[<ahref="/favorited/4/4774341"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774358"></a><divclass="comments"id="c4774358">anothersetshortlybeforeorinfearof:<ahref="https://johndavidmusic.co.uk/track/you-are-the-new-day">"youarethenewday"byjohndavid</a>.<br><br>"thoughtsthatweashumanssmall<br>couldslowworldsandenditall<br>liearoundmewheretheyfall<br>beforethenewday"<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/260102"target="_self">readinghippo</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774358"target="_self">3:57pm</a>onfebruary28</span></div><br><br><aname="4774385"></a><divclass="comments"id="c4774385">theentirekillingjokebackcatalog.<br><ahref="https://youtu.be/czqunehyzgq">einstein-a-go-go</a>bylandscape<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/4354"target="_self">thatwhichfalls</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774385"target="_self">4:31pm</a>onfebruary28</span></div><br><br><aname="4774387"></a><divclass="comments"id="c4774387"><ahref="https://m.youtube.com/watch?v=hxn9zkpx6cy">ahardrain\'sgonnafall</a>,bobdylan.<br><br>secondingthenotionthatmeltwithyouisaboutsexandwonderingaboutthedarkerinterpretation.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/153508"target="_self">she\'snotthere</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774387"target="_self">4:34pm</a>onfebruary28</span></div><br><br><aname="4774392"></a><divclass="comments"id="c4774392">i<em>think</em><ahref="https://www.youtube.com/watch?v=cu4xdsmbq28">star</a>byerasureis?<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/21704"target="_self">exceptinsects</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774392"target="_self">4:41pm</a>onfebruary28</span></div><br><br><aname="4774401"></a><divclass="comments"id="c4774401">tilthatmeltwithyouisabout<ahref="https://en.m.wikipedia.org/wiki/i_melt_with_you">acouplemakinglovewhileanatomicbombisdropped</a>.<br><br>i\'llbedamned.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/153508"target="_self">she\'snotthere</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774401"target="_self">4:50pm</a>onfebruary28</span></div><br><br><aname="4774415"></a><divclass="comments"id="c4774415"><ahref="https://m.youtube.com/watch?v=-m-l3wdceqg">sweetscorchedearth-eels</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/155675"target="_self">wheekwheekwheek</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774415"target="_self">5:09pm</a>onfebruary28</span></div><br><br><aname="4774424"></a><divclass="comments"id="c4774424">notliterallyduringthebombs.butwaltzingmatildawasthesadfinale,irecall,inonthebeach,whichtakesplacesoonaftertheconflagration.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/106267"target="_self">lonniek</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774424"target="_self">5:49pm</a>onfebruary28[<ahref="/favorited/4/4774424"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774425"></a><divclass="comments"id="c4774425">there\'sapersistentrumorthat"herecomesyourman"bythepixiesisaboutthebombingofnagasaki.blackfrancishasdeniedit,butthelyricsfit,mostlyduetothefactthattheb-29thatcarriedthebombwasnamed"bockscar".<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/228761"target="_self">kevinbelt</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774425"target="_self">5:52pm</a>onfebruary28</span></div><br><br><aname="4774427"></a><divclass="comments"id="c4774427">alsobyblacksabbath,warpigs...<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/75645"target="_self">redhush</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774427"target="_self">5:58pm</a>onfebruary28</span></div><br><br><aname="4774440"></a><divclass="comments"id="c4774440"><em>siouxieandthebanshees-citiesindust</em><br><br>thisone’sactuallyaboutpompeiibeingdestroyedinavolcaniceruption.greatsong.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/196797"target="_self">ejs</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774440"target="_self">6:17pm</a>onfebruary28[<ahref="/favorited/4/4774440"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774446"></a><divclass="comments"id="c4774446">havingbeenterrified/obsessedbynuclearwarsincemycoldwarchildhood,icreatedthis<ahref="https://open.spotify.com/user/arizona.jedi/playlist/1b7fwxkrt9nwncraxoflyd?si=ktqh37b0ryarlglikznevg">spotifyplaylist</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/239823"target="_self">arizonajedi</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774446"target="_self">6:30pm</a>onfebruary28[<ahref="/favorited/4/4774446"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774480"></a><divclass="comments"id="c4774480">discharge-<ahref="https://vimeo.com/14417313">thepossibilityoflife\'sdestruction</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17447"target="_self">mwhybark</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774480"target="_self">7:48pm</a>onfebruary28</span></div><br><br><aname="4774482"></a><divclass="comments"id="c4774482"><ahref="https://youtu.be/d5xj2gir6bo">enolagay</a>,byorchestralmanoeuvresinthedark.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/197599"target="_self">terooot</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774482"target="_self">7:49pm</a>onfebruary28[<ahref="/favorited/4/4774482"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774491"></a><divclass="comments"id="c4774491">(conceptually,everysingletrackon<em><ahref="https://www.youtube.com/playlist?list=pl1g1-okh_imomn66qaim1mxn5d6c7knln">urgh:amusicwar</a></em>.loveseeingallthecitationsupthread)<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17447"target="_self">mwhybark</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774491"target="_self">8:14pm</a>onfebruary28</span></div><br><br><aname="4774500"></a><divclass="comments"id="c4774500">funkadelic\'s<ahref="https://www.youtube.com/watch?v=ddganzkdb4y">"warsofarmageddon"</a>endswithanatomicblastandthepunchline"lookatthatpollution!"<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17750"target="_self">hydrophonic</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774500"target="_self">8:47pm</a>onfebruary28[<ahref="/favorited/4/4774500"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774508"></a><divclass="comments"id="c4774508">"<ahref="https://youtu.be/t1tcdhrkqyg">foreveryoung</a>"byalphaville.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/274077"target="_self">allthelightwecannotsee</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774508"target="_self">9:30pm</a>onfebruary28[<ahref="/favorited/4/4774508"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774509"></a><divclass="comments"id="c4774509"><ahref="https://www.youtube.com/watch?v=vtotpisl700">radiohead-"fourminutewarning"</a>(ab-sidefromtheir2007albuminrainbows,namedafter<ahref="https://en.wikipedia.org/wiki/four-minute_warning">thebritishalertsystem</a>forsovietnuclearattacks)<blockquote>runningfromthebombers<br>hidingintheforest<br>runningthroughthefields<br>layingflatontheground<br>justlikeeverybody<br>steppingoverhills<br>runningfromtheunderground<br>thisisyourwarning<br>4minutewarning</blockquote><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/62135"target="_self">rhaomi</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774509"target="_self">9:30pm</a>onfebruary28</span></div><br><br><aname="4774530"></a><divclass="comments"id="c4774530"><ahref="https://www.youtube.com/watch?v=lsprinajncu">it\'samotherfucker<br>don\'tyouknow<br>iftheypushthatbutton<br>yourassgottogo<br>andwhatyougonnado<br>withoutyourass?</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/12686"target="_self">aws17576</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774530"target="_self">11:12pm</a>onfebruary28[<ahref="/favorited/4/4774530"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774559"></a><divclass="comments"id="c4774559"><ahref="https://m.youtube.com/watch?v=tf3vlcgjn-0">8.5minutes</a>bythedplan<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/138442"target="_self">ohkay</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774559"target="_self">3:33am</a>onmarch1</span></div><br><br><aname="4774633"></a><divclass="comments"id="c4774633"><ahref="https://youtu.be/j2gstnflhpm">famouslastwords</a>bytearsforfears<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/61324"target="_self">prinado</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774633"target="_self">7:48am</a>onmarch1</span></div><br><br><aname="4774881"></a><divclass="comments"id="c4774881"><ahref="https://www.youtube.com/watch?v=i_iqlrxyixu">aflockofseagulls-manmade</a><br><ahref="https://www.youtube.com/watch?v=zsfdeogszkq">wah!-sevenminutestomidnight</a><br><ahref="https://www.discogs.com/release/544351">untiltheendoftheworld(soundtrack)</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/48786"target="_self">webbster</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774881"target="_self">5:35pm</a>onmarch1</span></div><br><br><aname="4774987"></a><divclass="comments"id="c4774987"><ahref="https://www.youtube.com/watch?v=_ns3nihakk4">"fourminutes",rogerwaters</a>.solehasnoeyes!<br><br>myfirstthoughtwhenireadyourquestionwas"thisiseverysongweplayedinthe80s."gladtoseethatimpressionholdsup.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/117443"target="_self">harveykilobit</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774987"target="_self">3:49am</a>onmarch2[<ahref="/favorited/4/4774987"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4777497"></a><divclass="comments"id="c4777497"><ahref="https://www.youtube.com/user/civildefensespot">civildefensespot</a>(yt)mightbeupyouralley.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/18811"target="_self">monkeytoes</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4777497"target="_self">3:29pm</a>onmarch7</span></div><br><br><aname="4778158"></a><divclass="comments"id="c4778158">billhaleyandhiscomets-<ahref="https://www.youtube.com/watch?v=hosgeeswmqq">thirteenwomen</a><br><em>lastnightiwasdreaming,<br>dreamedabouttheh-bomb,<br>well,thebombwentoff,<br>andiwascaught,<br>iwastheonlymanunderground.</em><br><br>annmargaretdidherownversion,<ahref="https://www.youtube.com/watch?v=iiodui6l4iy">thirteenmen</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17750"target="_self">hydrophonic</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4778158"target="_self">7:26am</a>onmarch9</span></div><br><br><divclass="comments"><spanclass="whitesmallcopy"style="font-size:11px;"><ahref="/331738/looking-for-a-queer-friendly-therapist-in-seattle"target="_self">«older</a>lookingforaqueer-friendlytherapistinseattle | judgejudy<ahref="/331740/judge-judy"target="_self">newer»</a></span></div><divclass="comments"style="margin-top:30px;margin-bottom:20px;"><divstyle="max-width:735px;"><scriptasyncsrc="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!--askresponsive--><insclass="adsbygoogle"style="display:block"data-ad-client="ca-pub-8621957794194569"data-ad-slot="8281515025"data-ad-format="auto"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div></div><pclass="comments"style="clear:both;padding-top:50px">youarenotloggedin,either<ahref="http://www.metafilter.com/login/"target="_self">login</a>or<ahref="http://www.metafilter.com/newuser.mefi"target="_self">createanaccount</a>topostcomments</p><br><br><divid="related"class="recentlydarkercopy"><divstyle="margin-bottom:4px;">relatedquestions</div><ahref="http://ask.metafilter.com/248163/this-is-not-a-drill-i-repeat-this-is-not-a-drill"style="font-weight:normal;">thisisnotadrill,irepeat,thisisnotadrill.</a><spanclass="smallcopy">september9,2013</span><br><ahref="http://ask.metafilter.com/235454/how-many-people-alive-today-have-lived-through-war-at-home"style="font-weight:normal;">howmanypeoplealivetodayhavelivedthroughwar...</a><spanclass="smallcopy">february17,2013</span><br><ahref="http://ask.metafilter.com/229354/is-it-safe-to-visit-beirut-right-now"style="font-weight:normal;">isitsafetovisitbeirutrightnow?</a><spanclass="smallcopy">november20,2012</span><br><ahref="http://ask.metafilter.com/156994/he-only-did-one-interview"style="font-weight:normal;">heonlydidoneinterview</a><spanclass="smallcopy">june17,2010</span><br><ahref="http://ask.metafilter.com/95199/help-me-remember-this-movie"style="font-weight:normal;">helpmerememberthismovie...</a><spanclass="smallcopy">june27,2008</span><br></div></div><aname="sidebar"></a><aclass="go-to-anchorgo-to-posts"href="#posts"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-go-to-top"><usexlink:href="#icon-go-to-top"></use></svg></a><divstyle="float:right;"id="threadside"><divalign="right"id="threadsub"><divclass="tags"style="padding:0;background:none;"><scriptasyncsrc="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!--askmefiskyscraper--><insclass="adsbygoogle"style="display:inline-block;width:160px;height:600px"data-ad-client="ca-pub-8621957794194569"data-ad-slot="8321028560"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div><divclass="tagssidebar"style="padding-top:0px;"><h2>tags</h2><divid="taglist"><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/nuclear"rel="tag"title="nuclear">nuclear</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/abomb"rel="tag"title="abomb">abomb</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/hbomb"rel="tag"title="hbomb">hbomb</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/hydrogenbomb"rel="tag"title="hydrogenbomb">hydrogenbomb</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/atombomb"rel="tag"title="atombomb">atombomb</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/nuclearbomb"rel="tag"title="nuclearbomb">nuclearbomb</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/nucular"rel="tag"title="nucular">nucular</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/bombing"rel="tag"title="bombing">bombing</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/music"rel="tag"title="music">music</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/playlist"rel="tag"title="playlist">playlist</a></div></div></div><sectionclass="tagssidebar"style="padding-top:0px;"><h2>share</h2><aclass="share-twitter"id="tshare"href="http://twitter.com/intent/tweet?text=ask%20mefi%3a%20songs%20that%20take%20place%20during%20a%20nuclear%20blast%20http%3a%2f%2fmefi%2eus%2fa%2f331739"target="_blank"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-twitter"><usexlink:href="#icon-twitter"></use></svg><span>twitter</span></a><br><aclass="share-facebook"id="fbshare"href="http://www.facebook.com/sharer.php?u=http://ask.metafilter.com/331739/songs-that-take-place-during-a-nuclear-blast"target="_blank"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-facebook"><usexlink:href="#icon-facebook"></use></svg><span>facebook</span></a></section><brclear="all"></div></div></div></div></div></div><aname="bottom-of-content"></a><footerclass="site-footer"><divclass="container"><divclass="row"><divclass="about"><h2>aboutaskmetafilter</h2><p>askmetafilterisaquestionandanswersitethatcoversnearlyanyquestiononearth,wheremembershelpeachothersolveproblems.askmetafilteriswherethousandsoflife\'slittlequestionsareanswered.</p></div><divclass="footer-nav"><divclass="sites"><h2>sites</h2><ul><li><ahref="http://feeds.feedburner.com/metafilter"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//www.metafilter.com"target="_self">metafilter</a></li><li><ahref="http://feeds.feedburner.com/askmetafilter"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//ask.metafilter.com"target="_self">askmefi</a></li><li><ahref="http://feeds.feedburner.com/mefi/fanfare"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//fanfare.metafilter.com"target="_self">fanfare</a></li><li><ahref="http://feeds.feedburner.com/mefi/projects"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//projects.metafilter.com"target="_self">projects</a></li><li><ahref="http://feeds.feedburner.com/mefi/music"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//music.metafilter.com"target="_self">music</a></li><li><ahref="http://feeds.feedburner.com/mefi/jobs"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//jobs.metafilter.com"target="_self">jobs</a></li><li><ahref="http://feeds.feedburner.com/mefiirl"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//irl.metafilter.com"target="_self">irl</a></li><li><ahref="http://feeds.feedburner.com/mefi/metatalk"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//metatalk.metafilter.com"target="_self">metatalk</a></li><li><ahref="http://feeds.feedburner.com/bestofmetafilter"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//bestof.metafilter.com"target="_self">bestof</a></li><li><ahref="http://feeds.feedburner.com/mefipodcast"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//podcast.metafilter.com"target="_self">podcast</a></li></ul></div><divclass="links"><h2>links</h2><ul><li><ahref="/"target="_self">home</a></li><li><ahref="/faq.mefi"target="_self">faq</a></li><li><ahref="/about.mefi"target="_self">about</a></li><li><ahref="/archive.mefi"target="_self">archives</a></li><li><ahref="/tags/"target="_self">tags</a></li><li><ahref="/popular.mefi"target="_self">popular</a></li><li><ahref="/random"target="_self">random</a></li><li><ahref="http://mefiwiki.com/"target="_self">wiki</a></li><li><ahref="//www.metafilter.com/search.mefi"target="_self">search</a></li><li><ahref="//www.metafilter.com/chat/"target="_self">chat</a></li><li><ahref="//labs.metafilter.com"target="_self">labs</a></li></ul></div><divclass="features"><h2>members</h2><ul><li><ahref="//www.metafilter.com/newuser.mefi"target="_self">signup</a></li><li><ahref="https://login.metafilter.com/"target="_self">login</a></li></ul></div></div><divclass="misc"><divclass="search"><formclass="form-inline"action="/search.mefi"target="_self"><divclass="form-group"><labelclass="sr-only"for="query">searchmetafilter…</label><inputclass="form-control"type="search"id="query"placeholder="search…"name="q"><inputtype="hidden"name="cx"value="partner-pub-8621957794194569:9650013776"><inputtype="hidden"name="cof"value="forid:10"><inputtype="hidden"name="ie"value="utf-8"></div><buttonclass="btnbtn-defaultsubmit"type="submit"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-search-white"><usexlink:href="#icon-search-white"></use></svg></button></form></div><divclass="donate"><ahref="https://login.metafilter.com/funding.mefi"target="_self"><h2>fundmetafilter</h2><p><ahref="https://login.metafilter.com/funding.mefi"target="_self"style="color:#cc0">join5,944readersinhelpingfundmetafilter</a></p></a></div><divclass="contact"><h2><ahref="//www.metafilter.com/contact/"target="_self">contactus</a></h2></div></div></div></div></footer><footerclass="fine-print"><divclass="container"><p><strong>©1999–2019metafilternetworkinc.</strong></p><p>allpostscopyrighttheiroriginalauthors.</p><p><ahref="//www.metafilter.com/modern.mefi?go=0"style="color:#9cc754;">classictheme</a>' ]
statusCode: 200
[ '<aclass="jump-to-footer"href="#bottom-of-content"target="_self"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-down-arrow"><usexlink:href="#icon-down-arrow"></use></svg></a><!--logoandusertoolbar--><divclass="container"><divclass="logo"><ahref="/"target="_self"><h1><spanclass="white">ask</span><spanclass="green">metafilter</span></h1><spanclass="tagline">queryingthehivemind</span></a></div><divclass="mobile-menu-toggle"id="user-nav-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-user"><usexlink:href="#icon-user"></use></svg></div><navclass="user"role="menu"><divclass="fixed-menu-toggle"id="fixed-user-nav-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconuser"><usexlink:href="#icon-user"></use></svg></div><ul><liclass="log-out"><ahref="https://login.metafilter.com/"target="_self"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-log-out"><usexlink:href="#icon-log-out"></use></svg><spanclass="nav-label">login</span></a></li><liclass="sign-up"><ahref="//www.metafilter.com/newuser.mefi"target="_self"><svgxmlns="http://www.w3.org/2000/svg"class="iconuser"><usexlink:href="#icon-user"></use></svg><spanclass="nav-label">signup</span></a></li></ul></nav></div><divclass="mobile-menu-toggle"id="primary-nav-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-list"><usexlink:href="#icon-list"></use></svg></div><navclass="primary"><divclass="fixed-menu-toggle"id="fixed-header-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-close"><usexlink:href="#icon-close"></use></svg><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-two-lines"><usexlink:href="#icon-two-lines"></use></svg></div><divclass="container"><divclass="fixed-menu-toggle"id="fixed-primary-nav-toggle"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-list"><usexlink:href="#icon-list"></use></svg></div><ul><li><ahref="//www.metafilter.com"target="_self">metafilter</a></li><liclass="current"><ahref="//ask.metafilter.com"target="_self">askmefi</a></li><li><ahref="//fanfare.metafilter.com"target="_self">fanfare</a></li><li><ahref="//projects.metafilter.com"target="_self">projects</a></li><li><ahref="//music.metafilter.com"target="_self">music</a></li><li><ahref="//jobs.metafilter.com"target="_self">jobs</a></li><li><ahref="//irl.metafilter.com"target="_self">irl</a></li><li><ahref="//metatalk.metafilter.com"target="_self">metatalk</a></li><liclass="subnavmore-nav"><spanid="more-nav-toggle">more<svgxmlns="http://www.w3.org/2000/svg"class="iconicon-caret-down"><usexlink:href="#icon-caret-down"></use></svg></span><ul><li><ahref="//bestof.metafilter.com"target="_self">bestof</a></li><li><ahref="//podcast.metafilter.com"target="_self">podcast</a></li><li><ahref="//www.metafilter.com/chat/"target="_self">chat</a></li><li><ahref="//labs.metafilter.com/"target="_self">labs</a></li></ul></li></ul><divclass="search"><formclass="form-inline"action="/search.mefi"method="get"target="_self"><labelclass="sr-only"for="query">searchmetafilter…</label><inputname="site"value="ask"type="hidden"><inputclass="form-control"type="search"id="query"placeholder="search…"name="q"><buttonclass="btnbtn-defaultsubmit"type="submit"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-search-white"><usexlink:href="#icon-search-white"></use></svg></button></form></div></div></nav></div><!--secondarynavigation(sectionsofsubsite)--><navclass="secondary"><divclass="container"><divclass="fixed-menu-toggle"id="fixed-secondary-nav-toggle"><span>menu</span><svgxmlns="http://www.w3.org/2000/svg"class="iconcaret-down"><usexlink:href="#icon-caret-down"></use></svg></div><ul><li><ahref="/"target="_self">home</a></li><li><ahref="/faq.mefi"target="_self">faq</a></li><li><ahref="/about.mefi"target="_self">about</a></li><li><ahref="/archive.mefi"target="_self">archives</a></li><li><ahref="/tags"target="_self">tags</a></li><li><ahref="/popular.mefi"target="_self">popular</a></li><li><ahref="/random"target="_self">random</a></li></ul></div></nav></header><divclass="content"role="main"><divclass="container"><divclass="row"><aname="posts"></a><aclass="go-to-anchorgo-to-sidebar"href="#sidebar"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-go-to-bottom"><usexlink:href="#icon-go-to-bottom"></use></svg></a><divid="posts"><h1class="posttitle">songsthattakeplaceduringanuclearblast<br><spanclass="smallcopy">february28,2019<span>10:38am</span> <ahref="http://ask.metafilter.com/331739/songs-that-take-place-during-a-nuclear-blast/rss"><iclass="feedicon"></i></a><ahref="http://ask.metafilter.com/331739/songs-that-take-place-during-a-nuclear-blast/rss">subscribe</a></span></h1><divclass="copy">icancomeupwith"everydayislikesunday"(morrissey),"breathing"(katebush),and"imeltwithyou"(modernenglish).whatothersongstakeplaceduringanuclearbombing?<br><span></span><divclass="miseperator"><br>askingbecauseiheardthebowdlerized"imeltwithyou"bybowlingforsoupafterreading<ahref="https://ask.metafilter.com/331730/ska-covers-of-songs-that-are-not-ska">theskacoversthreadfromthismorning</a>("beingfriendswithyouwasneversecondbest")anddiscovereditwasbecausedisneyuseditforamoviein2005.greatpick,disney,asongaboutfuckingduringanuclearbombing!</div><spanclass="smallcopypostbyline">postedby<ahref="http://www.metafilter.com/user/47772"target="_self">fiercecupcake</a>to<ahref="/media-arts"target="_self">media&arts</a>(66answerstotal)<spanid="favcnt3331739"><ahref="http://ask.metafilter.com/favorited/3/331739"style="font-weight:normal;"target="_self">8usersmarkedthisasafavorite</a></span></span></div><divclass="copy"style="margin-right:0px;padding:0;margin-top:0px;margin-bottom:50px;max-width:730px;"><scriptasyncsrc="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!--askresponsive--><insclass="adsbygoogle"style="display:block"data-ad-client="ca-pub-8621957794194569"data-ad-slot="8281515025"data-ad-format="auto"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div><divstyle="clear:left;height:1px;"> </div><aname="4774093"></a><divclass="comments"id="c4774093"><ahref="https://www.youtube.com/watch?v=psqwuz8a2ho">dancingwithtearsinmyeyes</a>byultravoxismostlypre-blastbutsortofwrapsupattheblast.thereisablastinthevideo.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/292"target="_self">jessamyn</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774093"target="_self">10:41am</a>onfebruary28[<ahref="/favorited/4/4774093"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774095"></a><divclass="comments"id="c4774095">"twosunsinthesunset,"pinkfloyd<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/216027"target="_self">thephlegmaticking</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774095"target="_self">10:43am</a>onfebruary28[<ahref="/favorited/4/4774095"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774096"></a><divclass="comments"id="c4774096">pinkfloyd\'s"<ahref="https://www.youtube.com/watch?v=3tsz30nj2n4">twosunsinthesunset</a>."<br><br>idon\'tknowifanyofthesongsspecificallyreferencethis,butmymindalsowentstraighttomidnightoil\'s<em>redsailsinthesunset</em>,whichhascoverartofanuclearstrikeonsydneyharbour.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/24040"target="_self">jzb</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774096"target="_self">10:44am</a>onfebruary28</span></div><br><br><aname="4774098"></a><divclass="comments"id="c4774098">twofromtomlehrer:<br><ahref="https://www.youtube.com/watch?v=fraemhqdlfs">wewillallgotogetherwhenwego</a><br><ahref="https://www.youtube.com/watch?v=yrbv40enu_o">solong,mom</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/1951"target="_self">briank</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774098"target="_self">10:47am</a>onfebruary28[<ahref="/favorited/4/4774098"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774100"></a><divclass="comments"id="c4774100">iguessarguably"whenivanmeetsg.i.joe"bytheclash,althoughit\'snot*quite*asdirect<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/216027"target="_self">thephlegmaticking</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774100"target="_self">10:49am</a>onfebruary28[<ahref="/favorited/4/4774100"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774101"></a><divclass="comments"id="c4774101">moxyfruvous,<ahref="https://www.youtube.com/watch?v=wcf1vxjazmg">"thedrinkingsong"</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/189190"target="_self">bileandsyntax</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774101"target="_self">10:52am</a>onfebruary28[<ahref="/favorited/4/4774101"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774104"></a><divclass="comments"id="c4774104">whataboutthedecemberists\'<ahref="https://www.youtube.com/watch?v=xjpfk7l404i">calamitysong</a>?ithaslyricsabouttheendoftheworld,andthemusicvideoisatennisgamesimulationofglobalthermonuclearwarfrom<em>infinitejest</em>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/18528"target="_self">beandip</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774104"target="_self">10:56am</a>onfebruary28[<ahref="/favorited/4/4774104"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774108"></a><divclass="comments"id="c4774108">timbuk3\'s"<ahref="https://www.youtube.com/watch?v=8qrrikcwvly">thefuture\'ssobright,igottawearshades</a>,"atleastasiinterpretit.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/32795"target="_self">thecorpseinthelibrary</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774108"target="_self">10:57am</a>onfebruary28[<ahref="/favorited/4/4774108"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774112"></a><divclass="comments"id="c4774112">weirdalyankovic,<ahref="https://www.youtube.com/watch?v=t039p6xqutu">christmasatgroundzero</a>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/132869"target="_self">doctornecessiter</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774112"target="_self">11:01am</a>onfebruary28[<ahref="/favorited/4/4774112"style="font-weight:normal;"title="7usersmarkedthisasfavorite">7favorites</a>]</span></div><br><br><aname="4774114"></a><divclass="comments"id="c4774114"><ahref="https://www.youtube.com/watch?v=15ygdrhrcm8">"we\'llmeetagain"</a>asusedinthefilmdr.strangelove.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/7961"target="_self">beagle</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774114"target="_self">11:01am</a>onfebruary28[<ahref="/favorited/4/4774114"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774120"></a><divclass="comments"id="c4774120"><ahref="https://youtu.be/iyc0rxysqd0">bowie,"bombers"</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/268866"target="_self">gendernullpointerexception</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774120"target="_self">11:05am</a>onfebruary28</span></div><br><br><aname="4774124"></a><divclass="comments"id="c4774124">nena\'s"99luftballons."<br><br>ireallyquestionthistheorythat"imeltwithyou"isaboutanuclearattack--idon\'tknowwhereitcomesfrombutlet\'sjustsaythatthelyricsaren\'tverystronglydeterminedinthatdirection.<br><br>(alsotechnicallyithink"sunday"isset<em>after</em>anuclearattack.)<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/235772"target="_self">praemunire</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774124"target="_self">11:10am</a>onfebruary28[<ahref="/favorited/4/4774124"style="font-weight:normal;"title="9usersmarkedthisasfavorite">9favorites</a>]</span></div><br><br><aname="4774129"></a><divclass="comments"id="c4774129"><ahref="https://www.youtube.com/watch?v=o69l2mo9y-4">woodenships</a>bycrosby,stills&nash<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/143406"target="_self">wellred</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774129"target="_self">11:14am</a>onfebruary28</span></div><br><br><aname="4774136"></a><divclass="comments"id="c4774136">joshritter\'s<ahref="https://www.youtube.com/watch?v=fh9mhoviy9g&frags=pl%2cwn">"thetemptationofadam"</a>takesplaceinthemomentsbeforeahypotheticalnuclearblastandisareallyprettysong.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/265688"target="_self">dapati</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774136"target="_self">11:17am</a>onfebruary28[<ahref="/favorited/4/4774136"style="font-weight:normal;"title="9usersmarkedthisasfavorite">9favorites</a>]</span></div><br><br><aname="4774139"></a><divclass="comments"id="c4774139">klausnomi"totaleclipse"<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/198268"target="_self">noxperpetua</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774139"target="_self">11:21am</a>onfebruary28[<ahref="/favorited/4/4774139"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774140"></a><divclass="comments"id="c4774140">tomlehrer\'s<em><ahref="https://www.youtube.com/watch?v=4ky0rotsd14">solongmom,i\'mofftodropthebomb</a></em>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/24315"target="_self">ubiquity</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774140"target="_self">11:21am</a>onfebruary28[<ahref="/favorited/4/4774140"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774143"></a><divclass="comments"id="c4774143">oh,duh:"nuclearwar(onthedancefloor),"theelectricsix<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/216027"target="_self">thephlegmaticking</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774143"target="_self">11:26am</a>onfebruary28[<ahref="/favorited/4/4774143"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774145"></a><divclass="comments"id="c4774145">bigdipper\'s<ahref="https://www.youtube.com/watch?v=xpewheslpmi">allgoingouttogether</a>isgreat.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/25798"target="_self">johngoren</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774145"target="_self">11:26am</a>onfebruary28</span></div><br><br><aname="4774149"></a><divclass="comments"id="c4774149">there\'safakednuclearattackduringthe"<ahref="https://www.youtube.com/watch?v=gjotkr6lpye">doitforourcountry</a>"numberin<ahref="https://www.yahoo.com/entertainment/the-five-most-ridiculous-musical-numbers-in-214615454.html">grease2</a>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/120964"target="_self">irisgambol</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774149"target="_self">11:31am</a>onfebruary28[<ahref="/favorited/4/4774149"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774152"></a><divclass="comments"id="c4774152">fishbone-<ahref="https://www.youtube.com/watch?v=vronib9gq-k">partyatgroundzero</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/60264"target="_self">robotvoodoopower</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774152"target="_self">11:33am</a>onfebruary28[<ahref="/favorited/4/4774152"style="font-weight:normal;"title="9usersmarkedthisasfavorite">9favorites</a>]</span></div><br><br><aname="4774154"></a><divclass="comments"id="c4774154">thelastverseofnewmodelarmy\'s"<ahref="https://www.youtube.com/watch?v=mrt2n5qymmc">ilovetheworld</a>"contemplatesaworld-endingeventi\'vealwaysunderstoodtobenucleardestruction.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/275001"target="_self">20yearlurk</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774154"target="_self">11:36am</a>onfebruary28</span></div><br><br><aname="4774156"></a><divclass="comments"id="c4774156">i\'veneverinterpreted"meltwithyou"asbeingaboutanuclearattack.ijustfigureditwasabouthavingsex.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/14450"target="_self">sarcasticah</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774156"target="_self">11:37am</a>onfebruary28[<ahref="/favorited/4/4774156"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774157"></a><divclass="comments"id="c4774157"><ahref="https://youtu.be/aawu-kpl5p8">morningdew</a>,bonniedobson<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/103998"target="_self">eviemath</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774157"target="_self">11:40am</a>onfebruary28</span></div><br><br><aname="4774159"></a><divclass="comments"id="c4774159"><ahref="https://www.youtube.com/watch?v=0rkc7elktuq">wewillbecomesilhouettes</a>bydeathcabforcutie.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/189341"target="_self">peppercorn</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774159"target="_self">11:43am</a>onfebruary28[<ahref="/favorited/4/4774159"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774160"></a><divclass="comments"id="c4774160">livingthroughanothercuba–xtc<br>bombers–davidbowie<br>comeandstandateverydoor-byrds<br>mushroom–can<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/56724"target="_self">mr.remy</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774160"target="_self">11:43am</a>onfebruary28[<ahref="/favorited/4/4774160"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774163"></a><divclass="comments"id="c4774163"><ahref="https://www.youtube.com/watch?v=hi5q3gq6uhi">jesushitsliketheatombomb</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/275001"target="_self">20yearlurk</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774163"target="_self">11:46am</a>onfebruary28[<ahref="/favorited/4/4774163"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774164"></a><divclass="comments"id="c4774164"><ahref="https://www.youtube.com/watch?v=4lrdg4wznwk">cassiopeia</a>-karinepolwart.<br><ahref="https://www.youtube.com/watch?v=2hkjhapgkqw">stopthecavalry</a>-jonahlewie.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/190231"target="_self">rhamphorhynchus</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774164"target="_self">11:46am</a>onfebruary28</span></div><br><br><aname="4774178"></a><divclass="comments"id="c4774178">"solongandthanksforallthefish"byaperfectcircleseemstobeabouttheeveofatomicdestruction:<br><br><em>allthedolphinshavemovedon<br>signalingthefinalcurtaincallinallitsatomicpageantry</em><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/138139"target="_self">sunburnt</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774178"target="_self">11:55am</a>onfebruary28[<ahref="/favorited/4/4774178"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774198"></a><divclass="comments"id="c4774198">icameintosuggestthesongdapatialreadymentioned.<br><small>ohmarie,there\'ssomethingtellsmethingsjustwon\'tworkoutabove<br>thatourlovewouldliveahalf-lifeonthesurface<br>soatnightwhileyouaresleeping,iholdyoucloserjustbecause<br>asourtimegrowsshort,igetalittlenervous<br><br>oh,ithinkaboutthebigone,wwiii<br>wouldweeverreallycaretheworldhadended?<br>youcouldholdmehereforeverlikeyou\'reholdingmetonight<br>ithinkaboutthatbigredbuttonandi\'mtempted</small><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/16956"target="_self">emelenjr</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774198"target="_self">12:17pm</a>onfebruary28[<ahref="/favorited/4/4774198"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774204"></a><divclass="comments"id="c4774204"><ahref="https://www.youtube.com/watch?v=ai6plftgoim">shadesof45</a>,bygaryo.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/62109"target="_self">hanov3r</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774204"target="_self">12:20pm</a>onfebruary28</span></div><br><br><aname="4774211"></a><divclass="comments"id="c4774211"><ahref="https://www.youtube.com/watch?v=g9xb7usnspo">thegreatatomicpowerbythelouvinbrothers</a>isabout<em>whatwillhappen</em>inthenuclearapocalypseratherthanbeingdirectlysetinit,butitisamazingandyoumustlistentoit.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/55318"target="_self">showbiz_liz</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774211"target="_self">12:27pm</a>onfebruary28[<ahref="/favorited/4/4774211"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774220"></a><divclass="comments"id="c4774220"><ahref="https://www.youtube.com/watch?v=-fysfvqoapu">thesunisburning</a>,simon&garfunkel<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/12409"target="_self">devilsadvocate</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774220"target="_self">12:38pm</a>onfebruary28</span></div><br><br><aname="4774236"></a><divclass="comments"id="c4774236"><ahref="https://www.youtube.com/watch?v=ahzhiqa6-aw">atomicgardenbybadreligion</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/224846"target="_self">evilmonk</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774236"target="_self">12:58pm</a>onfebruary28[<ahref="/favorited/4/4774236"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774237"></a><divclass="comments"id="c4774237"><ahref="https://www.youtube.com/watch?v=rblt2etffc4">1999</a>byprince!<br><br><small>"iwasdreamin\'wheniwrotethis,forgivemeifitgoesastray<br>butwheniwokeupthismornin\',could\'veswornitwasjudgmentday<br>theskywasallpurple,therewerepeoplerunnin\'everywhere<br>tryin\'torunfromthedestruction,youknowididn\'tevencare<br><br>saysaytwothousandzerozeropartyover,oops,outoftime<br>sotonighti\'mgonnapartylikeit\'snineteenninety-nine<br><br>iwasdreamin\'wheniwrotethis,sosuemeifigotoofast<br>butlifeisjustapartyandpartiesweren\'tmeanttolast<br>warisallaroundus,mymindsayspreparetofight<br>soifigottadiei\'mgonnalistentomybodytonight"</small><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/93447"target="_self">castlebravo</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774237"target="_self">1:00pm</a>onfebruary28[<ahref="/favorited/4/4774237"style="font-weight:normal;"title="6usersmarkedthisasfavorite">6favorites</a>]</span></div><br><br><aname="4774245"></a><divclass="comments"id="c4774245">blacksabbath:"electricfuneral"<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/197589"target="_self">andrewindc</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774245"target="_self">1:13pm</a>onfebruary28[<ahref="/favorited/4/4774245"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774261"></a><divclass="comments"id="c4774261"><ahref="https://www.discogs.com/various-atomic-platters-cold-war-music-from-the-golden-age-of-homeland-security/release/11515820">atomicplatters:coldwarmusicfromthegoldenageofhomelandsecurity</a>mayberelevanttoyourinterests.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17573"target="_self">box</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774261"target="_self">1:29pm</a>onfebruary28[<ahref="/favorited/4/4774261"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774269"></a><divclass="comments"id="c4774269"><ahref="https://www.youtube.com/watch?v=vb7htojak7g">herecomestheflood</a>,petergabriel<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/134219"target="_self">prizebulloctorok</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774269"target="_self">1:44pm</a>onfebruary28</span></div><br><br><aname="4774273"></a><divclass="comments"id="c4774273">the<ahref="https://m.youtube.com/watch?v=xhfpuh5ieww">annihilationmix</a>of<em>twotribes</em>byfrankiegoestohollywoodconjuresuptheapocalypseprettyeffectively.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/101497"target="_self">handfulofdust</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774273"target="_self">1:50pm</a>onfebruary28[<ahref="/favorited/4/4774273"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774291"></a><divclass="comments"id="c4774291">manysuggestionson<ahref="http://www.files.mlww.net/nuclear-songs.html">thispage</a>and<ahref="http://inthe00s.com/archive/inthe80s/smf/1235945010.shtml">thisone</a>(itwasapopularsongtopicinthe80sforsure).<br><br>twoofmyfavoritesfromthatera:anneclark\'s<ahref="https://open.spotify.com/track/6hh2qjpzumi8tgwcvtrx9t?si=hks-8e--qowtjwvudorasa">poemforanuclearromance</a>(whichwasthefirstsongithoughtof)andsiguesiguesputnik,<ahref="https://open.spotify.com/track/0mbpdcirbu6drrzn8ypvrm?si=lxflczoiqas1kao5w2vziq">massiveretaliation</a>.<br><br>slightlymorecurrent:thepostalservice,<ahref="https://open.spotify.com/track/73pzetzdf4kvi2s2s2bdh2?si=hhokzlnjtzu_exspz_sgig">wewillbecomesilhouettes</a>.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/1461"target="_self">acridrabbit</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774291"target="_self">2:10pm</a>onfebruary28[<ahref="/favorited/4/4774291"style="font-weight:normal;"title="5usersmarkedthisasfavorite">5favorites</a>]</span></div><br><br><aname="4774301"></a><divclass="comments"id="c4774301"><ahref="https://www.youtube.com/watch?v=cqnwg6gtx6e">radioactivemama</a>bysheldonallman.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/148919"target="_self">dsime</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774301"target="_self">2:29pm</a>onfebruary28</span></div><br><br><aname="4774334"></a><divclass="comments"id="c4774334">theescapeclub\'s<ahref="https://youtu.be/6ve5ewvxdfo">"wild,wildwest"</a>isaboutwaitingforthebombthat\'sjustabouttodrop.<br><br><small>("ronnie\'sgotanewgun"referstoreagan,forpeoplenotasancientasi)</small><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/174859"target="_self">theunderpantsmonster</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774334"target="_self">3:19pm</a>onfebruary28[<ahref="/favorited/4/4774334"style="font-weight:normal;"title="2usersmarkedthisasfavorite">2favorites</a>]</span></div><br><br><aname="4774341"></a><divclass="comments"id="c4774341">tearsforfears-everybodywantstoruletheworld<br><br>siouxieandthebanshees-citiesindust<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/98572"target="_self">mchelly</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774341"target="_self">3:27pm</a>onfebruary28[<ahref="/favorited/4/4774341"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774358"></a><divclass="comments"id="c4774358">anothersetshortlybeforeorinfearof:<ahref="https://johndavidmusic.co.uk/track/you-are-the-new-day">"youarethenewday"byjohndavid</a>.<br><br>"thoughtsthatweashumanssmall<br>couldslowworldsandenditall<br>liearoundmewheretheyfall<br>beforethenewday"<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/260102"target="_self">readinghippo</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774358"target="_self">3:57pm</a>onfebruary28</span></div><br><br><aname="4774385"></a><divclass="comments"id="c4774385">theentirekillingjokebackcatalog.<br><ahref="https://youtu.be/czqunehyzgq">einstein-a-go-go</a>bylandscape<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/4354"target="_self">thatwhichfalls</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774385"target="_self">4:31pm</a>onfebruary28</span></div><br><br><aname="4774387"></a><divclass="comments"id="c4774387"><ahref="https://m.youtube.com/watch?v=hxn9zkpx6cy">ahardrain\'sgonnafall</a>,bobdylan.<br><br>secondingthenotionthatmeltwithyouisaboutsexandwonderingaboutthedarkerinterpretation.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/153508"target="_self">she\'snotthere</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774387"target="_self">4:34pm</a>onfebruary28</span></div><br><br><aname="4774392"></a><divclass="comments"id="c4774392">i<em>think</em><ahref="https://www.youtube.com/watch?v=cu4xdsmbq28">star</a>byerasureis?<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/21704"target="_self">exceptinsects</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774392"target="_self">4:41pm</a>onfebruary28</span></div><br><br><aname="4774401"></a><divclass="comments"id="c4774401">tilthatmeltwithyouisabout<ahref="https://en.m.wikipedia.org/wiki/i_melt_with_you">acouplemakinglovewhileanatomicbombisdropped</a>.<br><br>i\'llbedamned.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/153508"target="_self">she\'snotthere</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774401"target="_self">4:50pm</a>onfebruary28</span></div><br><br><aname="4774415"></a><divclass="comments"id="c4774415"><ahref="https://m.youtube.com/watch?v=-m-l3wdceqg">sweetscorchedearth-eels</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/155675"target="_self">wheekwheekwheek</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774415"target="_self">5:09pm</a>onfebruary28</span></div><br><br><aname="4774424"></a><divclass="comments"id="c4774424">notliterallyduringthebombs.butwaltzingmatildawasthesadfinale,irecall,inonthebeach,whichtakesplacesoonaftertheconflagration.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/106267"target="_self">lonniek</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774424"target="_self">5:49pm</a>onfebruary28[<ahref="/favorited/4/4774424"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774425"></a><divclass="comments"id="c4774425">there\'sapersistentrumorthat"herecomesyourman"bythepixiesisaboutthebombingofnagasaki.blackfrancishasdeniedit,butthelyricsfit,mostlyduetothefactthattheb-29thatcarriedthebombwasnamed"bockscar".<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/228761"target="_self">kevinbelt</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774425"target="_self">5:52pm</a>onfebruary28</span></div><br><br><aname="4774427"></a><divclass="comments"id="c4774427">alsobyblacksabbath,warpigs...<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/75645"target="_self">redhush</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774427"target="_self">5:58pm</a>onfebruary28</span></div><br><br><aname="4774440"></a><divclass="comments"id="c4774440"><em>siouxieandthebanshees-citiesindust</em><br><br>thisone’sactuallyaboutpompeiibeingdestroyedinavolcaniceruption.greatsong.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/196797"target="_self">ejs</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774440"target="_self">6:17pm</a>onfebruary28[<ahref="/favorited/4/4774440"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774446"></a><divclass="comments"id="c4774446">havingbeenterrified/obsessedbynuclearwarsincemycoldwarchildhood,icreatedthis<ahref="https://open.spotify.com/user/arizona.jedi/playlist/1b7fwxkrt9nwncraxoflyd?si=ktqh37b0ryarlglikznevg">spotifyplaylist</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/239823"target="_self">arizonajedi</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774446"target="_self">6:30pm</a>onfebruary28[<ahref="/favorited/4/4774446"style="font-weight:normal;"title="3usersmarkedthisasfavorite">3favorites</a>]</span></div><br><br><aname="4774480"></a><divclass="comments"id="c4774480">discharge-<ahref="https://vimeo.com/14417313">thepossibilityoflife\'sdestruction</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17447"target="_self">mwhybark</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774480"target="_self">7:48pm</a>onfebruary28</span></div><br><br><aname="4774482"></a><divclass="comments"id="c4774482"><ahref="https://youtu.be/d5xj2gir6bo">enolagay</a>,byorchestralmanoeuvresinthedark.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/197599"target="_self">terooot</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774482"target="_self">7:49pm</a>onfebruary28[<ahref="/favorited/4/4774482"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774491"></a><divclass="comments"id="c4774491">(conceptually,everysingletrackon<em><ahref="https://www.youtube.com/playlist?list=pl1g1-okh_imomn66qaim1mxn5d6c7knln">urgh:amusicwar</a></em>.loveseeingallthecitationsupthread)<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17447"target="_self">mwhybark</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774491"target="_self">8:14pm</a>onfebruary28</span></div><br><br><aname="4774500"></a><divclass="comments"id="c4774500">funkadelic\'s<ahref="https://www.youtube.com/watch?v=ddganzkdb4y">"warsofarmageddon"</a>endswithanatomicblastandthepunchline"lookatthatpollution!"<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17750"target="_self">hydrophonic</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774500"target="_self">8:47pm</a>onfebruary28[<ahref="/favorited/4/4774500"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774508"></a><divclass="comments"id="c4774508">"<ahref="https://youtu.be/t1tcdhrkqyg">foreveryoung</a>"byalphaville.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/274077"target="_self">allthelightwecannotsee</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774508"target="_self">9:30pm</a>onfebruary28[<ahref="/favorited/4/4774508"style="font-weight:normal;"title="1usermarkedthisasfavorite">1favorite</a>]</span></div><br><br><aname="4774509"></a><divclass="comments"id="c4774509"><ahref="https://www.youtube.com/watch?v=vtotpisl700">radiohead-"fourminutewarning"</a>(ab-sidefromtheir2007albuminrainbows,namedafter<ahref="https://en.wikipedia.org/wiki/four-minute_warning">thebritishalertsystem</a>forsovietnuclearattacks)<blockquote>runningfromthebombers<br>hidingintheforest<br>runningthroughthefields<br>layingflatontheground<br>justlikeeverybody<br>steppingoverhills<br>runningfromtheunderground<br>thisisyourwarning<br>4minutewarning</blockquote><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/62135"target="_self">rhaomi</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774509"target="_self">9:30pm</a>onfebruary28</span></div><br><br><aname="4774530"></a><divclass="comments"id="c4774530"><ahref="https://www.youtube.com/watch?v=lsprinajncu">it\'samotherfucker<br>don\'tyouknow<br>iftheypushthatbutton<br>yourassgottogo<br>andwhatyougonnado<br>withoutyourass?</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/12686"target="_self">aws17576</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774530"target="_self">11:12pm</a>onfebruary28[<ahref="/favorited/4/4774530"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4774559"></a><divclass="comments"id="c4774559"><ahref="https://m.youtube.com/watch?v=tf3vlcgjn-0">8.5minutes</a>bythedplan<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/138442"target="_self">ohkay</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774559"target="_self">3:33am</a>onmarch1</span></div><br><br><aname="4774633"></a><divclass="comments"id="c4774633"><ahref="https://youtu.be/j2gstnflhpm">famouslastwords</a>bytearsforfears<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/61324"target="_self">prinado</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774633"target="_self">7:48am</a>onmarch1</span></div><br><br><aname="4774881"></a><divclass="comments"id="c4774881"><ahref="https://www.youtube.com/watch?v=i_iqlrxyixu">aflockofseagulls-manmade</a><br><ahref="https://www.youtube.com/watch?v=zsfdeogszkq">wah!-sevenminutestomidnight</a><br><ahref="https://www.discogs.com/release/544351">untiltheendoftheworld(soundtrack)</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/48786"target="_self">webbster</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774881"target="_self">5:35pm</a>onmarch1</span></div><br><br><aname="4774987"></a><divclass="comments"id="c4774987"><ahref="https://www.youtube.com/watch?v=_ns3nihakk4">"fourminutes",rogerwaters</a>.solehasnoeyes!<br><br>myfirstthoughtwhenireadyourquestionwas"thisiseverysongweplayedinthe80s."gladtoseethatimpressionholdsup.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/117443"target="_self">harveykilobit</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4774987"target="_self">3:49am</a>onmarch2[<ahref="/favorited/4/4774987"style="font-weight:normal;"title="4usersmarkedthisasfavorite">4favorites</a>]</span></div><br><br><aname="4777497"></a><divclass="comments"id="c4777497"><ahref="https://www.youtube.com/user/civildefensespot">civildefensespot</a>(yt)mightbeupyouralley.<br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/18811"target="_self">monkeytoes</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4777497"target="_self">3:29pm</a>onmarch7</span></div><br><br><aname="4778158"></a><divclass="comments"id="c4778158">billhaleyandhiscomets-<ahref="https://www.youtube.com/watch?v=hosgeeswmqq">thirteenwomen</a><br><em>lastnightiwasdreaming,<br>dreamedabouttheh-bomb,<br>well,thebombwentoff,<br>andiwascaught,<br>iwastheonlymanunderground.</em><br><br>annmargaretdidherownversion,<ahref="https://www.youtube.com/watch?v=iiodui6l4iy">thirteenmen</a><br><spanclass="smallcopy">postedby<ahref="http://www.metafilter.com/user/17750"target="_self">hydrophonic</a>at<ahref="/331739/songs-that-take-place-during-a-nuclear-blast#4778158"target="_self">7:26am</a>onmarch9</span></div><br><br><divclass="comments"><spanclass="whitesmallcopy"style="font-size:11px;"><ahref="/331738/looking-for-a-queer-friendly-therapist-in-seattle"target="_self">«older</a>lookingforaqueer-friendlytherapistinseattle | judgejudy<ahref="/331740/judge-judy"target="_self">newer»</a></span></div><divclass="comments"style="margin-top:30px;margin-bottom:20px;"><divstyle="max-width:735px;"><scriptasyncsrc="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!--askresponsive--><insclass="adsbygoogle"style="display:block"data-ad-client="ca-pub-8621957794194569"data-ad-slot="8281515025"data-ad-format="auto"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div></div><pclass="comments"style="clear:both;padding-top:50px">youarenotloggedin,either<ahref="http://www.metafilter.com/login/"target="_self">login</a>or<ahref="http://www.metafilter.com/newuser.mefi"target="_self">createanaccount</a>topostcomments</p><br><br><divid="related"class="recentlydarkercopy"><divstyle="margin-bottom:4px;">relatedquestions</div><ahref="http://ask.metafilter.com/248163/this-is-not-a-drill-i-repeat-this-is-not-a-drill"style="font-weight:normal;">thisisnotadrill,irepeat,thisisnotadrill.</a><spanclass="smallcopy">september9,2013</span><br><ahref="http://ask.metafilter.com/235454/how-many-people-alive-today-have-lived-through-war-at-home"style="font-weight:normal;">howmanypeoplealivetodayhavelivedthroughwar...</a><spanclass="smallcopy">february17,2013</span><br><ahref="http://ask.metafilter.com/229354/is-it-safe-to-visit-beirut-right-now"style="font-weight:normal;">isitsafetovisitbeirutrightnow?</a><spanclass="smallcopy">november20,2012</span><br><ahref="http://ask.metafilter.com/156994/he-only-did-one-interview"style="font-weight:normal;">heonlydidoneinterview</a><spanclass="smallcopy">june17,2010</span><br><ahref="http://ask.metafilter.com/95199/help-me-remember-this-movie"style="font-weight:normal;">helpmerememberthismovie...</a><spanclass="smallcopy">june27,2008</span><br></div></div><aname="sidebar"></a><aclass="go-to-anchorgo-to-posts"href="#posts"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-go-to-top"><usexlink:href="#icon-go-to-top"></use></svg></a><divstyle="float:right;"id="threadside"><divalign="right"id="threadsub"><divclass="tags"style="padding:0;background:none;"><scriptasyncsrc="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script><!--askmefiskyscraper--><insclass="adsbygoogle"style="display:inline-block;width:160px;height:600px"data-ad-client="ca-pub-8621957794194569"data-ad-slot="8321028560"></ins><script>(adsbygoogle=window.adsbygoogle||[]).push({});</script></div><divclass="tagssidebar"style="padding-top:0px;"><h2>tags</h2><divid="taglist"><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/nuclear"rel="tag"title="nuclear">nuclear</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/abomb"rel="tag"title="abomb">abomb</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/hbomb"rel="tag"title="hbomb">hbomb</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/hydrogenbomb"rel="tag"title="hydrogenbomb">hydrogenbomb</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/atombomb"rel="tag"title="atombomb">atombomb</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/nuclearbomb"rel="tag"title="nuclearbomb">nuclearbomb</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/nucular"rel="tag"title="nucular">nucular</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/bombing"rel="tag"title="bombing">bombing</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/music"rel="tag"title="music">music</a></div><divclass="tagline"><aclass="taglink"href="https://ask.metafilter.com/tags/playlist"rel="tag"title="playlist">playlist</a></div></div></div><sectionclass="tagssidebar"style="padding-top:0px;"><h2>share</h2><aclass="share-twitter"id="tshare"href="http://twitter.com/intent/tweet?text=ask%20mefi%3a%20songs%20that%20take%20place%20during%20a%20nuclear%20blast%20http%3a%2f%2fmefi%2eus%2fa%2f331739"target="_blank"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-twitter"><usexlink:href="#icon-twitter"></use></svg><span>twitter</span></a><br><aclass="share-facebook"id="fbshare"href="http://www.facebook.com/sharer.php?u=http://ask.metafilter.com/331739/songs-that-take-place-during-a-nuclear-blast"target="_blank"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-facebook"><usexlink:href="#icon-facebook"></use></svg><span>facebook</span></a></section><brclear="all"></div></div></div></div></div></div><aname="bottom-of-content"></a><footerclass="site-footer"><divclass="container"><divclass="row"><divclass="about"><h2>aboutaskmetafilter</h2><p>askmetafilterisaquestionandanswersitethatcoversnearlyanyquestiononearth,wheremembershelpeachothersolveproblems.askmetafilteriswherethousandsoflife\'slittlequestionsareanswered.</p></div><divclass="footer-nav"><divclass="sites"><h2>sites</h2><ul><li><ahref="http://feeds.feedburner.com/metafilter"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//www.metafilter.com"target="_self">metafilter</a></li><li><ahref="http://feeds.feedburner.com/askmetafilter"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//ask.metafilter.com"target="_self">askmefi</a></li><li><ahref="http://feeds.feedburner.com/mefi/fanfare"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//fanfare.metafilter.com"target="_self">fanfare</a></li><li><ahref="http://feeds.feedburner.com/mefi/projects"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//projects.metafilter.com"target="_self">projects</a></li><li><ahref="http://feeds.feedburner.com/mefi/music"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//music.metafilter.com"target="_self">music</a></li><li><ahref="http://feeds.feedburner.com/mefi/jobs"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//jobs.metafilter.com"target="_self">jobs</a></li><li><ahref="http://feeds.feedburner.com/mefiirl"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//irl.metafilter.com"target="_self">irl</a></li><li><ahref="http://feeds.feedburner.com/mefi/metatalk"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//metatalk.metafilter.com"target="_self">metatalk</a></li><li><ahref="http://feeds.feedburner.com/bestofmetafilter"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//bestof.metafilter.com"target="_self">bestof</a></li><li><ahref="http://feeds.feedburner.com/mefipodcast"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-feed"><usexlink:href="#icon-feed"></use></svg></a><ahref="//podcast.metafilter.com"target="_self">podcast</a></li></ul></div><divclass="links"><h2>links</h2><ul><li><ahref="/"target="_self">home</a></li><li><ahref="/faq.mefi"target="_self">faq</a></li><li><ahref="/about.mefi"target="_self">about</a></li><li><ahref="/archive.mefi"target="_self">archives</a></li><li><ahref="/tags/"target="_self">tags</a></li><li><ahref="/popular.mefi"target="_self">popular</a></li><li><ahref="/random"target="_self">random</a></li><li><ahref="http://mefiwiki.com/"target="_self">wiki</a></li><li><ahref="//www.metafilter.com/search.mefi"target="_self">search</a></li><li><ahref="//www.metafilter.com/chat/"target="_self">chat</a></li><li><ahref="//labs.metafilter.com"target="_self">labs</a></li></ul></div><divclass="features"><h2>members</h2><ul><li><ahref="//www.metafilter.com/newuser.mefi"target="_self">signup</a></li><li><ahref="https://login.metafilter.com/"target="_self">login</a></li></ul></div></div><divclass="misc"><divclass="search"><formclass="form-inline"action="/search.mefi"target="_self"><divclass="form-group"><labelclass="sr-only"for="query">searchmetafilter…</label><inputclass="form-control"type="search"id="query"placeholder="search…"name="q"><inputtype="hidden"name="cx"value="partner-pub-8621957794194569:9650013776"><inputtype="hidden"name="cof"value="forid:10"><inputtype="hidden"name="ie"value="utf-8"></div><buttonclass="btnbtn-defaultsubmit"type="submit"><svgxmlns="http://www.w3.org/2000/svg"class="iconicon-search-white"><usexlink:href="#icon-search-white"></use></svg></button></form></div><divclass="donate"><ahref="https://login.metafilter.com/funding.mefi"target="_self"><h2>fundmetafilter</h2><p><ahref="https://login.metafilter.com/funding.mefi"target="_self"style="color:#cc0">join5,944readersinhelpingfundmetafilter</a></p></a></div><divclass="contact"><h2><ahref="//www.metafilter.com/contact/"target="_self">contactus</a></h2></div></div></div></div></footer><footerclass="fine-print"><divclass="container"><p><strong>©1999–2019metafilternetworkinc.</strong></p><p>allpostscopyrighttheiroriginalauthors.</p><p><ahref="//www.metafilter.com/modern.mefi?go=0"style="color:#9cc754;">classictheme</a>' | extract <a> tags from an html page | 2019-03-13T04:17:03.000Z |
|
<node (.+?(\S+row_details([\S+\s+]+?(present_username_text[\S+\s+]+?(bounds\S+))))) | "<?xml version='1.0' encoding='UTF-8' standalone='yes' ?><hierarchy rotation="0"><node index="0" text="" resource-id="" class="android.widget.FrameLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,0][500,470]"><node index="0" text="" resource-id="" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,0][500,470]"><node index="0" text="" resource-id="" class="android.widget.FrameLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,17][500,470]"><node index="0" text="" resource-id="jp.naver.line.android:id/action_bar_root" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,17][500,470]"><node index="0" text="" resource-id="android:id/content" class="android.widget.FrameLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,17][500,470]"><node index="0" text="" resource-id="" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,17][500,470]"><node index="0" text="" resource-id="jp.naver.line.android:id/header" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,17][500,62]"><node index="0" text="" resource-id="jp.naver.line.android:id/header_root" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,17][500,62]"><node index="0" text="" resource-id="jp.naver.line.android:id/header_up_button_bg" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="返回" checkable="false" checked="false" clickable="true" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,17][35,62]"><node index="0" text="" resource-id="jp.naver.line.android:id/header_up_button" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,22][35,57]" /></node><node index="1" text="" resource-id="jp.naver.line.android:id/main_view_group" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[35,17][496,62]"><node index="0" text="" resource-id="" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[35,17][103,62]"><node index="1" text="購物記錄" resource-id="jp.naver.line.android:id/header_title" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[35,29][103,49]" /></node></node></node></node><node index="1" text="" resource-id="jp.naver.line.android:id/tabs" class="android.widget.HorizontalScrollView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="true" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,62][500,102]"><node index="0" text="" resource-id="" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,62][500,102]"><node index="0" text="" resource-id="" class="androidx.appcompat.app.a$b" package="jp.naver.line.android" content-desc="貼圖(212545)" checkable="false" checked="false" clickable="true" enabled="true" focusable="true" focused="false" scrollable="false" long-clickable="false" password="false" selected="true" bounds="[158,62][250,102]"><node index="0" text="貼圖(212545)" resource-id="" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="true" bounds="[168,67][240,95]" /></node><node index="1" text="" resource-id="" class="androidx.appcompat.app.a$b" package="jp.naver.line.android" content-desc="表情貼(4458)" checkable="false" checked="false" clickable="true" enabled="true" focusable="true" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[250,62][342,102]"><node index="0" text="表情貼(4458)" resource-id="" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[260,67][332,95]" /></node></node></node><node index="2" text="" resource-id="jp.naver.line.android:id/tab_layout_divider" class="android.view.View" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,102][500,103]" /><node index="3" text="" resource-id="jp.naver.line.android:id/view_pager" class="androidx.viewpager.widget.ViewPager" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="true" focused="false" scrollable="true" long-clickable="false" password="false" selected="false" bounds="[0,103][500,470]"><node index="0" text="" resource-id="" class="android.widget.FrameLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,103][500,470]"><node index="0" text="" resource-id="jp.naver.line.android:id/item_list_view" class="androidx.recyclerview.widget.RecyclerView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="true" focused="true" scrollable="true" long-clickable="false" password="false" selected="false" bounds="[0,103][500,470]"><node index="0" text="" resource-id="" class="android.view.View" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="true" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,103][500,164]"><node index="0" text="" resource-id="jp.naver.line.android:id/purchase_history_row_is_new_icon" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,103][21,124]" /><node index="1" text="" resource-id="jp.naver.line.android:id/purchase_history_row_thumbnail_group" class="android.widget.FrameLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[8,110][55,157]"><node index="0" text="" resource-id="jp.naver.line.android:id/thumbnail" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[8,110][55,157]" /><node index="1" text="" resource-id="jp.naver.line.android:id/sticker_type_icon" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[38,140][52,154]" /></node><node index="2" text="" resource-id="jp.naver.line.android:id/purchase_history_row_details" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,105][456,163]"><node index="0" text="臭跩貓愛嗆人-白爛貓超過動" resource-id="jp.naver.line.android:id/product_name" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,105][261,127]" /><node index="1" text="" resource-id="jp.naver.line.android:id/price_area" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,129][103,147]"><node index="0" text="" resource-id="jp.naver.line.android:id/coin_mark" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,131][77,145]" /><node index="1" text="100" resource-id="jp.naver.line.android:id/price_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[82,128][103,145]" /></node><node index="2" text="" resource-id="jp.naver.line.android:id/present_area" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,148][196,163]"><node index="0" text="z0furu" resource-id="jp.naver.line.android:id/present_username_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,148][97,163]" /><node index="1" text="2019/6/20 下午2:59" resource-id="jp.naver.line.android:id/present_period_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[104,149][196,163]" /></node></node><node index="3" text="" resource-id="jp.naver.line.android:id/purchase_history_row_gift" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[467,128][478,140]" /><node index="4" text="" resource-id="jp.naver.line.android:id/purchase_history_row_arrow" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[487,129][492,138]" /></node><node index="1" text="" resource-id="" class="android.view.View" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="true" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,165][500,226]"><node index="0" text="" resource-id="jp.naver.line.android:id/purchase_history_row_is_new_icon" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,165][21,186]" /><node index="1" text="" resource-id="jp.naver.line.android:id/purchase_history_row_thumbnail_group" class="android.widget.FrameLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[8,172][55,219]"><node index="0" text="" resource-id="jp.naver.line.android:id/thumbnail" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[8,172][55,219]" /><node index="1" text="" resource-id="jp.naver.line.android:id/sticker_type_icon" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[38,202][52,216]" /></node><node index="2" text="" resource-id="jp.naver.line.android:id/purchase_history_row_details" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,167][456,225]"><node index="0" text="臭跩貓愛嗆人-白爛貓超過動" resource-id="jp.naver.line.android:id/product_name" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,167][261,189]" /><node index="1" text="" resource-id="jp.naver.line.android:id/price_area" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,191][103,209]"><node index="0" text="" resource-id="jp.naver.line.android:id/coin_mark" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,193][77,207]" /><node index="1" text="100" resource-id="jp.naver.line.android:id/price_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[82,190][103,207]" /></node><node index="2" text="" resource-id="jp.naver.line.android:id/present_area" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,210][224,225]"><node index="0" text="kana840127" resource-id="jp.naver.line.android:id/present_username_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,210][125,225]" /><node index="1" text="2019/6/20 下午1:13" resource-id="jp.naver.line.android:id/present_period_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[132,211][224,225]" /></node></node><node index="3" text="" resource-id="jp.naver.line.android:id/purchase_history_row_gift" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[467,190][478,202]" /><node index="4" text="" resource-id="jp.naver.line.android:id/purchase_history_row_arrow" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[487,191][492,200]" /></node><node index="2" text="" resource-id="" class="android.view.View" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="true" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,227][500,288]"><node index="0" text="" resource-id="jp.naver.line.android:id/purchase_history_row_is_new_icon" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,227][21,248]" /><node index="1" text="" resource-id="jp.naver.line.android:id/purchase_history_row_thumbnail_group" class="android.widget.FrameLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[8,234][55,281]"><node index="0" text="" resource-id="jp.naver.line.android:id/thumbnail" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[8,234][55,281]" /><node index="1" text="" resource-id="jp.naver.line.android:id/sticker_type_icon" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[38,264][52,278]" /></node><node index="2" text="" resource-id="jp.naver.line.android:id/purchase_history_row_details" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,229][456,287]"><node index="0" text="臭跩貓愛嗆人-白爛貓超過動" resource-id="jp.naver.line.android:id/product_name" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,229][261,251]" /><node index="1" text="" resource-id="jp.naver.line.android:id/price_area" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,253][103,271]"><node index="0" text="" resource-id="jp.naver.line.android:id/coin_mark" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,255][77,269]" /><node index="1" text="100" resource-id="jp.naver.line.android:id/price_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[82,252][103,269]" /></node><node index="2" text="" resource-id="jp.naver.line.android:id/present_area" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,272][209,287]"><node index="0" text="hjk3333" resource-id="jp.naver.line.android:id/present_username_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,272][104,287]" /><node index="1" text="2019/6/20 上午11:55" resource-id="jp.naver.line.android:id/present_period_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[111,273][209,287]" /></node></node><node index="3" text="" resource-id="jp.naver.line.android:id/purchase_history_row_gift" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[467,252][478,264]" /><node index="4" text="" resource-id="jp.naver.line.android:id/purchase_history_row_arrow" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[487,253][492,262]" /></node><node index="3" text="" resource-id="" class="android.view.View" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="true" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,289][500,350]"><node index="0" text="" resource-id="jp.naver.line.android:id/purchase_history_row_is_new_icon" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,289][21,310]" /><node index="1" text="" resource-id="jp.naver.line.android:id/purchase_history_row_thumbnail_group" class="android.widget.FrameLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[8,296][55,343]"><node index="0" text="" resource-id="jp.naver.line.android:id/thumbnail" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[8,296][55,343]" /><node index="1" text="" resource-id="jp.naver.line.android:id/sticker_type_icon" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[38,326][52,340]" /></node><node index="2" text="" resource-id="jp.naver.line.android:id/purchase_history_row_details" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,291][456,349]"><node index="0" text="臭跩貓愛嗆人-白爛貓超過動" resource-id="jp.naver.line.android:id/product_name" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,291][261,313]" /><node index="1" text="" resource-id="jp.naver.line.android:id/price_area" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,315][103,333]"><node index="0" text="" resource-id="jp.naver.line.android:id/coin_mark" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,317][77,331]" /><node index="1" text="100" resource-id="jp.naver.line.android:id/price_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[82,314][103,331]" /></node><node index="2" text="" resource-id="jp.naver.line.android:id/present_area" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,334][238,349]"><node index="0" text="Nick.ychuang" resource-id="jp.naver.line.android:id/present_username_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,334][133,349]" /><node index="1" text="2019/6/20 上午10:28" resource-id="jp.naver.line.android:id/present_period_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[140,335][238,349]" /></node></node><node index="3" text="" resource-id="jp.naver.line.android:id/purchase_history_row_gift" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[467,314][478,326]" /><node index="4" text="" resource-id="jp.naver.line.android:id/purchase_history_row_arrow" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[487,315][492,324]" /></node><node index="4" text="" resource-id="" class="android.view.View" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="true" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,351][500,412]"><node index="0" text="" resource-id="jp.naver.line.android:id/purchase_history_row_thumbnail_group" class="android.widget.FrameLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[8,358][55,405]"><node index="0" text="" resource-id="jp.naver.line.android:id/thumbnail" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[8,358][55,405]" /><node index="1" text="" resource-id="jp.naver.line.android:id/sticker_type_icon" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[38,388][52,402]" /></node><node index="1" text="" resource-id="jp.naver.line.android:id/purchase_history_row_details" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,353][456,411]"><node index="0" text="Hand Language 2" resource-id="jp.naver.line.android:id/product_name" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,353][191,375]" /><node index="1" text="" resource-id="jp.naver.line.android:id/price_area" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,377][96,395]"><node index="0" text="" resource-id="jp.naver.line.android:id/coin_mark" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,379][77,393]" /><node index="1" text="10" resource-id="jp.naver.line.android:id/price_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[82,376][96,393]" /></node><node index="2" text="" resource-id="jp.naver.line.android:id/present_area" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,396][206,411]"><node index="0" text="p556788" resource-id="jp.naver.line.android:id/present_username_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,396][107,411]" /><node index="1" text="2019/6/20 上午1:54" resource-id="jp.naver.line.android:id/present_period_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[114,397][206,411]" /></node></node><node index="2" text="" resource-id="jp.naver.line.android:id/purchase_history_row_gift" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[467,376][478,388]" /><node index="3" text="" resource-id="jp.naver.line.android:id/purchase_history_row_arrow" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[487,377][492,386]" /></node><node index="5" text="" resource-id="" class="android.view.View" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="true" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[0,413][500,470]"><node index="0" text="" resource-id="jp.naver.line.android:id/purchase_history_row_thumbnail_group" class="android.widget.FrameLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[8,420][55,467]"><node index="0" text="" resource-id="jp.naver.line.android:id/thumbnail" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[8,420][55,467]" /><node index="1" text="" resource-id="jp.naver.line.android:id/sticker_type_icon" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[38,450][52,464]" /></node><node index="1" text="" resource-id="jp.naver.line.android:id/purchase_history_row_details" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,415][456,470]"><node index="0" text="Hand Language" resource-id="jp.naver.line.android:id/product_name" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,415][178,437]" /><node index="1" text="" resource-id="jp.naver.line.android:id/price_area" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,439][96,457]"><node index="0" text="" resource-id="jp.naver.line.android:id/coin_mark" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,441][77,455]" /><node index="1" text="10" resource-id="jp.naver.line.android:id/price_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[82,438][96,455]" /></node><node index="2" text="" resource-id="jp.naver.line.android:id/present_area" class="android.widget.LinearLayout" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,458][206,470]"><node index="0" text="p556788" resource-id="jp.naver.line.android:id/present_username_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[65,458][107,470]" /><node index="1" text="2019/6/20 上午1:52" resource-id="jp.naver.line.android:id/present_period_text" class="android.widget.TextView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[114,459][206,470]" /></node></node><node index="2" text="" resource-id="jp.naver.line.android:id/purchase_history_row_gift" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[467,438][478,450]" /><node index="3" text="" resource-id="jp.naver.line.android:id/purchase_history_row_arrow" class="android.widget.ImageView" package="jp.naver.line.android" content-desc="" checkable="false" checked="false" clickable="false" enabled="true" focusable="false" focused="false" scrollable="false" long-clickable="false" password="false" selected="false" bounds="[487,439][492,448]" /></node></node></node></node></node></node></node></node></node></node></hierarchy>" | 取發圖記錄的大節點 | 2019-06-20T08:07:41.000Z |
|
[\s,\/\.\-] | Nos dois sistemas.
Em 22 de maio de 2018 10:23, Sistema Delta <[email protected]>
escreveu:
> ##- Não escreva abaixo desta linha -##
>
> *Comentário adicionado por FERNANDO TEIXEIRA BARROS em 22/05/2018 10:23*
> *Usuário:* FERNANDO TEIXEIRA BARROS* Data:* 22/05/2018 10:23:25
>
> *COMENTÁRIO:*
> Bom dia Mayla,
> Apenas sistema Montafarma?
> ------------------------------
>
> *ID Reporte: * #1468
> *Situação: * *ABERTO*
> *Módulo:* Produção
> *Tela:* ordem de pedido
> *Nome: * mayla.capana - MAYLA CAPANA
> *Emissão: * 22/05/2018 12:00:00
> *Fechamento: * -
> *Responsável: * DELTA SI
> *Prioridade: * Urgente
> *Tipo: * Ajuda
>
> *MENSAGEM: *
> Bom dia,
>
> Por favor liberar o meu acesso, Izac e Priscila, para a tela de Produção -
> Ordem de Pedido. (igual a tela que a Iza tem acesso).
>
> Aguardo retorno.
>
> Até,
>
> | spacers | 2018-05-22T13:40:43.000Z |
|
How to document a Regex?
Example 2: added documentation using (?#) | ((?# Capturing group for the type name)
\/+(?# Start with / or // )
[^\/\[\]]+(?# Type name exclusing start of attribute and next type)
(?:(?# Non-capturing group for the attribute)
\[(?# Start of an attribute)
[^\]']*(?# Anything but end of attribute or start of string)
(?:(?# non-capturing group for string)
'(?# string start)
[^']*(?# anything inside the string, except end of string)
'(?# string end)
)(?# end of string group)
\](?# end of attribute)
)?(?# Attribute can occur 0 or one time)
)+(?# Type can occur once or many times) | How to document a Regex? Example 2 | 2015-03-03T14:36:00.000Z |
|
Will extract URLs from text string if they have a space or line ending at the end and are not wrapped inside a string delimiter | ((?:(?:https?):\/\/)?(?:\S+(?::\S*)?@)?(?:(?:[a-z0-9][a-z0-9\-]*?[a-z0-9]+)(?:\.(?:[a-z0-9\-])*[a-z0-9]+)*(?:\.(?:[a-z]{2,})(:\d{1,5})?))(?:\/[^\s]*)?)(?:[ ]+[^< ]|\Z|\n) | jkNKLJNLKJASSDNBVKLJAVD http://www.google.com
http://www.google.com
<a href="http://www.w3schools.com">Visit W3Schools.com!</a>
| url extractor | 2015-11-13T09:00:57.000Z |
(^100(\.0{1,2})?$)|(^([1-9]([0-9])?|0)(\.[0-9]{1,2})?$) | 1234232342 | JavaScript Percentage Validation | 2016-01-19T06:07:56.000Z |
|
Easly to check tel:// or sms:// protocols. | ^((tel:\/\/|sms:\/\/))?([+])?([0-9]+) | tel:// and sms:// validator | 2015-01-12T23:35:15.000Z |
|
(?<=https://www.facebook.com/groups/).*?(?=/) | a href="https://www.facebook.com/groups/366139636814727/871873746241311/?comment_id=871905166238169&ref=notif¬if_t=group_comment" class="_33e" data-reactid=".3.0.0.0.0.0.$100000241272846=21446664199525942.0.0"><div class="clearfix" data-reactid=".3.0.0.0.0.0.$100000241272846=21446664199525942.0.0.0"><d | FB Grops | 2015-11-04T20:06:49.000Z |
|
(\w+\s+)(\w+\?*\s+)(\w+)\s+(\{.+\}) | public Guid DellUploadItemID { get; set; }
public Guid UploadID { get; set; }
public string DellPurchaseID { get; set; }
public string PoNum { get; set; }
public string OrderNum { get; set; }
public string OrderType { get; set; }
public string InvoiceNum { get; set; }
public string PaymentDescription { get; set; }
public DateTime? OrderDate { get; set; }
public DateTime? ShippedDate { get; set; }
public DateTime? InvoiceDate { get; set; }
public decimal ReportLineTotal { get; set; }
public string ServiceTag { get; set; }
public string Category { get; set; }
public string SubCategory { get; set; }
public string Item { get; set; }
public string ItemLongName { get; set; }
public DateTime? WarrantyEndDate { get; set; }
public string ShipFirstName { get; set; }
public string ShipLastName { get; set; }
public string ShipToCompany { get; set; }
public string ShipAddress1 { get; set; }
public string ShipAddress2 { get; set; }
public string ShipCity { get; set; }
public string ShipState { get; set; }
public string ShipZip { get; set; }
public string ShipMethod { get; set; }
public string CarrierName { get; set; }
public string WaybillNumber { get; set; }
public string ExpressServiceCode { get; set; }
public string MACAddress { get; set; }
public string MACAddress2 { get; set; } | Property List to object mapping | 2015-09-22T17:14:52.000Z |
|
Recoge el ultimo parentesis dentro de un campo entrecomillado | flavor=\"[^\"]+\(([^\)]+) | <182>1 2016-08-30T13:11:17.530157+02:00 cloudcapprorh01.boaweng.gsnetcloud.corp capacity.instances - - [timeQuality tzKnown="1" isSynced="1" syncAccuracy="946892"] diskconfig="MANUAL" availability_zone="BOAW-1" host="srvboaw01cnodep38.boaw-infra.gsnetcloud.corp" hypervisor_hostname="srvboaw01cnodep38.boaw-infra.gsnetcloud.corp" instance_name="inst-00001ff5" power_state="1" task_state="None" vm_state="active" launched_at="2015-07-23T07:18:03.000000" terminated_at="None" accessipv4="" accessipv6="" addresses="PRB_PRODSERV_LAB (Template 0) \ Subnet 0=10.200.0.16" config_drive="" created="2015-07-23T07:17:59Z" flavor="sabor554??(adf) (1003)" hostid="76651d2e4c981ab8084dad155e52129580ed9fd4baf5fa628cd8bae8" id="61626999-026e-4d06-9eaa-835c0262b939" image="RHEL 7.0 (3fa495a8-fbb6-45c0-9c44-874b9016d4a3)" key_name="jdelarco" name="gitlab" volumes_attached="[]" progress="0" project_id="6e58b12be4bb4972bfb42812ee806065" properties="" security_groups="[{u'name': u'default'}]" status="ACTIVE" updated="2015-11-16T17:06:38Z" user_id="x100183" region=BOAW | String entre parentesis dentro de comillas | 2016-08-31T06:29:21.000Z |
It accepts phone numbers of the form 0XX XXX XX XX (stylized here, it doesn't really accept spaces). Also, it can detect the international area code (e.g. +41 OR 0041 for Switzerland). It's not a good idea to rely on the groups (because they do not work for this reason. At ALL. | ^((00|\+)[0-9]{2,5}|0)[1-9][0-9]{8,9}$ | 0566227662
0566227662
0041566227662
+41566227662 | Simple Telephone number regex | 2015-08-18T18:08:22.000Z |
Sent | Sent | test | 2015-08-25T08:15:54.000Z |
|
Rexeg to find translations without textdomain.
Primarelly made for Wordpress but you can change expression to include different textdomain wrapper. Currently they are set to:
__(' TEXT $phpvars or anything else ')
I used it in SublimeText to search for lines of PHP code, that's why regex is made for phyton... | __\([\s]?'([^']*?)'[\s]?\) | $schedules['fiveminute'] = array(
'interval' => 300,
'display' => __('Every 5 minutes')
);
return $schedules;
return array(
'success' => true,
'msg' => __('Your password have updated successfull. You can login with your new password now.', ET_DOMAIN)
); | Find Translations without textdomain | 2017-04-10T13:10:43.000Z |
Extract descriptions and tags in a PHPDoc comment bloc
Some tags are customized for my usage, but can be removed or replaced.
/!\ multiline descriptions must be cleaned after capture to remove the spaces and '*' at the start of each line after the first. | (?<=^|\v)
\h*+\*\h*+
(?:
(?:
(?P<annotation>
@(?P<name>\w++)
(?:
(?<=@param)\h++(?P<type>\w++(?:\[\])?)\h++\$(?P<variable>\w++)
|(?<=@return)\h++(?P<type>\w++(?:\[\])?)
|(?<=@throws)\h++(?P<class>\w++)
|(?<=@cache)\h++(?P<time>\d++)
|(?<=@roles)\h++(?P<roles>\w++(?:\h*+,\h*+\w++)*)
)?
)
)
(?P<comment>\h++[^\v]++)?
(?:(?P<comment>\v)\h*+\*\h*+(?P<comment>[^\v@\h\*][^\v]++))*+
|(?P<description>(?:[^\v@\h\*][^\v]++)
(?:
\v\h*+\*\h*+[^\v@\h\*][^\v]++
)*+
)
) | /**
* bla bla
*bla2 @ bla2 @
*
* bla bla 3
*
* @olivier voila
* @param string $sku1 bidule
*
* @param string[] $sku2
*
* @param string $sku3 toto bidule @
* machin truc
*
* @param string $sku4
* machin truc
*
* @deprecated
*
* @deprecated toto
*
* @throws Exception
* @throws Exception
* machin
* @return Cfe_Type_Product
* @cache 3600
* @roles toto, titi,truc , machin
*/ | PHPDoc tags extraction | 2018-04-13T08:32:25.000Z |
(?P<Timestamp>\b(?:Jan(?:uary)?|Feb(?:ruary)?|Mar(?:ch)?|Apr(?:il)?|May|Jun(?:e)?|Jul(?:y)?|Aug(?:ust)?|Sep(?:tember)?|Oct(?:ober)?|Nov(?:ember)?|Dec(?:ember)?)\s+\d+\s+\d+:\d+:\d+)\b\s+(?P<FW_ip_addr>\d+\.\d+\.\d+\.\d+)\s+(?P<Event_id>%\w+-\d+-\d+):\s+(?P<Event_message>Built (inbound|outbound) ICMP connection for faddr)\s+(?P<foreign_ip_addr>.*)\s+gaddr\s+(?P<global_ip_addr>.*)\s+laddr\s+(?P<local_ip_addr>.*) | Jul 25 23:57:18 210.56.128.109 %PIX-6-302020: Built outbound ICMP connection for faddr Odyssey_192.168.26.50/0 gaddr youngphoenix/35389 laddr youngphoenix/35389
Jul 25 23:57:34 210.56.128.109 %PIX-6-302020: Built inbound ICMP connection for faddr Thetis2/38748 gaddr 210.56.128.109/0 laddr 210.56.128.109/0 | PIX-6-302020 (Inbound/Outbound ICMP connections) | 2017-09-26T08:38:18.000Z |
|
\bfull name \| \b(.*)\bdate of birth \| \b(.*)\bplace of birth \| \b(.*)\bdate of death \| \b(.*)\bplace of death \| \b(.*) | full name | Nguy\:1ec5n Sinh Cung date of birth | Monday, May 19, 1890 (125 years ago) place of birth | Vietnam date of death | Tuesday, September 2, 1969 (age: 79 years) (46 years ago) place of death | Hanoi, Red River Delta
| get short title of people from woflframalpha | 2016-01-13T16:16:26.000Z |
|
^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))$ | "Abc@def"@example.com | jQuery Validation Email Regex | 2015-06-11T00:14:07.000Z |
|
Find an SVG constructed in javascript nuxt | \[.\("svg",\{.*\}\}\)\]\)\]\)\] | (window.webpackJsonp=window.webpackJsonp||[]).push([[0],Array(26).concat([function(e,t,n){"use strict";n.r(t),function(e,o){n.d(t,"inject",(function(){return y}));var r=n(4),l=n.n(r),c=n(3),d=n.n(c),f=(n(27),n(77),n(293)),m=n(922),h=/LeagueOfLegends/i.test("navigator"in e?null===navigator||void 0===navigator?void 0:navigator.userAgent:""),v=["microsite","modal","lcu"],y=new(l()((function e(t){d()(this,e),this.isWebpackDev=!1,this.isDev=this.isWebpackDev||f.a,this.qaEligible=m.a,this.isStaging=!this.isDev&&["test","staging","preview"].includes(o.env.ENVIRONMENT||""),this.isProd=!this.isDev&&!this.isStaging&&!this.qaEligible,this.mode=v.includes(t)?t:"lcu",this.inBrowser="microsite"===this.mode||!this.isProd&&!h,this.inLCU=!this.inBrowser})))("lcu")}.call(this,n(40),n(57))},,,,function(e,t,n){"use strict";n.r(t),function(e,o,r){n.d(t,"inject",(function(){return N}));n(15),n(20),n(12),n(38);var l=n(13),c=n.n(l),d=n(14),f=n.n(d),m=n(3),h=n.n(m),v=n(4),y=n.n(v),C=n(5),w=n.n(C),j=n(7),x=n.n(j),k=n(1),_=n.n(k),O=n(6),L=n.n(O),P=(n(25),n(8),n(33),n(17),n(24),n(32),n(37),n(35),n(31),n(111),n(60),n(27),n(93),n(21),n(56),n(10)),M=n(382),R=n(53),S=n(157),A=n(26),E=n(105),T=n(58),$=n(296),B=n(237),D=n(95),I=n(41);function G(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function z(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?G(Object(source),!0).forEach((function(t){c()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):G(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function Z(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=_()(e);if(t){var r=_()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return x()(this,n)}}var H="winterblessed-embed-2022",U=Object(M.a)(H);var F=function(t){w()(c,t);var n,l=Z(c);function c(){var t;return h()(this,c),(t=l.call(this)).lastPlayerSettingsPromise=Promise.resolve(),t.lastChampionDataPromise=null,t._inventoryOwned=P.a.observable({}),t._inventoryRequests={},t.setupFocusListenerAlready=!1,t.hubToggleHash=P.a.observable({}),t.isHubToggleHashSetup=!1,t._listeningByMessageType={},"RClientWindowMessenger"in e&&(t.on("_sendMessage",(function(e){if(!RClientWindowMessenger)return console.warn("Can't sendMessage yet; RClientWindowMessenger not ready");e&&RClientWindowMessenger.sendMessage(function(e){if(null===B.inject||void 0===B.inject?void 0:B.inject.enabled){for(var t,n=arguments.length,o=new Array(n>1?n-1:0),r=1;r<n;r++)o[r-1]=arguments[r];(t=console).log.apply(t,o.concat([e]))}return e}(e,"_sendMessage"))})),["hubPreloaded","hubReady","homeData","sectionShow","settingsChanged",T.inject.enabled&&"playerSettingsChanged"].filter(Boolean).forEach((function(e){return t.eventOptions(e,{includeLastTrigger:!0})})),Promise.all(["hubPreloaded","homeData",T.inject.enabled&&"playerSettingsChanged"].filter(Boolean).map((function(e){return t.promise(e)}))).then((function(){t._sendMessage({messageType:"rcp-fe-lol-home-loaded"}),(localStorage.getItem("qaRefreshOverride")||"modal"===A.inject.mode||A.inject.inBrowser||"tencent"===I.inject.publisher||"garena"===I.inject.publisher)&&(localStorage.removeItem("qaRefreshOverride"),t.trigger("sectionShow"))})),t.setupFocusListener(),t.setupSettingsListener(),t.setupClientDataListener(),t.setupHubReadyListener()),T.inject.enabled&&t.setupPlayerSettingsListener(H),t}return y()(c,[{key:"refreshPlayerSettings",value:function(e){this._sendMessage({messageType:"rcp-fe-lol-home-hub-settings-observe",data:{hubId:e}})}},{key:"setPlayerSettings",value:(n=f()(L.a.mark((function e(t){var n=this;return L.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.abrupt("return",this.lastPlayerSettingsPromise=this.lastPlayerSettingsPromise.finally((function(){return new Promise((function(e,o){if(!T.inject.enabled)return o("Player Settings are not enabled in Project Config");var r=z(z({},T.inject.allData),t);A.inject.inBrowser?Object(R.a)((function(){U.set(JSON.stringify(r)),e(),n.trigger("playerSettingsChanged",r)}),750):n.requestResponse({messageType:"rcp-fe-lol-home-hub-settings-set",data:{hubId:H,hubData:r}},{messageType:"rcp-fe-lol-home-hub-settings-set-response",callback:function(t,data){if(!(null==data?void 0:data.success))return o("Player Setting could not be set");Object(R.a)(e)}})}))})));case 1:case"end":return e.stop()}}),e,this)}))),function(e){return n.apply(this,arguments)})},{key:"getChampionData",value:function(e){var t=this,n=function(){return new Promise((function(n,o){var r=Object(R.a)((function(){return o(new Error("Timed Out: Champion ".concat(e," Game Data")))}),1e3);t.requestResponse({messageType:"rcp-fe-lol-home-champ-game-data-request",data:{champId:e}},{messageType:"rcp-fe-lol-home-champ-game-data-response",callback:function(e,data){r(),n(data)}})}))};return this.lastChampionDataPromise=(this.lastChampionDataPromise||Promise.resolve({})).then(n,n)}},{key:"getChampionTasteData",value:function(){var e=this;return new Promise((function(t,n){var o=setTimeout((function(){return n(new Error("Unexpected error"))}),15e3),r=e.requestResponse({messageType:"rcp-fe-lol-home-tastes-skins-get"},{messageType:"rcp-fe-lol-home-tastes-skins-response",callback:function(e,data){clearTimeout(o),r(),200==data.responseCode?t(data):(data.responseCode,n(data))}},{autoUnlisten:!1})}))}},{key:"switchTab",value:function(e){var t=this;return new Promise((function(n,o){return t.requestResponse({messageType:"rcp-fe-lol-home-enabled-tabs-request"},{messageType:"rcp-fe-lol-home-enabled-tabs-response",callback:function(r,data){if(null==data?void 0:data.tabIds){var l=data.tabIds.find((function(t){return e.test(t)}));if(l)return t._sendMessage({messageType:"rcp-fe-lol-home-change-tab",data:{tabId:l}}),n(l)}o("No tab found")}})}))}},{key:"openOffers",value:function(){this._sendMessage({messageType:"rcp-fe-lol-home-personalized-offers-open"})}},{key:"openClash",value:function(){this._sendMessage({messageType:"rcp-fe-lol-home-show-clash"})}},{key:"openModal",value:function(e){A.inject.inBrowser?Object(D.windowOpen)(e):this._sendMessage({messageType:"rcp-fe-lol-home-open-full-page-modal",data:{url:e}})}},{key:"openChampionDetails",value:function(e){var section=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"overview";this._sendMessage({messageType:"rcp-fe-lol-home-open-champion-details",data:{section:section,championId:e}})}},{key:"openGifting",value:function(){this._sendMessage({messageType:"rcp-fe-lol-home-open-store",data:{page:"gift"}})}},{key:"openLoot",value:function(){this._sendMessage({messageType:"rcp-fe-lol-home-open-loot"})}},{key:"openStore",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"CHAMPION_SKIN",n=arguments.length>2?arguments[2]:void 0;this._sendMessage({messageType:"rcp-fe-lol-home-open-store",data:{itemId:e,inventoryType:t,page:n}})}},{key:"openStoreForItems",value:function(e,t){this._sendMessage({messageType:"rcp-fe-lol-home-open-store",data:{items:e,page:t}})}},{key:"purchaseModal",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"CHAMPION_SKIN",source=arguments.length>2?arguments[2]:void 0;this._sendMessage({messageType:"rcp-fe-lol-home-open-paw",data:{itemId:e,inventoryType:t,source:source}})}},{key:"_inventoryKey",value:function(e){var t=e.inventoryType,n=e.itemId;return"".concat(t,":").concat(n)}},{key:"inventoryOwned",value:function(e){var t=e.inventoryType,n=e.itemId,o=this._inventoryKey({inventoryType:t,itemId:n});return this.inventoryOwnedPromise({inventoryType:t,itemId:n}),this._inventoryOwned[o]}},{key:"inventoryOverrideToggle",value:function(e){var t=e.inventoryType,n=e.itemId;if(A.inject.qaEligible){var o=this._inventoryKey({inventoryType:t,itemId:n});P.a.set(this._inventoryOwned,o,!this._inventoryOwned[o])}}},{key:"inventoryOwnedPromise",value:function(e){var t=this,n=e.inventoryType,o=e.itemId,r=this._inventoryKey({inventoryType:n,itemId:o});return this._inventoryRequests[r]||(P.a.set(this._inventoryOwned,r,void 0),this._inventoryRequests[r]=new Promise((function(e){A.inject.inBrowser&&(P.a.set(t._inventoryOwned,r,!1),setTimeout((function(){return e()}))),t.requestResponse({messageType:"rcp-fe-lol-home-get-ownership-request",data:{inventoryType:n,itemId:+o}},{messageType:"rcp-fe-lol-home-get-ownership-response",callback:function(n,o){var l=o.inventoryType,c=o.itemId,d=o.owned;r===t._inventoryKey({inventoryType:l,itemId:c})&&(P.a.set(t._inventoryOwned,r,d),e())}},{autoUnlisten:!1})}))),this._inventoryRequests[r].then((function(){return t._inventoryOwned[r]}))}},{key:"getAssets",value:function(e){var t,n=this,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},r=o.timeout,l=void 0===r?3e3:r,c=o.logCategories,d=void 0!==c&&c;return new Promise((function(o,r){var c=Object(R.a)((function(){return r(new Error('Timed out: Assets category "'.concat(e,'"')))}),l);n.requestResponse({messageType:"rcp-fe-lol-home-assets-game-data-request"},{messageType:"rcp-fe-lol-home-assets-game-data-response",callback:function(n,data){if(d&&console.log("AssetList IDs:\n",Object.keys(data).sort()),data[e])t?Object($.a)(t,data[e]):t=P.a.observable(data[e]),c(),o(t);else{var l=Object.keys(data);r(new Error('Missing: Assets category "'.concat(e,'"; available AssetList IDs are:\n').concat((l.length?l:["[none]"]).sort().join("\n"))))}}})}))}},{key:"setupClientDataListener",value:function(){var t=this;if(this.on("homeData",(function(e){var t=e.puuid,n=e.account_id,o=e.web_region,r=e.summoner_level,l=e.summoner_name,c=e.env,d=e.locale,f=e.port;Object(E.assign)({puuid:t,accountId:n,env:c,webRegion:o,summonerLevel:r,summonerName:l,locale:d,port:f})})),A.inject.inBrowser&&"location"in e){var n=location,o=n.port,r=n.protocol,l="".concat(r,"//127.0.0.1:").concat(o);this.trigger("homeData",{puuid:"fbd645f4-5e6c-11ea-bc55-0242ac130003",account_id:1234567890,env:"NA1",web_region:"na",locale:"en_US",summoner_level:30,summoner_name:"Some Some Summoner",app_name:"LeagueClient",app_version:"0.0.0",user_agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36",system_os:"Macintosh; Intel Mac OS X 10_10_3",port:o,assetUrls:{baseUrl:l,rpIconUrl:"".concat(l,"/fe/lol-home/icon-rp.png"),ipIconUrl:"".concat(l,"/fe/lol-home/icon-ip.png")}})}this._listenFor({messageType:"rcp-fe-lol-home-data-response",callback:function(e,data){(null==data?void 0:data.clientData)&&t.trigger("homeData",data.clientData)}}),this._sendMessage({messageType:"rcp-fe-lol-home-data-request"})}},{key:"setupFocusListener",value:function(){var e=this;if(!this.setupFocusListenerAlready){this.setupFocusListenerAlready=!0;var t=(new(P.a.extend({data:function(){return{homeShown:!0,sectionShown:!1,modalShown:!1}},computed:{shown:function(){return this.homeShown&&this.sectionShown&&!this.modalShown}},render:function(){}}))).$mount();t.$watch("shown",(function(t){t?(T.inject.enabled&&e.refreshPlayerSettings(H),e.trigger("sectionShow")):e.trigger("sectionHide")})),this._listenFor({messageType:"rcp-fe-lol-home-section-show",callback:function(){t.sectionShown=!0}}),this._listenFor({messageType:"rcp-fe-lol-home-show",callback:function(){t.homeShown=!0}}),this._listenFor({messageType:"rcp-fe-lol-home-hide",callback:function(){t.homeShown=!1}}),this._listenFor({messageType:"rcp-fe-lol-home-section-hide",callback:function(){t.sectionShown=!1}}),this.tap("_sendMessage",(function(e){if(e&&/rcp-fe-lol-home-open-full-page-modal/.test(e.messageType)){var n=document.querySelector('[data-ping-meta*="'.concat("winterblessed-embed-2022",'"] .page-container'));if(n){t.modalShown=!0,n.addEventListener("mousemove",(function e(){t.modalShown=!1,n.removeEventListener("mousemove",e)}))}else console.error("No way of knowing the modal has closed! No matching .page-container")}return e}))}}},{key:"isHubToggled",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]&&arguments[1];return e in this.hubToggleHash||P.a.set(this.hubToggleHash,e,n),this.isHubToggleHashSetup||(this.isHubToggleHashSetup=!0,this.requestResponse({messageType:"rcp-fe-lol-home-hub-toggles-observe"},{messageType:"rcp-fe-lol-home-hub-toggles-response",callback:function(e,data){o(data,(function(e,n){t.hubToggleHash[n]=e}))}},{autoUnlisten:!1})),this.hubToggleHash[e]}},{key:"setupSettingsListener",value:function(){var e=this;this.on("settingsChanged",(function(e){return Object(E.assign)(e)})),this.requestResponse({messageType:"rcp-fe-lol-home-settings-ux-observe"},{messageType:"rcp-fe-lol-home-settings-ux-response",callback:function(t,data){data&&e.trigger("settingsChanged",{lowSpecMode:data.potatoModeEnabled})}},{autoUnlisten:!1})}},{key:"setupPlayerSettingsListener",value:function(e){var t=this;if(this.on("playerSettingsChanged",(function(e){Object(T.updatePlayerSettings)(e)})),A.inject.inBrowser){var n=z(z({},T.inject.useFallback?T.inject.fallbackData:{}),function(){try{return JSON.parse(U.get())}catch(e){return{}}}());U.set(JSON.stringify(n)),this.trigger("playerSettingsChanged",n)}else{"immediately"==T.inject.useFallback?this.trigger("playerSettingsChanged",T.inject.fallbackData):"after-timeout"==T.inject.useFallback&&this.once("playerSettingsChanged",Object(R.a)((function(){t.trigger("playerSettingsChanged",T.inject.fallbackData)}),T.inject.timeout));var o=r((function(data){t.trigger("playerSettingsChanged",data)}));this.requestResponse({messageType:"rcp-fe-lol-home-hub-settings-observe",data:{hubId:e}},{messageType:"rcp-fe-lol-home-hub-settings-observe-response",callback:function(e,data){o(data||{})}},{autoUnlisten:!1})}}},{key:"setupHubReadyListener",value:function(){var e=this;this.once("sectionShow",(function(){(function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:new Date,t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:3e4;return new Promise((function(n,o){return function r(){Object(R.a)((function(){+new Date-+e>t?o():document.body.offsetWidth?n():r()}),50)}()}))})().catch((function(){return console.error("Body element never became visible")})).finally((function(){return e.trigger("hubReady")}))}))}},{key:"requestResponse",value:function(e,t){var n,o=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},l=r.autoUnlisten,c=void 0===l||l,d=r.maxTries,f=void 0===d?3:d,m=r.timeout,h=void 0===m?3e4:m,v=0,y=[this._listenFor(t),this._listenFor(z(z({},t),{},{callback:function(){c?w():clearTimeout(n)}}))],C=function t(){++v,o._sendMessage(e),v<f&&(n=setTimeout(t,h))};function w(){clearTimeout(n),y.forEach((function(e){return e()}))}return C(),w}},{key:"_sendMessage",value:function(e){this.trigger("_sendMessage",e)}},{key:"_listenFor",value:function(t){var n=this,o=t.messageType,r=t.callback;return"RClientWindowMessenger"in e?(this._listeningByMessageType[o]||(this._listeningByMessageType[o]=!0,RClientWindowMessenger.addMessageListener({messageType:o,handlers:function(e,data){n.trigger(o,e,data)}})),this.on(o,r)):(console.warn("Can't listen for ".concat(o," yet; RClientWindowMessenger not ready")),function(){})}}]),c}(S.a),N=new F}.call(this,n(40),n(132),n(776))},,,,,,function(e,t,n){"use strict";n.r(t),n.d(t,"awaitPromiseHash",(function(){return h})),n.d(t,"cached",(function(){return y.a})),n.d(t,"castNotNaN",(function(){return C.a})),n.d(t,"createEagerLoader",(function(){return w.a})),n.d(t,"createStorageControls",(function(){return j.a})),n.d(t,"CustomEvents",(function(){return x.a})),n.d(t,"differenceStrong",(function(){return O})),n.d(t,"entriesStrong",(function(){return L.a})),n.d(t,"filterBoolean",(function(){return P.a})),n.d(t,"formatSec",(function(){return M.a})),n.d(t,"hashContent",(function(){return S})),n.d(t,"IS_RETINA",(function(){return A.a})),n.d(t,"itIs",(function(){return E.a})),n.d(t,"keysStrong",(function(){return T})),n.d(t,"setLogAndReturnIsNoOp",(function(){return $.b})),n.d(t,"logAndReturn",(function(){return $.a})),n.d(t,"prefixedLogAndReturn",(function(){return B.a})),n.d(t,"preload",(function(){return D.a})),n.d(t,"preloadFont",(function(){return I.a})),n.d(t,"preloadImagesIn",(function(){return G.a})),n.d(t,"mapStrong",(function(){return z.a})),n.d(t,"mapValuesStrong",(function(){return Z.a})),n.d(t,"measureAsync",(function(){return H.a})),n.d(t,"measurements",(function(){return U.b})),n.d(t,"measure",(function(){return U.a})),n.d(t,"Queue",(function(){return F.a})),n.d(t,"rafInterval",(function(){return N.a})),n.d(t,"rafThrottle",(function(){return V.a})),n.d(t,"rafTimeout",(function(){return W.a})),n.d(t,"stepIndex",(function(){return J.a})),n.d(t,"stringify",(function(){return K.a})),n.d(t,"toHash",(function(){return oe})),n.d(t,"typeGuard",(function(){return re.a})),n.d(t,"typed",(function(){return ie.a})),n.d(t,"withTimeout",(function(){return ae.a}));var o=n(14),r=n.n(o),map=n(103),l=n.n(map),c=n(102),d=n.n(c),f=n(6),m=n.n(f);n(32),n(8),n(33),n(37),n(35);function h(e){return v.apply(this,arguments)}function v(){return v=r()(m.a.mark((function e(t){return m.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=d.a,e.next=3,Promise.all(l()(t,function(){var e=r()(m.a.mark((function e(t,n){return m.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=n,e.next=3,t;case 3:return e.t1=e.sent,e.abrupt("return",[e.t0,e.t1]);case 5:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}()));case 3:return e.t1=e.sent,e.abrupt("return",(0,e.t0)(e.t1));case 5:case"end":return e.stop()}}),e)}))),v.apply(this,arguments)}var y=n(135),C=n(297),w=n(298),j=n(382),x=n(157),k=n(190),_=n.n(k);function O(e,t){return _()(e,t)}var L=n(378),P=n(107),M=n(281),R=n(932);function S(content){return Object(R.createHash)("sha1").update(content).digest("hex")}var A=n(379),E=n(282);n(21);function T(e){return Object.keys(e)}var $=n(134),B=n(279),D=n(154),I=n(294),G=n(193),z=n(194),Z=n(383),H=n(191),U=n(283),F=n(280),N=n(299),V=n(384),W=n(53),J=n(385),K=n(284),Y=n(156),X=n.n(Y),Q=n(278),ee=n.n(Q),te=n(94),ne=n.n(te);n(48);function oe(e,t,n){return ne()(ee()(t,o),(function(e){var t=X()(e),r=t[0];if(t.slice(1).length&&n)throw new Error("string"==typeof n?n:n(o(r)));return r}));function o(t){return function(e){return"function"==typeof e}(e)?e(t):t[e]}}var re=n(234),ie=n(300),ae=n(155)},,,,,function(e,t,n){"use strict";n.r(t),function(e){n.d(t,"inject",(function(){return D}));n(15),n(21),n(20),n(24),n(17),n(38);var o=n(13),r=n.n(o),l=n(16),c=n.n(l),d=n(3),f=n.n(d),m=n(4),h=n.n(m),v=n(5),y=n.n(v),C=n(7),w=n.n(C),j=n(1),x=n.n(j),k=n(2),_=n.n(k),O=(n(12),n(8),n(60),n(56),n(31),n(0)),L=n(133),P=n(378),M=n(229);function R(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function S(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?R(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):R(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function A(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=x()(e);if(t){var r=x()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return w()(this,n)}}var E=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":_()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},T=n(1002),$=T("./".concat(e("en_US"))).default,B=function(t){y()(o,t);var n=A(o);function o(){var e,t;return f()(this,o),(e=n.apply(this,arguments)).i18n=null!==(t=e.$i18n)&&void 0!==t?t:null,e}return h()(o,[{key:"useSlugs",get:function(){return!1}},{key:"value",get:function(){var e=this;return this.i18n?this.useSlugs?Object(P.a)(L.a).find((function(t){return c()(t,2)[1].slug==e.i18n.locale}))[0]:this.i18n.locale:"en_US"}},{key:"publisher",get:function(){return L.a[this.value].publisher}},{key:"region",get:function(){return L.a[this.value].region}},{key:"vars",get:function(){return S(S({},$),this.varsWithoutDefaults)}},{key:"varsWithoutDefaults",get:function(){var t,n,o="./".concat(e(this.value));try{n=null===(t=T(o))||void 0===t?void 0:t.default}catch(e){n=void 0}return S({},n)}},{key:"mounted",value:function(){this.$watch(this.value,(function(t){Object(M.setLocale)(e(t).split("-").map((function(e,i){return i?e.toUpperCase():e})).join("-"))}),{immediate:!0})}}]),o}(O.h.extend({render:function(){}})),D=(new(B=E([O.a],B))).$mount();t.default=function(e){D.i18n=e.i18n}}.call(this,n(68))},,,,function(e,t,n){"use strict";function o(e){var t=e.condition,n=void 0===t?function(){return!0}:t,o=e.slotScope,r=e.tagIfSiblings,l=void 0===r?"div":r,c=e.slot,slot=void 0===c?function(){return"default"}:c;return function(e){if(n.apply(this)){var t,r,c=null===(t=(r=this.$scopedSlots)[slot.apply(this)])||void 0===t?void 0:t.call(r,o?o.apply(this):{});return(null==c?void 0:c.length)>1?e(l,c):c}return e("span")}}n.d(t,"a",(function(){return o}))},,,,,,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return c}));var o=n(104),r=n.n(o),l=Math.pow(2,31)-1;function c(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;if(t>l){var n=!1,o=c(e,t-l);return function(){n||(n=!0,o())}}var d,f=setTimeout((function(){f=void 0,d=r()((function(){d=void 0,e()}))}),t);return function(){f&&clearTimeout(f),d&&r.a.cancel(d)}}},,,,,function(e,t,n){"use strict";n.r(t),function(e,o,r){n.d(t,"updatePlayerSettings",(function(){return _})),n.d(t,"inject",(function(){return L}));var l=n(13),c=n.n(l),d=(n(21),n(64),n(20),n(24),n(8),n(12),n(17),n(38),n(10)),f=n(931);function m(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function h(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?m(Object(source),!0).forEach((function(t){c()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):m(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}var v=e.playerSettingsConfig,y=v.enabled,C=v.useFallback,w=v.timeout,data=v.data,j=null,x=d.a.observable(o(data,(function(){}))),k=Object.keys(data);function _(e){var t=Object(f.MD5)(e);j!=t&&(j=t,Object.assign(x,r(e,k)))}var O=h(h({},o(data,(function(e,t){return function(){return x[t]}}))),{},{enabled:function(){return y},useFallback:function(){return C},timeout:function(){return w},fallbackData:function(){return C&&data},allData:function(){return x}}),L=(new(d.a.extend({computed:O,render:function(e){}}))).$mount()}.call(this,n(128).inject,n(94),n(1112))},,,,,,,,,,,,,,,,function(e,t,n){"use strict";n.d(t,"b",(function(){return c}));var o;n(67),n(99),n(52);try{if("localStorage"in globalThis){var r=parseInt(localStorage.getItem("nowOverride"));Number.isFinite(r)&&(o=new Date(r))}}catch(e){o=void 0,console.warn(e)}t.a=o;var l=o?o.valueOf()-0-Date.now():0;function c(){return Date.now()+l}},,,,,,,,,,,function(e,t,n){"use strict";n.r(t),n.d(t,"setMinViewportResizeDelay",(function(){return x})),n.d(t,"props",(function(){return k}));n(21),n(20),n(24),n(12),n(17),n(38);var o=n(13),r=n.n(o),l=n(68),c=n.n(l),d=n(89),f=n.n(d),m=(n(32),n(8),n(35),n(31),n(33),n(111),n(96)),h=n(45),v=n(53),y=n(193);function C(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}var w=n(376),j=50;function x(e){j=e}var k=["width","height","scrollHeight"];t.default={data:function(){return f()(k,[])},render:Object(h.a)({slotScope:function(){return this.values}}),computed:{values:function(){var e=this;return f()(k,k.map((function(t){return e[t]})))}},watch:function(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?C(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):C(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}({values:function(){this.lastChange=(new Date).valueOf(),this.$emit("input",this.values)}},f()(k,k.map((function(e){return function(t){this.$emit("update:".concat(c()(e)),t)}})))),mounted:function(){var e=this;this.$nextTick((function(){var t,n=function(){var n,o,rect=arguments.length>0&&void 0!==arguments[0]?arguments[0]:(null===(n=(o=e.$el).getBoundingClientRect)||void 0===n?void 0:n.call(o))||{};t&&(t(),t=void 0),k.forEach((function(t){e[t]=Math.round(rect[t]||e.$el[t])}))};if(t=Object(v.a)(n,0),e.$el.getBoundingClientRect){var o=new w(e.$el,n);e.$once("hook:beforeDestroy",(function(){o.detach(n)}))}if(e.$once("hook:beforeDestroy",m.inject.onResize((function(){(!e.lastChange||(new Date).valueOf()-e.lastChange>j)&&n()}))),e.$el instanceof HTMLElement){var r,l=e.$el;null===(r=Object(y.a)(l,{only:"img"}))||void 0===r||r.finally(n)}}))}}},function(e,t,n){"use strict";n.r(t),n.d(t,"injectStaggerApplyContext",(function(){return T})),n.d(t,"setDefaults",(function(){return B})),n.d(t,"optionsMixin",(function(){return I}));n(15),n(38);var o=n(18),r=n.n(o),l=n(13),c=n.n(l),d=n(3),f=n.n(d),m=n(4),h=n.n(m),v=n(5),y=n.n(v),C=n(7),w=n.n(C),j=n(1),x=n.n(j),k=n(2),_=n.n(k),O=n(102),L=n.n(O),P=(n(12),n(8),n(20),n(46),n(64),n(17),n(99),n(52),n(93),n(92),n(33),n(25),n(21),n(31),n(24),n(0)),M=n(53);function R(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function S(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?R(Object(source),!0).forEach((function(t){c()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):R(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function A(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=x()(e);if(t){var r=x()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return w()(this,n)}}var E=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":_()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},T={from:Symbol("staggerApplyContext"),default:function(){return{}}},$={delay:150,initialDelay:0};function B(e){Object.assign($,e)}var D=function(e){y()(n,e);var t=A(n);function n(){var e;return f()(this,n),(e=t.apply(this,arguments)).children=[],e.applyIndex=0,e}return h()(n,[{key:"beforeCreate",value:function(){this.actualOrder=Symbol("actualOrder")}},{key:"register",value:function(e){var t=this;return this.children.push(e),this.children.forEach((function(e,i){e[t.actualOrder]=Number.isFinite(e.order)?e.order:i})),this.children.sort((function(e,n){return e[t.actualOrder]-n[t.actualOrder]})),function(){var i=t.children.indexOf(e);-1!==i&&t.children.splice(i,1)}}},{key:"applied",get:function(){return this.applyIndex>0}},{key:"apply",value:function(){var e=this;if(!this.applying){this.applying=!0;var t=this.children[this.applyIndex],n=t.getOptions().delay;this.cancelChildApply=Object(M.a)((function(){e.$off("hook:beforeDestroy",e.cancelChildApply),t.apply(),(t.nextPromise||Promise.resolve()).then((function(){e.applying=!1,e.applyIndex+=1,e.shouldApply&&e.apply()}))}),this.applied?n:this.initialDelay),this.$on("hook:beforeDestroy",this.cancelChildApply)}}},{key:"shouldApply",get:function(){return[this.applyIndex<this.children.length,this.value].every(Boolean)}},{key:"shouldApplyChanged",value:function(e){e?(this.apply(),this.finishSync=this.cancel.bind(this)):this.finishSync=void 0}},{key:"onValueChange",value:function(e){this.reverse&&!e&&this.reverseApply()}},{key:"cancel",value:function(){var e;null===(e=this.cancelChildApply)||void 0===e||e.call(this),this.children.forEach((function(e){var t;null===(t=e.rejectNextPromise)||void 0===t||t.call(e,new Error("cancel() called.")),e.apply()})),this.applying=!1,this.applyIndex=this.children.length}},{key:"reverseApply",value:function(){var e;null===(e=this.cancelChildApply)||void 0===e||e.call(this),this.children.forEach((function(e){return e.reverse()})),this.applying=!1,this.applyIndex=0}},{key:"render",value:function(e){var t;return(null===(t=this.$slots.default)||void 0===t?void 0:t.length)>1?e("div",{},this.$slots.default):this.$slots.default}}]),n}(Object(P.d)(P.h.extend({props:{value:{type:Boolean},initialDelay:{type:Number,default:$.initialDelay},reverse:{type:Boolean}},provide:function(){return c()({},T.from,this)}}),P.h.extend(I({defaults:$}))));function I(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.defaults,n=e.additionalProps,o={delay:{type:Number,default:null==t?void 0:t.delay},addClass:[String,Object],addStyle:[String,Object]},l=[].concat(r()(Object.keys(o)),r()(Object.keys(n||{})));return{props:S(S({},o),n||{}),computed:{options:function(){var e=this;return L()(l.filter((function(option){return void 0!==e[option]})).map((function(option){return[option,e[option]]})))}}}}E([Object(P.i)("shouldApply")],D.prototype,"shouldApplyChanged",null),E([Object(P.i)("value")],D.prototype,"onValueChange",null),E([Object(P.f)("finish")],D.prototype,"finishSync",void 0),D=E([P.a],D),t.default=D},,,,function(e,t,n){"use strict";(function(e,o,r){n.d(t,"a",(function(){return j}));var l=n(18),c=n.n(l),d=n(68),f=n.n(d),m=(n(25),n(107)),h=n(194),v=n(926),y=n(153),C={skinWinterDiana:"diana",skinWinterShaco:"shaco",skinWinterSwain:"swain",skinWinterWarwick:"warwick",skinWinterWarwickPrestige:"warwickp",skinWinterZilean:"zilean",skinWinterZoe:"zoe"},w=Object(m.a)(Object(h.a)(e.inventory,(function(e,t){if("item"in e&&e.item&&"CHAMPION"===e.item.inventoryType)return{slug:t,inventory:e,bg:"sc-".concat(f()(t)),title:e.i18n,priceRP:"".concat(e.i18n,".price_rp"),priceBE:y.inject.current.championPriceDrop?"".concat(e.i18n,".price_be"):"".concat(e.i18n,".price_be.featured")}}))),j=Object(m.a)(Object(h.a)(e.inventory,(function(e,t){if("item"in e&&e.item&&"CHAMPION_SKIN"===e.item.inventoryType)return{slug:t,skin:C[t],inventory:e,title:e.i18n,priceRP:"".concat(e.i18n,".price")}}))),x=(o(j,(function(e){return Object(v.a)("item"in e.inventory&&e.inventory.item&&e.inventory.item.itemId)})),Object(m.a)(Object(h.a)(e.inventory,(function(e,t){if("item"in e&&e.item&&"BUNDLES"===e.item.inventoryType||"items"in e)return{slug:t,inventory:e,bg:"sc-".concat(f()(t)),title:e.i18n}})))),k=r(Object(m.a)(Object(h.a)(e.inventory,(function(e,t){if("item"in e&&e.item&&"EVENT_PASS"===e.item.inventoryType)return{slug:t,inventory:e,bg:"sc-".concat(f()(t)),title:e.i18n}})))),_=Object(m.a)([].concat(c()(w),c()(j),c()(x),[k]));t.b=_}).call(this,n(128).inject,n(278),n(1050))},,,,,function(e,t,n){"use strict";n.r(t),n.d(t,"windowOpen",(function(){return c})),n.d(t,"onWindowOpen",(function(){return d})),n.d(t,"inject",(function(){return f}));n(92),n(48),n(8),n(59),n(65),n(37),n(27),n(20),n(46),n(70),n(32),n(35);function o(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return r(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return r(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var i=0,o=function(){};return{s:o,n:function(){return i>=e.length?{done:!0}:{done:!1,value:e[i++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var l,c=!0,d=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return c=e.done,e},e:function(e){d=!0,l=e},f:function(){try{c||null==n.return||n.return()}finally{if(d)throw l}}}}function r(e,t){(null==t||t>e.length)&&(t=e.length);for(var i=0,n=new Array(t);i<t;i++)n[i]=e[i];return n}var l=[];function c(){var e,t=o(l);try{for(t.s();!(e=t.n()).done;){var n=e.value;try{n.apply(void 0,arguments)}catch(e){console.error("Error in onWindowOpen callback: ".concat(e))}}}catch(e){t.e(e)}finally{t.f()}return open.apply(void 0,arguments)}function d(e){var t=!1;return l.push(e),function(){t||(t=!0,l.splice(l.indexOf(e),1))}}var f=c},function(e,t,n){"use strict";n.r(t),function(e,o){n.d(t,"setScreensizeByProperty",(function(){return y})),n.d(t,"inject",(function(){return C}));n(67),n(8),n(17),n(93),n(21),n(60);var r,l=n(10),c=n(157),d=n(376);"document"in e&&((r=document.createElement("div")).className="fixed inset-0 invisible pointer-events-none z-behind",document.body.appendChild(r));var f,m,h=l.a.observable({height:(null==r?void 0:r.offsetHeight)||+o.env.VIEWPORT_HEIGHT_DEFAULT||667,width:globalThis.innerWidth||+o.env.VIEWPORT_WIDTH_DEFAULT||375,modifier:""}),v=new c.a;function y(e){m&&m.forEach((function(e){return l.a.delete(h,e)})),f=e,(m=Object.keys(f).sort((function(e,t){return f[t]-f[e]}))).forEach((function(e){return l.a.set(h,e,void 0)}))}h.onResize=function(e){return v.on("resize",e)},y({sm:576,md:768,lg:992,xl:1200,xxl:1800}),r&&d&&new d(r,(function(){var e=globalThis.innerWidth,t=r.offsetHeight;h.width=e,h.height=t,Object.keys(f).forEach((function(t){l.a.set(h,t,e>=f[t])}));var n=m.find((function(e){return h[e]}))||"";h.modifier=n||n,v.trigger("resize",{width:e,height:t})}));var C=h}.call(this,n(40),n(57))},,,,,function(e,t,n){"use strict";n.r(t),n.d(t,"modalsRoot",(function(){return c}));var o=n(13),r=n.n(o),l=(n(20),n(46),n(8),n(60),n(92),n(152)),c={from:Symbol("modals-root"),default:void 0};t.default={inject:{blockScroll:l.blockScroll},provide:function(){return r()({},c.from,this)},data:function(){return{modals:[]}},render:function(e){return e("span",this.$slots.default)},methods:{attach:function(e){var t=this;return e.$attrs.modalKey&&this.modals.find((function(t){var n=t.$attrs;return n.modalKey&&e.$attrs.modalKey===n.modalKey}))?function(){}:(-1===this.modals.indexOf(e)&&this.modals.push(e),function(){var i=t.modals.indexOf(e);-1!==i&&t.modals.splice(i,1)})}},computed:{isModalShown:function(){return!!this.modals.find((function(e){return e.value}))}},watch:{isModalShown:{immediate:!0,handler:function(e){var t;null===(t=this.unblockScroll)||void 0===t||t.call(this),e&&(this.unblockScroll=this.blockScroll())}}}}},,,,function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return d})),n.d(t,"assign",(function(){return f}));n(67);var o,r=n(10),l=n(296),c=n(26),d=r.a.observable({puuid:void 0,accountId:void 0,env:void 0,webRegion:void 0,locale:void 0,summonerLevel:void 0,summonerName:void 0,port:null===(o=globalThis.location)||void 0===o?void 0:o.port,lowSpecMode:!c.inject.inBrowser});function f(e){Object(l.a)(d,e)}},function(e,t,n){"use strict";n.d(t,"a",(function(){return c}));var o=n(88),r=n.n(o),l=["context","target","event"];function c(e,t){var n=e.context,o=e.target,c=void 0===o?null==n?void 0:n.$el:o,d=e.event,f=r()(e,l);function m(){c.removeEventListener(d,t)}return c.addEventListener(d,t,f),null==n||n.$on("hook:beforeDestroy",m),function(){m(),null==n||n.$off("hook:beforeDestroy",m)}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));n(24),n(8);function o(e){return e.filter(Boolean)}},,,,,,function(e,t,n){"use strict";n.r(t),n.d(t,"props",(function(){return L}));n(21),n(20),n(24),n(12),n(17),n(38);var o=n(14),r=n.n(o),l=n(13),c=n.n(l),d=n(18),f=n.n(d),m=n(89),h=n.n(m),v=n(6),y=n.n(v),C=(n(25),n(32),n(8),n(35),n(31),n(192)),w=n(384),j=n(45);function x(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function k(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?x(Object(source),!0).forEach((function(t){c()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):x(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}var _=["top","left"],O=["scrollTop","scrollLeft","scrollHeight","scrollWidth"],L=[].concat(_,O,["scrollParentWidth","scrollParentHeight"]);t.default={inject:{scrollParent:C.b},data:function(){return h()([].concat(f()(L),["resolvedScrollParent"]),[])},render:Object(j.a)({slotScope:function(){return this.values}}),computed:{scrollValues:function(){var e,t,n=this;return k(k({},h()(O,O.map((function(e){return n[e]})))),{},{scrollParentWidth:Math.round(null===(e=this.resolvedScrollParent)||void 0===e?void 0:e.size.width),scrollParentHeight:Math.round(null===(t=this.resolvedScrollParent)||void 0===t?void 0:t.size.height)})},values:function(){var e,t,rect=(null===(e=this.$el)||void 0===e||null===(t=e.getBoundingClientRect)||void 0===t?void 0:t.call(e))||{};return k(k({},this.scrollValues),h()(_,_.map((function(e){return rect[e]}))))}},watch:{scrollValues:function(){this.$emit("input",this.values)}},mounted:function(){var e=this;this.$nextTick(r()(y.a.mark((function t(){var n;return y.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,e.scrollParent;case 2:e.resolvedScrollParent=t.sent,n=Object(w.a)((function(){O.forEach((function(t){e[t]=e.resolvedScrollParent[t]}))})),e.resolvedScrollParent.addEventListener("scroll",n,{passive:!0}),e.$once("hook:beforeDestroy",(function(){e.resolvedScrollParent.removeEventListener("scroll",n)})),n();case 7:case"end":return t.stop()}}),t)}))))}}},function(e,t,n){"use strict";n.r(t),function(e,o){n.d(t,"inject",(function(){return M}));n(20),n(24),n(12),n(17),n(38),n(48),n(59),n(65),n(37),n(27),n(46),n(70),n(32),n(35);var r=n(14),l=n.n(r),c=n(13),d=n.n(c),f=n(6),m=n.n(f),h=(n(8),n(33),n(60),n(21),n(25),n(56),n(93),n(135)),v=n(157),y=n(107),C=n(30),w=n(26);function j(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return x(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return x(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var i=0,o=function(){};return{s:o,n:function(){return i>=e.length?{done:!0}:{done:!1,value:e[i++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,l=!0,c=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return l=e.done,e},e:function(e){c=!0,r=e},f:function(){try{l||null==n.return||n.return()}finally{if(c)throw r}}}}function x(e,t){(null==t||t>e.length)&&(t=e.length);for(var i=0,n=new Array(t);i<t;i++)n[i]=e[i];return n}function k(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function _(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?k(Object(source),!0).forEach((function(t){d()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):k(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}var O=Object(h.a)((function(){var e=new v.a;return e.eventOptions("audioSettingsUpdated",{includeLastTrigger:!0}),C.inject.requestResponse({messageType:"rcp-fe-lol-home-settings-audio-observe"},{messageType:"rcp-fe-lol-home-settings-audio-response",callback:function(t,data){e.trigger("audioSettingsUpdated",data)}},{autoUnlisten:!1}),e}));function L(e){var t=e.category,n=e.otherAssetsHash,o=void 0===n?{}:n;return(t?C.inject.getAssets(t):Promise.resolve({})).then((function(e){return _(_({},o),e)}),(function(e){return console.error("[$rClientAudio] createGetAssetsPromise",e),o}))}var P={"button-hover":"/fe/lol-static-assets/sounds/sfx-uikit-button-gold-hover.ogg","button-click":"/fe/lol-static-assets/sounds/sfx-uikit-button-gold-click.ogg","button-pageup-click":"/fe/lol-static-assets/sounds/sfx-uikit-button-pageup-click.ogg","icon-click":"/fe/lol-static-assets/sounds/sfx-uikit-text-click-small.ogg"};var M={getPlayAmbience:function(e){var t=e.category,n=e.otherAssetsHash,o=void 0===n?{}:n,r=e.requireAsset,c=void 0===r?!w.inject.inBrowser&&!w.inject.isProd:r,d=L({category:t,otherAssetsHash:o}),f={primary:"rcp-fe-lol-home-audio-play-primary-ambience",secondary:"rcp-fe-lol-home-audio-play-secondary-ambience"};return function(){var e=l()(m.a.mark((function e(n,o){var r,l,h,v,w,j,x,k,_;return m.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return r=o.ambientAsset,l=o.introAsset,h=o.ambientOptions,v=o.introOptions,w=o.requireAsset,j=void 0===w?c:w,e.next=3,d;case 3:if(x=e.sent,!j){e.next=9;break}if(!(k=Object(y.a)([l,r]).find((function(e){return!(e in x)})))){e.next=9;break}throw _=Object.keys(x),new Error('Missing: Asset ID="'.concat(k,'" not in AssetList ID="').concat(t,'"\nAvailable assets are:\n').concat((_.length?_:["[none]"]).sort().join("\n")));case 9:C.inject._sendMessage({messageType:f[n],data:{ambientUrl:x[r]||r,introUrl:x[l]||l,introOptions:v,ambientOptions:h}});case 10:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}()},getPlayAudioAsset:function(t){var n=t.category,o=t.otherAssetsHash,r=void 0===o?{}:o,c=t.requireAsset,d=void 0===c?!w.inject.inBrowser&&!w.inject.isProd:c,f=L({category:n,otherAssetsHash:_(_({},P),r)});return function(){var t=l()(m.a.mark((function t(o){var r,l,c,h,v,y,C,w,x=arguments;return m.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return r=x.length>1&&void 0!==x[1]?x[1]:{},l=r.requireAsset,c=void 0===l?d:l,t.next=3,f;case 3:h=t.sent,v=j(e(o)),t.prev=5,v.s();case 7:if((y=v.n()).done){t.next=15;break}if(C=y.value,!c||C in h){t.next=12;break}throw w=Object.keys(h),new Error('Missing: Asset ID="'.concat(o,'" not in AssetList ID="').concat(n,'"\nAvailable assets are:\n').concat((w.length?w:["[none]"]).sort().join("\n")));case 12:M.playAudioUI(h[C]||C);case 13:t.next=7;break;case 15:t.next=20;break;case 17:t.prev=17,t.t0=t.catch(5),v.e(t.t0);case 20:return t.prev=20,v.f(),t.finish(20);case 23:case"end":return t.stop()}}),t,null,[[5,17,20,23]])})));return function(e){return t.apply(this,arguments)}}()},onSettingsUpdated:function(e,t){var n;return O().on("audioSettingsUpdated",(function(data){if(data){var o=e(data),r=JSON.stringify(o);r!==n&&(n=r,t(o))}}))},openSoundSettings:function(){w.inject.inBrowser?o("[$rClientAudio] Open Sound Settings"):C.inject._sendMessage({messageType:"rcp-fe-lol-home-settings-open",data:{settingsCategory:"lol-sound"}})},playAudioUI:function(e){C.inject._sendMessage({messageType:"rcp-fe-lol-home-audio-play-ui",data:{url:e}})},stopAmbientChannel:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n={primary:"rcp-fe-lol-home-audio-stop-primary-ambience",secondary:"rcp-fe-lol-home-audio-stop-secondary-ambience"}[e];C.inject._sendMessage({messageType:n,data:t})}}}.call(this,n(87),n(36).logAndReturn)},,,,,,,,,,,,function(e,t,n){"use strict";n.r(t);n(21),n(20),n(24),n(12),n(38);var o=n(13),r=n.n(o),l=n(18),c=n.n(l),d=n(102),f=n.n(d),m=n(89),h=n.n(m),v=n(938),y=n.n(v),C=n(190),w=n.n(C),j=(n(25),n(99),n(52),n(8),n(17),n(31),n(85)),x=n(113),k=n(297);function _(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function O(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?_(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):_(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}var L=w()(x.props,j.props),P=y()([].concat(c()(j.props),c()(L),["inViewProgressTop","inViewProgressLeft"]));function M(e){return Number.isFinite(e)&&e>=0&&e<=1}var R={components:{"with-scroll":n(113).default,"with-size":n(85).default},props:{trueValue:{default:!0},falseValue:{default:!1},offsetSelf:{default:0,validator:M},offsetView:{default:0,validator:M}},data:function(){return h()(P,[])},methods:{onResize:function(e){var t=this;j.props.forEach((function(n){t[n]=e[n]}))},onScroll:function(e){var t=this;L.forEach((function(n){t[n]=e[n]}))}},computed:{inView:function(){var e;e=this.height/2;var t=Math.min(e-1,e*this.offsetSelf);e=this.width/2;var n=Math.min(e-1,e*this.offsetSelf);e=this.scrollParentHeight/2;var o=Math.min(e-1,e*this.offsetView);e=this.scrollParentWidth/2;var r=Math.min(e-1,e*this.offsetView),l=this.top-t>-this.height+o&&this.top+t<this.scrollParentHeight-o,c=this.left-n>-this.width+r&&this.left+n<this.scrollParentWidth-r,d=this.scrollParentHeight-o-t,f=d-(-this.height+o+t),m=Math.min(f,Math.max(0,d-this.top));this.inViewProgressTop=Object(k.a)(m/f);var h=this.scrollParentWidth-r-n,v=h-(-this.width+r+n),y=Math.min(v,Math.max(0,h-this.left));return this.inViewProgressLeft=Object(k.a)(y/v),this.$emit("inViewProgress",{top:this.inViewProgressTop,left:this.inViewProgressLeft}),l&&c?this.trueValue:this.falseValue},values:function(){var e=this;return O(O({},f()(P.map((function(t){return[t,e[t]]})))),{},{inView:this.inView})}},watch:{inView:function(){this.$emit("input",this.inView)}}},S=n(9),component=Object(S.a)(R,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("with-scroll",{on:{input:e.onScroll}},[n("with-size",{on:{input:e.onResize}},[e._t("default",null,null,e.values)],2)],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t),n.d(t,"scrollParent",(function(){return o.b}));var o=n(192),r=o.a,l=n(9),component=Object(l.a)(r,(function(){var e=this,t=e.$createElement;return(e._self._c||t)("with-size",{model:{value:e.size,callback:function(t){e.size=t},expression:"size"}},[e._t("default")],2)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t),n.d(t,"dateLinkingPhase",(function(){return O})),n.d(t,"inject",(function(){return M}));n(21),n(20),n(24),n(8),n(12),n(17),n(38);var o=n(13),r=n.n(o),map=n(103),l=n.n(map),c=n(409),d=n(26);var f=n(41);function m(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}var h,v,y,C,w,j,x,k,_={skinWinterDiana:{label:"Winterblessed Diana",i18n:"inventory.skin.winterblessed_diana",item:{inventoryType:"CHAMPION_SKIN",itemId:131047},page:"skins"},skinWinterShaco:{label:"Winterblessed Shaco",i18n:"inventory.skin.winterblessed_shaco",item:{inventoryType:"CHAMPION_SKIN",itemId:35033},page:"skins"},skinWinterSwain:{label:"Winterblessed Swain",i18n:"inventory.skin.winterblessed_swain",item:{inventoryType:"CHAMPION_SKIN",itemId:50021},page:"skins"},skinWinterWarwick:{label:"Winterblessed Warwick",i18n:"inventory.skin.winterblessed_warwick",item:{inventoryType:"CHAMPION_SKIN",itemId:19045},page:"skins"},skinWinterWarwickPrestige:{label:"Prestige Winterblessed Warwick",i18n:"inventory.skin.winterblessed_warwickp",item:{inventoryType:"CHAMPION_SKIN",itemId:19046},inEventShop:!0,page:"skins"},skinWinterZilean:{label:"Winterblessed Zilean",i18n:"inventory.skin.winterblessed_zilean",item:{inventoryType:"CHAMPION_SKIN",itemId:26014},page:"skins"},skinWinterZoe:{label:"Winterblessed Zoe",i18n:"inventory.skin.winterblessed_zoe",item:{inventoryType:"CHAMPION_SKIN",itemId:142022},page:"skins"}},O=new Date("2022-11-17T18:00:00-08:00").valueOf(),L=(f.inject.publisher,{Launch:{enabled:!0,date:new Date("2022-12-08T13:00:00-08:00").valueOf(),dateOverride:"dateLaunch",defaultRoute:"/"}}),P=l()(L,(function(e,label){return function(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?m(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):m(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}({label:label},e)})),M={playerSettingsConfig:(v=(h={useFallback:"after-timeout",data:{ambientAudioDisabled:"false",motionDisabled:"false",introWatched:"false"}}).enabled,y=void 0===v||v,C=h.useFallback,w=void 0===C?"after-timeout":C,j=h.timeout,x=void 0===j?d.inject.inBrowser?1e3:1e4:j,k=h.data,{enabled:y,useFallback:w,timeout:x,data:void 0===k?{}:k}),tencentPreviousBuildVersion:c.c,buildVersion:c.b,inventory:_,phases:P,abTest:{flags:["groupNumber"],groups:{}},audioAssetList:"tls2022-audio"}},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return M}));n(15),n(21),n(24),n(17),n(38);var o=n(13),r=n.n(o),l=n(3),c=n.n(l),d=n(4),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=(n(12),n(8),n(20),n(46),n(59),n(0)),_=n(45);function O(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function L(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var P=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},M={from:Symbol("groupParent"),default:function(){return{}}},R=function(e){h()(n,e);var t=L(n);function n(){return c()(this,n),t.apply(this,arguments)}return f()(n,[{key:"groupsByName",get:function(){return function(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?O(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):O(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}(r()({},this.name,this),this.parentGroup.groupsByName)}}]),n}(k.h.extend({provide:function(){return r()({},M.from,this)},render:Object(_.a)({slotScope:null})}));P([Object(k.c)(M)],R.prototype,"parentGroup",void 0),P([Object(k.e)({type:String,default:"default"})],R.prototype,"name",void 0),R=P([k.a],R),t.default=R},function(e,t,n){"use strict";n.r(t),n.d(t,"blur",(function(){return N}));n(15),n(20),n(24),n(38);var o=n(14),r=n.n(o),l=n(13),c=n.n(l),d=n(3),f=n.n(d),m=n(4),h=n.n(m),v=n(5),y=n.n(v),C=n(7),w=n.n(C),j=n(1),x=n.n(j),k=n(2),_=n.n(k),O=n(103),L=n.n(O),P=n(393),M=n.n(P),R=n(6),S=n.n(R),A=(n(12),n(8),n(99),n(52),n(33),n(111),n(92),n(17),n(21),n(0)),E=n(399),T=n(235),$=n(302),B=n(301),D=n(193),I=n(383),G=n(104),z=n.n(G);function Z(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function H(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?Z(Object(source),!0).forEach((function(t){c()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):Z(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function U(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=x()(e);if(t){var r=x()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return w()(this,n)}}var F=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":_()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l};function N(e){var t=Number.isFinite(e);return{filter:t?"blur(".concat(e,"px)"):e,"-webkit-filter":t?"blur(".concat(e,"px)"):e}}var V=function(e){y()(n,e);var t=U(n);function n(){var e;return f()(this,n),(e=t.apply(this,arguments)).timelinesByType={},e}return h()(n,[{key:"do",value:function(e,t){var n=this,o=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=arguments.length>3?arguments[3]:void 0;return function(l,c){if(n.transitionsDisabled.value)null==c||c();else{var d=function(){null==c||c();var i=h.indexOf(m);-1!=i&&(h.splice(i,1),m.parent&&m.kill())},f=!1,m=E.a.timeline({paused:!!r,delay:n.delay});o&&m.set(l,o),Object(B.a)(m,l,e,{duration:n.duration}),r&&Object(D.a)(l,!0===r?void 0:r).finally((function(){return z()((function(){f||m.play()}))})),n.timelinesByType[t]||A.h.set(n.timelinesByType,t,[]);var h=n.timelinesByType[t];m.eventCallback("onComplete",(function(){l===n.$el&&o&&Object(T.a)(l,o,{reverse:!0}),d()})),n.$on("hook:beforeDestroy",(function(){f=!0,d()})),h.push(m)}}}},{key:"mounted",value:function(){var e=this;this.$nextTick((function(){e.$watch((function(){return e.activeStyles}),(function(t){return e.activeStylesChanged(t)}),{immediate:!0,deep:!0})})),this.initFinishSync()}},{key:"activeStylesChanged",value:function(e){e&&(this.cancel("active"),this.do(e,"active")(this.$el))}},{key:"cancel",value:function(e){var t,n=this;e?null===(t=this.timelinesByType[e])||void 0===t||t.forEach((function(e){e.progress()<1&&e.progress(1)})):Object.keys(this.timelinesByType).forEach((function(e){return n.cancel(e)}))}},{key:"beforeDestroy",value:function(){this.cancel()}},{key:"render",value:function(e){var t=this,n=this.stylesByEvent,o=this.goneStyles,r=this.stylesDuringGoneTransition,l=this.$slots.default||[],c=this.useGroup||(null==l?void 0:l.length)>1;return o&&n&&console.error("Ignoring `stylesByEvent` because `goneStyles` is also present; use one or the other."),e(c?"transition-group":"transition",{props:H({appear:!0,css:!1},this.$attrs),on:H(H({},this.$listeners),o?{enter:this.do(["from",H({clearProps:"all"},o)],"gone",r,this.preload),leave:this.do(["to",H({clearProps:"all"},o)],"gone",r),enterCancelled:function(){return t.cancel("gone")},leaveCancelled:function(){return t.cancel("gone")}}:n?H(H({},Object(I.a)(n,(function(e,n){return t.do(e,"eventHash",{},"enter"==n&&t.preload)}))),{},{enterCancelled:function(){return t.cancel("eventHash")},leaveCancelled:function(){return t.cancel("eventHash")}}):{})},l)}},{key:"finishTimelines",value:function(){this.canFinish&&this.cancel()}},{key:"canFinish",get:function(){return M()(L()(this.timelinesByType,(function(e){return e.length})))>0}},{key:"canFinishChanged",value:function(e){this.finishSync=e?this.finishTimelines.bind(this):void 0}},{key:"initFinishSync",value:function(){var e=this;if(!this.transitionsDisabled.value){var t=this.goneStyles&&(!("appear"in this.$attrs)||!!this.$attrs.appear);this.$el.tagName&&(t||this.activeStyles)&&(this.finishSync=r()(S.a.mark((function t(){return S.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,new Promise((function(t){var n=e.$watch("canFinish",(function(e){e&&(n(),t())}),{immediate:!0})}));case 2:e.finishTimelines();case 3:case"end":return t.stop()}}),t)}))))}}}]),n}(A.h);F([Object(A.c)($.b)],V.prototype,"transitionsDisabled",void 0),F([Object(A.e)(Number)],V.prototype,"duration",void 0),F([Object(A.e)({type:Number,default:0})],V.prototype,"delay",void 0),F([Object(A.e)(Object)],V.prototype,"goneStyles",void 0),F([Object(A.e)(Object)],V.prototype,"stylesDuringGoneTransition",void 0),F([Object(A.e)([Object,Array])],V.prototype,"activeStyles",void 0),F([Object(A.e)(Object)],V.prototype,"stylesByEvent",void 0),F([Object(A.e)(Boolean)],V.prototype,"preload",void 0),F([Object(A.e)(Boolean)],V.prototype,"useGroup",void 0),F([Object(A.f)("finish")],V.prototype,"finishSync",void 0),F([Object(A.i)("canFinish")],V.prototype,"canFinishChanged",null),V=F([A.a],V),t.default=V},function(e,t,n){"use strict";n.r(t);var o={components:{"scroll-parent":n(127).default,"with-scroll":n(113).default},props:["modal"],methods:{closeWithBackdrop:function(){this.close()&&this.modal.$emit("closed-with-backdrop")},close:function(){return!this.modal.preventClose&&(this.modal.$emit("input",void 0),!0)}}},r=n(9),component=Object(r.a)(o,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",[n("transition",e._b({},"transition",Object.assign({},{appear:!0},e.modal.transition||{}),!1),[e.modal.value?e._t("backdrop",(function(){return[n("div",{staticClass:"fixed inset-0 bg-black opacity-80"})]}),null,{value:e.modal.value}):e._e()],2),e._v(" "),n("transition",e._b({},"transition",Object.assign({},{appear:!0},e.modal.transition||{}),!1),[e.modal.value?n("scroll-parent",[n("with-scroll",{scopedSlots:e._u([{key:"default",fn:function(t){var o=t.scrollTop;return[n("div",{staticClass:"fixed inset-0 flex flex-col",class:[e.modal.noScroll?"overflow-hidden":"overflow-auto",e.modal.scrollParentClass]},[n("div",e._b({staticClass:"absolute inset-0",style:{transform:"translateY("+o+"px)"},on:{click:e.closeWithBackdrop}},"div",e.modal.backdropAttrs,!1)),e._v(" "),n("div",{staticClass:"flex-1"}),e._v(" "),n("div",{staticClass:"flex justify-center children:relative",class:{"max-h-full":e.modal.noScroll}},[e._t("default",null,null,{value:e.modal.value,close:e.close})],2),e._v(" "),n("div",{staticClass:"flex-1"})])]}}],null,!0)})],1):e._e()],1)],1)}),[],!1,null,null,null);t.default=component.exports},,function(e,t,n){"use strict";n.d(t,"a",(function(){return h}));n(21),n(20),n(24),n(8),n(12),n(17),n(38);var o=n(13),r=n.n(o);function l(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function c(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?l(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):l(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}var d={en_US:{publisher:"riot",slug:"en-us",label:"English (NA)",locale:"en_US",iso:"en-US",region:"na",language:"en",league:"lcs"},en_GB:{publisher:"riot",slug:"en-gb",label:"English (EUW)",locale:"en_GB",iso:"en-GB",region:"euw",language:"en",league:"lec"},en_PL:{publisher:"riot",slug:"en-pl",label:"English (EUNE)",locale:"en_PL",iso:"en-PL",region:"eune",language:"en",league:"lec"},en_AU:{publisher:"riot",slug:"en-au",label:"English (OCE)",locale:"en_AU",iso:"en-AU",region:"oce",language:"en",league:"lco"},de_DE:{publisher:"riot",slug:"de-de",label:"German",locale:"de_DE",iso:"de-DE",region:"euw",language:"de",league:"lec"},es_ES:{publisher:"riot",slug:"es-es",label:"Spanish (EU)",locale:"es_ES",iso:"es-ES",region:"euw",language:"es",league:"lec"},fr_FR:{publisher:"riot",slug:"fr-fr",label:"French",locale:"fr_FR",iso:"fr-FR",region:"euw",language:"fr",league:"lec"},it_IT:{publisher:"riot",slug:"it-it",label:"Italian",locale:"it_IT",iso:"it-IT",region:"euw",language:"it",league:"lec"},pl_PL:{publisher:"riot",slug:"pl-pl",label:"Polish",locale:"pl_PL",iso:"pl-PL",region:"eune",language:"pl",league:"lec"},ro_RO:{publisher:"riot",slug:"ro-ro",label:"Romanian",locale:"ro_RO",iso:"ro-RO",region:"eune",language:"ro",league:"lec"},el_GR:{publisher:"riot",slug:"el-gr",label:"Greek",locale:"el_GR",iso:"el-GR",region:"eune",language:"el",league:"lec"},hu_HU:{publisher:"riot",slug:"hu-hu",label:"Hungarian",locale:"hu_HU",iso:"hu-HU",region:"eune",language:"hu",league:"lec"},cs_CZ:{publisher:"riot",slug:"cs-cz",label:"Czech",locale:"cs_CZ",iso:"cs-CZ",region:"eune",language:"cs",league:"lec"},pt_BR:{publisher:"riot",slug:"pt-br",label:"Portuguese (Brazil)",locale:"pt_BR",iso:"pt-BR",region:"br",language:"pt",league:"cblol"},tr_TR:{publisher:"riot",slug:"tr-tr",label:"Turkish",locale:"tr_TR",iso:"tr-TR",region:"tr",language:"tr",league:"tcl"},es_MX:{publisher:"riot",slug:"es-mx",label:"Spanish (LAN)",locale:"es_MX",iso:"es-MX",region:"lan",language:"es",league:"lla"},es_AR:{publisher:"riot",slug:"es-ar",label:"Spanish (LAS)",locale:"es_AR",iso:"es-AR",region:"las",language:"es",league:"lla"},ru_RU:{publisher:"riot",slug:"ru-ru",label:"Russian",locale:"ru_RU",iso:"ru-RU",region:"ru",language:"ru",league:"lcl"},ja_JP:{publisher:"riot",slug:"ja-jp",label:"Japanese",locale:"ja_JP",iso:"ja-JP",region:"jp",language:"ja",league:"ljl"},ko_KR:{publisher:"riot",slug:"ko-kr",label:"Korean",locale:"ko_KR",iso:"ko-KR",region:"kr",language:"ko",league:"lck"}},f={zh_CN:{publisher:"tencent",slug:"zh-cn",label:"Chinese (CN)",locale:"zh_CN",iso:"zh-CN",region:"cn",language:"zh",league:"lpl"}},m={en_PH:{publisher:"garena",slug:"en-ph",label:"English (PH)",locale:"en_PH",iso:"en-PH",region:"sea",language:"en",league:"pcs"},en_SG:{publisher:"garena",slug:"en-sg",label:"English (SG)",locale:"en_SG",iso:"en-SG",region:"sea",language:"en",league:"pcs"},th_TH:{publisher:"garena",slug:"th-th",label:"Thai",locale:"th_TH",iso:"th-TH",region:"sea",language:"th",league:"pcs"},vi_VN:{publisher:"garena",slug:"vi-vn",label:"Vietnamese",locale:"vi_VN",iso:"vi-VN",region:"sea",language:"vn",league:"vcs"},zh_TW:{publisher:"garena",slug:"zh-tw",label:"Chinese (TW)",locale:"zh_TW",iso:"zh-TW",region:"tw",language:"zh",league:"pcs"}},h=c(c(c({},d),f),m)},function(e,t,n){"use strict";n.d(t,"b",(function(){return c})),n.d(t,"a",(function(){return d}));var o=n(925),r=n.n(o),l=(n(25),!0);function c(e){l=e}function d(e){for(var t,n=arguments.length,o=new Array(n>1?n-1:0),c=1;c<n;c++)o[c-1]=arguments[c];return l||(t=console).log.apply(t,o.concat([r()(e)])),e}},function(e,t,n){"use strict";n.d(t,"a",(function(){return h}));var o=n(14),r=n.n(o),l=n(138),c=n.n(l),d=n(6),f=n.n(d),m={leaveAsyncErrors:!1};function h(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=c()({},m,t),o=n.leaveAsyncErrors,l={};return function(){for(var t=arguments.length,n=new Array(t),c=0;c<t;c++)n[c]=arguments[c];var d=JSON.stringify(n);return d in l||(l[d]=e.apply(void 0,n),o||r()(f.a.mark((function e(){return f.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,l[d];case 3:e.next=9;break;case 5:e.prev=5,e.t0=e.catch(0),console.error("De-caching ".concat(d," due to error:"),e.t0),delete l[d];case 9:case"end":return e.stop()}}),e,null,[[0,5]])})))()),l[d]}}},,function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return y}));n(8),n(17);var o=n(10),r=n(105),l=n(30),c=n(188),d=n(114),f=n(53),m=n(106),h=n(95),v=o.a.observable({ready:!1,visible:!1,hasLcuAmbientSfx:!0,hasLcuMusic:!0,blurred:!1,blurredFor:void 0}),y={get ready(){return v.ready},get visible(){return v.visible},get hasLcuAmbientSfx(){return v.hasLcuAmbientSfx},get hasLcuMusic(){return v.hasLcuMusic},get blurred(){return v.blurred},get blurredFor(){return v.blurredFor},get wantsAmbientAudio(){return!c.inject.ambientAudioDisabled},set wantsAmbientAudio(e){c.inject.ambientAudioDisabled=!e},get wantsMotion(){return!c.inject.motionDisabled},set wantsMotion(e){c.inject.motionDisabled=!e},get withMotion(){return!r.inject.lowSpecMode&&this.wantsMotion&&this.visible}};!function e(t){var n=[Object(h.onWindowOpen)(o),l.inject.on("_sendMessage",(function(e){"rcp-fe-lol-home-open-full-page-modal"==(null==e?void 0:e.messageType)?(v.blurredFor=e.data.url,o()):"rcp-fe-lol-home-open-paw"==(null==e?void 0:e.messageType)&&o()}))];function o(){n.forEach((function(e){return e()})),n.length=0;var o=document.querySelector(t);if(o){var r=function(){l.forEach((function(e){return e()})),l.length=0,v.blurred=!1,v.blurredFor=void 0,e(t)};v.blurred=!0;var l=[Object(m.a)({target:o,event:"focus"},r),Object(f.a)((function(){l.push(Object(m.a)({target:o,event:"mousemove",passive:!0},r))}),3e3)]}else v.blurredFor=void 0}}('[data-ping-meta*="'.concat("winterblessed-embed-2022",'"] .page-container')),l.inject.on("hubReady",(function(){return v.ready=!0})),l.inject.on("sectionShow",(function(){return v.visible=!0})),l.inject.on("sectionHide",(function(){return v.visible=!1})),d.inject.onSettingsUpdated((function(e){var t=e.masterSoundEnabled,n=e.masterVolume,o=void 0===n?100:n,r=e.sfxEnabled,l=void 0===r||r,c=e.sfxVolume,d=void 0===c?100:c,f=e.ambientSfxEnabled,m=void 0===f||f,h=e.musicEnabled,v=void 0===h||h,y=e.musicVolume;return{masterSoundEnabled:t,masterVolume:o,sfxEnabled:l,sfxVolume:d,ambientSfxEnabled:m,musicEnabled:v,musicVolume:void 0===y?100:y}}),(function(e){var t=e.masterSoundEnabled,n=e.masterVolume,o=e.sfxEnabled,r=e.sfxVolume,l=e.ambientSfxEnabled,c=e.musicEnabled,d=e.musicVolume;v.hasLcuAmbientSfx=t&&n>0&&o&&r>0&&l,v.hasLcuMusic=t&&n>0&&c&&d>0}))},,,,,,,,,,,function(e,t,n){"use strict";n.r(t);n(52);var o=n(45);t.default={props:{value:Number},data:function(){return{ready:!1}},watch:{value:{immediate:!0,handler:function(e){var t=this;this.clear(),this.$emit("begin"),this.timeout=setTimeout((function(){t.ready=!0,t.timeout=void 0,t.$emit("after")}),e)}}},methods:{clear:function(){this.timeout&&clearTimeout(this.timeout)}},beforeDestroy:function(){this.clear()},render:Object(o.a)({condition:function(){return this.ready}})}},function(e,t,n){"use strict";n.r(t);n(15),n(21),n(20),n(24),n(17),n(38);var o=n(13),r=n.n(o),l=n(16),c=n.n(l),d=n(3),f=n.n(d),m=n(4),h=n.n(m),v=n(5),y=n.n(v),C=n(7),w=n.n(C),j=n(1),x=n.n(j),k=n(2),_=n.n(k),O=(n(12),n(8),n(27),n(82),n(0));function L(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function P(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?L(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):L(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function M(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=x()(e);if(t){var r=x()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return w()(this,n)}}var R=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":_()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},S=function(e){y()(n,e);var t=M(n);function n(){return f()(this,n),t.apply(this,arguments)}return h()(n,[{key:"svg",get:function(){var image=this.image;return image&&this.$svgImage(image)}},{key:"svgWidth",get:function(){var e=this.halfSize,t=this.svg.match(/viewBox="\s*(?:[\d\.]+\s+){2}([\d\.]+)\s+[\d\.]+\s*"/),n=c()(t,2)[1];return e?+n/2:+n}},{key:"render",value:function(e){var t=this.svg,style=this.fullSize?void 0:{width:"".concat(this.svgWidth,"px")};return t?e("div",{style:style,domProps:{innerHTML:t},on:P({},this.$listeners)}):this.$slots.default}}]),n}(O.h);R([Object(O.e)(String)],S.prototype,"image",void 0),R([Object(O.e)(Boolean)],S.prototype,"fullSize",void 0),R([Object(O.e)(Boolean)],S.prototype,"halfSize",void 0),S=R([O.a],S),t.default=S},function(e,t,n){"use strict";n.r(t);var o=n(45);t.default={props:["value"],render:Object(o.a)({slotScope:function(){return this.value}})}},function(e,t,n){"use strict";n.r(t);var o=n(14),r=n.n(o),l=(n(8),n(6)),c=n.n(l),d=n(10),f=n(45);t.default=d.a.extend({props:{value:{}},data:function(){return{resolution:void 0,rejection:void 0,pending:void 0}},watch:{value:{immediate:!0,handler:function(e){var t=this;return r()(c.a.mark((function n(){return c.a.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:if(t.pending=t.resolution=t.rejection=void 0,!e){n.next=18;break}return n.prev=2,t.pending=!0,t.$emit("pending"),n.next=7,e;case 7:t.resolution=n.sent,t.$emit("resolved",t.resolution),n.next=15;break;case 11:n.prev=11,n.t0=n.catch(2),t.rejection=n.t0,t.$emit("rejected",t.rejection);case 15:return n.prev=15,t.pending=!1,n.finish(15);case 18:case"end":return n.stop()}}),n,null,[[2,11,15,18]])})))()}}},computed:{onlyDefaultSlot:function(){var e=this;return["resolved","rejected","pending"].every((function(slot){return!e.$scopedSlots[slot]}))}},render:Object(f.a)({condition:function(){return!!this.onlyDefaultSlot||(this.pending||this.resolution||this.rejection)},slot:function(){return this.onlyDefaultSlot?"default":this.resolution?"resolved":this.rejection?"rejected":"pending"},slotScope:function(){var e=this.pending,t=this.resolution,n=this.rejection;return this.onlyDefaultSlot?{pending:e,resolved:t,rejected:n}:this.resolution||this.rejection}})})},function(e,t,n){"use strict";n.r(t),n.d(t,"blockScroll",(function(){return v}));var o=n(14),r=n.n(o),l=n(13),c=n.n(l),d=n(6),f=n.n(d),m=(n(20),n(46),n(8),n(92),n(192)),h=Symbol("blockScroll"),v={from:h,default:function(){return function(){}}};t.default={provide:function(){return c()({},h,this.block.bind(this))},inject:{scrollParent:m.b},props:["value"],data:function(){return{blocks:[]}},computed:{blockScroll:function(){return!!this.value||this.blocks.length}},watch:{blockScroll:function(){var e=this;if(this.blockScroll){var t;r()(f.a.mark((function n(){return f.a.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=2,e.scrollParent;case 2:t=n.sent.scrollTop,e.$refs.wrapper.className="absolute inset-0 overflow-hidden",e.$nextTick((function(){e.$refs.wrapper.scrollTop=t}));case 5:case"end":return n.stop()}}),n)})))();var n=this.$watch("blockScroll",(function(){n(),e.$refs.wrapper.className="",e.$nextTick(r()(f.a.mark((function n(){return f.a.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return n.next=3,e.scrollParent;case 3:n.sent.scrollTop=t;case 4:case"end":return n.stop()}}),n)}))))}))}}},render:function(e){return e("div",{ref:"wrapper"},this.$slots.default)},methods:{block:function(){var e=this,t={};return this.blocks.push(t),function(){var i=e.blocks.indexOf(t);-1!==i&&e.blocks.splice(i,1)}}}}},function(e,t,n){"use strict";n.r(t),function(e){n.d(t,"getPhaseDate",(function(){return j})),n.d(t,"phases",(function(){return k})),n.d(t,"inject",(function(){return M})),n.d(t,"phaseReady",(function(){return R})),n.d(t,"activateCurrentPhase",(function(){return A}));n(21),n(20),n(12),n(17),n(38);var o=n(88),r=n.n(o),l=n(13),c=n.n(l),d=(n(99),n(52),n(31),n(93),n(24),n(8),n(33),n(64),n(10)),f=n(74),m=n(187),h=n(26),v=n(53),y=["date","dateOverride","label","index"];function C(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function w(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?C(Object(source),!0).forEach((function(t){c()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):C(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function j(e){var t=e.dateOverride,n=e.date;try{if(m.inject[t]){var o=m.inject[t].valueOf();if(!Number.isFinite(o))throw new Error("unexpected date format");n=o}}catch(e){console.error('Date overrides must be Date objects. Use "new Date(...)"')}return n}var x,k=e.phases.filter(Boolean).filter((function(e){return h.inject.qaEligible||!0===e.enabled})).map((function(e){var t=j(e);return w(w({},e),{},{date:t})})).sort((function(e,t){return(e.date||0)-(t.date||0)})).map((function(e,t){return w(w({},e),{},{index:t})})),_=[],O=k[0],L=0,P=d.a.observable({current:T(O)}),M=P,R=new Promise((function(e){x=e})),S=!1;function A(){if(!S){S=!0;for(var e=L,t=0;t<k.length;t++){var n=Object.assign({},_[t-1]||{},k[t]);_.push(n),Object(f.b)()>=(n.date||0)&&(O=n,L=t)}e!=L&&(P.current=T(O)),x(),E()}}function E(){var e=L===_.length-1?null:_[L+1].date;e&&Object(f.b)()<e&&Object(v.a)((function(){Object(f.b)()>=e&&(P.current=T(_[++L])),E()}),e-Object(f.b)())}function T(e){e.date,e.dateOverride,e.label,e.index;return r()(e,y)}}.call(this,n(128).inject)},function(e,t,n){"use strict";n.d(t,"a",(function(){return v}));var o=n(14),r=n.n(o),l=n(6),c=n.n(l),d=(n(67),n(27),n(8),n(33),n(32),n(37),n(35),n(31),n(24),n(134)),f=n(135),m=Object(f.a)((function(){var e=document.createElement("div");return e.className="invisible fixed z-behind overflow-hidden",document.body.appendChild(e),e})),h=Object(f.a)(function(){var e=r()(c.a.mark((function e(t){var img,video;return c.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(!("document"in globalThis)){e.next=30;break}if(!/\.(gif|png|jpe?g|svg)(\?\w*)?$/i.test(t)){e.next=14;break}return(img=document.createElement("img")).src=t,img.className="absolute z-behind",m().appendChild(img),e.prev=6,e.next=9,img.complete||new Promise((function(e){img.addEventListener("load",e),img.addEventListener("error",e)}));case 9:return e.prev=9,img.remove(),e.finish(9);case 12:e.next=30;break;case 14:if(!/\.(mp4|webm|ogv)(\?\w*)?$/i.test(t)){e.next=29;break}return(video=document.createElement("video")).src=t,video.preload="auto",video.className="absolute z-behind",m().appendChild(video),video.load(),e.prev=21,e.next=24,4===video.readyState||new Promise((function(e){video.addEventListener("canplay",e),video.addEventListener("error",e)}));case 24:return e.prev=24,video.remove(),e.finish(24);case 27:e.next=30;break;case 29:Object(d.a)("Cannot load src type",t);case 30:case"end":return e.stop()}}),e,null,[[6,,9,12],[21,,24,27]])})));return function(t){return e.apply(this,arguments)}}());function v(e){return y.apply(this,arguments)}function y(){return(y=r()(c.a.mark((function e(t){return c.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,Promise.all((Array.isArray(t)?t:[t]).filter(Boolean).map((function(e){return h(e)})));case 2:case"end":return e.stop()}}),e)})))).apply(this,arguments)}},function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));n(8),n(33),n(111);function o(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:"Timed out";return function(){for(var o=arguments.length,r=new Array(o),l=0;l<o;l++)r[l]=arguments[l];return new Promise((function(o,l){var c=setTimeout((function(){l(new Error(n))}),t);e.apply(void 0,r).finally((function(){return clearTimeout(c)})).then(o,l)}))}}},,function(e,t,n){"use strict";n.d(t,"a",(function(){return j}));var o=n(18),r=n.n(o),l=n(14),c=n.n(l),d=n(4),f=n.n(d),m=n(3),h=n.n(m),v=n(87),y=n.n(v),C=n(6),w=n.n(C),j=(n(8),n(33),n(17),f()((function e(){var t=this;h()(this,e),this.argsByEvent={},this.callbacksByEvent={},this.hooksByEvent={},this.optionsByEvent={},this.eventOptions=function(e,n){t.optionsByEvent[e]=n},this.on=function(e,n){var o;return t.callbacksByEvent[e]=t.callbacksByEvent[e]||[],t.callbacksByEvent[e].push(n),(null===(o=t.optionsByEvent[e])||void 0===o?void 0:o.includeLastTrigger)&&t.argsByEvent[e]&&setTimeout((function(){return t.execute(n,e)})),function(){var o=t.callbacksByEvent[e].indexOf(n);-1!==o&&delete t.callbacksByEvent[e][o]}},this.tap=function(e,n){return t.hooksByEvent[e]=t.hooksByEvent[e]||[],t.hooksByEvent[e].push(n),function(){var o=t.hooksByEvent[e].indexOf(n);-1!==o&&delete t.hooksByEvent[e][o]}},this.once=function(e,n){var o=t.on(e,(function(){o(),n.apply(void 0,arguments)}));return o},this.promise=function(e){return new Promise((function(n){var o=t.on(e,(function(){o(),n()}))}))},this.trigger=function(){var e=c()(w.a.mark((function e(n){var o,l,d,f,m=arguments;return w.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:for(l=m.length,d=new Array(l>1?l-1:0),f=1;f<l;f++)d[f-1]=m[f];return e.t0=y.a,e.next=4,(t.hooksByEvent[n]||[]).reduce(function(){var e=c()(w.a.mark((function e(t,n){return w.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=n,e.t1=void 0,e.t2=r.a,e.t3=y.a,e.next=6,t;case 6:return e.t4=e.sent,e.t5=(0,e.t3)(e.t4),e.t6=(0,e.t2)(e.t5),e.abrupt("return",e.t0.apply.call(e.t0,e.t1,e.t6));case 10:case"end":return e.stop()}}),e)})));return function(t,n){return e.apply(this,arguments)}}(),Promise.resolve(d));case 4:e.t1=e.sent,t.argsByEvent[n]=(0,e.t0)(e.t1),null===(o=t.callbacksByEvent[n])||void 0===o||o.forEach((function(e){return e&&t.execute(e,n)}));case 7:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}(),this.execute=function(e,n){try{e.apply(void 0,r()(t.argsByEvent[n]))}catch(e){console.warn(e)}}})))},,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=n(87),x=n.n(j),k=n(132),_=n.n(k),O=(n(12),n(8),n(59),n(17),n(0)),L=n(45),P=n(129),M=n(106);function R(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var S=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},A=function(e){f()(n,e);var t=R(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"group",get:function(){var e;return null===(e=this.groupParent.groupsByName)||void 0===e?void 0:e[this.name]}},{key:"mounted",value:function(){var e=this;this.group?_()(this.$listeners,(function(t,n){x()(t).forEach((function(t){Object(M.a)({context:e,event:n,target:e.group.$el},t)}))})):console.warn("No group parent with the name ".concat(this.name))}}]),n}(O.h.extend({render:Object(L.a)({slotScope:null})}));S([Object(O.c)(P.inject)],A.prototype,"groupParent",void 0),S([Object(O.e)({type:String,default:"default"})],A.prototype,"name",void 0),A=S([O.a],A),t.default=A},function(e,t,n){"use strict";n.r(t);n(93),n(48);var o=n(45);n(189);t.default={props:{list:Array,sort:[String,Function],reverse:Boolean},computed:{sorted:function(){var e=this.sort,t=this.reverse,n=this.list,o=null==n?void 0:n.slice();if(o&&e){var r=t?-1:1;return o.sort("string"==typeof e?function(a,b){return(a[key]-b[key])*r}:"function"==typeof e?function(a,b){return e(a,b)*r}:function(){return 0})}return o}},watch:{sorted:{immediate:!0,handler:function(e){this.$emit("input",e)}}},render:Object(o.a)({slotScope:function(){return this.sorted}})}},function(e,t,n){"use strict";n.r(t);n(52),n(8);var o=n(45);t.default={props:{list:Array,pageSize:Number},computed:{pages:function(){var e,t=this.list,n=void 0===t?[]:t,o=this.pageSize,r=Math.round(o);return r>0?n.reduce((function(t,n,o){return o%r==0&&t.push(e=[]),e.push(n),t}),[]):[n]}},watch:{pages:{immediate:!0,handler:function(e){this.$emit("input",e)}}},render:Object(o.a)({slotScope:function(){return this.pages}})}},function(e,t,n){"use strict";n.r(t),n.d(t,"setDefaults",(function(){return S}));n(15),n(21),n(20),n(24),n(17),n(38);var o=n(13),r=n.n(o),l=n(3),c=n.n(l),d=n(4),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=(n(12),n(8),n(64),n(52),n(27),n(0)),_=n(130);function O(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function L(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?O(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):O(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function P(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var M=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},R={duration:250};function S(e){Object.assign(R,e)}var A=function(e){h()(n,e);var t=P(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).overflowHidden={overflow:"hidden"},e}return f()(n,[{key:"wipeStyles",get:function(){return L(L(L({},this.noFade?{}:{opacity:0}),-1!==this.direction.indexOf("v")?L({height:0},this.onlySize?{}:{marginTop:0,marginBottom:0,paddingTop:0,paddingBottom:0,borderTopWidth:0,borderBottomWidth:0}):{}),-1!==this.direction.indexOf("h")?L({width:0},this.onlySize?{}:{marginLeft:0,marginRight:0,paddingLeft:0,paddingRight:0,borderLeftWidth:0,borderRightWidth:0}):{})}},{key:"gsapProps",get:function(){return{goneStyles:this.wipeStyles,stylesDuringGoneTransition:this.noOverflow?this.overflowHidden:void 0,duration:this.duration/1e3}}},{key:"render",value:function(e){return e(_.default,{props:L(L({},this.$attrs),this.gsapProps),on:this.$listeners},this.$slots.default)}}]),n}(k.h);M([Object(k.e)({type:Number,default:R.duration})],A.prototype,"duration",void 0),M([Object(k.e)({type:Boolean,default:!0})],A.prototype,"noOverflow",void 0),M([Object(k.e)(Boolean)],A.prototype,"noFade",void 0),M([Object(k.e)(Boolean)],A.prototype,"onlySize",void 0),M([Object(k.e)({type:String,default:"v",validator:function(e){return/^v|h|vh$/i.test(e)}})],A.prototype,"direction",void 0),A=M([k.a],A),t.default=A},function(e,t,n){"use strict";n.r(t);n(31);var o=n(101),r=n(131);t.default={inject:{modalsRoot:o.modalsRoot},render:function(e){var t;return e("div",null===(t=this.modalsRoot)||void 0===t?void 0:t.modals.map((function(t){return e(r.default,{props:{modal:t},scopedSlots:t.$scopedSlots})})))}}},function(e,t,n){"use strict";n.r(t);var o=n(302).a,r=n(9),component=Object(r.a)(o,(function(){var e=this,t=e.$createElement;return(e._self._c||t)("div",{class:{"transitions-disabled":e.value}},[e._t("default")],2)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(52),n(0)),x=n(86);function k(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var _=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},O=function(e){f()(n,e);var t=k(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).isInView=!1,e}return r()(n)}(Object(j.d)(j.h.extend({components:{"with-in-view":n(126).default,"stagger-apply-context":n(86).default}}),j.h.extend(Object(x.optionsMixin)({additionalProps:{initialDelay:{type:Number}}}))));_([Object(j.e)(Boolean)],O.prototype,"disabled",void 0),_([Object(j.e)({type:Object,default:function(){return{}}})],O.prototype,"inView",void 0);var L=O=_([j.a],O),P=n(9),component=Object(P.a)(L,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("stagger-apply-context",e._b({attrs:{value:e.isInView&&!e.disabled}},"stagger-apply-context",e.options,!1),[n("with-in-view",e._b({model:{value:e.isInView,callback:function(t){e.isInView=t},expression:"isInView"}},"with-in-view",e.inView,!1),[e._t("default")],2)],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(67),n(32),n(37),n(35),n(270),n(143),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).inView=!1,e.videoApi=null,e.videoRatioW=1,e.videoRatioH=1,e}return c()(n,[{key:"srcProps",get:function(){var e=this.src;return"string"==typeof e?{src:e}:"srcObject"in HTMLMediaElement.prototype&&(e instanceof File||e instanceof Blob||globalThis.MediaSource&&e instanceof MediaSource||globalThis.MediaStream&&e instanceof MediaStream)?{srcObject:e}:!("srcObject"in HTMLMediaElement.prototype)&&(e instanceof File||e instanceof Blob||globalThis.MediaSource&&e instanceof MediaSource)?{src:URL.createObjectURL(e)}:{}}},{key:"loadedmetadata",value:function(e){var t=e.target,n=t.videoWidth,o=t.videoHeight;this.videoRatioW=n/o,this.videoRatioH=o/n,this.inViewChanged()}},{key:"inViewChanged",value:function(){var e,t;if(!("autoplay"in this.$attrs)||this.$attrs.autoplay)return this.inView?null===(e=this.videoApi)||void 0===e?void 0:e.play():null===(t=this.videoApi)||void 0===t?void 0:t.pause()}},{key:"mounted",value:function(){this.$emit("update:video-element",this.video)}}]),n}(j.h.extend({components:{"with-in-view":n(126).default},directives:{"video-api":n(377).default}}));k([Object(j.e)()],_.prototype,"src",void 0),k([Object(j.g)()],_.prototype,"video",void 0);var O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[n("with-in-view",{on:{input:e.inViewChanged},scopedSlots:e._u([{key:"default",fn:function(t){var o=t.width,r=t.height;return[n("div",{staticClass:"absolute inset-0 overflow-hidden"},[n("video",e._g(e._b({directives:[{name:"video-api",rawName:"v-video-api:videoApi",arg:"videoApi"}],ref:"video",staticClass:"block absolute centered",style:{minWidth:r*e.videoRatioW+"px",minHeight:o*e.videoRatioH+"px"},attrs:{src:e.srcProps.src},domProps:{srcObject:e.srcProps.srcObject},on:{loadedmetadata:e.loadedmetadata}},"video",Object.assign({},{muted:!0,playsinline:!0,loop:!0},e.$attrs),!1),e.$listeners),[e._t("default")],2)])]}}],null,!0),model:{value:e.inView,callback:function(t){e.inView=t},expression:"inView"}})],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15),n(21),n(20),n(24),n(17),n(38);var o=n(13),r=n.n(o),l=n(3),c=n.n(l),d=n(4),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=(n(12),n(8),n(33),n(52),n(0)),_=n(235),O=n(132),L=n.n(O);n(27),n(168);function P(e,t){var n=!(arguments.length>2&&void 0!==arguments[2])||arguments[2];e.classList&&(Array.isArray(t)?t.forEach((function(t){return bindClass(e,t)})):"string"==typeof t?t.split(/\s+/).filter(Boolean).forEach((function(t){return e.classList.toggle(t,n)})):Object.keys(t).length&&L()(t,(function(t,n){bindClass(e,n,t)})))}var M=n(45),R=n(86);function S(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function A(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?S(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):S(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function E(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var T=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},$=function(e){h()(n,e);var t=E(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).value=!1,e.next=null,e.rejectNextPromise=null,e}return f()(n,[{key:"created",value:function(){this.staggerApplyContext.register&&this.$once("hook:beforeDestroy",this.staggerApplyContext.register(this))}},{key:"nextPromise",get:function(){var e,t=this;if(this.requireNext)return new Promise((function(e,n){t.next=e,t.rejectNextPromise=n}));null===(e=this.rejectNextPromise)||void 0===e||e.call(this,new Error("requireNext became false.")),this.next=null,this.rejectNextPromise=null}},{key:"getOptions",value:function(){return A(A({},this.staggerApplyContext.options),this.options)}},{key:"apply",value:function(){this.value=!0;var e=this.getOptions(),t=e.addClass,n=e.addStyle;t&&P(this.$el,t),n&&Object(_.a)(this.$el,n)}},{key:"reverse",value:function(){var e;null===(e=this.rejectNextPromise)||void 0===e||e.call(this,new Error("reverse() called.")),this.value=!1;var t=this.getOptions(),n=t.addClass,o=t.addStyle;n&&P(this.$el,n,!1),o&&Object(_.a)(this.$el,o,{reverse:!0})}},{key:"applied",get:function(){return this.value?this.trueValue:this.falseValue}},{key:"appliedChanged",value:function(e){this.$emit("input",e)}}]),n}(Object(k.d)(k.h.extend({render:Object(M.a)({slotScope:function(){return{applied:this.applied,next:this.next}}})}),k.h.extend(Object(R.optionsMixin)())));T([Object(k.e)(Number)],$.prototype,"order",void 0),T([Object(k.e)(Boolean)],$.prototype,"requireNext",void 0),T([Object(k.e)({default:!0})],$.prototype,"trueValue",void 0),T([Object(k.e)({default:!1})],$.prototype,"falseValue",void 0),T([Object(k.c)(R.injectStaggerApplyContext)],$.prototype,"staggerApplyContext",void 0),T([Object(k.i)("applied")],$.prototype,"appliedChanged",null),$=T([k.a],$);t.default=$},function(e,t,n){"use strict";n.r(t);var o=n(9),component=Object(o.a)({},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("stagger-apply",{scopedSlots:e._u([{key:"default",fn:function(t){var o=t.applied;return[n("transition-wipe",e._b({},"transition-wipe",e.$attrs,!1),[o?e._t("default"):e._e()],2)]}}],null,!0)})}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return o}));var o=n(230).default},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return o}));n(67);var o="window"in globalThis?hubConfig:{}},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return c}));var o=n(928),r=n.n(o),l=n(929),c=Object(l.a)({ambientAudioDisabled:!1,motionDisabled:!1,introWatched:!1},{mode:"ppv1",validate:{ambientAudioDisabled:d,motionDisabled:d,introWatched:d},sendAllAssignments:!0});function d(e){return r()(e)}},,,function(e,t,n){"use strict";n.d(t,"a",(function(){return v}));var o=n(88),r=n.n(o),l=n(14),c=n.n(l),d=n(6),f=n.n(d),m=n(283),h=["discardOnError"];function v(e,t){return y.apply(this,arguments)}function y(){return y=c()(f.a.mark((function e(t,n){var o,l,c,d,v,y=arguments;return f.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return o=y.length>2&&void 0!==y[2]?y[2]:{},l=o.discardOnError,c=void 0===l||l,d=r()(o,h),v=Object(m.a)(t,d),e.prev=2,e.next=5,n();case 5:return e.abrupt("return",e.sent);case 8:throw e.prev=8,e.t0=e.catch(2),v(c),e.t0;case 12:return e.prev=12,v(),e.finish(12);case 15:case"end":return e.stop()}}),e,null,[[2,8,12,15]])}))),y.apply(this,arguments)}},function(e,t,n){"use strict";n.d(t,"b",(function(){return d}));var o=n(13),r=n.n(o),l=(n(20),n(46),n(8),n(67),n(33),n(96)),c=Symbol("scrollParent"),d={from:c,default:{isWindow:!0,size:l.inject,addEventListener:function(){return globalThis.addEventListener.apply(globalThis,arguments)},removeEventListener:function(){return globalThis.removeEventListener.apply(globalThis,arguments)},get scrollTop(){return"number"==typeof globalThis.scrollY?globalThis.scrollY:globalThis.pageYOffset},get scrollLeft(){return"number"==typeof globalThis.scrollX?globalThis.scrollX:globalThis.pageXOffset},get scrollHeight(){return globalThis.scrollHeight},get scrollWidth(){return globalThis.scrollWidth},set scrollTop(e){globalThis.scroll(globalThis.scrollX,e)},set scrollLeft(e){globalThis.scroll(e,globalThis.scrollY)}}};t.a={data:function(){return{size:void 0}},provide:function(){var e=this;return r()({},c,new Promise((function(t){return e.resolve=t})))},mounted:function(){var e=this;this.resolve({get size(){return e.size||{}},addEventListener:function(){var t;(t=e.$el).addEventListener.apply(t,arguments)},removeEventListener:function(){var t;(t=e.$el).removeEventListener.apply(t,arguments)},get scrollTop(){return e.$el.scrollTop},get scrollLeft(){return e.$el.scrollLeft},get scrollHeight(){return e.$el.scrollHeight},get scrollWidth(){return e.$el.scrollWidth},set scrollTop(t){e.$el.scrollTop=t},set scrollLeft(t){e.$el.scrollLeft=t}})}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return h}));var o=n(18),r=n.n(o),l=n(14),c=n.n(l),d=n(6),f=n.n(d),m=(n(25),n(942),n(943),n(8),n(65),n(37),n(31),n(27),n(168),n(67),n(72),n(154));function h(e){return v.apply(this,arguments)}function v(){return v=c()(f.a.mark((function e(t){var n,o,l,c,d=arguments;return f.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=d.length>1&&void 0!==d[1]?d[1]:{},o=n.only,l='[style*="background-image"],[style*="mask-image"],[class*="sprite-"]',c=[].concat(r()((o&&"img"!=o?[]:[].concat(r()(Array.from(t.querySelectorAll("img"))),r()(t.matches("img")?[t]:[]))).flatMap((function(img){var e;return[img.src].concat(r()((null===(e=img.srcset)||void 0===e?void 0:e.split(/\s*,\s*/).map((function(e){return e.split(/\s+/)[0]})))||[]))}))),r()((o?[]:[].concat(r()(Array.from(t.querySelectorAll("video"))),r()(t.matches("video")?[t]:[]))).flatMap((function(video){return[video.poster]}))),r()((o&&"img"!=o?[]:[].concat(r()(Array.from(t.querySelectorAll("image"))),r()(t.matches("image")?[t]:[]))).map((function(image){return image.href.baseVal}))),r()((o&&"background"!=o?[]:[].concat(r()(Array.from(t.querySelectorAll(l))),r()(t.matches(l)?[t]:[]))).map((function(e){var t=e.style.backgroundImage||e.style.maskImage||globalThis.getComputedStyle(e).backgroundImage;return/url/i.test(t)&&t.replace(/.*url\(['"]?(.*?)['"]?\).*/i,"$1")})))),e.abrupt("return",c.length?Object(m.a)(c):void 0);case 4:case"end":return e.stop()}}),e)}))),v.apply(this,arguments)}},function(e,t,n){"use strict";n.d(t,"a",(function(){return l}));var o=n(103),r=n.n(o);function l(e,t){return r()(e,t)}},,function(e,t,n){"use strict";n.d(t,"a",(function(){return c}));var o=n(13),r=n.n(o),l=(n(25),n(43));function c(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.log,n=void 0!==t&&t;return Object(l.a)((function(e,t){if(!e.computed||!(t in e.computed))throw new Error("@WatchedData can only be used on a computed property");e.mixins||(e.mixins=[]);var o=e.computed[t];if("function"!=typeof o&&o.set)throw new Error("@WatchedData can only be used on a computed property without a setter");var l="function"==typeof o?o:o.get;delete e.computed[t],e.mixins.push({data:function(){return r()({},t,void 0)},created:function(){var e=this;this.$watch(l.bind(this),(function(o){n&&console.log("Updating ".concat(t," to ").concat(o)),e[t]=o}),{immediate:!0})}})}))}},,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";n.r(t);n(15),n(21),n(20),n(24),n(38);var o=n(13),r=n.n(o),l=n(14),c=n.n(l),d=n(3),f=n.n(d),m=n(4),h=n.n(m),v=n(5),y=n.n(v),C=n(7),w=n.n(C),j=n(1),x=n.n(j),k=n(2),_=n.n(k),O=n(6),L=n.n(O),P=(n(12),n(8),n(33),n(17),n(0)),M=n(45);function R(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function S(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?R(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):R(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function A(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=x()(e);if(t){var r=x()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return w()(this,n)}}var E=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":_()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},T=function(e){y()(o,e);var t,n=A(o);function o(){var e;return f()(this,o),(e=n.apply(this,arguments)).motionSupported=!1,e.motion=null,e}return h()(o,[{key:"mounted",value:function(){this.$emit("motion-supported",this.motionSupported="function"==typeof DeviceMotionEvent&&"ontouchstart"in window)}},{key:"grantMotion",value:(t=c()(L.a.mark((function e(){return L.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(e.prev=0,this.motion="prompt","function"!=typeof DeviceMotionEvent.requestPermission){e.next=8;break}return e.next=5,DeviceMotionEvent.requestPermission();case 5:this.motion=e.sent,e.next=11;break;case 8:return e.next=10,new Promise((function(e){setTimeout((function(){return e("denied")}),500),addEventListener("devicemotion",(function t(){e("granted"),removeEventListener("devicemotion",t)}))}));case 10:this.motion=e.sent;case 11:e.next=17;break;case 13:e.prev=13,e.t0=e.catch(0),console.error(e.t0),this.motion="denied";case 17:case"end":return e.stop()}}),e,this,[[0,13]])}))),function(){return t.apply(this,arguments)})}]),o}(P.h);T=E([P.a],T);var $=function(e){y()(r,e);var t,n,o=A(r);function r(){var e;return f()(this,r),(e=o.apply(this,arguments)).cameraSupported=!1,e.camera=null,e}return h()(r,[{key:"mounted",value:(n=c()(L.a.mark((function e(){return L.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=this,e.next=3,G();case 3:e.t1=this.cameraSupported=e.sent.some((function(e){return"videoinput"===e.kind})),e.t0.$emit.call(e.t0,"camera-supported",e.t1);case 5:case"end":return e.stop()}}),e,this)}))),function(){return n.apply(this,arguments)})},{key:"grantCamera",value:(t=c()(L.a.mark((function e(){return L.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this.camera="prompt",e.next=3,new Promise(function(){var e=c()(L.a.mark((function e(t){var n,o;return L.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=4,null===(o=(n=navigator.mediaDevices).getUserMedia)||void 0===o?void 0:o.call(n,{video:!0});case 4:e.sent.getTracks().forEach((function(track){track.stop()})),t("granted"),e.next=11;break;case 8:e.prev=8,e.t0=e.catch(0),t("denied");case 11:case"end":return e.stop()}}),e,null,[[0,8]])})));return function(t){return e.apply(this,arguments)}}());case 3:this.camera=e.sent;case 4:case"end":return e.stop()}}),e,this)}))),function(){return t.apply(this,arguments)})}]),r}(P.h);$=E([P.a],$);var B=function(e){y()(r,e);var t,n,o=A(r);function r(){var e;return f()(this,r),(e=o.apply(this,arguments)).micSupported=!1,e.mic=null,e}return h()(r,[{key:"mounted",value:(n=c()(L.a.mark((function e(){return L.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.t0=this,e.next=3,G();case 3:e.t1=this.micSupported=e.sent.some((function(e){return"audioinput"===e.kind})),e.t0.$emit.call(e.t0,"mic-supported",e.t1);case 5:case"end":return e.stop()}}),e,this)}))),function(){return n.apply(this,arguments)})},{key:"grantMic",value:(t=c()(L.a.mark((function e(){return L.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this.mic="prompt",e.next=3,new Promise(function(){var e=c()(L.a.mark((function e(t){var n,o;return L.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=4,null===(o=(n=navigator.mediaDevices).getUserMedia)||void 0===o?void 0:o.call(n,{audio:!0});case 4:e.sent.getTracks().forEach((function(track){track.stop()})),t("granted"),e.next=11;break;case 8:e.prev=8,e.t0=e.catch(0),t("denied");case 11:case"end":return e.stop()}}),e,null,[[0,8]])})));return function(t){return e.apply(this,arguments)}}());case 3:this.mic=e.sent;case 4:case"end":return e.stop()}}),e,this)}))),function(){return t.apply(this,arguments)})}]),r}(P.h);B=E([P.a],B);var D,I=function(e){y()(n,e);var t=A(n);function n(){return f()(this,n),t.apply(this,arguments)}return h()(n,[{key:"grantedByFeature",get:function(){var e=this.mic,t=this.micSupported,n=this.camera,o=this.cameraSupported,r=this.motion,l=this.motionSupported;return S(S(S({},t?{mic:e}:{}),o?{camera:n}:{}),l?{motion:r}:{})}},{key:"grantedByFeatureChanged",value:function(e){this.$emit("input",e)}},{key:"render",value:function(){var e=this;return Object(M.a)({slotScope:function(){var t=e.mic,n=e.grantMic,o=e.micSupported,r=e.camera,l=e.grantCamera,c=e.cameraSupported,d=e.motion,f=e.grantMotion;return{mic:{granted:t,supported:o,request:n},camera:{granted:r,supported:c,request:l},motion:{granted:d,supported:e.motionSupported,request:f}}}}).call(this)}}]),n}(Object(P.d)(T,$,B));function G(){return z.apply(this,arguments)}function z(){return(z=c()(L.a.mark((function e(){return L.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return D||(D=c()(L.a.mark((function e(){var t,n;return L.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,null===(n=null===(t=navigator.mediaDevices)||void 0===t?void 0:t.enumerateDevices)||void 0===n?void 0:n.call(t);case 2:if(e.t0=e.sent,e.t0){e.next=5;break}e.t0=[];case 5:return e.abrupt("return",e.t0);case 6:case"end":return e.stop()}}),e)})))()),e.next=3,D;case 3:return e.abrupt("return",e.sent);case 4:case"end":return e.stop()}}),e)})))).apply(this,arguments)}E([Object(P.i)("grantedByFeature",{immediate:!0})],I.prototype,"grantedByFeatureChanged",null),I=E([P.a],I),t.default=I},function(e,t,n){"use strict";n.r(t);var o=n(101);t.default={inject:{modalsRoot:o.modalsRoot},props:{value:{},preventClose:Boolean,noScroll:Boolean,scrollParentClass:String,transition:{},backdropAttrs:{}},mounted:function(){var e,t=this;this.detach=null===(e=this.modalsRoot)||void 0===e?void 0:e.attach(this),this.$watch((function(){return!!t.value}),(function(e){t.$emit(e?"opened":"closed")}))},beforeDestroy:function(){var e;null===(e=this.detach)||void 0===e||e.call(this)},render:function(e){return e("span")}}},function(e,t,n){"use strict";n.r(t);n(15);var o=n(14),r=n.n(o),l=n(3),c=n.n(l),d=n(4),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=n(138),_=n.n(k),O=n(6),L=n.n(O),P=(n(12),n(8),n(17),n(0));function M(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var R=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},S={video:{width:4096,height:2160,facingMode:"user"},audio:!1},A=function(e){h()(o,e);var t,n=M(o);function o(){var e;return c()(this,o),(e=n.apply(this,arguments)).stream=null,e}return f()(o,[{key:"mounted",value:(t=r()(L.a.mark((function e(){return L.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.prev=0,e.next=3,navigator.mediaDevices.getUserMedia(_()({},S,this.constraints));case 3:this.stream=e.sent,e.next=9;break;case 6:e.prev=6,e.t0=e.catch(0),this.$emit("error",e.t0);case 9:case"end":return e.stop()}}),e,this,[[0,6]])}))),function(){return t.apply(this,arguments)})},{key:"beforeDestroy",value:function(){var e;null===(e=this.stream)||void 0===e||e.getTracks().forEach((function(track){track.stop()}))}}]),o}(P.h.extend({components:{"video-cover":n(183).default}}));R([Object(P.e)({type:Object,default:function(){return S}})],A.prototype,"constraints",void 0);var E=A=R([P.a],A),T=n(9),component=Object(T.a)(E,(function(){var e=this,t=e.$createElement;return(e._self._c||t)("video-cover",e._g({attrs:{src:e.stream,autoplay:""}},e.$listeners))}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t),n.d(t,"getSanitizedText",(function(){return o.b}));var o=n(289),r=o.a,l=n(9),component=Object(l.a)(r,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",e._l(e.textActiveStyles,(function(t,i){var o=t.char,r=t.activeStyles;return n("span",{key:i},[n("transition-gsap",e._b({on:{"update:finish":function(t){return e.updateTransition(i,t)}}},"transition-gsap",{activeStyles:r},!1),[n("span",{domProps:{innerHTML:e._s(o)}})])],1)})),0)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t),n.d(t,"setUpdate",(function(){return l})),n.d(t,"serverDirective",(function(){return c}));n(25),n(64);var o={bind:function(e,t,n){var o=t.value,l=n.context;r(e,o,l)},update:function(e,t,n){var o=t.value,l=t.oldValue,c=n.context;o!==l&&r(e,o,c)}},r=function(e,t,n){var o=n.$image(t,{mode:"1x"});e.setAttribute("src",o),e.setAttribute("srcset","".concat(o," 1x, ").concat(n.$image(t,{mode:"2x"})," 2x"))};function l(e){r=e}function c(e,t){var n=e.data.attrs||(e.data.attrs={}),o=e.context,r=t.value,l=o.$image(r,{mode:"1x"});Object.assign(n,{src:l,srcset:"".concat(l," 1x, ").concat(o.$image(r,{mode:"2x"})," 2x")})}t.default=o},function(e,t,n){"use strict";var o;function r(e){o=e}function l(e,t){return Intl.NumberFormat(o,t).format(e)}n.r(t),n.d(t,"setLocale",(function(){return r})),n.d(t,"default",(function(){return l}))},function(e,t,n){"use strict";n.r(t),n.d(t,"setDefaultMode",(function(){return d}));n(25),n(48),n(8),n(59),n(65),n(37),n(27),n(20),n(46),n(70),n(32),n(35);var o=n(379),r=n(295);function l(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return c(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return c(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var i=0,o=function(){};return{s:o,n:function(){return i>=e.length?{done:!0}:{done:!1,value:e[i++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,l=!0,d=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return l=e.done,e},e:function(e){d=!0,r=e},f:function(){try{l||null==n.return||n.return()}finally{if(d)throw r}}}}function c(e,t){(null==t||t>e.length)&&(t=e.length);for(var i=0,n=new Array(t);i<t;i++)n[i]=e[i];return n}o.a;function d(e){e}function f(image){var e,t,o,c=image,d=l(Object(r.a)());try{for(d.s();!(o=d.n()).done;){var f=o.value;try{if(null===(e=n(518)("./".concat(image,"-").concat(f)))||void 0===e?void 0:e.default){c="".concat(image,"-").concat(f);break}}catch(e){}}}catch(e){d.e(e)}finally{d.f()}try{return null===(t=n(518)("./".concat(c)))||void 0===t?void 0:t.default}catch(e){}}t.default=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.mode,o=t.silent,r=t.verbose,image=f(e,n);return image?r&&console.debug("Getting:",JSON.stringify({value:e,mode:n})):o||console.warn("Image not present:",JSON.stringify({value:e,mode:n})),image||""}},,,function(e,t,n){"use strict";n.d(t,"b",(function(){return l}));var o;n(67);try{if("localStorage"in globalThis){var r=localStorage.getItem("abtestOverride");"string"==typeof r&&(o=r)}}catch(e){o=void 0,console.warn(e)}function l(e){e?localStorage.setItem("abtestOverride",e):localStorage.removeItem("abtestOverride")}t.a=o},function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));var o=n(282);function r(e){return function(t){return o.a.bind(this)(t,e)}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return d}));var o=n(68),r=n.n(o),l=n(132),c=n.n(l);n(8),n(17);function d(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};e.style&&(Array.isArray(t)?t.forEach((function(t){return d(e,t,n)})):"string"==typeof t?e.setAttribute("style",n.reverse?"":t):c()(t,(function(style,t){e.style.setProperty(r()(t),n.reverse?null:style)})))}},function(e,t,n){"use strict";n.r(t),n.d(t,"addChild",(function(){return y})),n.d(t,"getParent",(function(){return C}));var o=n(87),r=n.n(o),l=(n(32),n(8),n(37),n(276),n(35),n(17),n(92),n(60),n(67),n(407)),c=n(234),d=n(385),f={},m=Object(c.a)({$arrayof:{keys:{$typeof:"string"},options:[{scope:{$typeof:["string","undefined"]},element:{$test:function(element){return!element||element instanceof HTMLElement}},keyup:{$typeof:["boolean","undefined"]},keydown:{$typeof:["boolean","undefined"]},splitKey:{$typeof:["string","undefined"]}},{$typeof:"undefined"}],method:{$typeof:"function"},global:{$typeof:["boolean","undefined"]}}}),h=new WeakMap,v={bind:function(e,t,n){var o=t.arg,c=t.value,d=n.context;m(c=r()(c))?(h.set(e,[]),c.forEach((function(t){var n=t.keys,r=t.options,c=t.method,f=t.global,m=function(t,n){if(x(e)||f){var r=C(o).children;c.call(d,{children:r,utils:(l=r,{focusNext:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l;w(e,"+")},focusPrevious:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l;w(e,"-")},focusFirst:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l;w(e,"+",0)},focusLast:function(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:l;w(e,"-",e.length-1)}}),keyboardEvent:t,hotkeysEvent:n})}var l};h.get(e).push((Object(l.a)(n,r,m),function(){l.a.unbind(n,m)}))}))):console.error("Invalid options passed to tabindex-parent",c,e)},unbind:function(e){h.get(e).forEach((function(e){return e()}))}};function y(e,t){var n=C(e),o=n.children,r=n.enabledChild;return-1==l()&&("autofocus"==t.init?t.focus():"enabled"!=t.init&&r?t.disable():t.enable(),o.push(t)),function(){var i=l();-1!=i&&o.splice(i,1)};function l(){return o.indexOf(t)}}function C(e){return e in f||(f[e]={children:[]}),f[e]}function w(e,t,n){for(var o=n||e.indexOf(e.find((function(e){return x(e.element)}))),r=function(n){return Object(d.a)(n,e.length,t)},l=r(o);!j(e[l].element)||e[l].element.disabled;){if(l===o){l=-1;break}l=r(l)}-1!==l&&e[l].focus()}function j(element){var e=globalThis.getComputedStyle(element),t=e.display,n=e.visibility,o=e.opacity;return"none"!==t&&"hidden"!==n&&"0"!==o&&(!element.parentElement||j(element.parentElement))}function x(element){return 1===element.nodeType&&element.contains(document.activeElement)}t.default=v},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return A}));n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(27),n(72),n(0)),x=n(26),k=n(189),_=n.n(k),O=n(43),L=n(382);function P(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var M,R=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},S=function(e){f()(n,e);var t=P(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).enabled=!1,e.useTestOembedList=!x.inject.isProd,e.browserMode=x.inject.inBrowser,e.abilityVideoVolume=null,e}return c()(n,[{key:"refresh",value:function(){localStorage.setItem("qaRefreshOverride",!0+""),location.href=location.href.replace(/#.*/,"")}},{key:"mounted",value:function(){var e=this;this.$watch((function(){return e.browserMode}),(function(){e.refresh()}))}}]),n}(j.h.extend({render:function(){}}));R([Object(O.a)((function(e,t){var n=e.mounted;e.mounted=function(){var e=this,o=(null==M?void 0:M.storageProp)&&_()(this,null==M?void 0:M.storageProp)||(null==M?void 0:M.storage)||"local",r=(null==M?void 0:M.keyProp)&&_()(this,null==M?void 0:M.keyProp)||(null==M?void 0:M.key)||t,l=Object(L.a)(r,o),c=l.get,d=l.set,f=l.remove,m=JSON.stringify(this[t]);try{var h=c();this[t]=h?JSON.parse(h):this[t],this.$watch((function(){return JSON.stringify(e[t])}),(function(e){e===m?f():d(e)}),{immediate:!0})}catch(e){console.warn(e)}null==n||n.apply(this)}}))],S.prototype,"browserMode",void 0),S=R([j.a],S);var A=x.inject.qaEligible?(new S).$mount():null},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";(function(e){n(15);var o=n(13),r=n.n(o),l=n(14),c=n.n(l),d=n(3),f=n.n(d),m=n(4),h=n.n(m),v=n(5),y=n.n(v),C=n(7),w=n.n(C),j=n(1),x=n.n(j),k=n(2),_=n.n(k),O=n(6),L=n.n(O),P=(n(12),n(8),n(20),n(46),n(32),n(33),n(37),n(35),n(31),n(111),n(0)),M=n(921),R=n(53),S=n(294),A=n(193),E=n(90),T=n(153);function $(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=x()(e);if(t){var r=x()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return w()(this,n)}}var B=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":_()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},D={from:Symbol("App")},I=function(t){y()(r,t);var n,o=$(r);function r(){return f()(this,r),o.apply(this,arguments)}return h()(r,[{key:"beforeCreate",value:function(){this.$siteMode.inLCU&&Object(M.a)()}},{key:"mounted",value:function(){var e=this;this.$nextTick((function(){Object(R.a)((function(){Object(T.activateCurrentPhase)()}))}));var t=this.$preload.wait("Preload hub document images"),n=this.$preload.wait("Preload hub manual images"),o=this.$preload.wait("Preload hub fonts");Promise.all([].map(S.a)).then(o),new Promise((function(t){return e.$router.onReady((function(){return P.h.nextTick(t)}))})).then((function(){Object(A.a)(document.body).finally(t)})),this.$cachedPreload([this.$image("_generated/sprite-pre-default.png"),this.$image("_generated/sprite-pre-default.jpg")]).then((function(){return n()}))}},{key:"fetchInventoryOwnedData",value:(n=c()(L.a.mark((function t(){var n=this;return L.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.next=2,Promise.all(e(E.b,function(){var e=c()(L.a.mark((function e(t){var o;return L.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return o=t.inventory,e.abrupt("return","item"in o&&o.item&&n.$rClient.inventoryOwnedPromise(o.item));case 2:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}())).then(this.$preload.wait("Preload inventory owned data"));case 2:case"end":return t.stop()}}),t,this)}))),function(){return n.apply(this,arguments)})},{key:"pageSection",get:function(){return this.getRouteBaseName()}}]),r}(P.h.extend({components:{QaMode:function(){return n.e(33).then(n.bind(null,1387))}},provide:function(){return r()({},D.from,this)}}));I=B([P.a],I),t.a=I}).call(this,n(103))},,function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));n(25);var o=n(134);function r(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return function(e){for(var n=arguments.length,r=new Array(n>1?n-1:0),l=1;l<n;l++)r[l-1]=arguments[l];return o.a.apply(void 0,[e].concat(t,r))}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return h}));var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(406),f=n.n(d),m=(n(92),n(8),n(17),n(33),n(111),n(32),n(37),n(35),n(24),n(60),n(93),n(25),n(31),r()((function e(t){var n=t.priority,o=t.value;c()(this,e),this.priority=n,this.value=o}))),h=function(){function e(t){var n=t.concurrency,o=void 0===n?1/0:n,r=t.initialQueue,l=t.processDuplicates,d=void 0!==l&&l,f=t.autoProcess,m=void 0===f||f,h=t.callback,v=void 0===h?function(e){return"function"==typeof e?e():e}:h,y=t.on,C=void 0===y?{}:y;c()(this,e),this.queue=[],this.processed=[],this.pending=[],this.processing=!1,this.concurrency=o,this.processDuplicates=d,this.autoProcess=m,this.callback=v,this.eventHandlers=C,r&&this.append(r)}return r()(e,[{key:"highestPriority",get:function(){var e;return(null===(e=this.queue[0])||void 0===e?void 0:e.priority)||0}},{key:"append",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;this.addToQueue(e,t,"append")}},{key:"prepend",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;this.addToQueue(e,t,"prepend")}},{key:"process",value:function(){var e=this;this.queue.length?(this.processing||this.handleStart(),this.queue.splice(0,this.concurrency-this.pending.length).forEach((function(t){var n=new Promise((function(n,o){Promise.resolve(e.callback(t.value)).then(n,o)})).then((function(){e.processed.push(t)})).finally((function(){e.pending.splice(e.pending.indexOf(n),1)}));e.pending.push(n)})),Promise.race(this.pending).then((function(){e.processing?e.queue.length?e.process():e.handleEmpty():e.handlePause()}))):this.handleEmpty()}},{key:"pause",value:function(){this.processing=!1}},{key:"handleStart",value:function(){var e,t;this.processing=!0,null===(t=null===(e=this.eventHandlers)||void 0===e?void 0:e.start)||void 0===t||t.call(e)}},{key:"handlePause",value:function(){var e,t;this.processing=!1,null===(t=null===(e=this.eventHandlers)||void 0===e?void 0:e.pause)||void 0===t||t.call(e)}},{key:"handleEmpty",value:function(){var e,t;this.processing=!1,null===(t=null===(e=this.eventHandlers)||void 0===e?void 0:e.empty)||void 0===t||t.call(e)}},{key:"addToQueue",value:function(e){var t=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,o=arguments.length>2?arguments[2]:void 0,r=this.normalizeQueueInput(e,n),l=this.processDuplicates?r:r.filter((function(e){var n=e.value;return!t.queue.find((function(e){return f()(e.value,n)}))&&!t.processed.find((function(e){return f()(e.value,n)}))}));this.queue=("prepend"===o?l.concat(this.queue):this.queue.concat(l)).sort((function(a,b){return b.priority-a.priority})),this.autoProcess&&!this.processing&&this.process()}},{key:"normalizeQueueInput",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n="highest"===t?this.highestPriority:t;return(Array.isArray(e)?e:[e]).map((function(e){return e instanceof m?(n>e.priority&&(e.priority=n),e):new m({value:e,priority:n})}))}}]),e}()},function(e,t,n){"use strict";function o(e){return"".concat(Math.round(e/1e3*100)/100,"s")}n.d(t,"a",(function(){return o}))},function(e,t,n){"use strict";n.d(t,"a",(function(){return x}));var o=n(2),r=n.n(o),l=n(88),c=n.n(l),d=n(87),f=n.n(d),m=n(190),h=n.n(m),v=n(189),y=n.n(v),C=n(933),w=n.n(C),j=(n(8),n(17),n(27),n(82),n(81),n(56),n(21),["$and","$or","$arrayof","$is","$typeof","$gt","$lt","$gte","$lte","$eq","$test","$noAdditionalProperties"]);function x(e,t){var n,o=this,l=!0,d=[],f=function(e,input){return d.unshift({reason:e,input:input}),!1};if(Array.isArray(t)){var m=k(e),v=m.context,C=m.failures;t.some((function(t){return x.bind(v)(e,t)}))||(C.forEach((function(e){var t=e.reason,input=e.input;return f(t,input)})),l=f("it failed all tests",e))}else{var O=this&&this.parent||e,L=t.$and,P=t.$or,M=t.$arrayof,R=t.$is,S=t.$typeof,A=t.$gt,E=t.$lt,T=t.$gte,$=t.$lte,B=t.$eq,D=t.$test,I=t.$noAdditionalProperties,G=c()(t,j);if(l&&"$test"in t&&(_(D,(function(t){return t.bind(o)(e,O)}))||(l=f("the $test function".concat(Array.isArray(D)?"s":" (named ".concat(null===(n=D.toString().match(/^(?:function\s*)?([^\(]*)\(/))||void 0===n?void 0:n[1],")")," failed"),e))),l&&"$is"in t&&(("TRUTHY"===R?e:!e)||(l=f("it isn't ".concat(R),e))),l&&"$typeof"in t&&(_(S,(function(t){return"array"==t?Array.isArray(e):r()(e)===t}))||(l=f("its type isn't ".concat(Array.isArray(S)?S.join(" or "):S),e))),l&&"$gt"in t&&(e>A||(l=f("it isn't > ".concat(A),e))),l&&"$lt"in t&&(e<E||(l=f("it isn't < ".concat(E),e))),l&&"$gte"in t&&(e>=T||(l=f("it isn't >= ".concat(T),e))),l&&"$lte"in t&&(e<=$||(l=f("it isn't <= ".concat($),e))),l&&"$eq"in t&&(_(B,(function(t){return e===t}))||(l=f("it isn't === ".concat(Array.isArray(B)?B.join(" or "):B),e))),l&&Object.keys(G).length){var z=k(e),Z=z.context,H=z.failures;if(w()(G,(function(t,path){var n=y()(e,path);return!!x.bind(Z)(n,t)||(H.forEach((function(e){var t=e.reason,input=e.input;return f(t,input)})),f("its path '".concat(path,"' failed"),e),!1)}))||(l=!1),l&&I){var U=h()(Object.keys(e),Object.keys(G));U.length&&(l=f("it failed $noAdditionalProperties with these additional properties: [".concat(U.join(", "),"]"),e))}}if(l&&"$and"in t){var F=k(e),N=F.context,V=F.failures;L.every((function(t,i){return x.bind(N)(e,t)||f("it failed the i=".concat(i," $and test"),e)}))||(V.forEach((function(e){var t=e.reason,input=e.input;return f(t,input)})),l=!1)}if(l&&"$or"in t){var W=k(e),J=W.context,K=W.failures;P.some((function(t){return x.bind(J)(e,t)}))||(K.forEach((function(e){var t=e.reason,input=e.input;return f(t,input)})),l=f("it failed all $or tests",e))}if(l&&"$arrayof"in t){var Y=k(e),X=Y.context,Q=Y.failures;(Array.isArray(e)||f("it's not an $arrayof anything",e))&&e.every((function(e,i){return!!x.bind(X)(e,M)||(Q.forEach((function(e){var t=e.reason,input=e.input;return f(t,input)})),f("its i=".concat(i," $arrayof item failed"),e),!1)}))||(l=!1)}}return l||d.forEach((function(e){var t,n=e.reason,input=e.input;o&&(null===(t=o.onInvalid)||void 0===t||t.call(o,n,input))})),l}function k(e){var t=[],n={parent:e,onInvalid:function(e,input){t.push({reason:e,input:input})}};return{failures:t,context:n}}r()(null);function _(e,t){return f()(e).some(t)}},function(e,t,n){"use strict";n.d(t,"b",(function(){return l})),n.d(t,"a",(function(){return c}));n(67),n(25);var o=n(281),r="performance"in globalThis&&performance.mark,l=[];function c(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.andLog,c=void 0!==n&&n,d=Math.random(),f="".concat(d," - ").concat(e," start"),m="".concat(d," - ").concat(e," end"),h=(new Date).valueOf();r&&performance.mark(f);var v=!1;return function(){var t=arguments.length>0&&void 0!==arguments[0]&&arguments[0],n=(new Date).valueOf()-h;return v||(v=!0,t||(l.push({id:d,name:e,ms:n}),c&&console.log(e,Object(o.a)(n))),r&&(t||(performance.mark(m),performance.measure(e,f,m),performance.clearMarks(m)),performance.clearMarks(f))),n}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return m}));var o=n(18),r=n.n(o),l=n(2),c=n.n(l),d=n(94),f=n.n(d);n(21),n(92),n(25),n(56);function m(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},o=n.maxLength,l=void 0===o?100:o,d=n.space,h=void 0===d?2:d,v=this||{},y=v.depthLeft,C=void 0===y?2:y;try{t=JSON.stringify(e)||"undefined"}catch(n){t="object"==c()(e)&&Object.keys(e).length&&C?JSON.stringify(f()(e,m.bind({depthLeft:C-1})),void 0,h):" ...(circular reference) "}var w=Math.max(0,t.length-l);if(w>0){var j=t.split("");return j.splice.apply(j,[Math.floor(t.length/2-w/2),w].concat(r()(" ...(".concat(w," removed)... ").split("")))),j.join("")}return t}},function(e,t,n){"use strict";(function(e){n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(31),n(93),n(25),n(52),n(0)),x=n(196),k=n(934);function _(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var O=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},L=6e4,P=36e5,M=24*P,R=["days","hours","minutes","seconds"],S={},A=function(t){f()(o,t);var n=_(o);function o(){return r()(this,o),n.apply(this,arguments)}return c()(o,[{key:"now",get:function(){return Object(k.a)({interval:1e3,until:this.target})}},{key:"days",get:function(){return Math.floor(this.timeRemaining/M)}},{key:"hours",get:function(){return Math.floor(this.timeRemaining%M/P)}},{key:"minutes",get:function(){return Math.floor(this.timeRemaining%P/L)}},{key:"seconds",get:function(){return Math.floor(this.timeRemaining%L/1e3)}},{key:"timeRemaining",get:function(){return Math.max(0,this.target-this.now.value)}},{key:"countByTimeUnit",get:function(){var t=this;return e(this.orderedTimeUnits.map((function(e){return[e,t.timeRemaining>0?t[e]:0]})))}},{key:"mounted",value:function(){var e=this;this.$watch((function(){return e.now}),(function(e,t){t.$destroy()}))}},{key:"orderedTimeUnits",get:function(){var e=this;return this.$defaultLocale in S?[].concat(R).sort((function(a,b){return S[e.$defaultLocale][a]-S[e.$defaultLocale][b]})):[].concat(R)}}]),o}(j.h.extend({render:function(){return null}}));O([Object(j.e)({type:Number,required:!0})],A.prototype,"target",void 0),O([Object(x.a)()],A.prototype,"days",null),O([Object(x.a)()],A.prototype,"hours",null),O([Object(x.a)()],A.prototype,"minutes",null),O([Object(x.a)()],A.prototype,"seconds",null),O([Object(x.a)()],A.prototype,"timeRemaining",null),A=O([j.a],A),t.a=A}).call(this,n(102))},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return P}));var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0)),x=n(30);function k(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var _=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},O=j.h.observable({showPip:void 0}),L=function(e){f()(n,e);var t=k(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"showPip",get:function(){return void 0===O.showPip&&x.inject.requestResponse({messageType:"event-shop-status-observe"},{messageType:"event-shop-status-response",callback:function(e,t){var data=t.data;data&&(O.showPip=data.showPip)}},{autoUnlisten:!1}),O.showPip}},{key:"open",value:function(){x.inject._sendMessage({messageType:"open-event-shop"})}}]),n}(j.h.extend({render:function(){}})),P=(new(L=_([j.a],L))).$mount()},function(e,t,n){"use strict";(function(e){n(15);var o=n(16),r=n.n(o),l=n(3),c=n.n(l),d=n(4),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=(n(12),n(8),n(31),n(99),n(52),n(64),n(60),n(27),n(72),n(327),n(81),n(0)),_=n(233);function O(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var L=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},P=function(t){h()(o,t);var n=O(o);function o(){var e;return c()(this,o),(e=n.apply(this,arguments)).noMatchedGroup=!1,e}return f()(o,[{key:"testOptionsContentStrategy",get:function(){return e(this.$abTest.groups).map((function(e,i){return[i,r()(e,1)[0]]}))}},{key:"selectedTestContentStrategy",get:function(){return this.$abTest.group.groupNumber||null},set:function(e){if(Number.isFinite(e)){var t=this.findABGroup({groupNumber:e});t?this.switchABGroup(t):this.noMatchedGroup=!0}else this.switchABGroup()}},{key:"findABGroup",value:function(e){var t=Object.assign({},{groupNumber:this.selectedTestContentStrategy},e);return this.$abTest.find(t)}},{key:"switchABGroup",value:function(e){if(localStorage.setItem("qaRefreshOverride",!0+""),e){this.noMatchedGroup=!1;var t="/ab-".concat(e.groupNumber);this.$siteMode.inBrowser||this.$siteMode.isWebpackDev?(Object(_.b)(e.groupId),location.reload()):location.href=location.href.replace(new RegExp("(".concat("winterblessed-embed-2022",")(.*?)([?#])")),"$1".concat(t,"$3"))}else this.$siteMode.inBrowser||this.$siteMode.isWebpackDev?(Object(_.b)(),location.reload()):location.href=location.href.replace(new RegExp("(".concat("winterblessed-embed-2022",")(.*?)([?#])")),"$1/$3")}}]),o}(k.h);P=L([k.a],P),t.a=P}).call(this,n(1258))},function(e,t,n){"use strict";(function(e){n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(31),n(25),n(99),n(52),n(81),n(0)),x=n(74),k=n(153);function _(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var O=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},L=function(t){f()(o,t);var n=_(o);function o(){var t;return r()(this,o),(t=n.apply(this,arguments)).viewCurrentPhase=!1,t.nowOverride=(null===x.a||void 0===x.a?void 0:x.a.valueOf())||null,t.overrideByLabel=e(k.phases.map((function(e){var t=e.enabled,n=e.label,label=void 0===n?"[unlabeled]":n,o=e.date;return["".concat(o?new Date(o).toLocaleString("en-US",{day:"numeric",month:"numeric",year:"2-digit",hour:"numeric",minute:"2-digit"})+" - ":"").concat(label," ").concat(t?"":"(NON-PROD)"),o.valueOf()]}))),t}return c()(o,[{key:"mounted",value:function(){var e=this;this.$watch((function(){return e.nowOverride}),(function(t){Number.isFinite(t)?localStorage.setItem("nowOverride",t.toString()):localStorage.removeItem("nowOverride"),e.$qaState.refresh()}))}},{key:"nowOverrideFormatted",get:function(){return this.nowOverride?new Intl.DateTimeFormat("en-US",{day:"numeric",month:"numeric",year:"2-digit",hour:"numeric",minute:"2-digit",timeZone:"America/Los_Angeles"}).format(new Date(this.nowOverride))+" Pacific":""}}]),o}(j.h);L=O([j.a],L),t.a=L}).call(this,n(102))},function(e,t,n){"use strict";(function(e){n.d(t,"b",(function(){return M}));n(15),n(21),n(20),n(38);var o=n(13),r=n.n(o),l=n(3),c=n.n(l),d=n(4),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=(n(12),n(8),n(175),n(27),n(72),n(24),n(82),n(25),n(269),n(17),n(52),n(0));function _(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function O(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?_(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):_(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function L(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var P=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l};function M(text){return text.replace(/<\/?\s*br\s*\/?>/g,"\n").replace(/(<[^>]+>)/g," $1 ").replace(/\n/g," <br/>").replace(/\s+/g," ").trim()}var R=function(t){h()(o,t);var n=L(o);function o(){var e;return c()(this,o),(e=n.apply(this,arguments)).killTransitionHash={},e}return f()(o,[{key:"delayHash",get:function(){var e=this.initialDelay,t=this.charDelay,n=this.phraseDelay||5*t;return{initial:e,char:t,phrase:n,sentence:this.sentenceDelay||2*n}}},{key:"mounted",value:function(){var e=this;this.$watch((function(){return e.unfinishedTransitions}),(function(t){t.length?e.killSync=e.killTransitions:(e.killSync=void 0,e.$emit("finished"))}))}},{key:"sanitizedText",get:function(){return M(this.text)}},{key:"duration",get:function(){var t=e(this.textActiveStyles).activeStyles[0][1];return t.duration+t.delay}},{key:"textActiveStyles",get:function(){var e=this,t=this.sanitizedText.replace(/<br\/>/g,"<br/><long-pause/>").replace(/([\.\?!…]+\s+)|([。?!]+)/g,"$1$2<long-pause/>").replace(/([,:]\s+)|([、]+)/g,"$1$2<short-pause/>").split("<long-pause/>").filter(Boolean),n=[];return t.reduce((function(t,o,r){return o.split("<short-pause/>").filter(Boolean).reduce((function(t,o,l){return o.replace(/\s+/g," <space/>").split("<space/>").filter(Boolean).reduce((function(t,o,c){var d=o.match(/<\/?(\w+)>/);if(d&&"br"!=d[1]){var f=d[1];return d[0]=="<".concat(f,">")?n.push(d[1]):n[n.length-1]==f&&n.pop(),t}return("<br/>"===o?[o]:o.split("")).reduce((function(t,o,d){var f=e.delayHash.initial,m=0;if(t.length){var h=t[t.length-1].activeStyles[0][1],v=h.delay,y=void 0===v?0:v,C=h.duration;f=+y||0,m=+(void 0===C?0:C)||0}var w=f+m;return 0===c&&0===d&&(r||l)&&(w+=0===l?e.delayHash.sentence:e.delayHash.phrase),t.push({char:n.reduce((function(e,t){return"<".concat(t,">").concat(e,"</").concat(t,">")}),o),activeStyles:[["from",{opacity:0,duration:e.delayHash.char,delay:w,ease:"linear"}],["from",O(O({},e.fadeOnly?{}:{display:"none"}),{},{duration:e.delayHash.char}),"-=".concat(e.delayHash.char*(d+1))]]}),t}),t)}),t)}),t)}),[])||[]}},{key:"unfinishedTransitions",get:function(){return Object.values(this.killTransitionHash).filter(Boolean)}},{key:"updateTransition",value:function(e,t){t?this.$set(this.killTransitionHash,e,t):this.$delete(this.killTransitionHash,e)}},{key:"killTransitions",value:function(){this.unfinishedTransitions.forEach((function(e){return e()}))}}]),o}(k.h);P([Object(k.e)({type:String,required:!0})],R.prototype,"text",void 0),P([Object(k.e)({type:Number,default:0})],R.prototype,"initialDelay",void 0),P([Object(k.e)({type:Number,default:.025/.65})],R.prototype,"charDelay",void 0),P([Object(k.e)(Number)],R.prototype,"phraseDelay",void 0),P([Object(k.e)(Number)],R.prototype,"sentenceDelay",void 0),P([Object(k.e)(Boolean)],R.prototype,"fadeOnly",void 0),P([Object(k.f)("kill")],R.prototype,"killSync",void 0),R=P([k.a],R),t.a=R}).call(this,n(1311))},function(e,t,n){"use strict";(function(e,o){n(15),n(21),n(20),n(24),n(17),n(38);var r=n(13),l=n.n(r),c=n(3),d=n.n(c),f=n(4),m=n.n(f),h=n(5),v=n.n(h),y=n(7),C=n.n(y),w=n(1),j=n.n(w),x=n(2),k=n.n(x),_=(n(12),n(8),n(60),n(0)),O=n(303),L=n(90);function P(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function M(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=j()(e);if(t){var r=j()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return C()(this,n)}}var R=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":k()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},S=[0,115,215,315],A=function(t){v()(r,t);var n=M(r);function r(){var e;return d()(this,r),(e=n.apply(this,arguments)).activeIndex=0,e.maxMovement=1,e.maxVisible=5,e.cycledItems=[],e}return m()(r,[{key:"mounted",value:function(){var t=this;this.$embedState.skin=e(O.a),this.activeIndex=o(this.storeItems,(function(e){var n=e.skin;return t.$embedState.skin===n})),this.$watch((function(){return t.activeStoreItem}),(function(e){var n=e.skin;t.$embedState.skin=n}))}},{key:"activeStoreItem",get:function(){return this.storeItems[this.activeIndex%this.storeItems.length]}},{key:"storeItems",get:function(){return[L.a.find((function(e){return"skinWinterDiana"==e.slug})),L.a.find((function(e){return"skinWinterWarwick"==e.slug})),L.a.find((function(e){return"skinWinterShaco"==e.slug})),L.a.find((function(e){return"skinWinterSwain"==e.slug})),L.a.find((function(e){return"skinWinterZilean"==e.slug})),L.a.find((function(e){return"skinWinterZoe"==e.slug})),L.a.find((function(e){return"skinWinterWarwickPrestige"==e.slug}))]}},{key:"getThumbnailStyle",value:function(e){var t=Math.abs(e),n=e<0?-1:1,o=S[Math.min(t,S.length-1)]*n;return function(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?P(Object(source),!0).forEach((function(t){l()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):P(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}({transform:"\n\t\t\t\ttranslate(".concat(o,"px)\n\t\t\t\ttranslateZ(0)\n\t\t\t")},t<=Math.floor(.5*this.maxVisible)?{zIndex:9999-t}:{opacity:0,zIndex:-1})}},{key:"moveLeft",value:function(){this.goToItem(0===this.activeIndex?this.cycledItems.length-1:this.activeIndex-1)}},{key:"moveRight",value:function(){this.goToItem((this.activeIndex+1)%this.cycledItems.length)}},{key:"goToItem",value:function(e){this.activeIndex=e}}]),r}(_.h);A=R([_.a],A),t.a=A}).call(this,n(1323),n(1328))},function(e,t,n){"use strict";(function(e){n(15);var o=n(18),r=n.n(o),l=n(3),c=n.n(l),d=n(4),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=(n(12),n(8),n(31),n(25),n(32),n(35),n(52),n(0)),_=n(45);function O(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var L=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},P=function(t){h()(o,t);var n=O(o);function o(){var e;return c()(this,o),(e=n.apply(this,arguments)).throttleMoveLeft=function(){},e.throttleMoveRight=function(){},e}return f()(o,[{key:"mounted",value:function(){this.throttleMoveLeft=e(this.moveLeft,this.throttle,{trailing:!1}),this.throttleMoveRight=e(this.moveRight,this.throttle,{trailing:!1})}},{key:"cycledItems",get:function(){var e,t=this,n=Math.floor((this.maxVisible+2*this.maxMovement)/this.items.length),o=(e=this.items).concat.apply(e,r()(r()(Array(n)).map((function(){return t.items})))).map((function(e,t){return{id:t,value:e}}));return this.cycledItemsRefSynced=o,o}},{key:"centerIndex",get:function(){return Math.floor(.5*this.cycledItems.length)}},{key:"moveLeft",value:function(){this.activeIndexSynced=0===this.activeIndexSynced?this.cycledItems.length-1:this.activeIndexSynced-1}},{key:"moveRight",value:function(){this.activeIndexSynced=(this.activeIndexSynced+1)%this.cycledItems.length}},{key:"returnedItems",get:function(){var e=this;return this.cycledItems.map((function(t,n,o){var r=t.value,l=t.id,c=l-e.activeIndexSynced;return{value:r,index:l,offsetFromCenter:((c<0?o.length+c:c)+e.centerIndex)%o.length-e.centerIndex}}))}},{key:"values",get:function(){var e=this.centerIndex,t=this.throttleMoveLeft,n=this.throttleMoveRight;return{centerIndex:e,items:this.returnedItems,moveLeft:t,moveRight:n}}}]),o}(k.h.extend({render:Object(_.a)({slotScope:function(){return this.values}})}));L([Object(k.f)("activeIndex",{type:Number})],P.prototype,"activeIndexSynced",void 0),L([Object(k.f)("cycledItemsRef",{type:Array})],P.prototype,"cycledItemsRefSynced",void 0),L([Object(k.e)({type:Array,default:[]})],P.prototype,"items",void 0),L([Object(k.e)({type:Number,default:1})],P.prototype,"maxMovement",void 0),L([Object(k.e)({type:Number,default:5})],P.prototype,"maxVisible",void 0),L([Object(k.e)({type:Number,default:0})],P.prototype,"throttle",void 0),P=L([k.a],P),t.a=P}).call(this,n(1332))},function(e,t,n){"use strict";(function(e){n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(25),n(27),n(60),n(33),n(32),n(37),n(35),n(31),n(52),n(0)),x=n(53),k=n(940);function _(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var O=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},L={promo:"handlePromoCard",hero:"handleHeroCard",multi:"handleMultiCard",standard:"handleStandardCard"},P="oembedGlobals"in e&&oembedGlobals||{},M=P.newsOembedServiceHost,R=P.region,S=P.language,A=function(e){f()(n,e);var t=_(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).slides=[],e.activeIndex=null,e.halted=!1,e.embedStyle=null,e.handlerByType=L,e.pingInitialized=!1,e}return c()(n,[{key:"allowEmbedFailure",get:function(){return this.allowFailure||"true"===this.$route.query.dark_launch}},{key:"embedTier",get:function(){return this.embedIndex>3?3:this.embedIndex}},{key:"embedUrl",get:function(){var e="".concat(M,"/v2/").concat(R,"/").concat(S,"/lists"),t="contentTemplate=".concat(this.contentTemplate,"&styled=0&requirejs=2"),n=this.embedIndex?"/".concat(this.embedIndex):"";return"".concat(e,"/").concat(this.embedList).concat(n,"?").concat(t)}},{key:"playing",get:function(){return this.autoplay&&!this.halted}},{key:"onPlayingChanged",value:function(e){var t;e?this.queueNextSlide():null===(t=this.nextSlideCancel)||void 0===t||t.call(this)}},{key:"mounted",value:function(){var e=this,t=this.noPreload?function(){}:this.$preload.wait("lasso-embed ".concat(this.embedList," (").concat(this.embedIndex||"all",")"));this.$on("hook:beforeDestroy",t),"function"!=typeof window._.at&&/1\./.test(window._.VERSION)||console.error("Underscore missing from window"),this.$ping.on("init",(function(){e.pingInitialized=!0,e.$nextTick((function(){e.embed.onLassoEmbedLoad((function(){setTimeout((function(){e.embed.find(".oembed-item-wrapper").each((function(t,n){var o=$(n);e.maxSlides&&t>=e.maxSlides?o.remove():e.slides.push({content:o[0].outerHTML,loaded:new Promise((function(n){e.$once("lasso-loaded:".concat(t),n)}))})})),Promise.all(e.slides.map((function(i){return i.loaded}))).then((function(){e.activeIndex=0,e.autoplay&&e.queueNextSlide(),t()}))}),10)}),(function(n){e.$pingUtils.oembedFailure(n),e.allowEmbedFailure&&t()}),8e3)}))}))}},{key:"embed",get:function(){return $(this.$refs.embed)}},{key:"queueNextSlide",value:function(){var e=this;this.nextSlideCancel&&this.nextSlideCancel(),this.playing&&(this.nextSlideCancel=Object(x.a)((function(){e.nextSlide()}),4e3))}},{key:"cardLoaded",value:function(e){this.$emit("lasso-loaded:".concat(e))}},{key:"nextSlide",value:function(){this.goToSlide(this.activeIndex+1)}},{key:"goToSlide",value:function(e){(e<0||e>=this.slides.length)&&(e=0),this.activeIndex=e,this.queueNextSlide()}},{key:"sendLoadedImpression",value:function(e){var t=this;this.$pingUtils.oembedLoaded(e.get(0)),$("body").one("section-show",(function(){return t.$pingUtils.oembedDisplay(e.get(0))}))}},{key:"onActiveIndexChange",value:function(e){this.$emit("active-index",e)}}]),n}(j.h);O([Object(j.e)({type:String,required:!0})],A.prototype,"embedList",void 0),O([Object(j.e)(Number)],A.prototype,"embedIndex",void 0),O([Object(j.e)({type:String,default:"standard",validator:function(e){return!!L[e]}})],A.prototype,"embedType",void 0),O([Object(j.e)({type:String,default:"lazy-default"})],A.prototype,"contentTemplate",void 0),O([Object(j.e)(Boolean)],A.prototype,"noInjectCtas",void 0),O([Object(j.e)(Number)],A.prototype,"maxSlides",void 0),O([Object(j.e)(Boolean)],A.prototype,"autoplay",void 0),O([Object(j.e)(Boolean)],A.prototype,"noPreload",void 0),O([Object(j.e)(Boolean)],A.prototype,"allowFailure",void 0),O([Object(j.i)("playing")],A.prototype,"onPlayingChanged",null),O([Object(j.i)("activeIndex",{immediate:!0})],A.prototype,"onActiveIndexChange",null),A=O([Object(j.a)({components:{LassoCard:k.a}})],A),t.a=A}).call(this,n(40))},function(e,t,n){"use strict";(function(e){n(27);var o=/^https?:\/\/(frontpage\.)?localhost(\.leagueoflegends\.com)?:\d*\/.*/i.test("location"in e&&location.href);t.a=o}).call(this,n(40))},function(e,t,n){"use strict";n.d(t,"a",(function(){return c}));var o=n(924),r=n.n(o),l=n(135),c=Object(l.a)((function(e){return new r.a(e).load()}))},function(e,t,n){"use strict";(function(e){n.d(t,"a",(function(){return l}));var o=n(133),r=n(41);function l(){return[e(r.inject.value),r.inject.value.split("_")[0],r.inject.publisher,o.a[r.inject.value].league]}}).call(this,n(68))},function(e,t,n){"use strict";n.d(t,"a",(function(){return r}));n(8),n(17),n(21),n(64);var o=n(10);function r(e,t){return Object.keys(t).forEach((function(n){e.hasOwnProperty(n)||(o.a.set(e,n,t[n]),delete t[n])})),Object.keys(t).length&&Object.assign(e,t),e}},function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));n(1119),n(52);function o(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=+e;return Number.isNaN(n)?t:n}},function(e,t,n){"use strict";n.d(t,"a",(function(){return d}));var o=n(154),r=n(279),l=n(280),c=Object(r.a)("EagerLoader :: ");function d(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.initialQueue,n=e.concurrency,r=void 0===n?1:n,d=e.autoProcess,f=void 0===d||d,m=e.logging,h=void 0!==m&&m;return new l.a({initialQueue:t,concurrency:r,autoProcess:f,callback:function(e){return Object(o.a)(e).then((function(){return h?c(e,"Loaded"):e}),(function(t){throw c(t,"Error loading",e)}))}})}},function(e,t,n){"use strict";n.d(t,"a",(function(){return f}));var o=n(14),r=n.n(o),l=n(6),c=n.n(l),d=n(53);function f(e,t){var n,o;return function l(){n=Object(d.a)(r()(c.a.mark((function t(){return c.a.wrap((function(t){for(;;)switch(t.prev=t.next){case 0:return t.prev=0,t.next=3,e();case 3:t.next=8;break;case 5:t.prev=5,t.t0=t.catch(0),console.error("Error encountered in rafInterval callback",t.t0);case 8:!o&&l();case 9:case"end":return t.stop()}}),t,null,[[0,5]])}))),t)}(),function(){n(),o=!0}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return v}));var o=n(18),r=n.n(o),l=n(88),c=n.n(l),d=n(2),f=n.n(d),m=(n(25),n(56),n(284)),h=["andThrow"];function v(input,e,t){var n;t&&("object"==f()(t)?n=t:"string"==typeof t&&(n={andThrow:t}));var o=n||{},l=o.andThrow,d=void 0!==l&&l,v=c()(o,h),y=[];if(e.bind({onInvalid:function(e,input){y.push("".concat(e,": ").concat(Object(m.a)(input,v)))}})(input))return input;if(d)throw new Error([d].concat(r()(y||[])).join("\n"))}},function(e,t,n){"use strict";n.d(t,"a",(function(){return j}));n(21),n(20),n(24),n(12),n(38);var o=n(18),r=n.n(o),l=n(156),c=n.n(l),d=n(13),f=n.n(d),m=n(16),h=n.n(m),v=n(2),y=n.n(v);n(27),n(48),n(8),n(17);function C(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function w(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?C(Object(source),!0).forEach((function(t){f()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):C(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function j(e,t,n){var o=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{};if(Array.isArray(n))if("string"==typeof n[0]&&"function"==typeof e[n[0]])if("object"==y()(n[2])&&/fromTo/.test(n[0])){var l=h()(n,4),d=l[0],f=l[1],m=l[2],v=l[3];e[d](t,f,w(w({},o),m),v)}else if(/from|to|set/i.test(n[0])){var C=h()(n,3),x=C[0],k=C[1],_=C[2];e[x](t,w(w({},o),k),_)}else if(/call/i.test(n[0])){var O=h()(n,4),L=O[0],P=O[1],M=O[2],R=O[3];e[L](P,M,R)}else{var S=c()(n),A=S[0],E=S.slice(1);e[A].apply(e,r()(E))}else Array.isArray(n[0])&&n.forEach((function(n){return j(e,t,n)}));else j(e,t,["to",n])}},function(e,t,n){"use strict";n.d(t,"b",(function(){return L}));var o=n(13),r=n.n(o),l=n(4),c=n.n(l),d=n(3),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=(n(12),n(8),n(20),n(46),n(15),n(0));function _(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var O=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},L={from:Symbol("transitionsDisabled"),default:function(){return{value:!1}}},P=function(e){h()(n,e);var t=_(n);function n(){return f()(this,n),t.apply(this,arguments)}return c()(n)}(k.h.extend({provide:function(){return r()({},L.from,this)}}));O([Object(k.e)(Boolean)],P.prototype,"value",void 0),P=O([k.a],P),t.a=P},function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));var o=["diana","warwick","shaco","swain","zilean","zoe","warwickp"]},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/_generated/sprite-post-default.jpg?2770b93b4599cd325a6f8b8dc068bc82"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/_generated/sprite-pre-default.jpg?2770b93b4599cd325a6f8b8dc068bc82"},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return r}));var o=n(298),r=Object(o.a)()},,function(e,t,n){"use strict";n.r(t);var o=n(89),r=n.n(o),l=(n(8),n(10)),c=["play","progress","pause"],d=["paused","currentTime"],f={bind:function(e,t,n){var o=t.arg,f=n.context;if(e instanceof HTMLVideoElement){var m=function(){d.forEach((function(e){v[e]=h[e]}))},h=e,v=l.a.observable(r()(d,[]));m(),c.forEach((function(e){h.addEventListener(e,m)}));var y={seek:function(e){h.currentTime=e},play:function(){h.play()},pause:function(){h.pause()},get paused(){return v.paused},volume:function(e){h.volume=e},get currentTime(){return v.currentTime}};return f[o]=y,y}throw new Error("video-api.directive used on a ".concat(e.tagName," element, not a video."))},unbind:function(e){e instanceof HTMLVideoElement&&(e.pause(),e.removeAttribute("src"),e.load())}};t.default=f},function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));n(122);function o(e){return Object.entries(e)}},function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));n(67);var o="matchMedia"in globalThis&&(globalThis.matchMedia("only screen and (min-resolution: 124dpi), only screen and (min-resolution: 1.3dppx), only screen and (min-resolution: 48.8dpcm)").matches||globalThis.matchMedia("only screen and (-webkit-min-device-pixel-ratio: 1.3), only screen and (-o-min-device-pixel-ratio: 2.6/2), only screen and (min--moz-device-pixel-ratio: 1.3), only screen and (min-device-pixel-ratio: 1.3)").matches)||"devicePixelRatio"in globalThis&&globalThis.devicePixelRatio&&globalThis.devicePixelRatio>1.3},function(e,t,n){"use strict";n.r(t);var o=n(16),r=n.n(o);n(32),n(8),n(37),n(35),n(270),n(143),n(48),n(27),n(213),n(17),n(122);t.default=function(e,t){var n;try{n=new URL(e)}catch(e){n=void 0}if(!n)return"";var o=new URLSearchParams(n.search.slice(1));return Object.entries(t).forEach((function(e){var t=r()(e,2),param=t[0],n=t[1];o.has(param)||o.set(param,n)})),n.search=o,n.href}},function(e,t,n){"use strict";n.r(t),function(e){n.d(t,"inject",(function(){return G}));n(15),n(21),n(20),n(24),n(17),n(38);var o=n(13),r=n.n(o),l=n(14),c=n.n(l),d=n(3),f=n.n(d),m=n(4),h=n.n(m),v=n(5),y=n.n(v),C=n(7),w=n.n(C),j=n(1),x=n.n(j),k=n(2),_=n.n(k),O=n(6),L=n.n(O),P=(n(12),n(8),n(33),n(64),n(27),n(0)),M=n(53),R=n(137),S=n(386),A=n(30),E=n(114);function T(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function $(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=x()(e);if(t){var r=x()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return w()(this,n)}}var B=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":_()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l};function D(e){var t=function(t){y()(o,t);var n=$(o);function o(){var e;return f()(this,o),(e=n.apply(this,arguments)).ambientAsset=null,e.ambientOptions=null,e.introAsset=null,e.introOptions=null,e.stopOptions=null,e.hidden=!1,e}return h()(o,[{key:"urls",get:function(){var e=this.disabled,t=this.ambientAsset,n=this.introAsset,o=this.introOptions,r=this.ambientOptions,l=this.stopOptions;return e||!t&&!n?{stopOptions:l}:{ambientAsset:t,introAsset:n,introOptions:o,ambientOptions:r}}},{key:"created",value:function(){var t=this,n=new Promise((function(e){if(R.inject.ready)e();else var n=t.$watch((function(){return R.inject.ready}),(function(){n(),e()}))}));this.$watch((function(){return JSON.stringify(t.urls)}),(function(){n=n.then(c()(L.a.mark((function n(){var data;return L.a.wrap((function(n){for(;;)switch(n.prev=n.next){case 0:return"stopOptions"in(data=t.urls)?E.inject.stopAmbientChannel(e,data.stopOptions):Object(S.inject)(e,data),n.next=4,new Promise((function(e){return Object(M.a)(e)}));case 4:case"end":return n.stop()}}),n)}))))}))}},{key:"clear",value:function(){Object.assign(this,{ambientAsset:null,introAsset:null})}},{key:"disabled",get:function(){return this.hidden&&(!R.inject.blurred||!/event-pass/.test(R.inject.blurredFor))}},{key:"mounted",value:function(){var e=this;this.$once("hook:beforeDestroy",A.inject.on("sectionHide",(function(){e.hidden=!0}))),this.$once("hook:beforeDestroy",A.inject.on("sectionShow",(function(){e.hidden=!1})))}},{key:"render",value:function(e){return e()}}]),o}(P.h);return(new(t=B([P.a],t))).$mount()}var I={primary:D("primary"),secondary:D("secondary")},G={set:function(e,t){I[e]&&Object.assign(I[e],function(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?T(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):T(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}({ambientAsset:void 0,introAsset:void 0},t))},clear:function(){e(I,(function(audio){return audio.clear()}))}}}.call(this,n(132))},function(e,t,n){"use strict";n.d(t,"a",(function(){return l}));var o=n(16),r=n.n(o);n(67),n(31),n(27),n(72),n(56),n(60),n(8),n(24),n(32),n(37),n(35),n(143),n(213),n(270),n(81);function l(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"local";switch(t){case"local":case"session":return{get:function(){if("localStorage"in globalThis)return("local"==t?localStorage:sessionStorage).getItem(e)},set:function(n){"localStorage"in globalThis&&("local"==t?localStorage:sessionStorage).setItem(e,n)},remove:function(){"localStorage"in globalThis&&("local"==t?localStorage:sessionStorage).removeItem(e)}};case"hash":var n=function(e){return(e||"").replace(/^.*#/,"").split("&").map((function(e){return e.split("=").map((function(e){return decodeURIComponent(e)}))}))},o=function(e){return(e||[]).map((function(e){return e.map((function(e){return encodeURIComponent(e)})).join("=")})).join("&")||"-"};return{get:function(){if("location"in globalThis){var t=n(location.hash).find((function(t){var n=r()(t,1)[0];return e==n}))||[];return r()(t,2)[1]}},set:function(t){if("location"in globalThis){var l=n(location.hash),c=l.find((function(t){var n=r()(t,1)[0];return e==n}));c?c[1]=t:l.push(c=[e,t]),location.hash=o(l)}},remove:function(){if("location"in globalThis){var t=n(location.hash).filter((function(t){var n=r()(t,1)[0];return e!=n}));location.hash=o(t)}}};case"search":return{get:function(){if("location"in globalThis)return new URLSearchParams(location.search).get(e)||null},set:function(t){if("location"in globalThis){var n=new URL(location.href);n.searchParams.set(e,t),history.pushState(null,"",n.toString())}},remove:function(){if("location"in globalThis){var t=new URL(location.href);t.searchParams.delete(e),history.pushState(null,"",t.toString())}}}}}},function(e,t,n){"use strict";n.d(t,"a",(function(){return l}));var o=n(94),r=n.n(o);function l(e,t){return r()(e,t)}},function(e,t,n){"use strict";n.d(t,"a",(function(){return d}));var o=n(18),r=n.n(o),l=(n(8),n(33),n(104)),c=n.n(l);function d(e){var t,n,o,l;return function(){if(!t){for(var d=arguments.length,f=new Array(d),m=0;m<d;m++)f[m]=arguments[m];t=f,n=new Promise((function(e,t){o=e,l=t})),c()((function(){try{o(e.apply(void 0,r()(t)))}catch(e){l(e)}t=o=void 0}))}return n}}},function(e,t,n){"use strict";function o(e,t,n){return(e+t+("+"==n?1:-1))%t}n.d(t,"a",(function(){return o}))},function(e,t,n){"use strict";n.r(t),function(e){n.d(t,"inject",(function(){return l}));var o=n(114),r=n(26),l=o.inject.getPlayAmbience({category:e.audioAssetList,requireAsset:!r.inject.isProd&&!r.inject.inBrowser})}.call(this,n(128).inject)},function(e,t,n){"use strict";n.r(t);n(99),n(52),n(25);var o=function(e){return e=parseInt(e),Number.isFinite(e)&&e>1?e:""};t.default=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.width,r=void 0===n?void 0:n,l=t.height,c=void 0===l?void 0:l;return r=o(r),c=o(c),oembedGlobals.amServiceHost?"".concat(oembedGlobals.amServiceHost,"/image?resize=").concat(r,":").concat(c,"&quality=90&f=").concat(e):e}},function(e,t,n){"use strict";n.r(t);n(175),n(56);t.default=function(e){var t=e.trim().split(" ");return t[t.length-1]='<span class="inline-block" style="white-space: nowrap;">'+t[t.length-1],t.join(" ")+'<span class="sprite-external-arrow-tan ml-[5px]"></span></span>'}},function(e,t,n){"use strict";n.r(t),function(e){n.d(t,"PingMeta",(function(){return A})),n.d(t,"inject",(function(){return E}));n(15);var o=n(16),r=n.n(o),l=n(18),c=n.n(l),d=n(239),f=n.n(d),m=n(3),h=n.n(m),v=n(4),y=n.n(v),C=n(5),w=n.n(C),j=n(7),x=n.n(j),k=n(1),_=n.n(k),O=n(138),L=n.n(O),P=(n(67),n(32),n(8),n(33),n(37),n(35),n(25),n(64),n(31),n(21),n(27),n(72),n(56),n(24),n(122),n(157)),M=n(30);function R(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=_()(e);if(t){var r=_()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return x()(this,n)}}var S=function(e){w()(n,e);var t=R(n);function n(e){var o,r,l;if(h()(this,n),(o=t.call(this))._impressionLog={},o.defaultTarget=e,o.eventOptions("init",{includeLastTrigger:!0}),o.send("click",{"meta.interactionType":"tab"}),M.inject.on("sectionHide",(function(){return o.send("subscreen_hide")})),globalThis.pCfg={},null===(r=globalThis.oembedGlobals)||void 0===r?void 0:r.abtest){var c=null===(l=globalThis.oembedGlobals)||void 0===l?void 0:l.abtest,d=c.id,f=c.groupId;L()(globalThis.pCfg,{meta:{abtestId:d,abtestGroupId:f}})}var m=M.inject.on("homeData",(function(e){var t,n=e.app_name,r=e.env,l=e.puuid,c=e.account_id,d=e.web_region,f=e.locale;if(L()(globalThis.pCfg,{appname:n,env:r,account:{puuid:l,accountId:c,region:d,locale:f}}),c){m();var h=document.createElement("script");h.type="text/javascript",h.src="https://lolstatic-a.akamaihd.net/ping/ping-0.1.663.min.js",h.onload=function(){return setTimeout((function(){o.trigger("init")}))},null===(t=o.defaultTarget)||void 0===t||t.appendChild(h)}}));return o}return y()(n,[{key:"meta",value:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return f()(A,t)}},{key:"stringify",value:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return f()(A,t).stringify()}},{key:"send",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.defaultTarget;return Promise.all([].concat(c()([M.inject.promise("sectionShow")]),[this.promise("init")])).then((function(){ping(e,t,n)}))}},{key:"trackImpression",value:function(e){for(var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.defaultTarget,n=e instanceof A?e:new A(e),o=[],r=null==t?void 0:t.parentElement;r&&"HTML"!==r.tagName;){var l=r.dataset.pingMeta;l&&o.push(l),r=r.parentElement}var d=f()(A,c()(o.reverse()).concat([n])).stringify();this._impressionLog[d]||(this._impressionLog[d]=!0,this.send("content_displayed",n.toObject({prefix:"meta."}),t))}}]),n}(P.a),A=function(){function t(){h()(this,t);for(var e=arguments.length,n=new Array(e),o=0;o<e;o++)n[o]=arguments[o];this.params=Object.assign.apply(Object,[{}].concat(c()(n.map((function(meta){return meta instanceof t?meta.toObject():"string"==typeof meta?t.parseString(meta):meta||{}})))))}return y()(t,[{key:"meta",value:function(){for(var e=arguments.length,n=new Array(e),o=0;o<e;o++)n[o]=arguments[o];return f()(t,[this.params].concat(n))}},{key:"toObject",value:function(){var e=this,t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.prefix,o=void 0===n?"":n;return Object.keys(this.params).reduce((function(t,n){return t["".concat(o).concat(n)]=e.params[n],t}),{})}},{key:"stringify",value:function(){var e=function(s){return String(s).replace(/[|=]/gi,"_")};return Object.entries(this.params).filter((function(e){var t=r()(e,2),n=t[0],o=t[1];return n&&o})).map((function(t){var n=r()(t,2),o=n[0],l=n[1];return"".concat(e(o),"=").concat(e(l))})).join("|")}}],[{key:"parseString",value:function(t){return e(t.split("|").map((function(i){return i.split("=")})))}}]),t}(),E=new S(document.body)}.call(this,n(102))},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return L}));var o=n(13),r=n.n(o),l=n(3),c=n.n(l),d=n(4),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=(n(12),n(8),n(20),n(46),n(15),n(0));function _(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var O=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},L={from:Symbol("pingImpressions"),default:function(){return{enabled:!0}}},P=function(e){h()(n,e);var t=_(n);function n(){return c()(this,n),t.apply(this,arguments)}return f()(n,[{key:"enabled",get:function(){return!this.disabled&&this.parentPingImpressions.enabled}},{key:"render",value:function(){return this.$slots.default}}]),n}(k.h.extend({provide:function(){return r()({},L.from,this)}}));O([Object(k.c)(L)],P.prototype,"parentPingImpressions",void 0),O([Object(k.e)(Boolean)],P.prototype,"disabled",void 0),P=O([k.a],P),t.default=P},function(e,t,n){"use strict";n.r(t);n(25),n(48),n(8),n(59),n(65),n(37),n(27),n(20),n(46),n(70),n(32),n(35);var o=n(295);function r(e,t){var n="undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(!n){if(Array.isArray(e)||(n=function(e,t){if(!e)return;if("string"==typeof e)return l(e,t);var n=Object.prototype.toString.call(e).slice(8,-1);"Object"===n&&e.constructor&&(n=e.constructor.name);if("Map"===n||"Set"===n)return Array.from(e);if("Arguments"===n||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))return l(e,t)}(e))||t&&e&&"number"==typeof e.length){n&&(e=n);var i=0,o=function(){};return{s:o,n:function(){return i>=e.length?{done:!0}:{done:!1,value:e[i++]}},e:function(e){throw e},f:o}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var r,c=!0,d=!1;return{s:function(){n=n.call(e)},n:function(){var e=n.next();return c=e.done,e},e:function(e){d=!0,r=e},f:function(){try{c||null==n.return||n.return()}finally{if(d)throw r}}}}function l(e,t){(null==t||t>e.length)&&(t=e.length);for(var i=0,n=new Array(t);i<t;i++)n[i]=e[i];return n}function c(video){var e,t,l,c=r(Object(o.a)());try{for(c.s();!(l=c.n()).done;){var d=l.value;try{var f=null===(e=n(842)("./".concat(video,"-").concat(d)))||void 0===e?void 0:e.default;if(f)return f}catch(e){}}}catch(e){c.e(e)}finally{c.f()}try{return null===(t=n(842)("./".concat(video)))||void 0===t?void 0:t.default}catch(e){}}t.default=function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.silent,o=t.verbose,video=c(e);return video?o&&console.debug("Getting:",e):n||console.warn("Video not present:",e),video||""}},function(e,t,n){"use strict";n.r(t),n.d(t,"mobileXsBreakpoint",(function(){return O})),n.d(t,"desktopBreakpoint",(function(){return L})),n.d(t,"inject",(function(){return M}));var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0)),x=n(96);function k(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var _=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},O=375,L=1055,P=function(e){f()(n,e);var t=k(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"desktop",get:function(){return x.inject.width>=L}},{key:"mobile",get:function(){return x.inject.width<L}},{key:"mobileXs",get:function(){return x.inject.width<O}}]),n}(j.h.extend({render:function(){}})),M=(new(P=_([j.a],P))).$mount()},,,function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return l}));var o=n(186),r=n(392),l=function(e){return r.inject.mobile&&Object(o.inject)("".concat(e,"-mobile"))||Object(o.inject)(e)}},function(e,t,n){"use strict";n.r(t),t.default=function(image){try{return n(911)("./".concat(image,".svg"))}catch(e){try{return n(1284)("./".concat(image,".svg"))}catch(e){console.error(e)}}}},function(e,t,n){"use strict";n.r(t),t.default=function(image){try{return n(911)("./".concat(image,".svg"))}catch(e){console.error(e)}}},function(e,t,n){"use strict";n.r(t),n.d(t,"pausingEvents",(function(){return O})),n.d(t,"pauseAutoRotator",(function(){return L}));var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0)),x=n(106);function k(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var _=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},O=j.h.observable({count:0});function L(){var e=!1;return O.count++,function(){e||(e=!0,O.count--)}}var P=function(e){f()(n,e);var t=k(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"mounted",value:function(){var e=!1;function t(){!this.disabled&&e&&(O.count--,e=!1)}Object(x.a)({context:this,event:"mouseenter"},(function(){this.disabled||e||(O.count++,e=!0)})),Object(x.a)({context:this,event:"mouseleave"},t),this.$on("hook:beforeDestroy",t)}}]),n}(j.h);_([Object(j.e)(Boolean)],P.prototype,"disabled",void 0);var M=P=_([j.a],P),R=n(9),component=Object(R.a)(M,(function(){var e=this,t=e.$createElement;return(e._self._c||t)("span",[e._t("default")],2)}),[],!1,null,null,null);t.default=component.exports},,,,,function(e,t,n){n(1074),n(1075)()},function(e,t,n){n(1087)},,,,function(e,t,n){"use strict";var o=n(68),r=n.n(o),l=(n(56),n(31),n(10)),c=n(16),d=n.n(c),f=n(18),m=n.n(f),h=n(405),v=n.n(h);n(927),n(25),n(8),n(17),n(27),n(82),n(59),n(32),n(35),n(21);function y(e,t){var n=t.client,o=t.server,l=/([\w-]+)(?:\.(client|server))?\.(?:async-)?(\w+)/;return{registerSync:function(t){w(t).forEach((function(c){var f=c.match(l),m=d()(f,4),h=m[1],y=m[2],w=m[3];if(!(n&&y&&"client"!=y||o&&y&&"server"!=y)){var j=C(t,c);if("plugin"===w){var x=(j.name||v()(h)).split("/");x=x[x.length-1],e({type:w,parsedName:x,module:j})}else if(j.default){var k=(j.name||("filter"==w?v()(h):r()(h))).split("/");k=k[k.length-1],e({type:w,parsedName:k,module:j.default})}else console.warn("Nothing usable exported for ".concat(c))}}))},registerLazy:function(t){w(t).forEach((function(n){var o=n.match(l),c=d()(o,3),f=c[1],m=c[2],h=r()(f).split("/");h=h[h.length-1],e({type:m,parsedName:h,module:function(e){return C(t,n).then((function(t){return e(t.default)}))}})}))}}}function C(e,t){return j(e)?e(t):e[t]}function w(e){return j(e)?e.keys():Object.keys(e)}function j(e){return"function"==typeof e&&"function"==typeof e.keys}var x=n(228),k=n(1303),_=(n(1307),n(1309)),O=n(1310),L=(n(1312),n(1313),n(1315),n(1316),n(1317)),P=(n(1318),n(230)),M=n(134),R=n(26),S=n(229),A=n(41);Object(M.b)(R.inject.isProd),l.a.config.productionTip=!1,l.a.config.performance=!1,l.a.config.ignoredElements=["lasso-embed"],Object(P.setDefaultMode)("2x"),Object(x.setUpdate)((function(e,t,n){e.setAttribute("srcset","".concat(n.$image(t)," 2x"))}));t.a=function(e,t){var o=function(e,t){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},o=n.client,r=void 0===o||o,c=n.server,d=y((function(n){var o,r=n.type,c=n.parsedName,d=n.module;"plugin"===r?("function"==typeof d.default?d.default(e,t):d.default&&l.a.use(d.default),d.hasOwnProperty("inject")&&t(c,d.inject)):null===(o=l.a[r])||void 0===o||o.call.apply(o,[l.a].concat(m()("mixin"===r?[]:[c]),[d]))}),{client:r,server:void 0===c||c}),f=d.registerSync,h=d.registerLazy;function v(e,t){return e&&f(e),t&&h(t),v}return v}(e,t,{client:!0,server:!1});o(n(1104),n(1245))(n(1246),n(1300))({"json.filter":n(912),"limit-to.filter":n(1301),"number.filter":n(229),"after-delay.component":n(148),"group-child.component":n(176),"group-parent.component":n(129),"inline-svg.component":n(149),"local-value.component":n(150),"order-by.component":n(177),"pages-of.component":n(178),"transitions-disabled.component":n(181),"transition-gsap.component":n(130),"transition-wipe.component":n(179),"with-promise.component":n(151),"with-size.component":n(85),"fitted-font-size.directive":n(913),"retina-src.directive":n(228),"eager-loader.plugin":n(375),"viewport-size.plugin":n(96)})(k)(_)(O)(L),o(n(1319),n(1333)),o(n(1334),n(1339))({"lasso.component":n(1375),"lasso-setup.plugin":n(1340),"overview-card.component":n(1342)})};Object(S.setLocale)(r()(A.inject.value).split("-").map((function(e,i){return i?e.toUpperCase():e})).join("-"))},function(e,t,n){"use strict";n.d(t,"a",(function(){return r})),n.d(t,"b",(function(){return c})),n.d(t,"c",(function(){return d}));var o=n(923),r=n.n(o)()("winterblessed-embed-2022"),l={buildVersion:8,tencentPreviousBuildVersion:7},c=l.buildVersion,d=l.tencentPreviousBuildVersion},,function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return w}));var o,r=n(3),l=n.n(r),c=n(4),d=n.n(c),f=(n(8),n(33),n(20),n(46),n(92),n(25),n(10)),m=n(30),h=n(26),v=n(53),y=function(){function e(t){var n=this;l()(this,e),this.state=f.a.observable({ready:!1}),this.readyPromise=new Promise((function(e){return o=e})),this.queue=[],this.bootstrapComplete=function(){n.bootstrapping&&n.resolveBootstrap&&(n.resolveBootstrap(),n.bootstrapping=!1)},this.wait=function(label,e){var t;if(n.state.ready)t=function(){n.log("[never preloaded] ".concat(label),"error")};else{var r,l=Symbol(label);n.queue.push(l),n.log("[waiting] ".concat(label)),n.bootstrapping||n.log("[preload order violation] ".concat(label),"error"),t=function(){clearTimeout(r);var e=n.queue.indexOf(l);-1!==e?(n.log("[resolved] ".concat(label)),n.queue.splice(e,1),n.queue.length||setTimeout((function(){n.state.ready||n.queue.length||(n.log("Hub Preloaded"),n.state.ready=!0,o(),m.inject.trigger("hubPreloaded"))}))):n.log("[double resolve] ".concat(label," was already resolved!"),"warn")},e&&(r=setTimeout((function(){n.log("[timed out] ".concat(label),"error"),t()}),e))}return t},this.andLog=t,this.createdAt=new Date,this.bootstrapping=!0,this.resolveBootstrap=this.wait("Bootstrapping")}return d()(e,[{key:"log",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"log";this.andLog&&console[t]("[Preload] ".concat(e," at ").concat((new Date).valueOf()-this.createdAt.valueOf(),"ms"))}}]),e}(),C=new y(h.inject.qaEligible),w=C,j=function(e){return e.app.router.onReady((function(){Object(v.a)(C.bootstrapComplete)})),C};t.default=j},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){e.exports={}},,,,,,,,function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/cs-cz/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=1QBrI4eeVvE"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/de-de/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=880swT7ivNw"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/el-gr/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=u4zK6hpMRq8"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/en-au/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=uw0iin7Tg0Y"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/en-gb/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=uw0iin7Tg0Y"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/en-us/news/dev/the-world-of-winterblessed/",eventFaqUrl:"https://support-leagueoflegends.riotgames.com/hc/articles/11122544397715",eventThemeUrl:"https://www.youtube.com/watch?v=GJLHlBRqKAI",eventTrailerUrl:"https://www.youtube.com/watch?v=uw0iin7Tg0Y"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/en-pl/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=uw0iin7Tg0Y"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/en-us/news/dev/the-world-of-winterblessed/",eventFaqUrl:"https://support-leagueoflegends.riotgames.com/hc/articles/11122544397715",eventThemeUrl:"https://www.youtube.com/watch?v=GJLHlBRqKAI",eventTrailerUrl:"https://www.youtube.com/watch?v=uw0iin7Tg0Y"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/en-us/news/dev/the-world-of-winterblessed/",eventFaqUrl:"https://support-leagueoflegends.riotgames.com/hc/articles/11122544397715",eventThemeUrl:"https://www.youtube.com/watch?v=GJLHlBRqKAI",eventTrailerUrl:"https://www.youtube.com/watch?v=uw0iin7Tg0Y"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://lan.leagueoflegends.com/es-mx/news/dev/el-mundo-de-favor-del-invierno/",eventTrailerUrl:"https://www.youtube.com/watch?v=tip_2oeOt2A"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/es-es/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=G3POSuFZ3OE"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://lan.leagueoflegends.com/es-mx/news/dev/el-mundo-de-favor-del-invierno/",eventTrailerUrl:"https://www.youtube.com/watch?v=tip_2oeOt2A"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/fr-fr/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=Zvo6MjAduhE"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/hu-hu/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=wiZfKiN8JuU"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/it-it/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=L_4A2jxq4xw"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/ja-jp/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=asjmgqM9bBk"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://kr.leagueoflegends.com/ko-kr/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=IpgnvhPjq6w"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/pl-pl/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=GJrG_8mWuSs"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://br.leagueoflegends.com/pt-br/news/dev/o-mundo-da-bencao-do-inverno/",eventTrailerUrl:"https://www.youtube.com/watch?v=ke6FsGFNyPI"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/ro-ro/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=kX5hJ0wSfF4"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/ru-ru/news/dev/the-world-of-winterblessed/",eventTrailerUrl:"https://www.youtube.com/watch?v=jjBc5zQJtQk"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/en-us/news/dev/the-world-of-winterblessed/",eventFaqUrl:"https://support-leagueoflegends.riotgames.com/hc/articles/11122544397715",eventThemeUrl:"https://www.youtube.com/watch?v=GJLHlBRqKAI",eventTrailerUrl:"https://www.youtube.com/watch?v=uw0iin7Tg0Y"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/tr-tr/news/dev/kisin-secilmisi-evreni/",eventTrailerUrl:"https://www.youtube.com/watch?v=5Ren0jLje90"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/en-us/news/dev/the-world-of-winterblessed/",eventFaqUrl:"https://support-leagueoflegends.riotgames.com/hc/articles/11122544397715",eventThemeUrl:"https://www.youtube.com/watch?v=GJLHlBRqKAI",eventTrailerUrl:"https://www.youtube.com/watch?v=uw0iin7Tg0Y"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/en-us/news/dev/the-world-of-winterblessed/",eventFaqUrl:"https://support-leagueoflegends.riotgames.com/hc/articles/11122544397715",eventThemeUrl:"https://www.youtube.com/watch?v=GJLHlBRqKAI",eventTrailerUrl:"https://www.youtube.com/watch?v=uw0iin7Tg0Y"}},function(e,t,n){"use strict";n.r(t),t.default={eventArticleUrl:"https://www.leagueoflegends.com/en-us/news/dev/the-world-of-winterblessed/",eventFaqUrl:"https://support-leagueoflegends.riotgames.com/hc/articles/11122544397715",eventThemeUrl:"https://www.youtube.com/watch?v=GJLHlBRqKAI",eventTrailerUrl:"https://www.youtube.com/watch?v=uw0iin7Tg0Y"}},,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){var map={"./_generated/sprite-post-default":344,"./_generated/sprite-post-default.jpg":344,"./_generated/sprite-post-default.png":1088,"./_generated/sprite-pre-default":345,"./_generated/sprite-pre-default.jpg":345,"./_generated/sprite-pre-default.png":1089,"./bg-content-drawer":519,"./bg-content-drawer.jpg":519,"./bg-index-intro":520,"./bg-index-intro.jpg":520,"./card-event-article":521,"./card-event-article.jpg":521,"./card-event-theme":522,"./card-event-theme.jpg":522,"./card-event-trailer":523,"./card-event-trailer.jpg":523,"./diana/ability-icon-e":524,"./diana/ability-icon-e.jpg":524,"./diana/ability-icon-p":525,"./diana/ability-icon-p.jpg":525,"./diana/ability-icon-q":526,"./diana/ability-icon-q.jpg":526,"./diana/ability-icon-r":527,"./diana/ability-icon-r.jpg":527,"./diana/ability-icon-w":528,"./diana/ability-icon-w.jpg":528,"./diana/ability-poster-e":529,"./diana/ability-poster-e.jpg":529,"./diana/ability-poster-p":530,"./diana/ability-poster-p.jpg":530,"./diana/ability-poster-q":531,"./diana/ability-poster-q.jpg":531,"./diana/ability-poster-r":532,"./diana/ability-poster-r.jpg":532,"./diana/ability-poster-w":533,"./diana/ability-poster-w.jpg":533,"./diana/bg-index":534,"./diana/bg-index.jpg":534,"./diana/carousel-card":535,"./diana/carousel-card.jpg":535,"./diana/carousel-thumbnail":536,"./diana/carousel-thumbnail-active":537,"./diana/carousel-thumbnail-active.jpg":537,"./diana/carousel-thumbnail.jpg":536,"./logo-vignette-lg":538,"./logo-vignette-lg.png":538,"./logo-vignette-md":539,"./logo-vignette-md.png":539,"./logo-vignette-sm":540,"./logo-vignette-sm.png":540,"./logo-wb":541,"./logo-wb-cs-cz":542,"./logo-wb-cs-cz.png":542,"./logo-wb-de-de":543,"./logo-wb-de-de.png":543,"./logo-wb-el-gr":544,"./logo-wb-el-gr.png":544,"./logo-wb-es-ar":545,"./logo-wb-es-ar.png":545,"./logo-wb-es-es":546,"./logo-wb-es-es.png":546,"./logo-wb-es-mx":547,"./logo-wb-es-mx.png":547,"./logo-wb-fr-fr":548,"./logo-wb-fr-fr.png":548,"./logo-wb-hu-hu":549,"./logo-wb-hu-hu.png":549,"./logo-wb-it-it":550,"./logo-wb-it-it.png":550,"./logo-wb-ja-jp":551,"./logo-wb-ja-jp.png":551,"./logo-wb-ko-kr":552,"./logo-wb-ko-kr.png":552,"./logo-wb-pl-pl":553,"./logo-wb-pl-pl.png":553,"./logo-wb-pt-br":554,"./logo-wb-pt-br.png":554,"./logo-wb-ro-ro":555,"./logo-wb-ro-ro.png":555,"./logo-wb-ru-ru":556,"./logo-wb-ru-ru.png":556,"./logo-wb-tr-tr":557,"./logo-wb-tr-tr.png":557,"./logo-wb-vi-vn":558,"./logo-wb-vi-vn.png":558,"./logo-wb-zh-cn":559,"./logo-wb-zh-cn.png":559,"./logo-wb-zh-tw":560,"./logo-wb-zh-tw.png":560,"./logo-wb.png":541,"./shaco/ability-icon-e":561,"./shaco/ability-icon-e.jpg":561,"./shaco/ability-icon-p":562,"./shaco/ability-icon-p.jpg":562,"./shaco/ability-icon-q":563,"./shaco/ability-icon-q.jpg":563,"./shaco/ability-icon-r":564,"./shaco/ability-icon-r.jpg":564,"./shaco/ability-icon-w":565,"./shaco/ability-icon-w.jpg":565,"./shaco/ability-poster-e":566,"./shaco/ability-poster-e.jpg":566,"./shaco/ability-poster-p":567,"./shaco/ability-poster-p.jpg":567,"./shaco/ability-poster-q":568,"./shaco/ability-poster-q.jpg":568,"./shaco/ability-poster-r":569,"./shaco/ability-poster-r.jpg":569,"./shaco/ability-poster-w":570,"./shaco/ability-poster-w.jpg":570,"./shaco/bg-index":571,"./shaco/bg-index.jpg":571,"./shaco/carousel-card":572,"./shaco/carousel-card.jpg":572,"./shaco/carousel-thumbnail":573,"./shaco/carousel-thumbnail-active":574,"./shaco/carousel-thumbnail-active.jpg":574,"./shaco/carousel-thumbnail.jpg":573,"./swain/ability-icon-e":575,"./swain/ability-icon-e.jpg":575,"./swain/ability-icon-p":576,"./swain/ability-icon-p.jpg":576,"./swain/ability-icon-q":577,"./swain/ability-icon-q.jpg":577,"./swain/ability-icon-r":578,"./swain/ability-icon-r.jpg":578,"./swain/ability-icon-w":579,"./swain/ability-icon-w.jpg":579,"./swain/ability-poster-e":580,"./swain/ability-poster-e.jpg":580,"./swain/ability-poster-p":581,"./swain/ability-poster-p.jpg":581,"./swain/ability-poster-q":582,"./swain/ability-poster-q.jpg":582,"./swain/ability-poster-r":583,"./swain/ability-poster-r.jpg":583,"./swain/ability-poster-w":584,"./swain/ability-poster-w.jpg":584,"./swain/bg-index":585,"./swain/bg-index.jpg":585,"./swain/carousel-card":586,"./swain/carousel-card.jpg":586,"./swain/carousel-thumbnail":587,"./swain/carousel-thumbnail-active":588,"./swain/carousel-thumbnail-active.jpg":588,"./swain/carousel-thumbnail.jpg":587,"./warwick/ability-icon-e":589,"./warwick/ability-icon-e.jpg":589,"./warwick/ability-icon-p":590,"./warwick/ability-icon-p.jpg":590,"./warwick/ability-icon-q":591,"./warwick/ability-icon-q.jpg":591,"./warwick/ability-icon-r":592,"./warwick/ability-icon-r.jpg":592,"./warwick/ability-icon-w":593,"./warwick/ability-icon-w.jpg":593,"./warwick/ability-poster-e":594,"./warwick/ability-poster-e.jpg":594,"./warwick/ability-poster-p":595,"./warwick/ability-poster-p.jpg":595,"./warwick/ability-poster-q":596,"./warwick/ability-poster-q.jpg":596,"./warwick/ability-poster-r":597,"./warwick/ability-poster-r.jpg":597,"./warwick/ability-poster-w":598,"./warwick/ability-poster-w.jpg":598,"./warwick/bg-index":599,"./warwick/bg-index.jpg":599,"./warwick/carousel-card":600,"./warwick/carousel-card.jpg":600,"./warwick/carousel-thumbnail":601,"./warwick/carousel-thumbnail-active":602,"./warwick/carousel-thumbnail-active.jpg":602,"./warwick/carousel-thumbnail.jpg":601,"./warwickp/ability-icon-e":603,"./warwickp/ability-icon-e.jpg":603,"./warwickp/ability-icon-p":604,"./warwickp/ability-icon-p.jpg":604,"./warwickp/ability-icon-q":605,"./warwickp/ability-icon-q.jpg":605,"./warwickp/ability-icon-r":606,"./warwickp/ability-icon-r.jpg":606,"./warwickp/ability-icon-w":607,"./warwickp/ability-icon-w.jpg":607,"./warwickp/ability-poster-e":608,"./warwickp/ability-poster-e.jpg":608,"./warwickp/ability-poster-p":609,"./warwickp/ability-poster-p.jpg":609,"./warwickp/ability-poster-q":610,"./warwickp/ability-poster-q.jpg":610,"./warwickp/ability-poster-r":611,"./warwickp/ability-poster-r.jpg":611,"./warwickp/ability-poster-w":612,"./warwickp/ability-poster-w.jpg":612,"./warwickp/bg-index":613,"./warwickp/bg-index.jpg":613,"./warwickp/carousel-card":614,"./warwickp/carousel-card.jpg":614,"./warwickp/carousel-thumbnail":615,"./warwickp/carousel-thumbnail-active":616,"./warwickp/carousel-thumbnail-active.jpg":616,"./warwickp/carousel-thumbnail.jpg":615,"./zilean/ability-icon-e":617,"./zilean/ability-icon-e.jpg":617,"./zilean/ability-icon-p":618,"./zilean/ability-icon-p.jpg":618,"./zilean/ability-icon-q":619,"./zilean/ability-icon-q.jpg":619,"./zilean/ability-icon-r":620,"./zilean/ability-icon-r.jpg":620,"./zilean/ability-icon-w":621,"./zilean/ability-icon-w.jpg":621,"./zilean/ability-poster-e":622,"./zilean/ability-poster-e.jpg":622,"./zilean/ability-poster-p":623,"./zilean/ability-poster-p.jpg":623,"./zilean/ability-poster-q":624,"./zilean/ability-poster-q.jpg":624,"./zilean/ability-poster-r":625,"./zilean/ability-poster-r.jpg":625,"./zilean/ability-poster-w":626,"./zilean/ability-poster-w.jpg":626,"./zilean/bg-index":627,"./zilean/bg-index.jpg":627,"./zilean/carousel-card":628,"./zilean/carousel-card.jpg":628,"./zilean/carousel-thumbnail":629,"./zilean/carousel-thumbnail-active":630,"./zilean/carousel-thumbnail-active.jpg":630,"./zilean/carousel-thumbnail.jpg":629,"./zoe/ability-icon-e":631,"./zoe/ability-icon-e.jpg":631,"./zoe/ability-icon-p":632,"./zoe/ability-icon-p.jpg":632,"./zoe/ability-icon-q":633,"./zoe/ability-icon-q.jpg":633,"./zoe/ability-icon-r":634,"./zoe/ability-icon-r.jpg":634,"./zoe/ability-icon-w":635,"./zoe/ability-icon-w.jpg":635,"./zoe/ability-poster-e":636,"./zoe/ability-poster-e.jpg":636,"./zoe/ability-poster-p":637,"./zoe/ability-poster-p.jpg":637,"./zoe/ability-poster-q":638,"./zoe/ability-poster-q.jpg":638,"./zoe/ability-poster-r":639,"./zoe/ability-poster-r.jpg":639,"./zoe/ability-poster-w":640,"./zoe/ability-poster-w.jpg":640,"./zoe/bg-index":641,"./zoe/bg-index.jpg":641,"./zoe/carousel-card":642,"./zoe/carousel-card.jpg":642,"./zoe/carousel-thumbnail":643,"./zoe/carousel-thumbnail-active":644,"./zoe/carousel-thumbnail-active.jpg":644,"./zoe/carousel-thumbnail.jpg":643};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=518},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/bg-content-drawer.jpg?daf65a7c84a4d2ee06c4b46fc622606f"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/bg-index-intro.jpg?4d0ff3885b993094b7216231b4747644"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/card-event-article.jpg?2f069043e939176f2b97143f8997c22e"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/card-event-theme.jpg?a9ebdefe195b0fd241c78b3b7662c31c"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/card-event-trailer.jpg?37320261ac7e3ef598e34f179913099e"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/ability-icon-e.jpg?d8b7174a28287c3be4b79e289857220b"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/ability-icon-p.jpg?c2900b2b10202d832ebc6a762e2d20b9"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/ability-icon-q.jpg?162aa08c13e894338df85ae113de1165"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/ability-icon-r.jpg?962f4ab70f5678560c56c9dc48249028"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/ability-icon-w.jpg?66517ce92620b170196bc5cafe58303f"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/ability-poster-e.jpg?987992da9606bd0f647f99bc0f1603c3"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/ability-poster-p.jpg?4a45feb958cee1ea7a7cb18671fd37d2"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/ability-poster-q.jpg?a8a16fba8d5ea719a8baf6fd944f54ca"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/ability-poster-r.jpg?8d09b6e6a337b2b4ea18c9cab9d5a5f0"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/ability-poster-w.jpg?e9ad99d1ddc4dcf205ab4cc0b85977ee"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/bg-index.jpg?3d9e847ea83083be28d139227d341f3d"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/carousel-card.jpg?7084f9b5022a9b1a462f4b43699ce481"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/carousel-thumbnail.jpg?9297b29df7e7248e0b684192d190cc4e"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/diana/carousel-thumbnail-active.jpg?a957bc0467ed2e93c04e6f22160c2be1"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-vignette-lg.png?1c776776eb5bf42322539b82420bcc41"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-vignette-md.png?5aff394505fe624303b6ffadac14df2b"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-vignette-sm.png?291135bcd13b06b9d680b8adf0d5ea5d"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb.png?4dcea56804a93d4f6b23a163102b3066"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-cs-cz.png?250787e375a96c13990ca7ec546d496f"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-de-de.png?e3310cc00e93da2ddde3c2782cfdcd63"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-el-gr.png?9866c4ce0fe5ede9b0e35a7286caa5d8"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-es-ar.png?ad714b3e598a1bf831bd8b6ae637994f"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-es-es.png?f753d9cd20e86dc3dbf9f194fb19eeff"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-es-mx.png?ad714b3e598a1bf831bd8b6ae637994f"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-fr-fr.png?d21bc3b0078bf1441165a98659e69c89"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-hu-hu.png?a4db0055be2acd469be06bd3fbd65a15"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-it-it.png?8d639bc18b85c50888fab59cb2af8647"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-ja-jp.png?2f114523f953735886d6a9d4ed874590"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-ko-kr.png?0b40d878cef3d419bbd8d1506240b02a"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-pl-pl.png?e4ec3fe647379783a28ad1c721705510"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-pt-br.png?c3204423797598eec1cc1b6a7507c076"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-ro-ro.png?3c7b194427a545d35a46e04bf46a666d"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-ru-ru.png?e26b017727d106589a40403cb6deaf86"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-tr-tr.png?65f918cb25764aa2f1c405110a981f10"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-vi-vn.png?89bd1cdc4bc5672b534dd4bc198b3ca6"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-zh-cn.png?f5db428cda571e3c8aa47c8fe7bfca52"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/logo-wb-zh-tw.png?219e9fad112bf44b09912afb95817701"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/ability-icon-e.jpg?f0ba82d2c1b6f5d36a453cbdec6e1827"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/ability-icon-p.jpg?fdb98816331d170a6dca7456e61e004a"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/ability-icon-q.jpg?620adfc874797733abab8546b4641ad0"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/ability-icon-r.jpg?a92273282993f184e6d241e79fd3e8a0"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/ability-icon-w.jpg?dc0e07a9f7ad5ee2d3a5adbce6bd6c9d"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/ability-poster-e.jpg?c1a93273dc8508ae3ca5fe7e613b1d95"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/ability-poster-p.jpg?cbe03efe6b59e15449afa13ed36110a2"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/ability-poster-q.jpg?6a3832d2471c949c1e25a5d96f9f7707"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/ability-poster-r.jpg?8e9823c9d75b6b204fb8cb1fa9dc4e9f"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/ability-poster-w.jpg?29d49253ddb0b15fe4e886c87e6e3bc8"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/bg-index.jpg?babc06d25c7ee08dac10ee63dcb4bb92"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/carousel-card.jpg?ddec39a8206324b158bec70470c4b1d0"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/carousel-thumbnail.jpg?82face272eddba4856f3b7e532fc787d"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/shaco/carousel-thumbnail-active.jpg?9953e4d65f36aefb3ef0c5d76c5dbe52"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/ability-icon-e.jpg?b1fc60e549e3e53a9a79c07d4de1181b"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/ability-icon-p.jpg?ef46ecca042616e12835d2aabfa83d00"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/ability-icon-q.jpg?3c96cdbcfa76444dc7201a7daed0d661"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/ability-icon-r.jpg?8631768e6af92de16a1359be819bb7e7"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/ability-icon-w.jpg?107fd0cdf71902a1630c42f5871934e5"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/ability-poster-e.jpg?087f936efd4d13c8305697b6fc23ee6d"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/ability-poster-p.jpg?1da3a69e1156f463aba6c83cfdcd27b1"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/ability-poster-q.jpg?3cb1db429b2b1ad051b545cd01f6a388"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/ability-poster-r.jpg?c750c269034ec004c922520b598bfe7a"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/ability-poster-w.jpg?9840aefe6e1acac06fa829eb2fe65075"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/bg-index.jpg?d0954df17d60bbed92dca4d4893b1ce1"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/carousel-card.jpg?9695aeb1eb690f9b987e2a7e29383ced"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/carousel-thumbnail.jpg?71eb130630044baf5d02855f6e8026ce"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/swain/carousel-thumbnail-active.jpg?4ae41f15f5022437cc66fd8cd7fbf114"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/ability-icon-e.jpg?871f0071fd1580aadce63c1b71c58fe6"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/ability-icon-p.jpg?fa717a1b457922132652c4bf34eb7b58"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/ability-icon-q.jpg?a65c5f1d9a247f8dc31260760612cb9c"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/ability-icon-r.jpg?e22069376cedc88e769d91da5092ee77"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/ability-icon-w.jpg?162699b7a121fea18ea3d9deea5d55c3"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/ability-poster-e.jpg?68a905b07f6a573569aff2eebe871417"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/ability-poster-p.jpg?a184c64d120d84f986f2e70c93e8d129"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/ability-poster-q.jpg?7f27e01f4ba06474cafd8699920d65bb"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/ability-poster-r.jpg?d67d198a40f8377f7a66f0b6bc43b5b1"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/ability-poster-w.jpg?78fe30c66a0f15dae5249ca5ae044762"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/bg-index.jpg?7868996abc4a658d4b9671739e8c2920"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/carousel-card.jpg?14d7c98c381253686abd85f35db375b8"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/carousel-thumbnail.jpg?7cfb951fd2c82c627ed1bfd581ed6132"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwick/carousel-thumbnail-active.jpg?baf9ad5cf3f05cfa4973d4583eaa806e"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/ability-icon-e.jpg?871f0071fd1580aadce63c1b71c58fe6"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/ability-icon-p.jpg?fa717a1b457922132652c4bf34eb7b58"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/ability-icon-q.jpg?a65c5f1d9a247f8dc31260760612cb9c"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/ability-icon-r.jpg?e22069376cedc88e769d91da5092ee77"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/ability-icon-w.jpg?162699b7a121fea18ea3d9deea5d55c3"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/ability-poster-e.jpg?bb83e3639cc3b936737d7f3c2dadb9ff"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/ability-poster-p.jpg?6aab0311880af86445c73a9e08ad1c3b"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/ability-poster-q.jpg?c2123d9299b109015f1c1a87b2eec397"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/ability-poster-r.jpg?da768de8de455665eb36db126f5c49c4"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/ability-poster-w.jpg?6762c6cefa73dc2d852f2cbb3353d770"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/bg-index.jpg?39df3e6106387f02ab8b2eef6c3710c4"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/carousel-card.jpg?5fb94dc74becc7d1a39bda24463228a8"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/carousel-thumbnail.jpg?7aaf4bdd474fc1ca02c85c1a25caa2c5"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/warwickp/carousel-thumbnail-active.jpg?9987ad5c5022fe075317867952c4c4c1"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/ability-icon-e.jpg?2bccab28bed8969d78a526726c4e3667"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/ability-icon-p.jpg?d12b6dbdfd45a26bf4947ecda73db407"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/ability-icon-q.jpg?1332793521ae0221fd865c071d1f48b1"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/ability-icon-r.jpg?b3db33504aba2f868a9ab1d81fc6cc99"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/ability-icon-w.jpg?2024058fdc3963b75bc1e9aaca1667e5"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/ability-poster-e.jpg?79bd1b415b1353493dbb6bd8188818a6"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/ability-poster-p.jpg?7d91045415017ce366258de731767cca"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/ability-poster-q.jpg?e49a76b7f8a7239103ab4df0ba6a4781"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/ability-poster-r.jpg?47fa74d9de4f17812380f04e7db4de6a"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/ability-poster-w.jpg?a8bf041d754866e9f3203feb69fa9f88"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/bg-index.jpg?846777c730bc88f7266f50a325f76669"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/carousel-card.jpg?7a0e060f789c78ce7dbf0f731cbfe4fa"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/carousel-thumbnail.jpg?30b00ecef610a8c410ed31b2c1a10f82"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zilean/carousel-thumbnail-active.jpg?0d782c37618bb2b2b64da34723e6a519"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/ability-icon-e.jpg?1b0d0b75ec0a7ec3fd8d4d7205b6592d"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/ability-icon-p.jpg?6705effabb66ee09e51949e417e8614e"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/ability-icon-q.jpg?e87167d89b5d1ff7e692e22903aacd7c"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/ability-icon-r.jpg?181ec8890ac6a20b643d37e7c2a74abc"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/ability-icon-w.jpg?325e0c21978d1cb7697090e0c17b480e"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/ability-poster-e.jpg?1a5730644e5dbd3f4d00e254fb1e012c"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/ability-poster-p.jpg?dcfa1fd0191fa9ad471f0aec94b5c893"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/ability-poster-q.jpg?ed472f815d38bb8bd8ee3ef3e4b11e10"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/ability-poster-r.jpg?aa3eda748b7a7491c8f7d29bd4959713"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/ability-poster-w.jpg?97a29af7f4564fed9b58aa734161368e"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/bg-index.jpg?3eda00bfe30e6f0b23dc1be573f2de75"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/carousel-card.jpg?ae830b24338384d07706c5bed20e1c30"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/carousel-thumbnail.jpg?98e9030c4ceb6db3361d6c6a47efc9ed"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/zoe/carousel-thumbnail-active.jpg?4903620c0a4096f66abb415339e10764"},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return r}));var o=n(105),r={get disabled(){return o.inject.lowSpecMode}}},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return r}));var o=n(186),r=function(){var image=o.inject.apply(void 0,arguments);return image&&"url(".concat(image,")")}},function(e,t,n){"use strict";n.r(t),n.d(t,"cachedPreload",(function(){return l})),n.d(t,"cachedEagerLoad",(function(){return c}));var o=n(154),r=n(375),l=o.a;function c(e){return r.inject.append(e)}t.default=function(e,t){t("cachedPreload",l),t("cachedEagerLoad",c)}},,function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return d}));var o=n(380),r=n(95),l=n(41),c={utm_source:"LeagueClient",utm_medium:"hub",utm_campaign:n(409).a};function d(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.ga,d=void 0===n?"tencent"!==l.inject.publisher:n,f=t.target,m=void 0===f?"external":f;return!!e&&(d&&(e=Object(o.default)(e,c)),"client"===m?location.href=e:Object(r.windowOpen)(e),!0)}},function(e,t,n){e.exports={}},function(e,t,n){"use strict";n.r(t),function(e){n.d(t,"inject",(function(){return c}));var o=n(30),r=n(286),l=n(409);var c={purchase:function(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{openEventShop:t.inEventShop};(null==n?void 0:n.openEventShop)?r.inject.open():"items"in t||t.item&&("BUNDLES"===t.item.inventoryType||"EVENT_PASS"===t.item.inventoryType||(null==n?void 0:n.useStoreFilter))?o.inject.openStoreForItems("items"in t?t.items:t.item&&e(t.item)||[],t.page):t.item&&o.inject.purchaseModal(t.item.itemId,t.item.inventoryType,l.a)}}}.call(this,n(87))},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return T}));n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(14),w=n.n(C),j=n(2),x=n.n(j),k=n(6),_=n.n(k),O=(n(12),n(8),n(33),n(67),n(37),n(32),n(35),n(143),n(299)),L=n(0),P=n(41);function M(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var R=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},S=new Promise((function(e){var t=Object(O.a)((function(){globalThis.riotBarLoaded?(t(),e()):"riot"!==P.inject.publisher&&e()}),50)})),A=new Promise(function(){var e=w()(_.a.mark((function e(t){return _.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if("riot"!==P.inject.publisher){e.next=2;break}return e.delegateYield(_.a.mark((function e(){var t,n,o,r,i;return _.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return t=10,n=50,o=!1,r=!1,e.next=6,S;case 6:i=0;case 7:if(!(i<t)){e.next=16;break}if(o||(o=!!document.getElementById("riotbar-bar")),r||(r=!!document.querySelector(".riotbar-footer")),!o||!r){e.next=11;break}return e.abrupt("break",16);case 11:return e.next=13,new Promise((function(e){setTimeout((function(){return e()}),n)}));case 13:i++,e.next=7;break;case 16:case"end":return e.stop()}}),e)}))(),"t0",2);case 2:t();case 3:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}()),E=function(e){f()(l,e);var t,n,o=M(l);function l(){var e;return r()(this,l),(e=o.apply(this,arguments)).ready=!1,e.userData={puuid:null,region:null,lang:null,locale:null,summonerName:null,isAuthenticated:null},e}return c()(l,[{key:"readyPromise",get:function(){return S}},{key:"domReadyPromise",get:function(){return A}},{key:"mounted",value:function(){}},{key:"puuid",get:function(){return this.userData.puuid}},{key:"playerRegion",get:function(){return this.userData.region}},{key:"playerLocale",get:function(){return this.userData.locale}},{key:"playerLang",get:function(){return this.userData.lang}},{key:"summonerName",get:function(){return"tencent"===P.inject.publisher?"SUMMONER NAME":this.userData.summonerName}},{key:"isAuthenticated",get:function(){return!0}},{key:"login",value:(n=w()(_.a.mark((function e(){return _.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,S;case 2:"tencent"===P.inject.publisher?globalThis.location.href="https://todo":globalThis.RiotBar.account.login();case 3:case"end":return e.stop()}}),e)}))),function(){return n.apply(this,arguments)})},{key:"logout",value:(t=w()(_.a.mark((function e(){return _.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,S;case 2:"tencent"===P.inject.publisher?globalThis.location.href="https://todo":globalThis.RiotBar.account.logout();case 3:case"end":return e.stop()}}),e)}))),function(){return t.apply(this,arguments)})}]),l}(L.h.extend({render:function(){}})),T=(new(E=R([L.a],E))).$mount()},function(e,t,n){var map={"./button-close-idle":843,"./button-close-idle.webm":843,"./button-close-mouseenter":844,"./button-close-mouseenter.webm":844,"./button-event-shop-idle":845,"./button-event-shop-idle.webm":845,"./button-event-shop-mouseenter":846,"./button-event-shop-mouseenter.webm":846,"./button-explore-more-idle":847,"./button-explore-more-idle.webm":847,"./button-explore-more-mouseenter":848,"./button-explore-more-mouseenter.webm":848,"./diana/ability-e":849,"./diana/ability-e.webm":849,"./diana/ability-p":850,"./diana/ability-p.webm":850,"./diana/ability-q":851,"./diana/ability-q.webm":851,"./diana/ability-r":852,"./diana/ability-r.webm":852,"./diana/ability-w":853,"./diana/ability-w.webm":853,"./diana/carousel-card":854,"./diana/carousel-card.webm":854,"./logo-wb":855,"./logo-wb-cs-cz":856,"./logo-wb-cs-cz.webm":856,"./logo-wb-de-de":857,"./logo-wb-de-de.webm":857,"./logo-wb-el-gr":858,"./logo-wb-el-gr.webm":858,"./logo-wb-es-ar":859,"./logo-wb-es-ar.webm":859,"./logo-wb-es-es":860,"./logo-wb-es-es.webm":860,"./logo-wb-es-mx":861,"./logo-wb-es-mx.webm":861,"./logo-wb-fr-fr":862,"./logo-wb-fr-fr.webm":862,"./logo-wb-hu-hu":863,"./logo-wb-hu-hu.webm":863,"./logo-wb-it-it":864,"./logo-wb-it-it.webm":864,"./logo-wb-ja-jp":865,"./logo-wb-ja-jp.webm":865,"./logo-wb-ko-kr":866,"./logo-wb-ko-kr.webm":866,"./logo-wb-pl-pl":867,"./logo-wb-pl-pl.webm":867,"./logo-wb-pt-br":868,"./logo-wb-pt-br.webm":868,"./logo-wb-ro-ro":869,"./logo-wb-ro-ro.webm":869,"./logo-wb-ru-ru":870,"./logo-wb-ru-ru.webm":870,"./logo-wb-tr-tr":871,"./logo-wb-tr-tr.webm":871,"./logo-wb-vi-vn":872,"./logo-wb-vi-vn.webm":872,"./logo-wb-zh-cn":873,"./logo-wb-zh-cn.webm":873,"./logo-wb-zh-tw":874,"./logo-wb-zh-tw.webm":874,"./logo-wb.webm":855,"./shaco/ability-e":875,"./shaco/ability-e.webm":875,"./shaco/ability-p":876,"./shaco/ability-p.webm":876,"./shaco/ability-q":877,"./shaco/ability-q.webm":877,"./shaco/ability-r":878,"./shaco/ability-r.webm":878,"./shaco/ability-w":879,"./shaco/ability-w.webm":879,"./shaco/carousel-card":880,"./shaco/carousel-card.webm":880,"./swain/ability-e":881,"./swain/ability-e.webm":881,"./swain/ability-p":882,"./swain/ability-p.webm":882,"./swain/ability-q":883,"./swain/ability-q.webm":883,"./swain/ability-r":884,"./swain/ability-r.webm":884,"./swain/ability-w":885,"./swain/ability-w.webm":885,"./swain/carousel-card":886,"./swain/carousel-card.webm":886,"./warwick/ability-e":887,"./warwick/ability-e.webm":887,"./warwick/ability-p":888,"./warwick/ability-p.webm":888,"./warwick/ability-q":889,"./warwick/ability-q.webm":889,"./warwick/ability-r":890,"./warwick/ability-r.webm":890,"./warwick/ability-w":891,"./warwick/ability-w.webm":891,"./warwick/carousel-card":892,"./warwick/carousel-card.webm":892,"./warwickp/ability-e":893,"./warwickp/ability-e.webm":893,"./warwickp/ability-p":894,"./warwickp/ability-p.webm":894,"./warwickp/ability-q":895,"./warwickp/ability-q.webm":895,"./warwickp/ability-r":896,"./warwickp/ability-r.webm":896,"./warwickp/ability-w":897,"./warwickp/ability-w.webm":897,"./warwickp/carousel-card":898,"./warwickp/carousel-card.webm":898,"./zilean/ability-e":899,"./zilean/ability-e.webm":899,"./zilean/ability-p":900,"./zilean/ability-p.webm":900,"./zilean/ability-q":901,"./zilean/ability-q.webm":901,"./zilean/ability-r":902,"./zilean/ability-r.webm":902,"./zilean/ability-w":903,"./zilean/ability-w.webm":903,"./zilean/carousel-card":904,"./zilean/carousel-card.webm":904,"./zoe/ability-e":905,"./zoe/ability-e.webm":905,"./zoe/ability-p":906,"./zoe/ability-p.webm":906,"./zoe/ability-q":907,"./zoe/ability-q.webm":907,"./zoe/ability-r":908,"./zoe/ability-r.webm":908,"./zoe/ability-w":909,"./zoe/ability-w.webm":909,"./zoe/carousel-card":910,"./zoe/carousel-card.webm":910};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=842},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/button-close-idle.webm?962bba206207d87df0c5c77a0c1cd54b"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/button-close-mouseenter.webm?c23827299a2b82af295aef4cdbaf38e6"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/button-event-shop-idle.webm?294a2704a66143dc2c6e2b6e68eb2912"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/button-event-shop-mouseenter.webm?72b7ce03f48e389dd9297fe189b9d573"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/button-explore-more-idle.webm?345e5a4322b1a75b47ac9b3450d6b355"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/button-explore-more-mouseenter.webm?16b71e6634f3cfdcd0dfeb51cfc99079"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/diana/ability-e.webm?9178b029af817be4224c51b83cb222dc"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/diana/ability-p.webm?993e99b0b42a3204907925a7237ab302"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/diana/ability-q.webm?c234deeb0255022781860b47bffb03f1"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/diana/ability-r.webm?9daaa278b710dba0620f066177744826"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/diana/ability-w.webm?42f403c15320355763a2f662030e9621"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/diana/carousel-card.webm?ed12185476229d4b19e77d2d592d474d"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb.webm?e93594aaafabbe145b0733fcd8463a8b"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-cs-cz.webm?9f9d0f65baf9aca2ff1d21c254fe02f2"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-de-de.webm?f9b1261f351de586b344894694dd5955"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-el-gr.webm?c3888618ab5381684840646a6686e29c"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-es-ar.webm?e25fe68e34b7c9dcacff3775719ccf79"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-es-es.webm?8df1bf7f0153ee45ac3c82b62e35dc86"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-es-mx.webm?e25fe68e34b7c9dcacff3775719ccf79"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-fr-fr.webm?9e9653058179b902270b50d7dc50f8f1"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-hu-hu.webm?ee42e0bd13c0f5b0546e69d4ed1c32f1"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-it-it.webm?3fd222eafdd138e46fba2b72289b967d"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-ja-jp.webm?8ab1d07ad7daf0cb274938daf64205fe"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-ko-kr.webm?9bb7f47ea06915bd7042eabfb2ad0666"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-pl-pl.webm?9a360f580c18197a3d439022687d6ff0"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-pt-br.webm?0c3ec4ccbcb4f9919d4e6989ea8519a6"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-ro-ro.webm?ae1cc84562040c7511e5725e503213c7"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-ru-ru.webm?1d317cebd96d497133a7e07217efdfda"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-tr-tr.webm?19d0ee857959130b61ca7f450f08244d"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-vi-vn.webm?e5eb093fd4010125f55281db2e7088d9"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-zh-cn.webm?15b4077a062a0d5c8f853bcd771c7de3"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/logo-wb-zh-tw.webm?f31f5637b2c4c8e07590ed3bbd575aa0"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/shaco/ability-e.webm?3d559c6fc6e88bde417a6cf7ca5699d5"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/shaco/ability-p.webm?06b02d8d44ba0021ed522acb5e0df83f"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/shaco/ability-q.webm?ba2f4722560956584d92ccacd15b48a1"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/shaco/ability-r.webm?9cce884dfb2773e4120116962e1e9944"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/shaco/ability-w.webm?1bf712a584d5ce65bbbfaf97b8c77939"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/shaco/carousel-card.webm?4b6692e8723250a071d1c2c10aaaace8"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/swain/ability-e.webm?c6f7af2a477f3e339dda5c244375283f"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/swain/ability-p.webm?6af0030a57ea45a6cc239adc250fc534"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/swain/ability-q.webm?b3d03fd8dc32c77b6c6571fba1187f91"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/swain/ability-r.webm?b5e4782424c607767c8ff92ecb7dff39"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/swain/ability-w.webm?409bdfc7a026a7298a0a55e7c9a7c548"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/swain/carousel-card.webm?3466baa6904ef6456ff5df38ad4ba50c"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/warwick/ability-e.webm?2ef6b59273f8742aff3d2ca19399ea26"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/warwick/ability-p.webm?31137a0c39afef15b3a94f27060ce57a"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/warwick/ability-q.webm?dbb27903ff0008dde89052b56ebcbaa4"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/warwick/ability-r.webm?8173cc4db29c943ae57ca1e1865c6708"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/warwick/ability-w.webm?2def70261bdf535def62ffb8c0b0d9f1"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/warwick/carousel-card.webm?d12dd56762371895720b29a6e7b89d23"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/warwickp/ability-e.webm?1e09c802fc9a2d5860a5eb40f9499002"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/warwickp/ability-p.webm?8dca41ae72936fb732de942612e00a72"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/warwickp/ability-q.webm?4bd6b1613ecbdde755621e518b8fa3ce"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/warwickp/ability-r.webm?e7b00a780708d4a3466c49cf2ce23128"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/warwickp/ability-w.webm?cb78515970a931ea18244dbac9efbed7"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/warwickp/carousel-card.webm?1cbf66c10c3dbdf5fdf4c9ad2a9e734f"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/zilean/ability-e.webm?0e25b09b8eee357671f013e91e3a7041"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/zilean/ability-p.webm?d0ea05af2cee4c1f8b6441d06968047f"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/zilean/ability-q.webm?1aca7aec000cc2313ef66af8ae4763ce"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/zilean/ability-r.webm?1a0c26918f72fca6c17b0d7b8236935e"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/zilean/ability-w.webm?b44b527c060f08232cd5569a2dc4d0d9"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/zilean/carousel-card.webm?2cd8d254d660d03705f965a1cf58f058"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/zoe/ability-e.webm?955d3a2423767a717ce930bcbabec7e4"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/zoe/ability-p.webm?b9836f47ce3127ea4feffc0f37a2a4b4"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/zoe/ability-q.webm?078b32957f7aa83bf9f204382e793e74"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/zoe/ability-r.webm?16b23c8bda22fa9dd0b3af77c3f6b4ff"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/zoe/ability-w.webm?8a0c4ee2552e6f4f3fe16afc3e24ca3b"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/videos/zoe/carousel-card.webm?c6df10d1e23d4dfcf0feefef7ba20ffc"},function(e,t,n){var map={"./button-decor-bc.svg":1271,"./button-decor-cl.svg":1272,"./button-decor-tc.svg":1273,"./button-event-shop-hover.svg":1274,"./button-event-shop.svg":1275,"./carousel-arrow-l.svg":1276,"./decorated-video-player-button.svg":1277,"./divider.svg":1278,"./framing-ability-video.svg":1279,"./framing-carousel-card.svg":1280,"./framing-t1.svg":1281,"./framing-t2.svg":1282,"./thumbnail-decor-diamond.svg":1283};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=911},function(e,t,n){"use strict";n.r(t),n.d(t,"default",(function(){return o}));n(25);function o(e){try{for(var t=arguments.length,n=new Array(t>1?t-1:0),o=1;o<t;o++)n[o-1]=arguments[o];return JSON.stringify.apply(JSON,[e].concat(n))}catch(e){return e}}},function(e,t,n){"use strict";n.r(t);var o=n(16),r=n.n(o),l=n(2),c=n.n(l),d=n(13),f=n.n(d),m=(n(32),n(8),n(37),n(276),n(35),n(21),n(20),n(24),n(12),n(17),n(38),n(134)),h=n(53),v=n(294);function y(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function C(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?y(Object(source),!0).forEach((function(t){f()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):y(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}var w=n(376),j=new WeakMap,x={};function k(e,t){j.set(e,C(C({},j.get(e)||{}),t))}function _(e){e.style.fontSize="",e.style.lineHeight="",k(e,{fontSize:null,lineHeight:null})}var O=function(e,t){var n=t.value,o=t.arg,r=t.modifiers.debug?m.a:function(e){return e},l=!o||"width"==o,d=!o||"height"==o,f="object"==c()(n)&&n.minRatio||0;function v(){return"none"!=getComputedStyle(e).display&&(l&&e.scrollWidth>e.offsetWidth||d&&e.scrollHeight>e.offsetHeight)}v()&&function t(){var n=r(Math.max(f,Math.floor(1e5*Math.min(l?r(e.offsetWidth,"el.offsetWidth")/r(e.scrollWidth,"el.scrollWidth"):1,d?r(e.offsetHeight,"el.offsetHeight")/r(e.scrollHeight,"el.scrollHeight"):1))/1e5),"ratio"),o=j.get(e)||{},c=o.fontSize,m=o.lineHeight,y=getComputedStyle(e),C=y.getPropertyValue("line-height"),w=r("normal"==C?"1.2":"".concat(parseFloat(C)*n,"px"),"lineHeight"),x=r("".concat(parseFloat(y.getPropertyValue("font-size"))*n,"px"),"fontSize");w!==m&&(e.style.lineHeight=w,k(e,{lineHeight:w}));x!==c&&(e.style.fontSize=x,k(e,{fontSize:x}));Object(h.a)((function(){v()&&t()}))}()},L={inserted:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];var o=t[0],l=t[1],d=l.value,f=l.modifiers.debug,m=t[2].context,h=o;if(!(h instanceof HTMLElement))throw new Error("fitted-font-size.directive was used on a ".concat(h.tagName," element, not a div-like element."));var y=function(){P&&_(h),O.apply(void 0,t)};null==m||m.$watch((function(){return[m.$viewportSize.height,m.$viewportSize.width]}),(function(){return O.apply(void 0,t)}),{immediate:!0});var C="string"==typeof d?{font:d}:d||{},j=C.font,L=C.resetStyleOnResize,P=void 0!==L&&L,M=C.updateOnVisible,R=void 0!==M&&M;if(R){var S=new IntersectionObserver((function(e){return r()(e,1)[0].isIntersecting&&O.apply(void 0,t)}));S.observe(h),k(h,{intersectionObserver:S})}if(h.getBoundingClientRect){var A=new w(h,y);m.$once("hook:beforeDestroy",(function(){A.detach(y)}))}if(j){if("string"!=typeof j)throw new Error("fitted-font-size.directive's value must be a string representing a font family (not your value of type ".concat(c()(j),")."));x[j]||(x[j]=Object(v.a)(j),f&&console.log("fitted-font-size.directive font-family",j)),x[j].then((function(){return O.apply(void 0,t)}),(function(){console.error("fitted-font-size.directive failed to detect font ".concat(j," being loaded."))}))}},unbind:function(e){var t,n;null===(n=null===(t=j.get(e))||void 0===t?void 0:t.intersectionObserver)||void 0===n||n.unobserve(e)}};t.default=L},function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));var o=["p","q","w","e","r"]},function(e,t,n){e.exports={}},function(e,t,n){e.exports={}},function(e,t,n){e.exports={}},,,,function(e,t,n){"use strict";(function(e){n.d(t,"a",(function(){return r}));n(25),n(48),n(8),n(17);var o=n(41);function r(){var t=f("protocol")||"https:",n=f("port"),r="hub-".concat((new Date).getTime()),l="".concat(t,"//127.0.0.1:").concat(n),c=o.inject.region,d=o.inject.value;function f(t){var n=function(t){var n={};return("location"in e&&location.hash.slice(1)||"").split("&").forEach((function(e){var t=e.split("=");n[t[0]]=t[1]})),n[t]}(t);if(n){var o=function(e,t){return"protocol"===e?"http:"===t||"https:"===t?t:"https:":"port"===e?parseInt(t):t}(t,n);return sessionStorage.setItem("home_".concat(t),o),o}var r="sessionStorage"in e&&sessionStorage.getItem("home_".concat(t));return r||null}!function(t){if("document"in e){var n=document.createElement("link");n.rel="stylesheet",n.type="text/css",n.href=t,document.getElementsByTagName("head")[0].appendChild(n)}}(l+"/fe/lol-typekit/fonts/fonts.css?locale=".concat(c,"-").concat(d,"&ref=").concat(r))}}).call(this,n(40))},function(e,t,n){"use strict";n(27);var o=n(187),r=n(293),l=/^((test|preview)\.embed\.rgpub\.io|\w+\.\w+\.leagueoflegends\.com)$/i.test("embed.rgpub.io"),c=o.inject.qaModeEnabled||r.a||l;t.a=c},,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return o}));n(48);function o(e){return+"".concat(e).slice(0,-3)}},,,function(e,t,n){"use strict";(function(e){n.d(t,"a",(function(){return I}));var o=n(13),r=n.n(o),l=n(14),c=n.n(l),d=n(3),f=n.n(d),m=n(4),h=n.n(m),v=n(5),y=n.n(v),C=n(7),w=n.n(C),j=n(1),x=n.n(j),k=n(2),_=n.n(k),O=n(930),L=n.n(O),P=n(6),M=n.n(P),R=(n(12),n(8),n(33),n(111),n(25),n(15),n(0)),S=n(30),A=n(26),E=n(58),T=n(137),$=n(155);function B(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=x()(e);if(t){var r=x()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return w()(this,n)}}var D=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":_()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l};function I(){for(var t=arguments.length,n=new Array(t),o=0;o<t;o++)n[o]=arguments[o];var l=n[0],d=n[1],m=d.partitionKey,v=d.timeout,C=void 0===v?15e3:v,w=d.mode,j=void 0===w?"mps":w,x=d.validate,k=void 0===x?{}:x,_=d.onSet,O=void 0===_?{}:_,P=d.sendAllAssignments,I=void 0!==P&&P,G="ppv1"==j,z=R.h.observable(e(l,(function(e){return JSON.stringify(e)}))),Z=Object($.a)((function(){return new Promise((function(e,t){if(G)S.inject.promise("playerSettingsChanged").finally((function(){for(var e in l)e in E.inject&&z[e]!=E.inject[e]&&(z[e]=E.inject[e])})).then(e,t);else if(A.inject.inBrowser)e();else{var n=!1;S.inject.requestResponse({messageType:"marketing-preferences-observe",data:{partitionKey:m}},{messageType:"marketing-preferences-observe-response",callback:function(o,r){var data=r.data,c=r.success,d=r.error;if(c){for(var f in l)f in data&&z[f]!=data[f]&&(z[f]=data[f]);n||(n=!0,e())}else{var h=new Error("marketing-preferences-set-response error (".concat(m,"): ").concat(d));console.error(h),n||(n=!0,t(h))}}},{autoUnlisten:!1})}}))}),C,"MPS service timed out (".concat(m,")"))(),H=function(e){y()(o,e);var t,n=B(o);function o(){var e;return f()(this,o),(e=n.apply(this,arguments)).lastSetPromise=Z,e}return h()(o,[{key:"ready",get:function(){var e=this;return Z.then((function(){"mps"==j&&m&&e.$watch((function(){return T.inject.visible}),function(){var e=c()(M.a.mark((function e(t){return M.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:t&&S.inject._sendMessage({messageType:"marketing-preferences-observe",data:{partitionKey:m}});case 1:case"end":return e.stop()}}),e)})));return function(t){return e.apply(this,arguments)}}())}))}},{key:"set",value:(t=c()(M.a.mark((function e(t){var n=this;return M.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,L()(t,function(){var e=c()(M.a.mark((function e(t,o,r){return M.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,t;case 2:return n[r]=o,e.next=5,n.lastSetPromise;case 5:case"end":return e.stop()}}),e)})));return function(t,n,o){return e.apply(this,arguments)}}(),Promise.resolve());case 2:case"end":return e.stop()}}),e)}))),function(e){return t.apply(this,arguments)})}]),o}(R.h.extend({render:function(){},computed:e(l,(function(e,t){return{get:function(){var n=G?E.inject[t]:z[t];try{var o=JSON.parse(n);if(t in k&&!k[t](o))throw new Error("Invalid value: ".concat(o));return o}catch(o){return n&&console.error("Using default for $rClientSettings['".concat(t,"'] due to error: ").concat(o)),e}},set:function(e){if(t in k&&!k[t](e))throw new Error("Invalid $rClientSettings['".concat(t,"'] value: ").concat(e));var n=JSON.stringify(e);if(z[t]!=n||I){if(z[t]=n,t in O)try{O[t](e)}catch(e){console.error("Ignoring error in onSet[".concat(t,"](").concat(n,"): ").concat(e))}this.lastSetPromise=this.lastSetPromise.finally((function(){return new Promise((function(e,o){G?S.inject.setPlayerSettings(r()({},t,n)).then(e,o):A.inject.inBrowser?e():m&&S.inject.requestResponse({messageType:"marketing-preferences-set",data:{partitionKey:m,data:r()({},t,n)}},{messageType:"marketing-preferences-set-response",callback:function(r,l){var c=l.success,d=l.error;if(c)e();else{var f=new Error("marketing-preferences-set-response error setting $rClientSettings['".concat(t,"'] to ").concat(n," (").concat(m,"): ").concat(d));console.error(f),o(f)}}})}))}))}}}}))}));return(new(H=D([R.a],H))).$mount()}}).call(this,n(94))},,,,,function(e,t,n){"use strict";n.d(t,"a",(function(){return P}));n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(99),n(52),n(0)),x=n(74),k=n(53),_=n(299);function O(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var L=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l};function P(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},t=e.interval,n=void 0===t?1e3:t,o=e.until,l=void 0===o?void 0:o,d=function(e){f()(o,e);var t=O(o);function o(){var e;return r()(this,o),(e=t.apply(this,arguments)).value=Object(x.b)(),e.cancel=null,e}return c()(o,[{key:"created",value:function(){var e=this;Number.isFinite(l)&&l<=this.value||(this.cancel=Object(k.a)((function(){e.value=Object(x.b)(),e.cancel=Object(_.a)((function(){e.value=Object(x.b)()}),n)}),Object(x.b)()%n),l>this.value&&Object(k.a)((function(){return e.cancel()}),l-this.value),this.$on("hook:beforeDestroy",(function(){return e.cancel()})))}}]),o}(j.h.extend({render:function(){}}));return(new(d=L([j.a],d))).$mount()}},,function(e,t,n){"use strict";(function(e){n(15),n(21),n(20),n(24),n(17),n(38);var o=n(13),r=n.n(o),l=n(3),c=n.n(l),d=n(4),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=(n(12),n(8),n(52),n(0));function _(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function O(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?_(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):_(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function L(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var P=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},M=!1,R=function(t){h()(o,t);var n=L(o);function o(){var e;return c()(this,o),(e=n.apply(this,arguments)).player=null,e.state=null,e.stateNames={"-1":"unstarted",0:"ended",1:"playing",2:"paused",3:"buffering",5:"queued"},e}return f()(o,[{key:"render",value:function(e){return e("div")}},{key:"mounted",value:function(){if("undefined"!=typeof YT||M)YT.loaded?setTimeout(this.loadPlayer,0):YT.ready(this.loadPlayer);else{M=!0,e.onYouTubeIframeAPIReady=this.loadPlayer;var script=document.getElementById("yt-iframe-api");script||"tencent"===this.$locale.publisher||((script=document.createElement("script")).src="//www.youtube.com/iframe_api",script.id="yt-iframe-api",(document.getElementsByTagName("head")[0]||document.getElementsByTagName("body")[0]).appendChild(script))}}},{key:"loadPlayer",value:function(){var e=this;this.player&&this.player.destroy&&this.player.destroy(),this.player=new YT.Player(this.$el,{host:"https://www.youtube.com",height:this.height,width:this.width,videoId:this.videoId,playerVars:this.playerVars||{start:null},events:{onReady:function(t){return e.$emit("youtube-player:ready",t)},onError:function(t){return e.$emit("youtube-player:error",t)},onStateChange:function(t){e.state=e.stateNames[t.data],e.$emit("youtube-player:state",O(O({},t),{},{state:e.state})),e.state&&e.$emit(e.state)}}}),this.$emit("youtube-player:loaded",this.player)}},{key:"videoIdChanged",value:function(e){this.player&&(e?1===this.playerVars.autoplay?this.player.loadVideoById({videoId:e}):this.player.cueVideoById({videoId:e}):this.player.stopVideo())}},{key:"heightChanged",value:function(e){this.player&&this.player.setSize(this.width,e)}},{key:"widthChanged",value:function(e){this.player&&this.player.setSize(e,this.height)}},{key:"beforeDestroy",value:function(){this.player&&this.player.destroy()}}]),o}(k.h);P([Object(k.e)({type:String,required:!0})],R.prototype,"videoId",void 0),P([Object(k.e)({type:[String,Number],default:"390"})],R.prototype,"height",void 0),P([Object(k.e)({type:[String,Number],default:"640"})],R.prototype,"width",void 0),P([Object(k.e)(Object)],R.prototype,"playerVars",void 0),P([Object(k.i)("videoId")],R.prototype,"videoIdChanged",null),P([Object(k.i)("height")],R.prototype,"heightChanged",null),P([Object(k.i)("width")],R.prototype,"widthChanged",null),R=P([k.a],R),t.a=R}).call(this,n(40))},,,,function(e,t,n){"use strict";n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(27),n(60),n(175),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_={promo:"handlePromoCard",hero:"handleHeroCard",standard:"handleStandardCard"},O=function(e){f()(n,e);var t=x(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).ready=!1,e.embedStyle=null,e.handlerByType=_,e.isVideo=!1,e}return c()(n,[{key:"readyChanged",value:function(e){e&&this.loaded()}},{key:"loaded",value:function(){return!0}},{key:"shown",get:function(){return!this.hidden&&this.ready}},{key:"mounted",value:function(){var e=this;"function"!=typeof window._.at&&/1\./.test(window._.VERSION)||console.error("Underscore missing from window"),this.$nextTick((function(){setTimeout((function(){var t;null===(t=e[e.handlerByType[e.embedType]])||void 0===t||t.call(e),setTimeout((function(){e.$cu.imagesLoaded($(".magified",e.embed),(function(){return e.ready=!0}),2e3)}),10)}),100)}))}},{key:"embed",get:function(){return $(this.$refs.embed)}},{key:"triggerClick",value:function(){var e=this.embed.find(".oembed-item-wrapper");e.trigger("click"),this.$ping.send("click",{},e[0])}},{key:"oembedElement",value:function(){return this.embed.find(".oembed-item-wrapper")[0]}},{key:"injectCta",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n=t.hideCta,o=void 0!==n&&n,r=e.data("oembed-cta-button-text")||this.$t("ui.learn_more");e.find(".oembed-content-wrapper").append('<div class="oembed-inner-wrap"></div>').find(".oembed-inner-wrap").append(e.find(".oembed-content-subtitle")).append(e.find(".oembed-content-short-title")).append(e.find('.oembed-content-wrapper > [class*="oembed-content"]')),o||e.find(".oembed-content-wrapper").append('<div class="oembed-cta"><span>'.concat(r,"</span></div>"))}},{key:"handlePromoCard",value:function(){var e=this,t=this.embed.find(".oembed-item-wrapper"),n=this.$cu.getOembedNodeData(t),o=this.embed.find(".oembed-content-backdrop"),r=this.embed.find(".oembed-content-wrapper"),l=n.openExternally?"external":"client";if(o.addClass("promo-backdrop"),r.addClass("promo-present"),setTimeout((function(){var t=$.fn.magify.Transform(oembedGlobals.amServiceHost).resize("cover-height").quality(90);$(".oembed-content-backdrop img",e.embed).magify(t).addClass("magified"),$(".oembed-content-promo img",e.embed).magify(t).addClass("magified"),e.$siteMode.isWebpackDev&&$(".oembed-content-backdrop img, .oembed-content-promo img",e.embed).attr("src","https://placeimg.com/960/480/any").css("opacity","0.3")}),0),!n.hideCta){var c;c=n.ctaButtonText&&n.ctaButtonText.trim().length>0?n.ctaButtonText:this.$t("ui.learn_more");var d=this.$cu.createLcuFlatButton(c);this.$pingUtils.setMetaData(d.get(0),{buttonType:"promoUnlock",interactionType:"button",contentOpens:l}),r.append(d),this.$cu.linkElementToFullArticle(d,n)}}},{key:"handleHeroCard",value:function(){this.embedStyle="hero";this.embed.find(".oembed-item-wrapper")}},{key:"handleStandardCard",value:function(){var e=this.embed.find(".oembed-item-wrapper"),t=this.$cu.getOembedNodeData(e);this.noInjectCtas||this.injectCta(e,t);e.find(".oembed-youtube-video-wrapper");var n="client";setTimeout((function(){var t=$.fn.magify.Transform(oembedGlobals.amServiceHost).resize("cover-width").quality(90);$(".oembed-content-media img",e).magify(t).addClass("magified")}),0),t.openExternally&&(n="external"),this.$pingUtils.setMetaData(e.get(0),{interactionType:"card",contentOpens:n}),this.$cu.linkElementToFullArticle(e,t)&&this.embed.addClass("cursor-pointer"),/video_redirect/i.test(t.articleType)&&(this.isVideo=!0,this.embed.addClass("content-type-video"))}},{key:"wrapOembedItem",value:function(content,style){(content instanceof $?content:$(content)).wrap('<div class="card-tier-3 card-type-news card-style-'.concat(style,'" data-tier="3"></div>'))}}]),n}(j.h);k([Object(j.e)({type:String,default:"standard",validator:function(e){return!!_[e]}})],O.prototype,"embedType",void 0),k([Object(j.e)(Boolean)],O.prototype,"noInjectCtas",void 0),k([Object(j.e)(String)],O.prototype,"content",void 0),k([Object(j.e)(Boolean)],O.prototype,"hidden",void 0),k([Object(j.i)("ready",{immediate:!0})],O.prototype,"readyChanged",null),k([Object(j.b)()],O.prototype,"loaded",null);var L=O=k([j.a],O),P=n(9),component=Object(P.a)(L,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ping-impressions",{attrs:{disabled:!e.shown}},[n("ping-impression",{attrs:{element:e.ready?e.oembedElement():void 0}},[n("div",{ref:"embed",domProps:{innerHTML:e._s(e.content)}}),e._v(" "),e.isVideo&&e.$slots["play-button"]?n("div",{staticClass:"cursor-pointer",on:{click:e.triggerClick}},[e._t("play-button")],2):e._e()])],1)}),[],!1,null,null,null);t.a=component.exports},function(e,t,n){"use strict";var o=n(277).a,r=(n(991),n(9)),component=Object(r.a)(o,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ping-impressions",{attrs:{disabled:!e.$hubIs.ready}},[n("modals-root",[n("transitions-disabled",{staticClass:"transform-root h-full overflow-hidden",attrs:{value:e.$animationsAre.disabled}},[n("div",{class:{"lcu-faker":e.$siteMode.inBrowser&&"lcu"===e.$siteMode.mode},style:{minHeight:e.$viewportSize.height+"px"},attrs:{"data-ping-meta":"pageSection="+(e.pageSection||"default")}},[n("transition",[n("Nuxt")],1),e._v(" "),n("modals",{staticClass:"relative z-1"}),e._v(" "),n("preloader"),e._v(" "),e.$qaState?n("qa-mode",{staticClass:"absolute inset-y-0 z-max",class:{"top-toolbar":"lcu"==e.$siteMode.mode}}):e._e(),e._v(" "),"lcu"===e.$siteMode.mode?[n("div",{staticClass:"pointer-events-none absolute h-toolbar-gradient w-full bg-gradient-toolbar-embed"}),e._v(" "),n("div",{staticClass:"absolute z-max h-toolbar w-full"})]:e._e(),e._v(" "),n("div",{staticClass:"pointer-events-none absolute max-w-full overflow-hidden"},[n("shared-svg-defs",{staticClass:"absolute"})],1),e._v(" "),e._l(e.$siteMode.isProd?[]:["absolute right-0 top-toolbar","absolute bl"],(function(e,i){return n("watermark-overlay",{key:i,class:e})}))],2)])],1)],1)}),[],!1,null,null,null);t.a=component.exports},,,function(e,t,n){"use strict";n.r(t),function(e){n.d(t,"inject",(function(){return x}));var o=n(13),r=n.n(o),l=n(16),c=n.n(l),d=n(3),f=n.n(d),m=n(4),h=n.n(m),v=(n(1105),n(8),n(17),n(31),n(122),n(60),n(269),n(21),n(20),n(24),n(12),n(38),n(10)),y=n(409),C=n(233);function w(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}var j=function(){function e(){var t,n,o=this,r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},l=r.flags,d=r.groups,m=r.prefix;f()(this,e),this._currentGroup=v.a.observable({groupId:void 0,groupNumber:void 0}),this.flags=l,this.groups=d,this.prefix=m,this.flags.forEach((function(e){v.a.set(o._currentGroup,e,void 0)}));try{n=C.a||(null===(t=null===oembedGlobals||void 0===oembedGlobals?void 0:oembedGlobals.abtest)||void 0===t?void 0:t.groupId)}catch(e){n=void 0}n in this.groups&&Object.entries(this.groups[n]).map((function(e){var t=c()(e,2),n=t[0],r=t[1];v.a.set(o._currentGroup,n,r)}))}return h()(e,[{key:"testId",get:function(){return this.prefix}},{key:"group",get:function(){return this._currentGroup}},{key:"find",value:function(e){var t=this;return Object.values(this.groups).find((function(n){return t.flags.every((function(t){return n[t]===e[t]}))}))}},{key:"switch",value:function(e){var t=this;if(!(e in this.groups))throw new Error("Unrecognized groupId ".concat(e));Object.entries(this.groups[e]).map((function(e){var n=c()(e,2),o=n[0],r=n[1];v.a.set(t._currentGroup,o,r)}))}}]),e}(),x=new j(function(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?w(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):w(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}({prefix:y.a},e.abTest))}.call(this,n(128).inject)},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return o}));var o=n(391).default},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return r}));var o=n(298),r=Object(o.a)({concurrency:2})},,,,,function(e,t,n){e.exports=n(952)},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){e.exports={}},function(e,t,n){"use strict";n(458)},,,,,,,,,,,function(e,t,n){var map={"./cs-cz":466,"./cs-cz.js":466,"./de-de":467,"./de-de.js":467,"./el-gr":468,"./el-gr.js":468,"./en-au":469,"./en-au.js":469,"./en-gb":470,"./en-gb.js":470,"./en-ph":471,"./en-ph.js":471,"./en-pl":472,"./en-pl.js":472,"./en-sg":473,"./en-sg.js":473,"./en-us":474,"./en-us.js":474,"./es-ar":475,"./es-ar.js":475,"./es-es":476,"./es-es.js":476,"./es-mx":477,"./es-mx.js":477,"./fr-fr":478,"./fr-fr.js":478,"./hu-hu":479,"./hu-hu.js":479,"./it-it":480,"./it-it.js":480,"./ja-jp":481,"./ja-jp.js":481,"./ko-kr":482,"./ko-kr.js":482,"./pl-pl":483,"./pl-pl.js":483,"./pt-br":484,"./pt-br.js":484,"./ro-ro":485,"./ro-ro.js":485,"./ru-ru":486,"./ru-ru.js":486,"./th-th":487,"./th-th.js":487,"./tr-tr":488,"./tr-tr.js":488,"./vi-vn":489,"./vi-vn.js":489,"./zh-cn":490,"./zh-cn.js":490,"./zh-tw":491,"./zh-tw.js":491};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1002},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";n.r(t);n(8),n(33);!function(){if(navigator.mediaDevices||(navigator.mediaDevices={}),!navigator.mediaDevices.getUserMedia){var e=navigator.webkitGetUserMedia||navigator.mozGetUserMedia||navigator.msGetUserMedia||navigator.getUserMedia;navigator.mediaDevices.getUserMedia=e?function(t){return new Promise((function(n,o){e(t,(function(e){n(e)}),(function(e){o(e)}))}))}:function(){return new Promise((function(e,t){t("getUserMedia is not supported in this browser.")}))}}}()},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/_generated/sprite-post-default.png?2be2f89c9791cfc3fb1b11fdb7203c1b"},function(e,t,n){"use strict";n.r(t),t.default=n.p+"_/lib-embed/images/_generated/sprite-pre-default.png?85b971c1d3ddc5009c708f8ed6ac0069"},function(e,t,n){var map={"./_generated/sprite-post-default":346,"./_generated/sprite-post-default.jpg":346,"./_generated/sprite-post-default.png":1091,"./_generated/sprite-pre-default":347,"./_generated/sprite-pre-default.jpg":347,"./_generated/sprite-pre-default.png":1092,"./bg-content-drawer":645,"./bg-content-drawer.jpg":645,"./bg-index-intro":646,"./bg-index-intro.jpg":646,"./card-event-article":647,"./card-event-article.jpg":647,"./card-event-theme":648,"./card-event-theme.jpg":648,"./card-event-trailer":649,"./card-event-trailer.jpg":649,"./diana/ability-icon-e":650,"./diana/ability-icon-e.jpg":650,"./diana/ability-icon-p":651,"./diana/ability-icon-p.jpg":651,"./diana/ability-icon-q":652,"./diana/ability-icon-q.jpg":652,"./diana/ability-icon-r":653,"./diana/ability-icon-r.jpg":653,"./diana/ability-icon-w":654,"./diana/ability-icon-w.jpg":654,"./diana/ability-poster-e":655,"./diana/ability-poster-e.jpg":655,"./diana/ability-poster-p":656,"./diana/ability-poster-p.jpg":656,"./diana/ability-poster-q":657,"./diana/ability-poster-q.jpg":657,"./diana/ability-poster-r":658,"./diana/ability-poster-r.jpg":658,"./diana/ability-poster-w":659,"./diana/ability-poster-w.jpg":659,"./diana/bg-index":660,"./diana/bg-index.jpg":660,"./diana/carousel-card":661,"./diana/carousel-card.jpg":661,"./diana/carousel-thumbnail":662,"./diana/carousel-thumbnail-active":663,"./diana/carousel-thumbnail-active.jpg":663,"./diana/carousel-thumbnail.jpg":662,"./logo-vignette-lg":664,"./logo-vignette-lg.png":664,"./logo-vignette-md":665,"./logo-vignette-md.png":665,"./logo-vignette-sm":666,"./logo-vignette-sm.png":666,"./logo-wb":667,"./logo-wb-cs-cz":668,"./logo-wb-cs-cz.png":668,"./logo-wb-de-de":669,"./logo-wb-de-de.png":669,"./logo-wb-el-gr":670,"./logo-wb-el-gr.png":670,"./logo-wb-es-ar":671,"./logo-wb-es-ar.png":671,"./logo-wb-es-es":672,"./logo-wb-es-es.png":672,"./logo-wb-es-mx":673,"./logo-wb-es-mx.png":673,"./logo-wb-fr-fr":674,"./logo-wb-fr-fr.png":674,"./logo-wb-hu-hu":675,"./logo-wb-hu-hu.png":675,"./logo-wb-it-it":676,"./logo-wb-it-it.png":676,"./logo-wb-ja-jp":677,"./logo-wb-ja-jp.png":677,"./logo-wb-ko-kr":678,"./logo-wb-ko-kr.png":678,"./logo-wb-pl-pl":679,"./logo-wb-pl-pl.png":679,"./logo-wb-pt-br":680,"./logo-wb-pt-br.png":680,"./logo-wb-ro-ro":681,"./logo-wb-ro-ro.png":681,"./logo-wb-ru-ru":682,"./logo-wb-ru-ru.png":682,"./logo-wb-tr-tr":683,"./logo-wb-tr-tr.png":683,"./logo-wb-vi-vn":684,"./logo-wb-vi-vn.png":684,"./logo-wb-zh-cn":685,"./logo-wb-zh-cn.png":685,"./logo-wb-zh-tw":686,"./logo-wb-zh-tw.png":686,"./logo-wb.png":667,"./shaco/ability-icon-e":687,"./shaco/ability-icon-e.jpg":687,"./shaco/ability-icon-p":688,"./shaco/ability-icon-p.jpg":688,"./shaco/ability-icon-q":689,"./shaco/ability-icon-q.jpg":689,"./shaco/ability-icon-r":690,"./shaco/ability-icon-r.jpg":690,"./shaco/ability-icon-w":691,"./shaco/ability-icon-w.jpg":691,"./shaco/ability-poster-e":692,"./shaco/ability-poster-e.jpg":692,"./shaco/ability-poster-p":693,"./shaco/ability-poster-p.jpg":693,"./shaco/ability-poster-q":694,"./shaco/ability-poster-q.jpg":694,"./shaco/ability-poster-r":695,"./shaco/ability-poster-r.jpg":695,"./shaco/ability-poster-w":696,"./shaco/ability-poster-w.jpg":696,"./shaco/bg-index":697,"./shaco/bg-index.jpg":697,"./shaco/carousel-card":698,"./shaco/carousel-card.jpg":698,"./shaco/carousel-thumbnail":699,"./shaco/carousel-thumbnail-active":700,"./shaco/carousel-thumbnail-active.jpg":700,"./shaco/carousel-thumbnail.jpg":699,"./swain/ability-icon-e":701,"./swain/ability-icon-e.jpg":701,"./swain/ability-icon-p":702,"./swain/ability-icon-p.jpg":702,"./swain/ability-icon-q":703,"./swain/ability-icon-q.jpg":703,"./swain/ability-icon-r":704,"./swain/ability-icon-r.jpg":704,"./swain/ability-icon-w":705,"./swain/ability-icon-w.jpg":705,"./swain/ability-poster-e":706,"./swain/ability-poster-e.jpg":706,"./swain/ability-poster-p":707,"./swain/ability-poster-p.jpg":707,"./swain/ability-poster-q":708,"./swain/ability-poster-q.jpg":708,"./swain/ability-poster-r":709,"./swain/ability-poster-r.jpg":709,"./swain/ability-poster-w":710,"./swain/ability-poster-w.jpg":710,"./swain/bg-index":711,"./swain/bg-index.jpg":711,"./swain/carousel-card":712,"./swain/carousel-card.jpg":712,"./swain/carousel-thumbnail":713,"./swain/carousel-thumbnail-active":714,"./swain/carousel-thumbnail-active.jpg":714,"./swain/carousel-thumbnail.jpg":713,"./warwick/ability-icon-e":715,"./warwick/ability-icon-e.jpg":715,"./warwick/ability-icon-p":716,"./warwick/ability-icon-p.jpg":716,"./warwick/ability-icon-q":717,"./warwick/ability-icon-q.jpg":717,"./warwick/ability-icon-r":718,"./warwick/ability-icon-r.jpg":718,"./warwick/ability-icon-w":719,"./warwick/ability-icon-w.jpg":719,"./warwick/ability-poster-e":720,"./warwick/ability-poster-e.jpg":720,"./warwick/ability-poster-p":721,"./warwick/ability-poster-p.jpg":721,"./warwick/ability-poster-q":722,"./warwick/ability-poster-q.jpg":722,"./warwick/ability-poster-r":723,"./warwick/ability-poster-r.jpg":723,"./warwick/ability-poster-w":724,"./warwick/ability-poster-w.jpg":724,"./warwick/bg-index":725,"./warwick/bg-index.jpg":725,"./warwick/carousel-card":726,"./warwick/carousel-card.jpg":726,"./warwick/carousel-thumbnail":727,"./warwick/carousel-thumbnail-active":728,"./warwick/carousel-thumbnail-active.jpg":728,"./warwick/carousel-thumbnail.jpg":727,"./warwickp/ability-icon-e":729,"./warwickp/ability-icon-e.jpg":729,"./warwickp/ability-icon-p":730,"./warwickp/ability-icon-p.jpg":730,"./warwickp/ability-icon-q":731,"./warwickp/ability-icon-q.jpg":731,"./warwickp/ability-icon-r":732,"./warwickp/ability-icon-r.jpg":732,"./warwickp/ability-icon-w":733,"./warwickp/ability-icon-w.jpg":733,"./warwickp/ability-poster-e":734,"./warwickp/ability-poster-e.jpg":734,"./warwickp/ability-poster-p":735,"./warwickp/ability-poster-p.jpg":735,"./warwickp/ability-poster-q":736,"./warwickp/ability-poster-q.jpg":736,"./warwickp/ability-poster-r":737,"./warwickp/ability-poster-r.jpg":737,"./warwickp/ability-poster-w":738,"./warwickp/ability-poster-w.jpg":738,"./warwickp/bg-index":739,"./warwickp/bg-index.jpg":739,"./warwickp/carousel-card":740,"./warwickp/carousel-card.jpg":740,"./warwickp/carousel-thumbnail":741,"./warwickp/carousel-thumbnail-active":742,"./warwickp/carousel-thumbnail-active.jpg":742,"./warwickp/carousel-thumbnail.jpg":741,"./zilean/ability-icon-e":743,"./zilean/ability-icon-e.jpg":743,"./zilean/ability-icon-p":744,"./zilean/ability-icon-p.jpg":744,"./zilean/ability-icon-q":745,"./zilean/ability-icon-q.jpg":745,"./zilean/ability-icon-r":746,"./zilean/ability-icon-r.jpg":746,"./zilean/ability-icon-w":747,"./zilean/ability-icon-w.jpg":747,"./zilean/ability-poster-e":748,"./zilean/ability-poster-e.jpg":748,"./zilean/ability-poster-p":749,"./zilean/ability-poster-p.jpg":749,"./zilean/ability-poster-q":750,"./zilean/ability-poster-q.jpg":750,"./zilean/ability-poster-r":751,"./zilean/ability-poster-r.jpg":751,"./zilean/ability-poster-w":752,"./zilean/ability-poster-w.jpg":752,"./zilean/bg-index":753,"./zilean/bg-index.jpg":753,"./zilean/carousel-card":754,"./zilean/carousel-card.jpg":754,"./zilean/carousel-thumbnail":755,"./zilean/carousel-thumbnail-active":756,"./zilean/carousel-thumbnail-active.jpg":756,"./zilean/carousel-thumbnail.jpg":755,"./zoe/ability-icon-e":757,"./zoe/ability-icon-e.jpg":757,"./zoe/ability-icon-p":758,"./zoe/ability-icon-p.jpg":758,"./zoe/ability-icon-q":759,"./zoe/ability-icon-q.jpg":759,"./zoe/ability-icon-r":760,"./zoe/ability-icon-r.jpg":760,"./zoe/ability-icon-w":761,"./zoe/ability-icon-w.jpg":761,"./zoe/ability-poster-e":762,"./zoe/ability-poster-e.jpg":762,"./zoe/ability-poster-p":763,"./zoe/ability-poster-p.jpg":763,"./zoe/ability-poster-q":764,"./zoe/ability-poster-q.jpg":764,"./zoe/ability-poster-r":765,"./zoe/ability-poster-r.jpg":765,"./zoe/ability-poster-w":766,"./zoe/ability-poster-w.jpg":766,"./zoe/bg-index":767,"./zoe/bg-index.jpg":767,"./zoe/carousel-card":768,"./zoe/carousel-card.jpg":768,"./zoe/carousel-thumbnail":769,"./zoe/carousel-thumbnail-active":770,"./zoe/carousel-thumbnail-active.jpg":770,"./zoe/carousel-thumbnail.jpg":769};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1090},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},function(e,t){throw new Error("Module build failed (from ./submodules/gm-loader/dist/index.js):\nTypeError: invalid options argument\n at optsArg (/opt/build/repo/node_modules/mkdirp/lib/opts-arg.js:13:11)\n at mkdirp (/opt/build/repo/node_modules/mkdirp/index.js:11:10)\n at node:internal/util:364:7\n at new Promise (<anonymous>)\n at mkdirp (node:internal/util:350:12)\n at /opt/build/repo/submodules/gm-loader/dist/index.js:192:15\n at Generator.next (<anonymous>)\n at asyncGeneratorStep (/opt/build/repo/submodules/gm-loader/dist/index.js:25:103)\n at _next (/opt/build/repo/submodules/gm-loader/dist/index.js:27:194)")},,,,,,,,,,,,function(e,t,n){var map={"./ab-test.plugin.ts":944,"./add-params-to-url.filter.ts":380,"./ambience.plugin.ts":381,"./animations-are.plugin.ts":834,"./asset-magick.filter.ts":387,"./asset-magick.plugin.ts":1227,"./audio-ambience.component.ts":1228,"./bg-image.plugin.ts":835,"./cached-preload.plugin.ts":836,"./countdown-timer.component.vue":1376,"./default-locale.plugin.ts":1229,"./external-arrow.filter.ts":388,"./external-arrow.plugin.ts":1231,"./hash.plugin.ts":1384,"./home-data.plugin.ts":105,"./hub-config.plugin.ts":187,"./hub-is.plugin.ts":137,"./image.filter.ts":230,"./image.plugin.ts":186,"./link-out.plugin.ts":838,"./locale.plugin.ts":41,"./oembed-globals.plugin.ts":1234,"./page-container.component.vue":1343,"./phase.plugin.ts":153,"./ping-impression.component.ts":1236,"./ping-impressions.component.ts":390,"./ping.plugin.ts":389,"./player-settings.plugin.ts":58,"./preload.plugin.ts":411,"./preloader.component.vue":1380,"./r-client-audio.plugin.ts":114,"./r-client-event-shop.plugin.ts":286,"./r-client-lobby.plugin.ts":1238,"./r-client-mission.plugin.ts":1239,"./r-client-store.plugin.ts":840,"./r-client.plugin.ts":30,"./riotbar.plugin.ts":841,"./site-mode.plugin.ts":26,"./video-player.component.vue":1341,"./video.filter.ts":391,"./video.plugin.ts":945,"./window-open.plugin.ts":95,"./youtube-modal.plugin.ts":1385};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1104},,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t){},,function(e,t){},,,,,,,,,,,function(e,t){},,function(e,t){},,,,,,,,,,,,,,,,,,,,,,,,,function(e,t){},,function(e,t){},function(e,t){},,,,,function(e,t){},,function(e,t){},,,,,,function(e,t){},,function(e,t){},,,,,,,,,,,,,,,,,,,function(e,t){},,,,,,,,,,,,function(e,t){},,,function(e,t){},,,,,function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return o}));var o=n(387).default},function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(92),n(0)),x=n(381);function k(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var _=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},O=["primary","secondary"],L=function(e){f()(n,e);var t=k(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).stackByChannel={primary:[],secondary:[]},e}return c()(n,[{key:"setChannel",value:function(e,t){var n=this,o={options:t};this.stackByChannel[e].unshift(o);var r={update:function(e){o.options=e},remove:function(){var t=n.stackByChannel[e].indexOf(o);-1!=t&&(n.stackByChannel[e].splice(t,1),r.update=function(){})}};return r}},{key:"secondary",get:function(){var e;return null===(e=this.stackByChannel.secondary[0])||void 0===e?void 0:e.options}},{key:"primary",get:function(){var e;return null===(e=this.stackByChannel.primary[0])||void 0===e?void 0:e.options}},{key:"created",value:function(){var e=this;O.forEach((function(t){e.$watch((function(){return e[t]}),(function(e){x.inject.set(t,e)}),{immediate:!0})}))}}]),n}(j.h.extend({render:function(){}})),P=(new(L=_([j.a],L))).$mount(),M=function(e){f()(n,e);var t=k(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"mounted",value:function(){var e=this,t={primary:void 0,secondary:void 0};O.forEach((function(n){e.$watch((function(){return{prop:e[n],inheritUnsetChannel:e.inheritUnsetChannel}}),(function(e){var o,r=e.prop;if(e.inheritUnsetChannel&&"string"!=typeof r)null===(o=t[n])||void 0===o||o.remove(),t[n]=void 0;else{var l="string"==typeof r?{ambientAsset:r}:r;t[n]?t[n].update(l):t[n]=P.setChannel(n,l)}}),{immediate:!0})})),this.$on("hook:beforeDestroy",(function(){O.forEach((function(e){var n;null===(n=t[e])||void 0===n||n.remove(),t[e]=void 0}))}))}},{key:"render",value:function(){return this.$slots.default}}]),n}(j.h);_([Object(j.e)([String,Object])],M.prototype,"primary",void 0),_([Object(j.e)([String,Object])],M.prototype,"secondary",void 0),_([Object(j.e)(Boolean)],M.prototype,"inheritUnsetChannel",void 0),M=_([j.a],M),t.default=M},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return o}));var o="en_US"},,function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return o}));var o=n(388).default},,,function(e,t,n){"use strict";n.r(t),t.default=void 0},function(e,t,n){"use strict";n(839)},function(e,t,n){"use strict";n.r(t);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0)),x=n(300),k=n(234),_=n(45),O=n(389),L=n(390);function P(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var M=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},R=Object(_.a)({slotScope:function(){return this.meta}}),S=function(e){f()(n,e);var t=P(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).ogMeta=null,e}return c()(n,[{key:"mounted",value:function(){var e,t,n=this;this.$watch((function(){return n.pingImpressions.enabled&&!n.disabled}),(function(o){o&&(t||(t=n.$watch("element",(function(){n.ogMeta=null,n.update()}),{immediate:!0})),e||(e=n.$watch("meta",(function(){n.update()}),{immediate:!0})))}),{immediate:!0})}},{key:"update",value:function(){var e=Object(x.a)(this.element||this.$el,Object(k.a)({$test:function(e){return e instanceof HTMLElement||e instanceof SVGElement}}),{andThrow:"The element inside of <ping-impression> must be a valid HTML element or an SVG element."});null===this.ogMeta&&(this.ogMeta=e.dataset.pingMeta);var t=new O.PingMeta(this.ogMeta,this.meta),n=t.stringify();""!==n&&(e.dataset.pingMeta=n,this.$ping.trackImpression(t,e))}},{key:"render",value:function(){for(var e=arguments.length,t=new Array(e),n=0;n<e;n++)t[n]=arguments[n];return R.apply(this,t)}}]),n}(j.h);M([Object(j.c)(L.inject)],S.prototype,"pingImpressions",void 0),M([Object(j.e)(Object)],S.prototype,"meta",void 0),M([Object(j.e)(Boolean)],S.prototype,"disabled",void 0),M([Object(j.e)()],S.prototype,"element",void 0),S=M([j.a],S),t.default=S},,function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return E}));n(15);var o=n(14),r=n.n(o),l=n(3),c=n.n(l),d=n(4),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=n(6),_=n.n(k),O=(n(12),n(8),n(33),n(32),n(37),n(35),n(24),n(31),n(25),n(77),n(110),n(56),n(191)),L=n(155),P=n(0),M=n(26);function R(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var S=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},A=function(e){h()(l,e);var t,n,o=R(l);function l(){var e;return c()(this,l),(e=o.apply(this,arguments)).playEnabled=!1,e.queueIds=null,e.inLobby=!1,e.initPromise=null,e}return f()(l,[{key:"init",value:(n=r()(_.a.mark((function e(){var t=this;return _.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this.initPromise||(this.initPromise=M.inject.inBrowser?new Promise((function(e){return setTimeout(e,250+1250*Math.random())})):Promise.all([Object(O.a)("checking playEnabled",(function(){return new Promise((function(e,n){t.$rClient.requestResponse({messageType:"rcp-fe-lol-home-play-enabled"},{messageType:"play-enabled-response",callback:function(n,data){var o=!!(null==data?void 0:data.enabled);t.playEnabled!=o&&(t.playEnabled=o),e(o)}},{autoUnlisten:!1})}))})),Object(O.a)("checking queueIds",(function(){return new Promise((function(e,n){!function o(){var r=arguments.length>0&&void 0!==arguments[0]?arguments[0]:6,l=arguments.length>1&&void 0!==arguments[1]?arguments[1]:1e4,c=arguments.length>2&&void 0!==arguments[2]?arguments[2]:1,d=t.$rClient.requestResponse({messageType:"rcp-fe-lol-home-eligible-queues"},{messageType:"eligible-queues-response",callback:function(f,data){var m,h=null===(m=null==data?void 0:data.queues)||void 0===m?void 0:m.map((function(e){return e&&e.queueId})).filter(Boolean);h.length?e(t.queueIds=h):(d(),--r?setTimeout((function(){return o(r,l*c)}),l):n(new Error("Timed out trying to get the queueIds")))}},{autoUnlisten:!1})}()}))})),Object(O.a)("checking inLobby",(function(){return new Promise((function(e,n){t.$rClient.requestResponse({messageType:"rcp-fe-lol-home-gameflow-observe"},{messageType:"rcp-fe-lol-home-gameflow-changed",callback:function(o,data){data?e(t.inLobby="None"!=(null==data?void 0:data.phase)):n(new Error("Empty response from home-gameflow-observe"))}},{autoUnlisten:!1})}))}))])),e.next=3,this.initPromise;case 3:case"end":return e.stop()}}),e,this)}))),function(){return n.apply(this,arguments)})},{key:"canCreateLobby",get:function(){var e;return!this.inLobby&&(null===(e=this.queueIds)||void 0===e?void 0:e.length)&&this.playEnabled}},{key:"create",value:(t=r()(_.a.mark((function e(t){var n,o=this,l=arguments;return _.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return n=l.length>1&&void 0!==l[1]?l[1]:3e4,e.next=3,Object(L.a)(r()(_.a.mark((function e(){var n,r;return _.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return e.next=2,o.init();case 2:if(o.canCreateLobby){e.next=4;break}throw new Error("Can't create a lobby right now. (inLobby: ".concat(o.inLobby,", playEnabled: ").concat(o.playEnabled,", queueIds: ").concat((null===(n=o.queueIds)||void 0===n?void 0:n.length)||0,")"));case 4:if(null===(r=o.queueIds)||void 0===r?void 0:r.includes(t)){e.next=6;break}throw new Error("Invalid/unavailable queueId: ".concat(t,"\nAvailable queue IDs are:\n").concat((o.queueIds||["[none]"]).join("\n")));case 6:return e.abrupt("return",new Promise((function(e,n){o.$rClient.requestResponse({messageType:"rcp-fe-lol-home-create-lobby",data:{queueId:t}},{messageType:"create-lobby-response",callback:function(o,data){(null==data?void 0:data.success)?e():n("Failed to create lobby for queue ".concat(t))}})})));case 7:case"end":return e.stop()}}),e)}))),n,"Timed out trying to create lobby.")();case 3:case"end":return e.stop()}}),e)}))),function(e){return t.apply(this,arguments)})}]),l}(P.h.extend({render:function(){}})),E=(new(A=S([P.a],A))).$mount()},function(e,t,n){"use strict";n.r(t),function(e,o,r,l){n.d(t,"inject",(function(){return x}));var c=n(14),d=n.n(c),f=n(6),m=n.n(f),h=(n(24),n(8),n(60),n(25),n(33),n(111),n(135)),v=n(157),y=n(53),C=n(155),w=n(30);function j(t){var n=Object(h.a)((function(){var e,n=new v.a;return n.eventOptions("updated",{includeLastTrigger:!0}),w.inject.requestResponse({messageType:"mission"==t?"rcp-fe-lol-home-observe-missions":"rcp-fe-lol-missions-observe-series"},{messageType:"mission"==t?"rcp-fe-lol-home-missions-changed":"rcp-fe-lol-missions-series-changed",callback:function(o,r){n.trigger("updated",r||[]),null==e||e(),(null==r?void 0:r.length)||(e=Object(y.a)((function(){w.inject._sendMessage({messageType:"mission"==t?"rcp-fe-lol-home-observe-missions":"rcp-fe-lol-missions-observe-series"})}),3e4))}},{autoUnlisten:!1}),n}));return function(c,d,f){var m,h=arguments.length>3&&void 0!==arguments[3]?arguments[3]:{},v=h.onMissing,y=h.onEmpty,C=h.andLog,w=h.onError;return n().on("updated",(function(n){try{C&&e(o(r(n,(function(e){return e.internalName})),(function(e){return e.length>1?e:e[0]})),"[$rClientMission] all",t,"data");var filter="string"==typeof c?"mission"===t?function(e){var t;return null===(t=l(e.filter((function(data){return data.internalName===c})),[function(e){return-e.sequence}]))||void 0===t?void 0:t[0]}:function(e){return e.find((function(data){return data.internalName===c}))}:c,data=filter(n);if(data){var h=d(data),j=JSON.stringify(h)||"undefined";j!==m&&(m=j,f(h))}else(null==n?void 0:n.length)?null==v||v(n):null==y||y()}catch(n){w?w(n):e("[$rClientMission] Error processing ".concat(t,":\n").concat(n))}}))}}var x={onUpdated:j("mission"),onSeriesUpdated:j("series"),optInto:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:{},n=t.seriesId,o=void 0===n?"":n,r=t.internalName,l=void 0===r?"":r,c=t.timeout,f=void 0===c?15e3:c,h=t.confirmOptIn,v=void 0!==h&&h,y=t.andLog,j=void 0!==y&&y,k=j?e:function(e){return e},_=[];return Object(C.a)((function(){return new Promise(function(){var e=d()(m.a.mark((function e(t,n){return m.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:if(e.prev=0,!l||!o){e.next=5;break}throw new Error("You must provide either an id (".concat(o,") or an internal name (").concat(l,"), not both."));case 5:if(l||o){e.next=7;break}throw new Error("You must provide either an id or an internal name.");case 7:if(o){e.next=11;break}return e.next=10,new Promise((function(e,t){var n=x.onSeriesUpdated(l,(function(e){return e.id}),(function(t){n(),e(t)}),{onMissing:function(){n(),t(new Error("Can't opt into series with internal name of ".concat(l," because it's missing.")))}});_.push(n)}));case 10:o=e.sent;case 11:w.inject._sendMessage({messageType:"rcp-fe-lol-missions-opt-series",data:{seriesId:o,confirmOptIn:v}}),_.push(x.onSeriesUpdated((function(data){return data.find((function(e){return e.id==o||e.internalName==l}))}),(function(e){var t=e.status;return"ACTIVE"===k(t,"opting into",o)}),(function(e){e&&t()}),{onMissing:function(){n(new Error("Mission Series ".concat(o," was not present, so it failed to be opted into.")))}})),e.next=18;break;case 15:e.prev=15,e.t0=e.catch(0),n(e.t0);case 18:case"end":return e.stop()}}),e,null,[[0,15]])})));return function(t,n){return e.apply(this,arguments)}}())}),f,"Timed out waiting for Mission Series to become opted into.")().finally((function(){_.forEach((function(e){return e()}))}))}}}.call(this,n(36).logAndReturn,n(94),n(278),n(1240))},,,,,,function(e,t){function n(e){return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}))}n.keys=function(){return[]},n.resolve=n,e.exports=n,n.id=1245},function(e,t,n){var map={"./eager-video-loader.plugin.ts":946,"./gsap-after-preload.plugin.ts":1247,"./is.plugin.ts":392,"./log.plugin.ts":1248,"./my18n.plugin.ts":1249,"./perfect-scrollbar-container.component.ts":1250,"./play-ambience.plugin.ts":386,"./play-audio-asset.plugin.ts":1251,"./project-config.plugin.ts":128,"./qa-log.plugin.ts":1252,"./qa-mode-ab-test.component.vue":1377,"./qa-mode-ambient-audio.component.vue":1381,"./qa-mode-audio.component.vue":1344,"./qa-mode-hub-phase.component.vue":1378,"./qa-mode-intro-behavior.component.vue":1345,"./qa-mode-locale.component.vue":1346,"./qa-mode-log.component.vue":1347,"./qa-mode-motion.component.vue":1382,"./qa-mode-owned-items.component.vue":1348,"./qa-state.plugin.ts":237,"./r-client-settings.plugin.ts":188,"./responsive-bg.plugin.ts":1265,"./responsive-image.plugin.ts":395,"./scaling-svg.component.ts":1266,"./server-only.component.vue":1349,"./state.plugin.ts":1269,"./svg-image.plugin.ts":1270,"./sync-hover.directive.ts":1297,"./watermark-overlay.component.vue":1350};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1246},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return f}));n(8),n(33),n(111);var o=n(301),r=n(193),l=n(11),c=n(104),d=n.n(c),f=function(e){return function(t,n){var c=new l.c({onComplete:function(){c.kill(),null==n||n()},paused:!0});Object(o.a)(c,t,e),Object(r.a)(t).finally((function(){d()((function(){return c.play()}))}))}}},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return o}));var o=n(134).a},function(e,t,n){"use strict";n.r(t),n.d(t,"name",(function(){return r})),n.d(t,"inject",(function(){return l}));var o=n(10),r="my18n",l=o.a.observable({t:function(e){return e}});t.default=function(e){l.t=e.i18n.t.bind(e.i18n)}},function(e,t,n){"use strict";n.r(t);n(15),n(21),n(20),n(24),n(38);var o=n(16),r=n.n(o),l=n(13),c=n.n(l),d=n(3),f=n.n(d),m=n(4),h=n.n(m),v=n(5),y=n.n(v),C=n(7),w=n.n(C),j=n(1),x=n.n(j),k=n(2),_=n.n(k),O=(n(12),n(8),n(17),n(122),n(0)),L=n(937);function P(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}function M(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?P(Object(source),!0).forEach((function(t){c()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):P(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}function R(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=x()(e);if(t){var r=x()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return w()(this,n)}}var S=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":_()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},A=["ps-scroll-y","ps-scroll-x"],E=function(e){y()(n,e);var t=R(n);function n(){var e;return f()(this,n),(e=t.apply(this,arguments)).ps=null,e}return h()(n,[{key:"target",get:function(){return this.$el.querySelector(this.selector)||this.$el}},{key:"mounted",value:function(){var e=this;this.ps=new L.a(this.target,this.options);var t=A.reduce((function(t,n){return M(M({},t),{},c()({},n,(function(t){e.$emit(n,{event:t,ps:e.ps})})))}),{});Object.entries(t).forEach((function(t){var n=r()(t,2),o=n[0],l=n[1];e.target.addEventListener(o,l)})),this.$once("hook:beforeDestroy",(function(){e.ps.destroy(),Object.entries(t).forEach((function(t){var n=r()(t,2),o=n[0],l=n[1];e.target.removeEventListener(o,l)}))}))}},{key:"render",value:function(e){var t=this;return this.$scopedSlots.default({update:function(){var e;null===(e=t.ps)||void 0===e||e.update()}})}}]),n}(O.h);S([Object(O.e)({type:String,default:".perfect-scrollbar"})],E.prototype,"selector",void 0),S([Object(O.e)({type:Object,default:function(){return{wheelPropagation:!1}}})],E.prototype,"options",void 0),E=S([O.a],E),t.default=E},function(e,t,n){"use strict";n.r(t),function(e){n.d(t,"inject",(function(){return l}));var o=n(114),r=n(26),l=o.inject.getPlayAudioAsset({category:e.audioAssetList,requireAsset:!r.inject.isProd&&!r.inject.inBrowser})}.call(this,n(128).inject)},function(e,t,n){"use strict";n.r(t),function(e,o,r,l,c,d){n.d(t,"inject",(function(){return B}));n(15);var f=n(18),m=n.n(f),h=n(3),v=n.n(h),y=n(4),C=n.n(y),w=n(5),j=n.n(w),x=n(7),k=n.n(x),_=n(1),O=n.n(_),L=n(2),P=n.n(L),M=(n(12),n(8),n(1254),n(81),n(1255),n(56),n(31),n(25),n(269),n(24),n(17),n(21),n(27),n(93),n(82),n(0)),R=n(26);function S(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=O()(e);if(t){var r=O()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return k()(this,n)}}var A=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":P()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},E={log:"Console Logs",warn:"Console Warnings",error:"Console Errors",info:"Console Info",debug:"Console Debug",ping:"Ping Meta Data",youtubeId:"YouTube IDs",storeItem:"Store IDs"},T={maxItems:100,maxFresh:1,freshFor:3e3},$=function(t){j()(f,t);var n=S(f);function f(){var e;return v()(this,f),(e=n.apply(this,arguments)).logLabelByType=E,e.logByType={},e.lastLogId=0,e}return C()(f,[{key:"mounted",value:function(){this.includeConsole(),"XMLHttpRequest"in e&&this.includePings(),this.includeYoutubeIds(),this.includeStoreItems()}},{key:"getFreshCount",value:function(e){var t=new Date;return Math.min(e.options.maxFresh,e.items.findIndex((function(e){var n=e.freshUntil;return!(n&&new Date(n)>t)})))}},{key:"zeroPad",value:function(e){var t,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;return null===(t=e.toString)||void 0===t?void 0:t.call(e).padStart(n,"0")}},{key:"formatTimestamp",value:function(e){var time=[e.getHours(),e.getMinutes(),e.getSeconds()].map(this.zeroPad).join(":"),t=this.zeroPad(e.getMilliseconds(),3);return"".concat(time,".").concat(t)}},{key:"deFresh",value:function(e){M.h.delete(e,"freshUntil")}},{key:"freshCountByType",get:function(){var e=this;return o(r(this.logByType,(function(t,n){return[n,e.getFreshCount(t)]})))}},{key:"freshCount",get:function(){return l(Object.values(this.freshCountByType||{}))}},{key:"clearLog",value:function(e){this.logByType[e].items=[]}},{key:"appendLog",value:function(e,data){this.$nextTick((function(){var t,n=this,o=Math.random();(null===(t=this.logByType)||void 0===t?void 0:t[e])||M.h.set(this.logByType,e,{items:[],options:T});var r=this.logByType[e],l=c(data).map((function(e){try{return"string"==typeof e?e:JSON.stringify(e,void 0,2)}catch(t){return JSON.stringify(function e(t){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:2;return d(d(t,(function(t){try{return JSON.stringify(t)}catch(o){return n?JSON.stringify(e(t,--n)):JSON.stringify("...")}})),(function(e){return e&&JSON.parse(e)}))}(e),void 0,2)}})).join("\n"),f=new Date,m={id:++this.lastLogId,data:l,type:e,nonce:o,time:this.formatTimestamp(f),freshUntil:f.valueOf()+r.options.freshFor};r.items.unshift(m);var h=r.options,v=h.maxItems,y=h.maxFresh;this.getFreshCount(r)>y&&this.deFresh(r.items[y]),v&&(r.items.length=Math.min(r.items.length,v));var C=this.logByType[e].options,w=C.removeAfter,j=C.freshFor;j&&setTimeout((function(){n.deFresh(m)}),j),w&&setTimeout((function(){n.logByType[e].items=n.logByType[e].items.filter((function(i){return i.nonce!==o}))}),w)}))}},{key:"includeConsole",value:function(){var e=this,t={error:"log",warn:"log",info:"log",log:"log",debug:"log"};Object.keys(t).forEach((function(n){var o=console[n];console[n]=function(){for(var r=arguments.length,l=new Array(r),c=0;c<r;c++)l[c]=arguments[c];o.apply(console,l);try{var d=t[n],data=m()(l.map((function(e){return e instanceof Error?e.toString():e})));e.appendLog(d,data)}catch(e){}}}))}},{key:"includePings",value:function(){var e=XMLHttpRequest.prototype.open,t=this;XMLHttpRequest.prototype.open=function(){for(var n=arguments.length,o=new Array(n),r=0;r<n;r++)o[r]=arguments[r];var l="".concat(o[1]);try{var c;if(/^https?\:\/\/ekg\.riotgames\.com\/m\.gif/gi.test(l)||R.inject.isDev&&/^https?\:\/\/(test\.)?ekg\.riotgames\.com\/m\.gif/gi.test(l))l.substring(l.indexOf("?")+1).split("&").forEach((function(param){var e=param.split("="),t=e[0],n=e[1];"d"==t&&(c=JSON.parse(decodeURIComponent(n)))})),t.appendLog("ping",Object.keys(c).sort().reduce((function(e,param){return c[param].length>50&&(c[param]=c[param].substring(0,50)+"..."),e[param]=c[param],e}),{}))}catch(e){console.error(e)}finally{e.apply(this,arguments)}}}},{key:"includeYoutubeIds",value:function(){var e=this;this.monkeyPatchSendMessage((function(t){var n=t.messageType,data=t.data;if("rcp-fe-lol-home-open-full-page-modal"==n){var o=data.url,r=null==o?void 0:o.match(/(?:https?:\/\/)?(?:www\.)?youtu(?:be\.com|\.be)\/(?:embed\/)?([^\?\/]+)[\/\?]?/i);r&&r.length&&r[1]&&e.appendLog("youtubeId",r[1])}}))}},{key:"includeStoreItems",value:function(){var e=this;this.monkeyPatchSendMessage((function(t){var n=t.messageType,data=t.data;"rcp-fe-lol-home-open-paw"!=n&&"rcp-fe-lol-home-open-store"!=n||e.appendLog("storeItem",data)}))}},{key:"monkeyPatchSendMessage",value:function(t){if("RClientWindowMessenger"in e){var n=RClientWindowMessenger.sendMessage,o=this;RClientWindowMessenger.sendMessage=function(){try{t.apply(o,arguments)}catch(e){console.error(e)}finally{n.apply(this,arguments)}}}}}]),f}(M.h.extend({render:function(){}}));$=A([M.a],$);var B=R.inject.qaEligible&&(new $).$mount()}.call(this,n(40),n(102),n(103),n(393),n(87),n(94))},,,,,,,,,,,,,function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return r}));var o=n(395),r=function(){var image=o.inject.apply(void 0,arguments);return image&&"url(".concat(image,")")}},function(e,t,n){"use strict";n.r(t),function(e,o){n(15);var r=n(18),l=n.n(r),c=n(16),d=n.n(c),f=n(3),m=n.n(f),h=n(4),v=n.n(h),y=n(5),C=n.n(y),w=n(7),j=n.n(w),x=n(1),k=n.n(x),_=n(2),O=n.n(_),L=(n(12),n(8),n(27),n(82),n(25),n(56),n(31),n(1267),n(168),n(72),n(175),n(52),n(99),n(297)),P=n(0);function M(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=k()(e);if(t){var r=k()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return j()(this,n)}}var R=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":O()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},S=function(t){C()(r,t);var n=M(r);function r(){return m()(this,r),n.apply(this,arguments)}return v()(r,[{key:"mounted",value:function(){null!==this.defaultWidth&&null!==this.defaultHeight||console.error("scaling-svg.component: Missing defaultWidth and/or defaultHeight.")}},{key:"update",value:function(t){var n=this,o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getExtendedX,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:this.getExtendedY;if(/^rotate\((\S+\s+){2}\S+\)$/.test(t)){var c=t.match(/^rotate\((\S+)\s+(\S+)\s+(\S+)\)$/),f=d()(c,4),m=f[1],h=f[2],v=f[3];return"rotate(".concat(m," ").concat(o(h)," ").concat(r(v),")")}return l()(t.matchAll(/([A-Za-df-z])([^A-Za-df-z]+)?/g)).map((function(t){var c=d()(t,3),f=(c[0],c[1]),m=c[2];return[f].concat(l()(m?[m.trim().replace(/([A-Za-df-z\d\.])-/g,"$1 -").split(/\s+/).map((function(t,i){var l=/[a-df-z]/.test(f)&&!/[vhml]/i.test(f)?t:/V/i.test(f)||i%2==1?(null==r?void 0:r(t))||t:(null==o?void 0:o(t))||t;return n.debug&&e(l,f,i,t,"=>"),l})).join(" ")]:[])).join(" ")})).join(" ")}},{key:"coords",value:function(e){var t=this,n=e.x,r=void 0===n?0:n,l=e.y,c=void 0===l?0:l;return o(e,(function(e,n){if(function(e){return Number.isFinite(e)}(e))switch(n){case"width":return t.getExtendedX(r+e)-t.getExtendedX(r);case"height":return t.getExtendedY(c+e)-t.getExtendedY(c);case"x":return t.getExtendedX(r);case"y":return t.getExtendedY(c)}return e}))}},{key:"defaultWidth",get:function(){return null}},{key:"defaultHeight",get:function(){return null}},{key:"svgWidth",get:function(){return Object(L.a)(this.width)}},{key:"svgHeight",get:function(){return Object(L.a)(this.height)}},{key:"offsetWidth",get:function(){return this.svgWidth-this.defaultWidth}},{key:"offsetHeight",get:function(){return this.svgHeight-this.defaultHeight}},{key:"getSplitpointX",get:function(){return.5*this.defaultWidth}},{key:"getSplitpointY",get:function(){return.5*this.defaultHeight}},{key:"heightRatio",get:function(){return this.svgHeight/this.defaultHeight}},{key:"widthRatio",get:function(){return this.svgWidth/this.defaultWidth}},{key:"getExtendedX",value:function(e){var t="string"==typeof e?parseFloat(e):e;return t>this.getSplitpointX?this.svgWidth-(this.defaultWidth-t):t}},{key:"getExtendedY",value:function(e){var t="string"==typeof e?parseFloat(e):e;return t>this.getSplitpointY?this.svgHeight-(this.defaultHeight-t):t}},{key:"getScaledX",value:function(e){return e*this.widthRatio}},{key:"getScaledY",value:function(e){return e*this.heightRatio}}]),r}(P.h);R([Object(P.e)(Number)],S.prototype,"width",void 0),R([Object(P.e)(Number)],S.prototype,"height",void 0),R([Object(P.e)(Boolean)],S.prototype,"debug",void 0),S=R([P.a],S),t.default=S}.call(this,n(36).logAndReturn,n(94))},,,function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return O}));var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return c()(this,n),t.apply(this,arguments)}return r()(n)}(j.h.extend({render:function(){}})),O=(new(_=k([j.a],_))).$mount()},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return o}));var o=n(396).default},function(e,t){e.exports='<svg viewBox="0 0 203 44" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.29853 29.5482C4.98641 29.5482 2.87681 28.5171 1.49291 26.6746C-0.194763 24.4265 -0.464795 21.367 0.750333 18.6794C3.06245 13.6422 8.90185 11.2589 19.7199 10.9546C25.4748 10.8025 31.2467 11.6307 37.3898 12.5266C45.7607 13.7436 54.4016 14.9945 63.7851 13.7943C77.2865 12.0702 80.0375 8.80789 80.4763 7.03305C80.8307 5.56247 80.5606 4.14261 79.7505 3.29745C79.1092 2.63823 78.181 2.40159 77.084 2.62133C74.5862 3.12843 74.4681 6.30626 74.4681 6.44148L71.9366 6.39072C71.9703 4.54827 72.9998 0.880299 76.5777 0.136556C78.5523 -0.269121 80.3244 0.237953 81.5732 1.5395C82.9909 3.02699 83.4972 5.29203 82.9402 7.62468C81.877 11.9857 75.717 14.8255 64.1227 16.313C54.4185 17.5469 45.5919 16.2622 37.0523 15.0283C31.0273 14.1493 25.3398 13.338 19.8211 13.4901C10.1001 13.7775 4.93578 15.7044 3.07934 19.7443C2.2355 21.5699 2.42114 23.6489 3.55188 25.1533C4.59824 26.5563 6.23531 27.2155 8.10863 26.9451C12.0072 26.3873 11.6696 22.2798 11.6528 22.1108L14.1674 21.8741C14.3868 24.1729 13.4586 28.7368 8.46303 29.4468C8.07487 29.4975 7.70359 29.5313 7.31542 29.5313L7.29853 29.5482Z" fill="#C3A064"></path><path d="M27.0603 23.1384C23.7862 23.1384 21.2716 22.4453 21.0859 22.3946L21.7779 19.9606C21.7779 19.9606 28.1067 21.6847 33.2203 19.4535C36.5113 18.0336 38.4859 15.5488 40.5786 12.9457C41.8443 11.3568 43.1608 9.71719 44.8147 8.1959C49.4389 3.98699 54.6707 1.9755 58.0292 1.48531C62.1977 0.876792 64.5943 3.07424 65.1174 5.52521C65.6912 8.24663 63.9529 10.9343 61.2357 11.509C58.8392 12.033 56.4428 10.7314 55.5145 8.43257L57.8604 7.48599C58.3161 8.61851 59.5144 9.27774 60.6957 9.02419C62.0459 8.73683 62.9235 7.40146 62.6365 6.0492C62.299 4.4772 60.6451 3.66586 58.3836 4.00393C55.3964 4.44341 50.7046 6.26892 46.5192 10.0891C45.0003 11.4751 43.7514 13.0302 42.5532 14.5346C40.3592 17.2729 38.0977 20.1127 34.2329 21.7861C31.8364 22.8341 29.2711 23.1384 27.0603 23.1384V23.1384Z" fill="#C3A064"></path><path d="M195.694 29.5469C195.322 29.5469 194.934 29.5131 194.546 29.4624C189.534 28.7525 188.622 24.1886 188.825 21.8897L191.339 22.1264C191.306 22.5659 191.086 26.4198 194.883 26.9607C196.723 27.2142 198.377 26.5719 199.44 25.169C200.571 23.6646 200.74 21.5854 199.913 19.7599C198.056 15.72 192.892 13.7931 183.171 13.5057C177.669 13.3536 171.965 14.165 165.94 15.0439C157.4 16.2779 148.59 17.5625 138.869 16.3285C127.258 14.8411 121.098 12.0013 120.052 7.6403C119.478 5.30766 119.984 3.02571 121.419 1.55513C122.668 0.253578 124.457 -0.253496 126.414 0.152181C129.992 0.87902 131.022 4.56389 131.056 6.40635L128.524 6.45706C128.524 6.32183 128.389 3.14406 125.908 2.63696C124.794 2.40031 123.866 2.63695 123.242 3.31308C122.432 4.15824 122.161 5.5781 122.516 7.04868C122.955 8.84042 125.689 12.1027 139.207 13.81C148.574 14.9932 157.231 13.7424 165.602 12.5422C171.745 11.6464 177.551 10.8181 183.272 10.9702C194.09 11.2745 199.93 13.6579 202.242 18.695C203.474 21.3657 203.187 24.4252 201.499 26.6902C200.132 28.5327 198.023 29.5638 195.71 29.5638L195.694 29.5469Z" fill="#C3A064"></path><path d="M175.93 23.1436C173.719 23.1436 171.171 22.8224 168.758 21.7913C164.893 20.1179 162.631 17.2782 160.437 14.5398C159.239 13.0354 157.99 11.4803 156.471 10.0943C152.269 6.27414 147.594 4.44864 144.607 4.00915C142.362 3.68799 140.692 4.48244 140.354 6.07135C140.219 6.73057 140.354 7.38979 140.708 7.9645C141.08 8.52231 141.637 8.91107 142.295 9.0632C143.476 9.29985 144.691 8.67442 145.13 7.525L147.476 8.47158C146.565 10.7535 144.168 12.0382 141.755 11.548C140.438 11.2775 139.308 10.5 138.582 9.36745C137.839 8.23493 137.586 6.88267 137.873 5.56422C138.396 3.11325 140.793 0.915857 144.961 1.52437C148.32 2.01457 153.552 4.02605 158.176 8.23496C159.847 9.75625 161.146 11.3959 162.412 12.9848C164.505 15.6048 166.479 18.0726 169.77 19.4925C174.901 21.7237 181.145 20.0165 181.213 19.9996L181.905 22.4337C181.736 22.4844 179.204 23.1774 175.93 23.1774V23.1436Z" fill="#C3A064"></path><path d="M101.5 43.9985L100.606 43.1196C100.488 43.0012 97.686 40.2291 94.9014 35.8343C92.0829 31.4225 90.8678 27.332 90.8172 27.146L90.6484 26.5544L91.0028 26.0642C91.2054 25.7599 91.5597 25.3374 91.9817 24.8134C93.855 22.5314 97.3147 18.2718 97.8885 13.6065C98.4117 9.24549 97.5848 7.74111 97.0279 6.74382L96.4709 5.6789L96.876 5.07036C97.2979 4.44494 98.1417 3.22796 99.2387 2.21376C99.745 1.74047 100.201 1.36858 100.589 1.08122L101.331 0.523438L102.074 1.08122C102.462 1.36858 102.918 1.74047 103.424 2.21376C104.538 3.24486 105.382 4.44494 105.804 5.07036L106.209 5.6789L105.787 6.49028C105.281 7.45376 104.538 8.90743 105.112 13.6065C105.686 18.2718 109.145 22.5314 111.019 24.8134C111.441 25.3374 111.795 25.7599 111.998 26.0642L112.352 26.5544L112.183 27.146C112.133 27.3151 110.917 31.4056 108.099 35.8343C105.314 40.2291 102.513 43.0012 102.395 43.1196L101.5 43.9985ZM93.4499 27.0446C93.8719 28.2954 95.0364 31.3211 97.0447 34.482C98.7493 37.1696 100.488 39.2487 101.5 40.3643C102.513 39.2318 104.251 37.1696 105.956 34.482C107.964 31.3042 109.128 28.2785 109.55 27.0446C109.415 26.8586 109.247 26.6558 109.061 26.4361C107.036 23.9513 103.255 19.3198 102.597 13.9277C102.023 9.17788 102.665 7.13256 103.272 5.86481C102.901 5.34081 102.344 4.66469 101.72 4.07308C101.585 3.95475 101.466 3.83646 101.348 3.73504C101.23 3.83646 101.095 3.95475 100.96 4.07308C100.336 4.64779 99.7956 5.32395 99.4243 5.84795C100.099 7.09879 100.994 9.19479 100.42 13.9277C99.7619 19.3367 95.9984 23.9513 93.9563 26.4361C93.7706 26.6558 93.6018 26.8586 93.4668 27.0446H93.4499Z" fill="#C3A064"></path><path d="M96.9773 28.3459C97.0448 29.5799 99.7957 35.31 101.483 36.8144C103.171 35.31 105.922 29.5799 105.989 28.3459C106.057 27.112 101.483 19.7422 101.483 19.7422C101.483 19.7422 96.9098 27.112 96.9773 28.3459Z" fill="#9825DE"></path><path d="M84.1031 25.9118L83.698 25.8442C83.5798 25.8273 80.7446 25.3709 78.6518 23.3594C76.5591 21.331 76.0866 18.4068 76.0697 18.2716L75.8672 16.8517L77.3017 16.8179C77.3017 16.8179 81.6728 16.6489 85.4701 13.3527C89.5543 9.81996 90.9381 7.26754 90.9381 7.25064L93.1321 3.10938L93.3178 7.79155C93.3178 8.0113 93.5034 13.2006 90.8031 18.4744C88.0354 23.9004 84.5756 25.6583 84.4406 25.7428L84.0862 25.9287L84.1031 25.9118ZM78.9556 19.1675C79.2256 19.8943 79.6814 20.8071 80.4239 21.5339C81.5209 22.5819 82.9723 23.0721 83.6811 23.2411C84.5081 22.6833 86.7021 20.9761 88.5754 17.3081C89.4867 15.5163 90.0437 13.7077 90.3643 12.1695C89.5205 13.0823 88.4572 14.1303 87.1409 15.2797C84.103 17.8997 80.8289 18.8294 78.9556 19.1675V19.1675Z" fill="#C3A064"></path><path d="M118.888 25.9117L118.533 25.7258C118.381 25.6582 114.939 23.8833 112.171 18.4574C109.471 13.1836 109.639 7.99428 109.656 7.77454L109.842 3.00781L112.036 7.25054C112.036 7.25054 113.42 9.83676 117.504 13.3526C121.318 16.6488 125.638 16.8009 125.689 16.8178L127.107 16.8685L126.904 18.2715C126.887 18.3898 126.432 21.3309 124.322 23.3593C122.246 25.3708 119.394 25.8272 119.276 25.8441L118.871 25.9117H118.888ZM112.626 12.1863C112.947 13.7245 113.487 15.5331 114.415 17.3249C116.289 20.9929 118.483 22.7001 119.327 23.2579C120.035 23.072 121.487 22.5987 122.584 21.5507C123.326 20.8407 123.782 19.9111 124.052 19.1842C122.162 18.8462 118.905 17.9165 115.867 15.2965C114.55 14.164 113.487 13.116 112.643 12.1863H112.626Z" fill="#C3A064"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 44 49" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M28.4666 20.0007C27.2326 20.0682 21.5025 22.8191 19.9981 24.5068C21.5025 26.1945 27.2326 28.9454 28.4666 29.0129C29.7005 29.0804 37.0703 24.5068 37.0703 24.5068C37.0703 24.5068 29.7005 19.9332 28.4666 20.0007Z" fill="#45DAFF"></path><path d="M28.4666 20.0007C27.2326 20.0682 21.5025 22.8191 19.9981 24.5068C21.5025 26.1945 27.2326 28.9454 28.4666 29.0129C29.7005 29.0804 37.0703 24.5068 37.0703 24.5068C37.0703 24.5068 29.7005 19.9332 28.4666 20.0007Z" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M28.4666 20.0007C27.2326 20.0682 21.5025 22.8191 19.9981 24.5068C21.5025 26.1945 27.2326 28.9454 28.4666 29.0129C29.7005 29.0804 37.0703 24.5068 37.0703 24.5068C37.0703 24.5068 29.7005 19.9332 28.4666 20.0007Z" stroke="url(#button-decor-cl-paint0_linear_3655_7833)" stroke-opacity="0.5" stroke-width="2" stroke-miterlimit="10"></path><path d="M15.9535 32.8872C13.1961 36.4729 16.2212 39.1045 18.4352 38.9968C20.6493 38.8891 21.6792 37.3347 21.9388 35.5726C22.1983 33.8105 21.7847 31.7098 17.681 29.1475C13.5773 26.5851 7 25 7 25" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M15.9535 16.5495C13.1961 12.7076 16.2212 9.888 18.4352 10.0034C20.6493 10.1188 21.6792 11.7842 21.9388 13.6721C22.1983 15.5601 21.7847 17.8109 17.681 20.5563C13.5773 23.3016 7 25 7 25" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><defs><linearGradient id="button-decor-cl-paint0_linear_3655_7833" x1="37.0703" y1="24.5068" x2="19.9981" y2="24.5068" gradientUnits="userSpaceOnUse"><stop stop-color="#E8D590"></stop><stop offset="0.5" stop-color="#9E844C"></stop><stop offset="1" stop-color="#E8D590"></stop></linearGradient></defs></svg>'},function(e,t){e.exports='<svg viewBox="0 0 203 44" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M195.701 14.4518C198.014 14.4518 200.123 15.4829 201.507 17.3254C203.195 19.5735 203.465 22.633 202.25 25.3206C199.938 30.3578 194.098 32.7411 183.28 33.0454C177.525 33.1975 171.753 32.3693 165.61 31.4734C157.239 30.2564 148.598 29.0055 139.215 30.2057C125.713 31.9298 122.963 35.1921 122.524 36.9669C122.169 38.4375 122.439 39.8574 123.249 40.7025C123.891 41.3618 124.819 41.5984 125.916 41.3787C128.414 40.8716 128.532 37.6937 128.532 37.5585L131.063 37.6093C131.03 39.4517 130 43.1197 126.422 43.8634C124.448 44.2691 122.676 43.762 121.427 42.4605C120.009 40.973 119.503 38.708 120.06 36.3753C121.123 32.0143 127.283 29.1745 138.877 27.687C148.581 26.4531 157.408 27.7378 165.948 28.9717C171.973 29.8507 177.66 30.662 183.179 30.5099C192.9 30.2225 198.064 28.2956 199.921 24.2557C200.765 22.4301 200.579 20.3511 199.448 18.8467C198.402 17.4437 196.765 16.7845 194.891 17.0549C190.993 17.6127 191.33 21.7202 191.347 21.8892L188.833 22.1259C188.613 19.8271 189.541 15.2632 194.537 14.5532C194.925 14.5025 195.296 14.4687 195.685 14.4687L195.701 14.4518Z" fill="#C3A064"></path><path d="M175.94 20.8616C179.214 20.8616 181.728 21.5547 181.914 21.6054L181.222 24.0394C181.222 24.0394 174.893 22.3153 169.78 24.5465C166.489 25.9664 164.514 28.4512 162.421 31.0543C161.156 32.6432 159.839 34.2828 158.185 35.8041C153.561 40.013 148.329 42.0245 144.971 42.5147C140.802 43.1232 138.406 40.9258 137.883 38.4748C137.309 35.7534 139.047 33.0657 141.764 32.491C144.161 31.967 146.557 33.2686 147.485 35.5674L145.14 36.514C144.684 35.3815 143.486 34.7223 142.304 34.9758C140.954 35.2632 140.077 36.5985 140.363 37.9508C140.701 39.5228 142.355 40.3341 144.616 39.9961C147.604 39.5566 152.295 37.7311 156.481 33.9109C158 32.5249 159.249 30.9698 160.447 29.4654C162.641 26.7271 164.902 23.8873 168.767 22.2139C171.164 21.1659 173.729 20.8616 175.94 20.8616V20.8616Z" fill="#C3A064"></path><path d="M7.30641 14.4531C7.6777 14.4531 8.06586 14.4869 8.45402 14.5376C13.4664 15.2475 14.3778 19.8114 14.1753 22.1103L11.6607 21.8736C11.6944 21.4341 11.9138 17.5802 8.11652 17.0393C6.27695 16.7858 4.62301 17.4281 3.55977 18.831C2.42902 20.3354 2.26026 22.4146 3.08722 24.2401C4.94367 28.28 10.108 30.2069 19.829 30.4943C25.3308 30.6464 31.0352 29.835 37.0602 28.9561C45.5998 27.7221 54.4095 26.4375 64.1305 27.6715C75.7418 29.1589 81.9018 31.9987 82.9481 36.3597C83.5219 38.6923 83.0156 40.9743 81.5811 42.4449C80.3322 43.7464 78.5433 44.2535 76.5856 43.8478C73.0077 43.121 71.9782 39.4361 71.9444 37.5937L74.476 37.5429C74.476 37.6782 74.611 40.8559 77.0919 41.363C78.2058 41.5997 79.134 41.3631 79.7584 40.6869C80.5685 39.8418 80.8385 38.4219 80.4841 36.9513C80.0453 35.1596 77.3113 31.8973 63.793 30.19C54.4264 29.0068 45.7686 30.2576 37.3977 31.4578C31.2546 32.3536 25.449 33.1819 19.7277 33.0298C8.90974 32.7255 3.07034 30.3421 0.758218 25.305C-0.473787 22.6343 -0.186878 19.5748 1.5008 17.3098C2.86782 15.4673 4.9774 14.4362 7.28952 14.4362L7.30641 14.4531Z" fill="#C3A064"></path><path d="M27.0698 20.8564C29.2806 20.8564 31.829 21.1776 34.2424 22.2087C38.1072 23.8821 40.3687 26.7218 42.5627 29.4602C43.7609 30.9646 45.0098 32.5197 46.5287 33.9057C50.731 37.7259 55.4059 39.5514 58.393 39.9908C60.6377 40.312 62.3085 39.5176 62.646 37.9287C62.781 37.2694 62.646 36.6102 62.2916 36.0355C61.9203 35.4777 61.3634 35.0889 60.7052 34.9368C59.5238 34.7002 58.3087 35.3256 57.8699 36.475L55.524 35.5284C56.4354 33.2465 58.8318 31.9618 61.2452 32.452C62.5616 32.7225 63.6924 33.5 64.4181 34.6326C65.1606 35.7651 65.4138 37.1173 65.1269 38.4358C64.6037 40.8867 62.2072 43.0841 58.0386 42.4756C54.6802 41.9854 49.4484 39.9739 44.8242 35.765C43.1534 34.2437 41.8538 32.6041 40.5881 31.0152C38.4953 28.3952 36.5208 25.9274 33.2298 24.5075C28.0993 22.2763 21.8549 23.9835 21.7874 24.0004L21.0954 21.5663C21.2642 21.5156 23.7957 20.8226 27.0698 20.8226V20.8564Z" fill="#C3A064"></path><path d="M101.5 0.00148925L102.394 0.880439C102.512 0.998762 105.314 3.77089 108.099 8.16573C110.917 12.5775 112.132 16.668 112.183 16.854L112.352 17.4456L111.997 17.9358C111.795 18.2401 111.44 18.6626 111.018 19.1866C109.145 21.4686 105.685 25.7282 105.111 30.3935C104.588 34.7545 105.415 36.2589 105.972 37.2562L106.529 38.3211L106.124 38.9296C105.702 39.5551 104.858 40.772 103.761 41.7862C103.255 42.2595 102.799 42.6314 102.411 42.9188L101.669 43.4766L100.926 42.9188C100.538 42.6314 100.082 42.2595 99.5759 41.7862C98.462 40.7551 97.6182 39.5551 97.1963 38.9296L96.7912 38.3211L97.2131 37.5097C97.7194 36.5462 98.462 35.0926 97.8882 30.3935C97.3144 25.7282 93.8547 21.4686 91.9813 19.1866C91.5594 18.6626 91.205 18.2401 91.0025 17.9358L90.6481 17.4456L90.8168 16.854C90.8675 16.6849 92.0826 12.5944 94.901 8.16573C97.6857 3.77089 100.487 0.998762 100.605 0.880439L101.5 0.00148925ZM109.55 16.9554C109.128 15.7046 107.964 12.6789 105.955 9.51797C104.251 6.83035 102.512 4.75129 101.5 3.63567C100.487 4.76819 98.7489 6.83035 97.0444 9.51797C95.036 12.6958 93.8715 15.7215 93.4496 16.9554C93.5846 17.1414 93.7534 17.3442 93.939 17.5639C95.9643 20.0487 99.7446 24.6802 100.403 30.0723C100.977 34.8221 100.335 36.8674 99.7278 38.1352C100.099 38.6592 100.656 39.3353 101.28 39.9269C101.415 40.0452 101.534 40.1635 101.652 40.265C101.77 40.1635 101.905 40.0452 102.04 39.9269C102.664 39.3522 103.204 38.6761 103.576 38.1521C102.901 36.9012 102.006 34.8052 102.58 30.0723C103.238 24.6633 107.002 20.0487 109.044 17.5639C109.229 17.3442 109.398 17.1414 109.533 16.9554H109.55Z" fill="#C3A064"></path><path d="M106.023 15.6541C105.955 14.4201 103.204 8.68997 101.517 7.18559C99.8289 8.68997 97.078 14.4201 97.0105 15.6541C96.943 16.888 101.517 24.2578 101.517 24.2578C101.517 24.2578 106.09 16.888 106.023 15.6541Z" fill="#45DAFF"></path><path d="M118.897 18.0882L119.302 18.1558C119.42 18.1727 122.255 18.6291 124.348 20.6406C126.441 22.669 126.913 25.5932 126.93 25.7284L127.133 27.1483L125.698 27.1821C125.698 27.1821 121.327 27.3511 117.53 30.6473C113.446 34.18 112.062 36.7325 112.062 36.7494L109.868 40.8906L109.682 36.2084C109.682 35.9887 109.497 30.7994 112.197 25.5256C114.965 20.0996 118.424 18.3417 118.559 18.2572L118.914 18.0713L118.897 18.0882ZM124.044 24.8325C123.774 24.1057 123.319 23.1929 122.576 22.4661C121.479 21.4181 120.028 20.9279 119.319 20.7589C118.492 21.3167 116.298 23.0239 114.425 26.6919C113.513 28.4837 112.956 30.2923 112.636 31.8305C113.48 30.9177 114.543 29.8697 115.859 28.7203C118.897 26.1003 122.171 25.1706 124.044 24.8325V24.8325Z" fill="#C3A064"></path><path d="M84.1122 18.0883L84.4666 18.2742C84.6185 18.3418 88.0614 20.1167 90.8292 25.5426C93.5294 30.8164 93.3607 36.0057 93.3438 36.2255L93.1582 40.9922L90.9642 36.7495C90.9642 36.7495 89.5803 34.1632 85.4961 30.6474C81.682 27.3512 77.3615 27.1991 77.3109 27.1822L75.8933 27.1315L76.0958 25.7285C76.1126 25.6102 76.5683 22.6691 78.6779 20.6407C80.7538 18.6292 83.6059 18.1728 83.7241 18.1559L84.1291 18.0883H84.1122ZM90.3735 31.8137C90.0528 30.2755 89.5128 28.4669 88.5846 26.6751C86.7113 23.0071 84.5173 21.2999 83.6734 20.7421C82.9646 20.928 81.5132 21.4013 80.4162 22.4493C79.6736 23.1593 79.218 24.0889 78.9479 24.8158C80.8381 25.1538 84.0953 26.0835 87.1331 28.7035C88.4495 29.836 89.5128 30.884 90.3566 31.8137H90.3735Z" fill="#C3A064"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 185 104" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="8" y="3" width="149" height="98" rx="32" fill="#45DAFF"></rect><rect x="8" y="3" width="149" height="98" rx="32" fill="url(#button-event-shop-hover-paint0_linear_3685_5371)" fill-opacity="0.2"></rect><rect x="8" y="3" width="149" height="98" rx="32" fill="url(#button-event-shop-hover-paint1_linear_3685_5371)" style="mix-blend-mode:overlay"></rect><rect x="8" y="3" width="149" height="98" rx="32" fill="url(#button-event-shop-hover-paint2_radial_3685_5371)" fill-opacity="0.5"></rect><rect x="8" y="3" width="149" height="98" rx="32" stroke="url(#button-event-shop-hover-paint5_linear_3685_5371)" stroke-width="6"></rect><rect x="6" y="1" width="153" height="102" rx="33" stroke="#C3A064" stroke-width="2"></rect><path d="M10.9992 50.5753C10.9243 51.9485 7.87238 58.3257 6.00003 60C4.12768 58.3257 1.07572 51.9485 1.00082 50.5753C0.925928 49.202 6.00003 41 6.00003 41C6.00003 41 11.0741 49.202 10.9992 50.5753Z" fill="#45DAFF"></path><path d="M10.9992 50.5753C10.9243 51.9485 7.87238 58.3257 6.00003 60C4.12768 58.3257 1.07572 51.9485 1.00082 50.5753C0.925928 49.202 6.00003 41 6.00003 41C6.00003 41 11.0741 49.202 10.9992 50.5753Z" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M10.9992 50.5753C10.9243 51.9485 7.87238 58.3257 6.00003 60C4.12768 58.3257 1.07572 51.9485 1.00082 50.5753C0.925928 49.202 6.00003 41 6.00003 41C6.00003 41 11.0741 49.202 10.9992 50.5753Z" stroke="url(#button-event-shop-hover-paint3_linear_3685_5371)" stroke-opacity="0.5" stroke-width="2" stroke-miterlimit="10"></path><g filter="url(#button-event-shop-hover-filter0_d_3685_5371)"><path d="M84.88 59.2401C85.7688 52.2576 92.0275 43.4831 93.3813 41.6291C93.3813 41.6291 91.9638 37.007 88.6788 32.0679C85.3938 27.1325 82.0638 24 82.0638 24C82.0638 24 78.7338 27.1325 75.4525 32.0715C72.1675 37.0106 70.75 41.6328 70.75 41.6328C72.1038 43.4868 78.3663 52.2576 79.2513 59.2437C80.0275 65.3338 78.6738 66.0222 77.9875 67.3007C78.4563 67.9818 79.4088 69.2603 80.5863 70.302C81.1375 70.7864 81.6438 71.1944 82.0675 71.4858C82.4913 71.1944 82.9975 70.7864 83.5488 70.302C84.7263 69.2603 85.6788 67.9818 86.1475 67.3007C85.4613 66.0222 84.1075 65.3338 84.8838 59.2437L84.88 59.2401ZM82.0638 51.7222C82.0638 51.7222 76.585 41.2649 76.6713 39.8589C76.7575 38.453 80.0463 31.893 82.0638 30.1702C84.085 31.8967 87.37 38.453 87.4563 39.8589C87.5425 41.2649 82.0638 51.7222 82.0638 51.7222Z" fill="#DAFBFF"></path><path d="M79.758 75.7192C78.9893 75.1801 77.5455 73.8506 75.9368 71.3702C74.328 68.8897 72.498 65.0688 70.923 63.0182C65.9768 56.5894 59.8718 54.8519 56.2755 55.198C52.6793 55.544 49.5293 58.0172 49.053 61.9473C48.5768 65.8738 51.3368 69.9132 56.1443 70.343C56.1443 70.343 54.0743 65.1198 58.938 63.7867C64.1768 62.3516 71.4368 70.9185 72.7905 72.5976C73.6643 73.6831 74.508 74.794 75.4568 75.8321C77.043 77.5768 79.383 79.1029 82.0005 79.1321V76.4804C81.558 76.4804 80.5268 76.2582 79.758 75.7192H79.7543H79.758Z" fill="#DAFBFF"></path><path d="M84.2388 75.7192C85.0075 75.1801 86.4513 73.8506 88.06 71.3702C89.665 68.886 91.4988 65.0688 93.0738 63.0182C98.02 56.5894 104.125 54.8519 107.721 55.198C111.318 55.544 114.471 58.0172 114.948 61.9473C115.424 65.8738 112.664 69.9132 107.856 70.343C107.856 70.343 109.926 65.1198 105.063 63.7867C99.8238 62.3516 92.5637 70.9185 91.21 72.5976C90.3362 73.6831 89.4925 74.794 88.5437 75.8321C86.9575 77.5768 84.6175 79.1029 82 79.1321V76.4804C82.4425 76.4804 83.4738 76.2582 84.2425 75.7192H84.2388Z" fill="#DAFBFF"></path><path d="M69.7 56.3066C63.145 49.4006 56.125 50.9377 56.125 50.9377C57.9625 47.7324 61.3225 43.9006 66.4375 44.9278C66.4375 44.9278 70.6637 47.2954 73.375 53.5675C75.625 58.7689 75.6025 63.2963 75.625 64.5639C75.4675 64.1414 74.275 61.0089 69.7 56.3139V56.3066Z" fill="#DAFBFF"></path><path d="M94.675 56.3066C101.23 49.4006 108.25 50.9377 108.25 50.9377C106.412 47.7324 103.053 43.9006 97.9375 44.9278C97.9375 44.9278 93.7113 47.2954 91 53.5675C88.75 58.7689 88.7725 63.2963 88.75 64.5639C88.9075 64.1414 90.1 61.0089 94.675 56.3139V56.3066Z" fill="#DAFBFF"></path></g><path d="M156.533 47.0007C157.767 47.0682 163.498 49.8191 165.002 51.5068C163.498 53.1945 157.767 55.9454 156.533 56.0129C155.299 56.0804 147.93 51.5068 147.93 51.5068C147.93 51.5068 155.299 46.9332 156.533 47.0007Z" fill="#45DAFF"></path><path d="M156.533 47.0007C157.767 47.0682 163.498 49.8191 165.002 51.5068C163.498 53.1945 157.767 55.9454 156.533 56.0129C155.299 56.0804 147.93 51.5068 147.93 51.5068C147.93 51.5068 155.299 46.9332 156.533 47.0007Z" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M156.533 47.0007C157.767 47.0682 163.498 49.8191 165.002 51.5068C163.498 53.1945 157.767 55.9454 156.533 56.0129C155.299 56.0804 147.93 51.5068 147.93 51.5068C147.93 51.5068 155.299 46.9332 156.533 47.0007Z" stroke="url(#button-event-shop-hover-paint4_linear_3685_5371)" stroke-opacity="0.5" stroke-width="2" stroke-miterlimit="10"></path><path d="M169.046 59.8872C171.804 63.4729 168.779 66.1045 166.565 65.9968C164.351 65.8891 163.321 64.3347 163.061 62.5726C162.802 60.8105 163.215 58.7098 167.319 56.1475C171.423 53.5851 178 52 178 52" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M169.046 43.5495C171.804 39.7076 168.779 36.888 166.565 37.0034C164.351 37.1188 163.321 38.7842 163.061 40.6721C162.802 42.5601 163.215 44.8109 167.319 47.5563C171.423 50.3016 178 52 178 52" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><defs><filter id="button-event-shop-hover-filter0_d_3685_5371" x="31" y="6" width="102" height="91.1328" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset></feOffset><feGaussianBlur stdDeviation="9"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0.816667 0 0 0 0 0.98018 0 0 0 0 1 0 0 0 0.75 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3685_5371"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3685_5371" result="shape"></feBlend></filter><linearGradient id="button-event-shop-hover-paint0_linear_3685_5371" x1="82.5" y1="0" x2="82.5" y2="104" gradientUnits="userSpaceOnUse"><stop stop-color="#E1A7F5"></stop><stop offset="1" stop-color="#A9573D"></stop></linearGradient><linearGradient id="button-event-shop-hover-paint1_linear_3685_5371" x1="160" y1="-5.87908e-05" x2="3.32039" y2="11.6005" gradientUnits="userSpaceOnUse"><stop offset="0.0253117" stop-color="#8994EA"></stop><stop offset="0.198465" stop-color="#7A6FB4"></stop><stop offset="0.452216" stop-color="#AE88DA"></stop><stop offset="0.723403" stop-color="#AB62FF"></stop><stop offset="1" stop-color="#AE88DA"></stop></linearGradient><radialGradient id="button-event-shop-hover-paint2_radial_3685_5371" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(82.5 104) rotate(90) scale(68 62.9026)"><stop stop-color="white"></stop><stop offset="1" stop-color="white" stop-opacity="0"></stop></radialGradient><linearGradient id="button-event-shop-hover-paint3_linear_3685_5371" x1="6" y1="41" x2="6" y2="60" gradientUnits="userSpaceOnUse"><stop stop-color="#E8D590"></stop><stop offset="0.5" stop-color="#9E844C"></stop><stop offset="1" stop-color="#E8D590"></stop></linearGradient><linearGradient id="button-event-shop-hover-paint4_linear_3685_5371" x1="147.93" y1="51.5068" x2="165.002" y2="51.5068" gradientUnits="userSpaceOnUse"><stop stop-color="#E8D590"></stop><stop offset="0.5" stop-color="#9E844C"></stop><stop offset="1" stop-color="#E8D590"></stop></linearGradient><linearGradient id="button-event-shop-hover-paint5_linear_3685_5371" x1="82.5" y1="0" x2="82.5" y2="104" gradientUnits="userSpaceOnUse"><stop stop-color="#C5EEF8"></stop><stop offset="1" stop-color="#45DAFF"></stop></linearGradient></defs></svg>'},function(e,t){e.exports='<svg viewBox="0 0 185 104" fill="none" xmlns="http://www.w3.org/2000/svg"><rect x="6" y="1" width="153" height="102" rx="34" fill="#010A13"></rect><rect x="6" y="1" width="153" height="102" rx="34" fill="url(#button-event-shop-paint0_radial_3685_5370)" fill-opacity="0.2"></rect><rect x="6" y="1" width="153" height="102" rx="34" stroke="#C3A064" stroke-width="2"></rect><path d="M10.9992 50.5753C10.9243 51.9485 7.87238 58.3257 6.00003 60C4.12768 58.3257 1.07572 51.9485 1.00082 50.5753C0.925928 49.202 6.00003 41 6.00003 41C6.00003 41 11.0741 49.202 10.9992 50.5753Z" fill="#45DAFF"></path><path d="M10.9992 50.5753C10.9243 51.9485 7.87238 58.3257 6.00003 60C4.12768 58.3257 1.07572 51.9485 1.00082 50.5753C0.925928 49.202 6.00003 41 6.00003 41C6.00003 41 11.0741 49.202 10.9992 50.5753Z" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M10.9992 50.5753C10.9243 51.9485 7.87238 58.3257 6.00003 60C4.12768 58.3257 1.07572 51.9485 1.00082 50.5753C0.925928 49.202 6.00003 41 6.00003 41C6.00003 41 11.0741 49.202 10.9992 50.5753Z" stroke="url(#button-event-shop-paint1_linear_3685_5370)" stroke-opacity="0.5" stroke-width="2" stroke-miterlimit="10"></path><path d="M156.533 47.0007C157.767 47.0682 163.498 49.8191 165.002 51.5068C163.498 53.1945 157.767 55.9454 156.533 56.0129C155.299 56.0804 147.93 51.5068 147.93 51.5068C147.93 51.5068 155.299 46.9332 156.533 47.0007Z" fill="#45DAFF"></path><path d="M156.533 47.0007C157.767 47.0682 163.498 49.8191 165.002 51.5068C163.498 53.1945 157.767 55.9454 156.533 56.0129C155.299 56.0804 147.93 51.5068 147.93 51.5068C147.93 51.5068 155.299 46.9332 156.533 47.0007Z" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M156.533 47.0007C157.767 47.0682 163.498 49.8191 165.002 51.5068C163.498 53.1945 157.767 55.9454 156.533 56.0129C155.299 56.0804 147.93 51.5068 147.93 51.5068C147.93 51.5068 155.299 46.9332 156.533 47.0007Z" stroke="url(#button-event-shop-paint2_linear_3685_5370)" stroke-opacity="0.5" stroke-width="2" stroke-miterlimit="10"></path><path d="M169.046 59.8872C171.804 63.4729 168.779 66.1045 166.565 65.9968C164.351 65.8891 163.321 64.3347 163.061 62.5726C162.802 60.8105 163.215 58.7098 167.319 56.1475C171.423 53.5851 178 52 178 52" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M169.046 43.5495C171.804 39.7076 168.779 36.888 166.565 37.0034C164.351 37.1188 163.321 38.7842 163.061 40.6721C162.802 42.5601 163.215 44.8109 167.319 47.5563C171.423 50.3016 178 52 178 52" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M84.88 60.2401C85.7688 53.2576 92.0275 44.4831 93.3813 42.6291C93.3813 42.6291 91.9638 38.007 88.6788 33.0679C85.3938 28.1325 82.0638 25 82.0638 25C82.0638 25 78.7338 28.1325 75.4525 33.0715C72.1675 38.0106 70.75 42.6328 70.75 42.6328C72.1038 44.4868 78.3663 53.2576 79.2513 60.2437C80.0275 66.3338 78.6738 67.0222 77.9875 68.3007C78.4563 68.9818 79.4088 70.2603 80.5863 71.302C81.1375 71.7864 81.6438 72.1944 82.0675 72.4858C82.4913 72.1944 82.9975 71.7864 83.5488 71.302C84.7263 70.2603 85.6788 68.9818 86.1475 68.3007C85.4613 67.0222 84.1075 66.3338 84.8838 60.2437L84.88 60.2401ZM82.0638 52.7222C82.0638 52.7222 76.585 42.2649 76.6713 40.8589C76.7575 39.453 80.0463 32.893 82.0638 31.1702C84.085 32.8967 87.37 39.453 87.4563 40.8589C87.5425 42.2649 82.0638 52.7222 82.0638 52.7222Z" fill="#C3A064"></path><path d="M79.758 76.7192C78.9893 76.1801 77.5455 74.8506 75.9368 72.3702C74.328 69.8897 72.498 66.0688 70.923 64.0182C65.9768 57.5894 59.8718 55.8519 56.2755 56.198C52.6793 56.544 49.5293 59.0172 49.053 62.9473C48.5768 66.8738 51.3368 70.9132 56.1443 71.343C56.1443 71.343 54.0743 66.1198 58.938 64.7867C64.1768 63.3516 71.4368 71.9185 72.7905 73.5976C73.6643 74.6831 74.508 75.794 75.4568 76.8321C77.043 78.5768 79.383 80.1029 82.0005 80.1321V77.4804C81.558 77.4804 80.5268 77.2582 79.758 76.7192H79.7543H79.758Z" fill="#C3A064"></path><path d="M84.2388 76.7192C85.0075 76.1801 86.4513 74.8506 88.06 72.3702C89.665 69.886 91.4988 66.0688 93.0738 64.0182C98.02 57.5894 104.125 55.8519 107.721 56.198C111.318 56.544 114.471 59.0172 114.948 62.9473C115.424 66.8738 112.664 70.9132 107.856 71.343C107.856 71.343 109.926 66.1198 105.063 64.7867C99.8238 63.3516 92.5637 71.9185 91.21 73.5976C90.3362 74.6831 89.4925 75.794 88.5437 76.8321C86.9575 78.5768 84.6175 80.1029 82 80.1321V77.4804C82.4425 77.4804 83.4738 77.2582 84.2425 76.7192H84.2388Z" fill="#C3A064"></path><path d="M69.7 57.3066C63.145 50.4006 56.125 51.9377 56.125 51.9377C57.9625 48.7324 61.3225 44.9006 66.4375 45.9278C66.4375 45.9278 70.6637 48.2954 73.375 54.5675C75.625 59.7689 75.6025 64.2963 75.625 65.5639C75.4675 65.1414 74.275 62.0089 69.7 57.3139V57.3066Z" fill="#C3A064"></path><path d="M94.675 57.3066C101.23 50.4006 108.25 51.9377 108.25 51.9377C106.412 48.7324 103.053 44.9006 97.9375 45.9278C97.9375 45.9278 93.7113 48.2954 91 54.5675C88.75 59.7689 88.7725 64.2963 88.75 65.5639C88.9075 65.1414 90.1 62.0089 94.675 57.3139V57.3066Z" fill="#C3A064"></path><defs><radialGradient id="button-event-shop-paint0_radial_3685_5370" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(82.5 95.9223) rotate(90) scale(57.5534 85.7767)"><stop stop-color="white"></stop><stop offset="1" stop-color="white" stop-opacity="0"></stop></radialGradient><linearGradient id="button-event-shop-paint1_linear_3685_5370" x1="6" y1="41" x2="6" y2="60" gradientUnits="userSpaceOnUse"><stop stop-color="#E8D590"></stop><stop offset="0.5" stop-color="#9E844C"></stop><stop offset="1" stop-color="#E8D590"></stop></linearGradient><linearGradient id="button-event-shop-paint2_linear_3685_5370" x1="147.93" y1="51.5068" x2="165.002" y2="51.5068" gradientUnits="userSpaceOnUse"><stop stop-color="#E8D590"></stop><stop offset="0.5" stop-color="#9E844C"></stop><stop offset="1" stop-color="#E8D590"></stop></linearGradient></defs></svg>'},function(e,t){e.exports='<svg viewBox="0 0 35 69" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M32.1328 62.9954L31.0126 59.7262C31.0126 59.7262 29.9421 56.626 27.4937 52.6017C25.0056 48.5078 20.208 46.431 20.1584 46.4112L18.5625 45.7355L19.8016 44.5332C19.871 44.4636 21.5363 42.8638 23.8855 41.8503C26.4132 40.7572 28.8121 40.8964 28.9112 40.8964L29.3077 40.9262L29.6051 41.1944C29.7141 41.2938 32.4004 43.7581 33.5602 49.3822C34.6902 54.8474 33.243 59.5176 33.1736 59.7064L32.1228 62.9954H32.1328ZM22.6861 45.1492C24.5398 46.2025 27.5234 48.2693 29.4366 51.4093C30.3485 52.8998 31.0721 54.2611 31.6272 55.4038C31.7561 53.8338 31.7462 51.8862 31.3199 49.8393C30.5269 46.0236 28.9707 43.9171 28.3363 43.1818C27.6523 43.2016 26.2348 43.3308 24.7876 43.9568C23.9747 44.3046 23.2511 44.7518 22.6861 45.1492V45.1492Z" fill="#C3A064"></path><path d="M16.5539 44.2677L15.8006 44.0491C15.642 43.9994 11.786 42.8567 7.63265 40.1936C3.49913 37.5604 0.892128 34.9173 0.78309 34.7981L0 33.9932L0.78309 33.1883C0.892128 33.079 3.49913 30.4359 7.63265 27.7928C11.7959 25.1397 15.642 23.987 15.8006 23.9374L16.544 23.7188L17.0198 24.3448C17.0198 24.3448 19.0122 26.8985 22.3528 28.23C25.7429 29.5813 28.3994 29.482 28.4192 29.472L28.8455 29.4522L29.1825 29.7105C29.1825 29.7105 30.1639 30.4856 30.937 31.36C31.6904 32.2146 32.414 33.3175 32.4437 33.3672L32.8501 33.9932L32.4437 34.6192C32.4437 34.6192 31.6904 35.7719 30.937 36.6264C30.1738 37.5008 29.2222 38.2361 29.1825 38.2759L28.8455 38.5342L28.4192 38.5144C28.4192 38.5144 25.7429 38.4051 22.3528 39.7564C19.0122 41.0879 17.0397 43.6118 17.0198 43.6417L16.544 44.2577L16.5539 44.2677ZM3.27114 34.0031C4.32187 34.9571 6.29446 36.6264 8.87172 38.2659C11.7464 40.1042 14.5219 41.1873 15.7708 41.6245C16.6729 40.6507 18.6455 38.7827 21.53 37.6399C24.5732 36.4277 27.091 36.2488 28.102 36.2389C28.3994 35.9905 28.8554 35.5731 29.2519 35.126C29.5691 34.7683 29.8863 34.3509 30.1341 34.0031C29.8863 33.6653 29.5691 33.238 29.2618 32.8803C28.8752 32.4332 28.4093 32.0158 28.112 31.7674C27.1009 31.7475 24.593 31.5786 21.5399 30.3663C18.6653 29.2137 16.6729 27.3555 15.7808 26.3818C14.5318 26.819 11.7662 27.9021 8.88163 29.7403C6.30437 31.3898 4.33178 33.0492 3.28105 34.0031H3.27114Z" fill="#C3A064"></path><path d="M7.07031 34.0028C8.91404 35.6523 14.5543 38.2954 15.7041 38.365C15.7041 38.365 18.5589 35.0362 18.5589 34.0028C18.5589 32.9694 15.7041 29.6406 15.7041 29.6406C14.5444 29.7102 8.91404 32.3533 7.07031 34.0028V34.0028Z" fill="#45DAFF"></path><path d="M28.5642 27.109C27.801 27.109 25.8879 27.0096 23.8855 26.1451C21.5363 25.1316 19.871 23.5318 19.8016 23.4622L18.5625 22.2599L20.1485 21.5842C20.1485 21.5842 25.0056 19.4776 27.4838 15.3937C29.9322 11.3694 30.9928 8.29896 31.0027 8.26915L32.1229 5L33.1736 8.28902C33.2331 8.48775 34.6902 13.148 33.5602 18.6132C32.4004 24.2373 29.7141 26.7016 29.6051 26.8009L29.3077 27.0692L28.9112 27.099C28.9112 27.099 28.7724 27.099 28.5642 27.099V27.109ZM22.6861 22.8561C23.2511 23.2536 23.9747 23.6908 24.7876 24.0485C26.2348 24.6745 27.6523 24.8037 28.3363 24.8235C28.9608 24.0982 30.5269 21.9817 31.31 18.166C31.7363 16.1091 31.7462 14.1616 31.6173 12.5916C31.0523 13.7343 30.3287 15.0956 29.4266 16.596C27.5135 19.736 24.5298 21.8028 22.6762 22.8561H22.6861Z" fill="#C3A064"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 135 138" fill="none" xmlns="http://www.w3.org/2000/svg" class="group pointer-events-none"><path d="M66.874 37L66.2582 36.5397C65.9362 36.2951 65.5583 35.9786 65.1384 35.5758C64.2146 34.6983 63.5148 33.6769 63.1649 33.1446L62.8289 32.6124L63.2908 31.7061C63.7527 30.8573 64.4526 29.5626 64.0047 25.8655C63.5288 21.895 60.6594 18.2698 59.1058 16.3278C58.7558 15.8818 58.4619 15.5222 58.2939 15.2632L58 14.846L58.14 14.3425C58.182 14.1987 59.1897 10.7173 61.5272 6.94829C63.8367 3.20801 66.1602 0.848756 66.2582 0.748056L67 0L67.7418 0.748056C67.8398 0.848756 70.1633 3.20801 72.4728 6.94829C74.8103 10.703 75.8181 14.1843 75.8601 14.3425L76 14.846L75.7061 15.2632C75.5381 15.5222 75.2442 15.8818 74.8943 16.3278C73.3406 18.2698 70.4713 21.895 69.9954 25.8655C69.5195 29.8647 70.1493 31.1163 70.5552 31.9362L70.6252 32.0657L70.9051 32.6267L70.5692 33.1446C70.3033 33.5762 69.5614 34.6695 68.6096 35.5758C68.1897 35.9786 67.8118 36.2951 67.4899 36.5397L66.874 37ZM65.2784 32.4829C65.5863 32.9145 66.0342 33.5043 66.5661 33.9934C66.6781 34.0941 66.7761 34.1948 66.874 34.2811C66.972 34.1948 67.084 34.0941 67.196 33.9934C67.7279 33.4899 68.1757 32.9001 68.4837 32.4685C67.9798 31.3896 67.4339 29.6489 67.9238 25.6065C68.4697 21.0031 71.591 17.0758 73.2846 14.9611C73.4386 14.7741 73.5785 14.6015 73.6905 14.4432C73.3406 13.3787 72.3748 10.8037 70.7092 8.11353C69.2955 5.8262 67.8538 4.05677 67.014 3.10731C66.1742 4.07115 64.7325 5.8262 63.3188 8.11353C61.6532 10.8037 60.7014 13.3787 60.3375 14.4432C60.4634 14.6015 60.5894 14.7741 60.7434 14.9611C62.423 17.0758 65.5583 21.0175 66.1042 25.6065C66.5801 29.6345 65.8383 31.4184 65.2784 32.4829V32.4829Z" fill="#C3A064"></path><path d="M66.874 101L66.2582 101.46C65.9362 101.705 65.5583 102.021 65.1384 102.424C64.2146 103.302 63.5148 104.323 63.1649 104.855L62.8289 105.388L63.2908 106.294C63.7527 107.143 64.4526 108.437 64.0047 112.135C63.5288 116.105 60.6594 119.73 59.1058 121.672C58.7558 122.118 58.4619 122.478 58.2939 122.737L58 123.154L58.14 123.657C58.182 123.801 59.1897 127.283 61.5272 131.052C63.8367 134.792 66.1602 137.151 66.2582 137.252L67 138L67.7418 137.252C67.8398 137.151 70.1633 134.792 72.4728 131.052C74.8103 127.297 75.8181 123.816 75.8601 123.657L76 123.154L75.7061 122.737C75.5381 122.478 75.2442 122.118 74.8943 121.672C73.3406 119.73 70.4713 116.105 69.9954 112.135C69.5195 108.135 70.1493 106.884 70.5552 106.064L70.6252 105.934L70.9051 105.373L70.5692 104.855C70.3033 104.424 69.5614 103.33 68.6096 102.424C68.1897 102.021 67.8118 101.705 67.4899 101.46L66.874 101ZM65.2784 105.517C65.5863 105.086 66.0342 104.496 66.5661 104.007C66.6781 103.906 66.7761 103.805 66.874 103.719C66.972 103.805 67.084 103.906 67.196 104.007C67.7279 104.51 68.1757 105.1 68.4837 105.531C67.9798 106.61 67.4339 108.351 67.9238 112.393C68.4697 116.997 71.591 120.924 73.2846 123.039C73.4386 123.226 73.5785 123.399 73.6905 123.557C73.3406 124.621 72.3748 127.196 70.7092 129.886C69.2955 132.174 67.8538 133.943 67.014 134.893C66.1742 133.929 64.7325 132.174 63.3188 129.886C61.6532 127.196 60.7014 124.621 60.3375 123.557C60.4634 123.399 60.5894 123.226 60.7434 123.039C62.423 120.924 65.5583 116.983 66.1042 112.393C66.5801 108.365 65.8383 106.582 65.2784 105.517V105.517Z" fill="#C3A064"></path><circle cx="67.0918" cy="69.0918" r="42.2546" fill="url(#decorated-video-player-button-paint0_radial_3646_7682)" class="pointer-events-auto"></circle><circle cx="67.0918" cy="69.0918" r="42.2546" fill="url(#decorated-video-player-button-paint1_radial_3646_7682)" fill-opacity="0.2"></circle><circle cx="67.0918" cy="69.0918" r="42.2546" stroke="#C3A064" stroke-width="3.67432"></circle><path d="M59.7422 61.1651C59.7422 59.7706 61.2348 58.8845 62.4591 59.5522L76.9941 67.4804C78.2706 68.1767 78.2706 70.0098 76.9941 70.7061L62.4591 78.6343C61.2348 79.302 59.7422 78.416 59.7422 77.0214L59.7422 61.1651Z" fill="#F0E6D2"></path><g class="opacity-0 group-hover:opacity-100 transition-opacity"><g filter="url(#decorated-video-player-button-filter0_d_3646_7682)"><circle cx="67.2793" cy="68.9512" r="44.0918" fill="#45DAFF"></circle><circle cx="67.2793" cy="68.9512" r="44.0918" fill="url(#decorated-video-player-button-paint2_linear_3646_7682)" fill-opacity="0.2"></circle><circle cx="67.2793" cy="68.9512" r="44.0918" fill="url(#decorated-video-player-button-paint3_linear_3646_7682)" style="mix-blend-mode:overlay"></circle><circle cx="67.2793" cy="68.9512" r="44.0918" fill="url(#decorated-video-player-button-paint4_radial_3646_7682)" fill-opacity="0.5"></circle><circle cx="67.2793" cy="68.9512" r="41.0918" stroke="url(#decorated-video-player-button-paint5_linear_3646_7682)" stroke-width="6"></circle></g><g filter="url(#decorated-video-player-button-filter1_d_3646_7682)"><path d="M59.9297 61.0139C59.9297 59.6242 61.4173 58.7411 62.6373 59.4066L77.1916 67.3453C78.4639 68.0392 78.4639 69.866 77.1916 70.56L62.6373 78.4987C61.4173 79.1642 59.9297 78.2811 59.9297 76.8913L59.9297 61.0139Z" fill="url(#decorated-video-player-button-paint6_linear_3646_7682)"></path><path d="M59.9297 61.0139C59.9297 59.6242 61.4173 58.7411 62.6373 59.4066L77.1916 67.3453C78.4639 68.0392 78.4639 69.866 77.1916 70.56L62.6373 78.4987C61.4173 79.1642 59.9297 78.2811 59.9297 76.8913L59.9297 61.0139Z" fill="#DAFBFF"></path></g></g><path d="M82.5603 35.0365C79.5503 36.3991 73.1035 31.1084 75.5378 25.8391C79.5506 17.153 96.0482 24.1939 104.634 37.0817C114.166 51.3896 126.707 64.6751 132.727 56.4989C137.243 50.3668 128.714 43.2138 123.196 49.8566" stroke="#C3A064" stroke-width="2"></path><path d="M52.4397 35.0365C55.4497 36.3991 61.8965 31.1084 59.4622 25.8391C55.4494 17.153 38.9518 24.1939 30.3661 37.0817C20.8344 51.3896 8.29257 64.6751 2.27252 56.4989C-2.24252 50.3668 6.28589 43.2138 11.8043 49.8566" stroke="#C3A064" stroke-width="2"></path><path d="M82.5603 102.964C79.5503 101.601 73.1035 106.892 75.5378 112.161C79.5506 120.847 96.0482 113.806 104.634 100.918C114.166 86.6104 126.707 73.3249 132.727 81.5011C137.243 87.6332 128.714 94.7862 123.196 88.1434" stroke="#C3A064" stroke-width="2"></path><path d="M52.4397 102.964C55.4497 101.601 61.8965 106.892 59.4622 112.161C55.4494 120.847 38.9518 113.806 30.3661 100.918C20.8344 86.6104 8.29257 73.3249 2.27252 81.5011C-2.24252 87.6332 6.28589 94.7862 11.8043 88.1434" stroke="#C3A064" stroke-width="2"></path><defs><filter id="decorated-video-player-button-filter0_d_3646_7682" x="19.1875" y="24.8594" width="96.1875" height="96.1875" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="2"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3646_7682"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3646_7682" result="shape"></feBlend></filter><filter id="decorated-video-player-button-filter1_d_3646_7682" x="41.9297" y="41.1797" width="54.2188" height="55.5469" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset></feOffset><feGaussianBlur stdDeviation="9"></feGaussianBlur><feComposite in2="hardAlpha" operator="out"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0.816667 0 0 0 0 0.98018 0 0 0 0 1 0 0 0 0.75 0"></feColorMatrix><feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_3646_7682"></feBlend><feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_3646_7682" result="shape"></feBlend></filter><radialGradient id="decorated-video-player-button-paint0_radial_3646_7682" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(67 98) rotate(90) scale(32)"><stop offset="0.142311" stop-color="#594E3A"></stop><stop offset="1" stop-color="#34270F"></stop></radialGradient><radialGradient id="decorated-video-player-button-paint1_radial_3646_7682" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(67.0918 113.184) rotate(90) scale(57.6585)"><stop stop-color="white"></stop><stop offset="1" stop-color="white" stop-opacity="0"></stop></radialGradient><linearGradient id="decorated-video-player-button-paint2_linear_3646_7682" x1="67.2793" y1="24.8594" x2="67.2793" y2="113.043" gradientUnits="userSpaceOnUse"><stop stop-color="#E1A7F5"></stop><stop offset="1" stop-color="#A9573D"></stop></linearGradient><linearGradient id="decorated-video-player-button-paint3_linear_3646_7682" x1="111.371" y1="24.8593" x2="21.9639" y2="29.3009" gradientUnits="userSpaceOnUse"><stop offset="0.0253117" stop-color="#8994EA"></stop><stop offset="0.198465" stop-color="#7A6FB4"></stop><stop offset="0.452216" stop-color="#AE88DA"></stop><stop offset="0.723403" stop-color="#AB62FF"></stop><stop offset="1" stop-color="#AE88DA"></stop></linearGradient><radialGradient id="decorated-video-player-button-paint4_radial_3646_7682" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(67.2793 113.043) rotate(90) scale(57.6585 35.787)"><stop stop-color="white"></stop><stop offset="1" stop-color="white" stop-opacity="0"></stop></radialGradient><linearGradient id="decorated-video-player-button-paint5_linear_3646_7682" x1="67.2793" y1="24.8594" x2="67.2793" y2="113.043" gradientUnits="userSpaceOnUse"><stop stop-color="#C5EEF8"></stop><stop offset="1" stop-color="#45DAFF"></stop></linearGradient><linearGradient id="decorated-video-player-button-paint6_linear_3646_7682" x1="70.0341" y1="57.9297" x2="70.0341" y2="79.9756" gradientUnits="userSpaceOnUse"><stop stop-color="#A7F2F5"></stop><stop offset="1" stop-color="#9DF5FB"></stop></linearGradient></defs></svg>'},function(e,t){e.exports='<svg viewBox="0 0 16 688" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M13.999 673.646C13.9091 675.308 10.2469 683.028 8.00004 685.055C5.75321 683.028 2.09086 675.308 2.00098 673.646C1.91111 671.983 8.00003 662.055 8.00003 662.055C8.00003 662.055 14.0889 671.983 13.999 673.646Z" stroke="#785A28" stroke-width="3" stroke-miterlimit="10"></path><path d="M10.6614 674.046C10.619 674.766 8.99574 678.154 8.0006 679.05C6.99839 678.161 5.37511 674.773 5.33982 674.046C5.29748 673.326 8.00765 668.343 8.00765 668.343C8.00765 668.343 10.7178 673.312 10.6755 674.046H10.6614Z" fill="#9825DE"></path><path d="M8 652.055L8.00001 36.0034" stroke="#463714" stroke-width="3" stroke-miterlimit="10"></path><path d="M13.999 14.4089C13.9091 12.7465 10.2469 5.02674 8.00004 3C5.75321 5.02674 2.09086 12.7465 2.00098 14.4089C1.91111 16.0713 8.00003 26 8.00003 26C8.00003 26 14.0889 16.0713 13.999 14.4089Z" stroke="#785A28" stroke-width="3" stroke-miterlimit="10"></path><path d="M10.6614 14.0085C10.619 13.2886 8.99574 9.90092 8.0006 9.00458C6.99839 9.89386 5.37511 13.2816 5.33982 14.0085C5.29748 14.7284 8.00765 19.7112 8.00765 19.7112C8.00765 19.7112 10.7178 14.7425 10.6755 14.0085H10.6614Z" fill="#45DAFF"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 1025 591" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 71V520" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M1009 71V520" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M71 16H440" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M586 16H954" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M71 575H440" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M586 575H954" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M21.9407 23.9556C21.1522 23.9556 20.4136 23.8259 20.0243 23.746L19.5951 23.6562L19.4155 23.0972C19.2059 22.4385 18.8965 21.4304 16.7405 19.7436C14.3451 17.8671 10.2128 17.2283 8.65578 16.9888C8.44618 16.9588 8.2765 16.9289 8.14674 16.9089L7.7974 16.849L7.62772 16.5296C7.57782 16.4398 6.38008 14.224 5.71134 11.1997C5.0426 8.20533 5.06256 5.86973 5.06256 5.76992V5.03131H5.80117C5.90098 5.03131 8.22659 5.01135 11.2309 5.68009C14.2552 6.34883 16.471 7.54657 16.5609 7.59647L16.8803 7.76615L16.9402 8.1155C16.9601 8.24525 16.9901 8.41493 17.02 8.62453C17.2596 10.1816 17.8983 14.3138 19.7748 16.7093C21.4616 18.8752 22.4697 19.1846 23.1285 19.3842L23.6774 19.5639L23.7673 19.9931C23.8371 20.3424 24.0068 21.2507 23.9669 22.179C23.9469 22.5882 23.917 22.9375 23.8771 23.217L23.7972 23.756L23.2582 23.8358C22.9788 23.8758 22.6294 23.9157 22.2202 23.9257C22.1304 23.9257 22.0405 23.9257 21.9507 23.9257L21.9407 23.9556ZM20.753 22.3586C21.1223 22.4185 21.6413 22.4684 22.1503 22.4584C22.2501 22.4584 22.3599 22.4584 22.4498 22.4385C22.4498 22.3387 22.4597 22.2388 22.4697 22.139C22.4897 21.63 22.4298 21.111 22.3699 20.7417C21.5614 20.4722 20.3238 19.8833 18.5771 17.6575C16.4611 14.9526 15.8023 10.6906 15.5228 8.87406C15.5228 8.83414 15.5128 8.79421 15.5029 8.76427C14.8042 8.42491 13.0575 7.6364 10.8816 7.1573C9.03507 6.74807 7.44806 6.60834 6.55974 6.56841C6.60964 7.46672 6.74938 9.05372 7.14863 10.8903C7.62772 13.0562 8.41624 14.8129 8.7556 15.5115C8.79552 15.5115 8.82546 15.5215 8.86539 15.5315C10.682 15.811 14.9439 16.4697 17.6488 18.5857C19.8746 20.3324 20.4635 21.5701 20.733 22.3686L20.753 22.3586Z" fill="#C3A064"></path><path d="M9.69876 13.4547C9.21966 12.9157 7.97201 9.37239 8.04188 8.03491C9.37936 7.95506 12.9227 9.20271 13.4617 9.69179C14.0006 10.1709 15.6076 15.6106 15.6076 15.6106C15.6076 15.6106 10.1779 14.0136 9.68877 13.4647L9.69876 13.4547Z" fill="#45DAFF"></path><path d="M5.67272 27.0782L5.17366 26.3995C5.13373 26.3396 4.09569 24.9222 4.12564 23.1955C4.15558 21.4887 5.1537 20.1013 5.19362 20.0514L5.33336 19.8618L5.56292 19.7819C5.65275 19.752 7.82865 19.0433 11.2622 20.1512C14.5959 21.2192 16.6819 23.465 16.7718 23.5548L18.6882 25.6309L16.0032 24.7825C16.0032 24.7825 14.3464 24.2834 11.1624 24.523C8.19795 24.7426 6.32149 26.4793 6.30153 26.4993L5.6827 27.0782H5.67272ZM6.26161 21.1494C6.04202 21.5187 5.63279 22.3271 5.61283 23.2254C5.60285 23.8343 5.79249 24.4132 5.98213 24.8324C6.91038 24.1836 8.66707 23.2055 11.0326 23.0358C12.0607 22.956 12.939 22.956 13.6776 22.9859C12.8991 22.4769 11.9209 21.9479 10.7931 21.5885C8.47743 20.8399 6.85049 21.0396 6.26161 21.1593V21.1494Z" fill="#C3A064"></path><path d="M15.0097 71.9903C13.8519 71.9903 12.744 71.4513 12.0154 70.5231C11.2668 69.5748 11.0272 68.407 11.3566 67.3091C12.0254 65.0434 14.3709 64.5044 14.4707 64.4844L14.7901 65.9417L14.6304 65.2131L14.7901 65.9417C14.7303 65.9617 13.2031 66.321 12.7839 67.7283C12.5943 68.3571 12.744 69.0359 13.1832 69.5948C13.6523 70.1937 14.3709 70.533 15.1195 70.4931C16.0578 70.4432 16.8562 69.9641 17.4352 69.0958C18.6229 67.2991 18.6728 64.2649 17.5649 61.1907C16.457 58.1264 14.1713 55.7509 11.9655 53.4453C10.3785 51.7784 8.87131 50.2114 7.93308 48.4946C5.79711 44.582 3.8408 39.2521 7.75342 32.7044C10.4084 28.2628 14.6903 26.8654 17.5449 27.4443C19.2018 27.7837 20.2998 28.7818 20.4894 30.1193C20.6291 31.1473 20.3596 32.0656 19.7109 32.7044C19.102 33.3033 18.2237 33.5728 17.3653 33.443C15.7583 33.1935 15.0097 31.4368 14.9299 31.2372L16.3173 30.6782C16.447 30.9976 16.9361 31.866 17.5949 31.9658C17.9941 32.0257 18.3933 31.9059 18.6628 31.6464C18.9623 31.347 19.082 30.8978 19.0122 30.3389C18.8724 29.3507 17.7346 29.0214 17.2555 28.9215C14.8201 28.4225 11.2269 29.8398 9.05097 33.4829C5.54758 39.3419 7.19448 44.0031 9.26058 47.786C10.099 49.3231 11.5363 50.8302 13.0634 52.4172C15.2692 54.7229 17.7745 57.328 18.9822 60.6916C20.2698 64.2649 20.17 67.7183 18.6928 69.9342C17.8544 71.1918 16.6167 71.9304 15.2094 72.0003C15.1495 72.0003 15.0796 72.0003 15.0197 72.0003L15.0097 71.9903Z" fill="#C3A064"></path><path d="M4.93058 60.1444C4.58123 60.1444 4.22191 60.0945 3.88255 59.9947C2.22568 59.4956 1.0479 58.3278 0.369182 56.5013C-0.688822 53.5468 0.588768 50.1033 3.41344 48.3067C4.0722 47.8875 4.73095 47.608 5.29988 47.3984L5.82888 48.7958C5.3398 48.9854 4.7609 49.215 4.22191 49.5643C2.01607 50.9717 0.968052 53.7265 1.77653 55.9822C2.28557 57.3497 3.114 58.1981 4.30176 58.5474C4.98048 58.747 5.78896 58.5973 6.32794 58.1681C6.62737 57.9286 6.9867 57.5094 6.96673 56.8207C6.92681 55.6129 5.01043 55.5231 4.99046 55.5231L5.05035 54.0259C6.19818 54.0758 8.38406 54.7146 8.45393 56.7708C8.48387 57.7988 8.05468 58.7171 7.24621 59.3559C6.59743 59.8649 5.75901 60.1344 4.92059 60.1344L4.93058 60.1444Z" fill="#C3A064"></path><path d="M10.8385 47.1026L10.3594 45.6853C10.5889 45.6055 10.8684 45.5256 11.1778 45.4358C12.8347 44.9567 15.33 44.2281 16.8471 41.8925C17.8852 40.2855 17.8652 39.0578 17.6656 38.3092C17.466 37.5606 16.9869 36.9518 16.3481 36.6224C15.8091 36.3429 15.1404 36.3729 14.5614 36.7122C13.9726 37.0516 13.6232 37.6205 13.5933 38.2793C13.5334 39.5968 15.1204 40.1358 15.1803 40.1657L14.7211 41.593C14.6114 41.5531 11.9763 40.6847 12.0961 38.2094C12.156 37.0516 12.7948 36.0136 13.8129 35.4247C14.8309 34.8358 16.0387 34.7859 17.0368 35.2949C18.0549 35.8139 18.8134 36.7721 19.1228 37.9299C19.4023 38.968 19.4522 40.6448 18.1048 42.7109C16.2882 45.5156 13.3537 46.374 11.597 46.8831C11.3176 46.9629 11.0581 47.0427 10.8485 47.1126L10.8385 47.1026Z" fill="#C3A064"></path><path d="M25.6144 18.6242L23.5783 16.7477C23.4884 16.6579 21.2427 14.5718 20.1747 11.2381C19.0668 7.81456 19.7754 5.62868 19.8054 5.53885L19.8852 5.30928L20.0749 5.16955C20.1348 5.12962 21.5122 4.13151 23.2189 4.10156C24.9357 4.12152 26.363 5.09968 26.4229 5.14959L27.1016 5.65862L26.5127 6.26748C26.5127 6.26748 24.756 8.1639 24.5365 11.1283C24.2969 14.3123 24.796 15.9492 24.796 15.9692L25.6144 18.6242ZM21.1628 6.24751C21.043 6.82642 20.8434 8.45335 21.592 10.779C21.9613 11.9068 22.4803 12.885 22.9894 13.6635C22.9594 12.9249 22.9694 12.0466 23.0393 11.0185C23.2189 8.65298 24.1871 6.89629 24.8359 5.96804C24.4167 5.7784 23.8478 5.57878 23.2289 5.59874C22.3306 5.6187 21.5221 6.01795 21.1528 6.24751H21.1628Z" fill="#C3A064"></path><path d="M30.6539 20.5137C30.4842 20.5137 30.3146 20.5037 30.1349 20.4738C28.7974 20.2841 27.7893 19.1862 27.46 17.5293C26.881 14.6747 28.2784 10.3928 32.72 7.7378C39.2677 3.82518 44.5976 5.78149 48.5102 7.91746C50.227 8.85569 51.794 10.3628 53.4609 11.9499C55.7665 14.1557 58.152 16.4414 61.2063 17.5493C64.2905 18.6672 67.3148 18.6173 69.1114 17.4195C69.9797 16.8406 70.4588 16.0421 70.5087 15.1039C70.5487 14.3653 70.2093 13.6367 69.6104 13.1676C69.0515 12.7284 68.3728 12.5787 67.744 12.7683C66.3366 13.1775 65.9773 14.7047 65.9573 14.7745L64.5001 14.4551C64.52 14.3553 65.059 12.0097 67.3247 11.341C68.4227 11.0216 69.6004 11.2611 70.5387 12.0097C71.5168 12.7783 72.0658 13.976 71.9959 15.1937C71.9261 16.6011 71.1875 17.8387 69.9298 18.6772C67.714 20.1444 64.2605 20.2542 60.6873 18.9666C57.3236 17.7489 54.7185 15.2536 52.4129 13.0478C50.8259 11.5306 49.3287 10.0934 47.7816 9.24495C43.9987 7.17885 39.3375 5.53196 33.4786 9.03535C29.8355 11.2112 28.4181 14.8144 28.9172 17.2399C29.017 17.719 29.3464 18.8668 30.3345 18.9966C30.8935 19.0764 31.3426 18.9566 31.6421 18.6472C31.9116 18.3777 32.0313 17.9785 31.9615 17.5792C31.8616 16.9205 30.9933 16.4314 30.6739 16.2917L31.2328 14.9043C31.4325 14.9841 33.1891 15.7327 33.4387 17.3397C33.5784 18.208 33.2989 19.0864 32.7001 19.6952C32.1711 20.2342 31.4524 20.5137 30.6439 20.5137H30.6539Z" fill="#C3A064"></path><path d="M56.9118 8.45393C56.9118 8.45393 56.8319 8.45393 56.802 8.45393C54.7359 8.38406 54.1071 6.19818 54.0572 5.05035L55.5544 4.99046L54.8058 5.02041L55.5544 4.99046C55.5544 4.99046 55.6642 6.92681 56.8519 6.96673C57.5306 6.9867 57.9698 6.63736 58.1994 6.32794C58.6286 5.77898 58.7783 4.98048 58.5787 4.29178C58.2193 3.10402 57.3809 2.27559 56.0035 1.77653C53.7577 0.968052 50.993 2.01607 49.5956 4.22191C49.2463 4.7609 49.0067 5.3398 48.827 5.83886L47.4297 5.30986C47.6393 4.74093 47.9188 4.0722 48.338 3.41344C50.1346 0.588768 53.5681 -0.688822 56.5225 0.369182C58.3491 1.0479 59.5269 2.22568 60.0159 3.87257C60.3453 5.03039 60.1058 6.32794 59.3871 7.25619C58.7783 8.0447 57.8999 8.47389 56.9218 8.47389L56.9118 8.45393Z" fill="#C3A064"></path><path d="M39.1576 19.2569C38.6785 19.2569 38.2693 19.1871 37.9299 19.0972C36.7721 18.7878 35.8139 18.0293 35.2949 17.0112C34.7859 16.0131 34.8358 14.8153 35.4247 13.7972C36.0136 12.7792 37.0516 12.1404 38.2094 12.0805C40.6947 11.9607 41.5531 14.5957 41.593 14.7055L40.1657 15.1647L40.8744 14.9351L40.1657 15.1647C40.1458 15.0948 39.5968 13.5178 38.2793 13.5776C37.6205 13.6076 37.0516 13.9669 36.7122 14.5458C36.3829 15.1247 36.3429 15.7935 36.6224 16.3325C36.9518 16.9712 37.5706 17.4503 38.3092 17.65C39.0578 17.8496 40.2855 17.8696 41.8925 16.8215C44.2281 15.3144 44.9567 12.8091 45.4358 11.1622C45.5256 10.8528 45.6055 10.5833 45.6853 10.3438L47.1026 10.8228C47.0328 11.0325 46.9529 11.292 46.8731 11.5714C46.364 13.3281 45.5056 16.2626 42.7009 18.0692C41.3136 18.9675 40.1058 19.237 39.1476 19.237L39.1576 19.2569Z" fill="#C3A064"></path><path d="M1003.06 23.9556C1003.85 23.9556 1004.59 23.8259 1004.98 23.746L1005.4 23.6562L1005.58 23.0972C1005.79 22.4385 1006.1 21.4304 1008.26 19.7436C1010.65 17.8671 1014.79 17.2283 1016.34 16.9888C1016.55 16.9588 1016.72 16.9289 1016.85 16.9089L1017.2 16.849L1017.37 16.5296C1017.42 16.4398 1018.62 14.224 1019.29 11.1997C1019.96 8.20533 1019.94 5.86973 1019.94 5.76992V5.03131H1019.2C1019.1 5.03131 1016.77 5.01135 1013.77 5.68009C1010.74 6.34883 1008.53 7.54657 1008.44 7.59647L1008.12 7.76615L1008.06 8.1155C1008.04 8.24525 1008.01 8.41493 1007.98 8.62453C1007.74 10.1816 1007.1 14.3138 1005.23 16.7093C1003.54 18.8752 1002.53 19.1846 1001.87 19.3842L1001.32 19.5639L1001.23 19.9931C1001.16 20.3424 1000.99 21.2507 1001.03 22.179C1001.05 22.5882 1001.08 22.9375 1001.12 23.217L1001.2 23.756L1001.74 23.8358C1002.02 23.8758 1002.37 23.9157 1002.78 23.9257C1002.87 23.9257 1002.96 23.9257 1003.05 23.9257L1003.06 23.9556ZM1004.25 22.3586C1003.88 22.4185 1003.36 22.4684 1002.85 22.4584C1002.75 22.4584 1002.64 22.4584 1002.55 22.4385C1002.55 22.3387 1002.54 22.2388 1002.53 22.139C1002.51 21.63 1002.57 21.111 1002.63 20.7417C1003.44 20.4722 1004.68 19.8833 1006.42 17.6575C1008.54 14.9526 1009.2 10.6906 1009.48 8.87406C1009.48 8.83414 1009.49 8.79421 1009.5 8.76427C1010.2 8.42491 1011.94 7.6364 1014.12 7.1573C1015.96 6.74807 1017.55 6.60834 1018.44 6.56841C1018.39 7.46672 1018.25 9.05372 1017.85 10.8903C1017.37 13.0562 1016.58 14.8129 1016.24 15.5115C1016.2 15.5115 1016.17 15.5215 1016.13 15.5315C1014.32 15.811 1010.06 16.4697 1007.35 18.5857C1005.13 20.3324 1004.54 21.5701 1004.27 22.3686L1004.25 22.3586Z" fill="#C3A064"></path><path d="M1015.3 13.4547C1015.78 12.9157 1017.03 9.37239 1016.96 8.03491C1015.62 7.95506 1012.08 9.20271 1011.54 9.69179C1011 10.1709 1009.39 15.6106 1009.39 15.6106C1009.39 15.6106 1014.82 14.0136 1015.31 13.4647L1015.3 13.4547Z" fill="#45DAFF"></path><path d="M1019.33 27.0782L1019.83 26.3995C1019.87 26.3396 1020.9 24.9222 1020.87 23.1955C1020.84 21.4887 1019.85 20.1013 1019.81 20.0514L1019.67 19.8618L1019.44 19.7819C1019.35 19.752 1017.17 19.0433 1013.74 20.1512C1010.4 21.2192 1008.32 23.465 1008.23 23.5548L1006.31 25.6309L1009 24.7825C1009 24.7825 1010.65 24.2834 1013.84 24.523C1016.8 24.7426 1018.68 26.4793 1018.7 26.4993L1019.32 27.0782H1019.33ZM1018.74 21.1494C1018.96 21.5187 1019.37 22.3271 1019.39 23.2254C1019.4 23.8343 1019.21 24.4132 1019.02 24.8324C1018.09 24.1836 1016.33 23.2055 1013.97 23.0358C1012.94 22.956 1012.06 22.956 1011.32 22.9859C1012.1 22.4769 1013.08 21.9479 1014.21 21.5885C1016.52 20.8399 1018.15 21.0396 1018.74 21.1593V21.1494Z" fill="#C3A064"></path><path d="M1009.99 71.9903C1011.15 71.9903 1012.26 71.4513 1012.98 70.5231C1013.73 69.5748 1013.97 68.407 1013.64 67.3091C1012.97 65.0434 1010.63 64.5044 1010.53 64.4844L1010.21 65.9417L1010.37 65.2131L1010.21 65.9417C1010.27 65.9617 1011.8 66.321 1012.22 67.7283C1012.41 68.3571 1012.26 69.0359 1011.82 69.5948C1011.35 70.1937 1010.63 70.533 1009.88 70.4931C1008.94 70.4432 1008.14 69.9641 1007.56 69.0958C1006.38 67.2991 1006.33 64.2649 1007.44 61.1907C1008.54 58.1264 1010.83 55.7509 1013.03 53.4453C1014.62 51.7784 1016.13 50.2114 1017.07 48.4946C1019.2 44.582 1021.16 39.2521 1017.25 32.7044C1014.59 28.2628 1010.31 26.8654 1007.46 27.4443C1005.8 27.7837 1004.7 28.7818 1004.51 30.1193C1004.37 31.1473 1004.64 32.0656 1005.29 32.7044C1005.9 33.3033 1006.78 33.5728 1007.63 33.443C1009.24 33.1935 1009.99 31.4368 1010.07 31.2372L1008.68 30.6782C1008.55 30.9976 1008.06 31.866 1007.41 31.9658C1007.01 32.0257 1006.61 31.9059 1006.34 31.6464C1006.04 31.347 1005.92 30.8978 1005.99 30.3389C1006.13 29.3507 1007.27 29.0214 1007.74 28.9215C1010.18 28.4225 1013.77 29.8398 1015.95 33.4829C1019.45 39.3419 1017.81 44.0031 1015.74 47.786C1014.9 49.3231 1013.46 50.8302 1011.94 52.4172C1009.73 54.7229 1007.23 57.328 1006.02 60.6916C1004.73 64.2649 1004.83 67.7183 1006.31 69.9342C1007.15 71.1918 1008.38 71.9304 1009.79 72.0003C1009.85 72.0003 1009.92 72.0003 1009.98 72.0003L1009.99 71.9903Z" fill="#C3A064"></path><path d="M1020.07 60.1444C1020.42 60.1444 1020.78 60.0945 1021.12 59.9947C1022.77 59.4956 1023.95 58.3278 1024.63 56.5013C1025.69 53.5468 1024.41 50.1033 1021.59 48.3067C1020.93 47.8875 1020.27 47.608 1019.7 47.3984L1019.17 48.7958C1019.66 48.9854 1020.24 49.215 1020.78 49.5643C1022.98 50.9717 1024.03 53.7265 1023.22 55.9822C1022.71 57.3497 1021.89 58.1981 1020.7 58.5474C1020.02 58.747 1019.21 58.5973 1018.67 58.1681C1018.37 57.9286 1018.01 57.5094 1018.03 56.8207C1018.07 55.6129 1019.99 55.5231 1020.01 55.5231L1019.95 54.0259C1018.8 54.0758 1016.62 54.7146 1016.55 56.7708C1016.52 57.7988 1016.95 58.7171 1017.75 59.3559C1018.4 59.8649 1019.24 60.1344 1020.08 60.1344L1020.07 60.1444Z" fill="#C3A064"></path><path d="M1014.16 47.1026L1014.64 45.6853C1014.41 45.6055 1014.13 45.5256 1013.82 45.4358C1012.17 44.9567 1009.67 44.2281 1008.15 41.8925C1007.11 40.2855 1007.13 39.0578 1007.33 38.3092C1007.53 37.5606 1008.01 36.9518 1008.65 36.6224C1009.19 36.3429 1009.86 36.3729 1010.44 36.7122C1011.03 37.0516 1011.38 37.6205 1011.41 38.2793C1011.47 39.5968 1009.88 40.1358 1009.82 40.1657L1010.28 41.593C1010.39 41.5531 1013.02 40.6847 1012.9 38.2094C1012.84 37.0516 1012.21 36.0136 1011.19 35.4247C1010.17 34.8358 1008.96 34.7859 1007.96 35.2949C1006.95 35.8139 1006.19 36.7721 1005.88 37.9299C1005.6 38.968 1005.55 40.6448 1006.9 42.7109C1008.71 45.5156 1011.65 46.374 1013.4 46.8831C1013.68 46.9629 1013.94 47.0427 1014.15 47.1126L1014.16 47.1026Z" fill="#C3A064"></path><path d="M999.386 18.6242L1001.42 16.7477C1001.51 16.6579 1003.76 14.5718 1004.83 11.2381C1005.93 7.81456 1005.22 5.62868 1005.19 5.53885L1005.11 5.30928L1004.93 5.16955C1004.87 5.12962 1003.49 4.13151 1001.78 4.10156C1000.06 4.12152 998.637 5.09968 998.577 5.14959L997.898 5.65862L998.487 6.26748C998.487 6.26748 1000.24 8.1639 1000.46 11.1283C1000.7 14.3123 1000.2 15.9492 1000.2 15.9692L999.386 18.6242ZM1003.84 6.24751C1003.96 6.82642 1004.16 8.45335 1003.41 10.779C1003.04 11.9068 1002.52 12.885 1002.01 13.6635C1002.04 12.9249 1002.03 12.0466 1001.96 11.0185C1001.78 8.65298 1000.81 6.89629 1000.16 5.96804C1000.58 5.7784 1001.15 5.57878 1001.77 5.59874C1002.67 5.6187 1003.48 6.01795 1003.85 6.24751H1003.84Z" fill="#C3A064"></path><path d="M994.346 20.5137C994.516 20.5137 994.685 20.5037 994.865 20.4738C996.203 20.2841 997.211 19.1862 997.54 17.5293C998.119 14.6747 996.722 10.3928 992.28 7.7378C985.732 3.82518 980.402 5.78149 976.49 7.91746C974.773 8.85569 973.206 10.3628 971.539 11.9499C969.233 14.1557 966.848 16.4414 963.794 17.5493C960.71 18.6672 957.685 18.6173 955.889 17.4195C955.02 16.8406 954.541 16.0421 954.491 15.1039C954.451 14.3653 954.791 13.6367 955.39 13.1676C955.949 12.7284 956.627 12.5787 957.256 12.7683C958.663 13.1775 959.023 14.7047 959.043 14.7745L960.5 14.4551C960.48 14.3553 959.941 12.0097 957.675 11.341C956.577 11.0216 955.4 11.2611 954.461 12.0097C953.483 12.7783 952.934 13.976 953.004 15.1937C953.074 16.6011 953.813 17.8387 955.07 18.6772C957.286 20.1444 960.739 20.2542 964.313 18.9666C967.676 17.7489 970.281 15.2536 972.587 13.0478C974.174 11.5306 975.671 10.0934 977.218 9.24495C981.001 7.17885 985.662 5.53196 991.521 9.03535C995.165 11.2112 996.582 14.8144 996.083 17.2399C995.983 17.719 995.654 18.8668 994.665 18.9966C994.107 19.0764 993.657 18.9566 993.358 18.6472C993.088 18.3777 992.969 17.9785 993.039 17.5792C993.138 16.9205 994.007 16.4314 994.326 16.2917L993.767 14.9043C993.568 14.9841 991.811 15.7327 991.561 17.3397C991.422 18.208 991.701 19.0864 992.3 19.6952C992.829 20.2342 993.548 20.5137 994.356 20.5137H994.346Z" fill="#C3A064"></path><path d="M968.088 8.45393C968.088 8.45393 968.168 8.45393 968.198 8.45393C970.264 8.38406 970.893 6.19818 970.943 5.05035L969.446 4.99046L970.194 5.02041L969.446 4.99046C969.446 4.99046 969.336 6.92681 968.148 6.96673C967.469 6.9867 967.03 6.63736 966.801 6.32794C966.371 5.77898 966.222 4.98048 966.421 4.29178C966.781 3.10402 967.619 2.27559 968.996 1.77653C971.242 0.968052 974.007 2.01607 975.404 4.22191C975.754 4.7609 975.993 5.3398 976.173 5.83886L977.57 5.30986C977.361 4.74093 977.081 4.0722 976.662 3.41344C974.865 0.588768 971.432 -0.688822 968.477 0.369182C966.651 1.0479 965.473 2.22568 964.984 3.87257C964.655 5.03039 964.894 6.32794 965.613 7.25619C966.222 8.0447 967.1 8.47389 968.078 8.47389L968.088 8.45393Z" fill="#C3A064"></path><path d="M985.842 19.2569C986.321 19.2569 986.731 19.1871 987.07 19.0972C988.228 18.7878 989.186 18.0293 989.705 17.0112C990.214 16.0131 990.164 14.8153 989.575 13.7972C988.986 12.7792 987.948 12.1404 986.791 12.0805C984.305 11.9607 983.447 14.5957 983.407 14.7055L984.834 15.1647L984.126 14.9351L984.834 15.1647C984.854 15.0948 985.403 13.5178 986.721 13.5776C987.379 13.6076 987.948 13.9669 988.288 14.5458C988.617 15.1247 988.657 15.7935 988.378 16.3325C988.048 16.9712 987.429 17.4503 986.691 17.65C985.942 17.8496 984.715 17.8696 983.108 16.8215C980.772 15.3144 980.043 12.8091 979.564 11.1622C979.474 10.8528 979.395 10.5833 979.315 10.3438L977.897 10.8228C977.967 11.0325 978.047 11.292 978.127 11.5714C978.636 13.3281 979.494 16.2626 982.299 18.0692C983.686 18.9675 984.894 19.237 985.852 19.237L985.842 19.2569Z" fill="#C3A064"></path><path d="M21.9407 567.052C21.1522 567.052 20.4136 567.182 20.0243 567.262L19.5951 567.352L19.4155 567.911C19.2059 568.569 18.8965 569.577 16.7405 571.264C14.3451 573.141 10.2128 573.78 8.65578 574.019C8.44618 574.049 8.2765 574.079 8.14674 574.099L7.7974 574.159L7.62772 574.478C7.57782 574.568 6.38008 576.784 5.71134 579.808C5.0426 582.802 5.06256 585.138 5.06256 585.238V585.976H5.80117C5.90098 585.976 8.22659 585.996 11.2309 585.328C14.2552 584.659 16.471 583.461 16.5609 583.411L16.8803 583.242L16.9402 582.892C16.9601 582.763 16.9901 582.593 17.02 582.383C17.2596 580.826 17.8983 576.694 19.7748 574.299C21.4616 572.133 22.4697 571.823 23.1285 571.624L23.6774 571.444L23.7673 571.015C23.8371 570.665 24.0068 569.757 23.9669 568.829C23.9469 568.42 23.917 568.07 23.8771 567.791L23.7972 567.252L23.2582 567.172C22.9788 567.132 22.6294 567.092 22.2202 567.082C22.1304 567.082 22.0405 567.082 21.9507 567.082L21.9407 567.052ZM20.753 568.649C21.1223 568.589 21.6413 568.539 22.1503 568.549C22.2501 568.549 22.3599 568.549 22.4498 568.569C22.4498 568.669 22.4597 568.769 22.4697 568.869C22.4897 569.378 22.4298 569.897 22.3699 570.266C21.5614 570.536 20.3238 571.125 18.5771 573.35C16.4611 576.055 15.8023 580.317 15.5228 582.134C15.5228 582.174 15.5128 582.214 15.5029 582.244C14.8042 582.583 13.0575 583.371 10.8816 583.851C9.03507 584.26 7.44806 584.399 6.55974 584.439C6.60964 583.541 6.74938 581.954 7.14863 580.118C7.62772 577.952 8.41624 576.195 8.7556 575.496C8.79552 575.496 8.82546 575.486 8.86539 575.476C10.682 575.197 14.9439 574.538 17.6488 572.422C19.8746 570.675 20.4635 569.438 20.733 568.639L20.753 568.649Z" fill="#C3A064"></path><path d="M9.69876 577.545C9.21966 578.084 7.97201 581.628 8.04188 582.965C9.37936 583.045 12.9227 581.797 13.4617 581.308C14.0006 580.829 15.6076 575.389 15.6076 575.389C15.6076 575.389 10.1779 576.986 9.68877 577.535L9.69876 577.545Z" fill="#9825DE"></path><path d="M5.67272 563.922L5.17366 564.601C5.13373 564.66 4.09569 566.078 4.12564 567.804C4.15558 569.511 5.1537 570.899 5.19362 570.949L5.33336 571.138L5.56292 571.218C5.65275 571.248 7.82865 571.957 11.2622 570.849C14.5959 569.781 16.6819 567.535 16.7718 567.445L18.6882 565.369L16.0032 566.217C16.0032 566.217 14.3464 566.717 11.1624 566.477C8.19795 566.257 6.32149 564.521 6.30153 564.501L5.6827 563.922H5.67272ZM6.26161 569.851C6.04202 569.481 5.63279 568.673 5.61283 567.775C5.60285 567.166 5.79249 566.587 5.98213 566.168C6.91038 566.816 8.66707 567.795 11.0326 567.964C12.0607 568.044 12.939 568.044 13.6776 568.014C12.8991 568.523 11.9209 569.052 10.7931 569.411C8.47743 570.16 6.85049 569.96 6.26161 569.841V569.851Z" fill="#C3A064"></path><path d="M15.0097 519.01C13.8519 519.01 12.744 519.549 12.0154 520.477C11.2668 521.425 11.0272 522.593 11.3566 523.691C12.0254 525.957 14.3709 526.496 14.4707 526.516L14.7901 525.058L14.6304 525.787L14.7901 525.058C14.7303 525.038 13.2031 524.679 12.7839 523.272C12.5943 522.643 12.744 521.964 13.1832 521.405C13.6523 520.806 14.3709 520.467 15.1195 520.507C16.0578 520.557 16.8562 521.036 17.4352 521.904C18.6229 523.701 18.6728 526.735 17.5649 529.809C16.457 532.874 14.1713 535.249 11.9655 537.555C10.3785 539.222 8.87131 540.789 7.93308 542.505C5.79711 546.418 3.8408 551.748 7.75342 558.296C10.4084 562.737 14.6903 564.135 17.5449 563.556C19.2018 563.216 20.2998 562.218 20.4894 560.881C20.6291 559.853 20.3596 558.934 19.7109 558.296C19.102 557.697 18.2237 557.427 17.3653 557.557C15.7583 557.807 15.0097 559.563 14.9299 559.763L16.3173 560.322C16.447 560.002 16.9361 559.134 17.5949 559.034C17.9941 558.974 18.3933 559.094 18.6628 559.354C18.9623 559.653 19.082 560.102 19.0122 560.661C18.8724 561.649 17.7346 561.979 17.2555 562.078C14.8201 562.578 11.2269 561.16 9.05097 557.517C5.54758 551.658 7.19448 546.997 9.26058 543.214C10.099 541.677 11.5363 540.17 13.0634 538.583C15.2692 536.277 17.7745 533.672 18.9822 530.308C20.2698 526.735 20.17 523.282 18.6928 521.066C17.8544 519.808 16.6167 519.07 15.2094 519C15.1495 519 15.0796 519 15.0197 519L15.0097 519.01Z" fill="#C3A064"></path><path d="M4.93058 530.856C4.58123 530.856 4.22191 530.906 3.88255 531.005C2.22568 531.504 1.0479 532.672 0.369182 534.499C-0.688822 537.453 0.588768 540.897 3.41344 542.693C4.0722 543.112 4.73095 543.392 5.29988 543.602L5.82888 542.204C5.3398 542.015 4.7609 541.785 4.22191 541.436C2.01607 540.028 0.968052 537.274 1.77653 535.018C2.28557 533.65 3.114 532.802 4.30176 532.453C4.98048 532.253 5.78896 532.403 6.32794 532.832C6.62737 533.071 6.9867 533.491 6.96673 534.179C6.92681 535.387 5.01043 535.477 4.99046 535.477L5.05035 536.974C6.19818 536.924 8.38406 536.285 8.45393 534.229C8.48387 533.201 8.05468 532.283 7.24621 531.644C6.59743 531.135 5.75901 530.866 4.92059 530.866L4.93058 530.856Z" fill="#C3A064"></path><path d="M10.8385 543.905L10.3594 545.323C10.5889 545.402 10.8684 545.482 11.1778 545.572C12.8347 546.051 15.33 546.78 16.8471 549.115C17.8852 550.722 17.8652 551.95 17.6656 552.699C17.466 553.447 16.9869 554.056 16.3481 554.385C15.8091 554.665 15.1404 554.635 14.5614 554.296C13.9726 553.956 13.6232 553.387 13.5933 552.729C13.5334 551.411 15.1204 550.872 15.1803 550.842L14.7211 549.415C14.6114 549.455 11.9763 550.323 12.0961 552.798C12.156 553.956 12.7948 554.994 13.8129 555.583C14.8309 556.172 16.0387 556.222 17.0368 555.713C18.0549 555.194 18.8134 554.236 19.1228 553.078C19.4023 552.04 19.4522 550.363 18.1048 548.297C16.2882 545.492 13.3537 544.634 11.597 544.125C11.3176 544.045 11.0581 543.965 10.8485 543.895L10.8385 543.905Z" fill="#C3A064"></path><path d="M25.6144 572.376L23.5783 574.252C23.4884 574.342 21.2427 576.428 20.1747 579.762C19.0668 583.185 19.7754 585.371 19.8054 585.461L19.8852 585.691L20.0749 585.83C20.1348 585.87 21.5122 586.868 23.2189 586.898C24.9357 586.878 26.363 585.9 26.4229 585.85L27.1016 585.341L26.5127 584.733C26.5127 584.733 24.756 582.836 24.5365 579.872C24.2969 576.688 24.796 575.051 24.796 575.031L25.6144 572.376ZM21.1628 584.752C21.043 584.174 20.8434 582.547 21.592 580.221C21.9613 579.093 22.4803 578.115 22.9894 577.336C22.9594 578.075 22.9694 578.953 23.0393 579.981C23.2189 582.347 24.1871 584.104 24.8359 585.032C24.4167 585.222 23.8478 585.421 23.2289 585.401C22.3306 585.381 21.5221 584.982 21.1528 584.752H21.1628Z" fill="#C3A064"></path><path d="M30.6539 570.494C30.4842 570.494 30.3146 570.504 30.1349 570.534C28.7974 570.724 27.7893 571.822 27.46 573.478C26.881 576.333 28.2784 580.615 32.72 583.27C39.2677 587.183 44.5976 585.226 48.5102 583.09C50.227 582.152 51.794 580.645 53.4609 579.058C55.7665 576.852 58.152 574.566 61.2063 573.459C64.2905 572.341 67.3148 572.391 69.1114 573.588C69.9797 574.167 70.4588 574.966 70.5087 575.904C70.5487 576.643 70.2093 577.371 69.6104 577.84C69.0515 578.279 68.3728 578.429 67.744 578.24C66.3366 577.83 65.9773 576.303 65.9573 576.233L64.5001 576.553C64.52 576.653 65.059 578.998 67.3247 579.667C68.4227 579.986 69.6004 579.747 70.5387 578.998C71.5168 578.23 72.0658 577.032 71.9959 575.814C71.9261 574.407 71.1875 573.169 69.9298 572.331C67.714 570.863 64.2605 570.754 60.6873 572.041C57.3236 573.259 54.7185 575.754 52.4129 577.96C50.8259 579.477 49.3287 580.914 47.7816 581.763C43.9987 583.829 39.3375 585.476 33.4786 581.972C29.8355 579.797 28.4181 576.193 28.9172 573.768C29.017 573.289 29.3464 572.141 30.3345 572.011C30.8935 571.931 31.3426 572.051 31.6421 572.361C31.9116 572.63 32.0313 573.029 31.9615 573.429C31.8616 574.087 30.9933 574.576 30.6739 574.716L31.2328 576.104C31.4325 576.024 33.1891 575.275 33.4387 573.668C33.5784 572.8 33.2989 571.921 32.7001 571.313C32.1711 570.774 31.4524 570.494 30.6439 570.494H30.6539Z" fill="#C3A064"></path><path d="M56.9118 582.546C56.9118 582.546 56.8319 582.546 56.802 582.546C54.7359 582.616 54.1071 584.802 54.0572 585.95L55.5544 586.01L54.8058 585.98L55.5544 586.01C55.5544 586.01 55.6642 584.073 56.8519 584.033C57.5306 584.013 57.9698 584.363 58.1994 584.672C58.6286 585.221 58.7783 586.02 58.5787 586.708C58.2193 587.896 57.3809 588.724 56.0035 589.223C53.7577 590.032 50.993 588.984 49.5956 586.778C49.2463 586.239 49.0067 585.66 48.827 585.161L47.4297 585.69C47.6393 586.259 47.9188 586.928 48.338 587.587C50.1346 590.411 53.5681 591.689 56.5225 590.631C58.3491 589.952 59.5269 588.774 60.0159 587.127C60.3453 585.97 60.1058 584.672 59.3871 583.744C58.7783 582.955 57.8999 582.526 56.9218 582.526L56.9118 582.546Z" fill="#C3A064"></path><path d="M39.1576 571.751C38.6785 571.751 38.2693 571.821 37.9299 571.911C36.7721 572.22 35.8139 572.979 35.2949 573.997C34.7859 574.995 34.8358 576.192 35.4247 577.211C36.0136 578.229 37.0516 578.867 38.2094 578.927C40.6947 579.047 41.5531 576.412 41.593 576.302L40.1657 575.843L40.8744 576.073L40.1657 575.843C40.1458 575.913 39.5968 577.49 38.2793 577.43C37.6205 577.4 37.0516 577.041 36.7122 576.462C36.3829 575.883 36.3429 575.214 36.6224 574.675C36.9518 574.037 37.5706 573.557 38.3092 573.358C39.0578 573.158 40.2855 573.138 41.8925 574.186C44.2281 575.693 44.9567 578.199 45.4358 579.846C45.5256 580.155 45.6055 580.425 45.6853 580.664L47.1026 580.185C47.0328 579.975 46.9529 579.716 46.8731 579.436C46.364 577.68 45.5056 574.745 42.7009 572.939C41.3136 572.04 40.1058 571.771 39.1476 571.771L39.1576 571.751Z" fill="#C3A064"></path><path d="M1003.06 567.052C1003.85 567.052 1004.59 567.182 1004.98 567.262L1005.4 567.352L1005.58 567.911C1005.79 568.569 1006.1 569.577 1008.26 571.264C1010.65 573.141 1014.79 573.78 1016.34 574.019C1016.55 574.049 1016.72 574.079 1016.85 574.099L1017.2 574.159L1017.37 574.478C1017.42 574.568 1018.62 576.784 1019.29 579.808C1019.96 582.802 1019.94 585.138 1019.94 585.238V585.976H1019.2C1019.1 585.976 1016.77 585.996 1013.77 585.328C1010.74 584.659 1008.53 583.461 1008.44 583.411L1008.12 583.242L1008.06 582.892C1008.04 582.763 1008.01 582.593 1007.98 582.383C1007.74 580.826 1007.1 576.694 1005.23 574.299C1003.54 572.133 1002.53 571.823 1001.87 571.624L1001.32 571.444L1001.23 571.015C1001.16 570.665 1000.99 569.757 1001.03 568.829C1001.05 568.42 1001.08 568.07 1001.12 567.791L1001.2 567.252L1001.74 567.172C1002.02 567.132 1002.37 567.092 1002.78 567.082C1002.87 567.082 1002.96 567.082 1003.05 567.082L1003.06 567.052ZM1004.25 568.649C1003.88 568.589 1003.36 568.539 1002.85 568.549C1002.75 568.549 1002.64 568.549 1002.55 568.569C1002.55 568.669 1002.54 568.769 1002.53 568.869C1002.51 569.378 1002.57 569.897 1002.63 570.266C1003.44 570.536 1004.68 571.125 1006.42 573.35C1008.54 576.055 1009.2 580.317 1009.48 582.134C1009.48 582.174 1009.49 582.214 1009.5 582.244C1010.2 582.583 1011.94 583.371 1014.12 583.851C1015.96 584.26 1017.55 584.399 1018.44 584.439C1018.39 583.541 1018.25 581.954 1017.85 580.118C1017.37 577.952 1016.58 576.195 1016.24 575.496C1016.2 575.496 1016.17 575.486 1016.13 575.476C1014.32 575.197 1010.06 574.538 1007.35 572.422C1005.13 570.675 1004.54 569.438 1004.27 568.639L1004.25 568.649Z" fill="#C3A064"></path><path d="M1015.3 577.545C1015.78 578.084 1017.03 581.628 1016.96 582.965C1015.62 583.045 1012.08 581.797 1011.54 581.308C1011 580.829 1009.39 575.389 1009.39 575.389C1009.39 575.389 1014.82 576.986 1015.31 577.535L1015.3 577.545Z" fill="#9825DE"></path><path d="M1019.33 563.922L1019.83 564.601C1019.87 564.66 1020.9 566.078 1020.87 567.804C1020.84 569.511 1019.85 570.899 1019.81 570.949L1019.67 571.138L1019.44 571.218C1019.35 571.248 1017.17 571.957 1013.74 570.849C1010.4 569.781 1008.32 567.535 1008.23 567.445L1006.31 565.369L1009 566.217C1009 566.217 1010.65 566.717 1013.84 566.477C1016.8 566.257 1018.68 564.521 1018.7 564.501L1019.32 563.922H1019.33ZM1018.74 569.851C1018.96 569.481 1019.37 568.673 1019.39 567.775C1019.4 567.166 1019.21 566.587 1019.02 566.168C1018.09 566.816 1016.33 567.795 1013.97 567.964C1012.94 568.044 1012.06 568.044 1011.32 568.014C1012.1 568.523 1013.08 569.052 1014.21 569.411C1016.52 570.16 1018.15 569.96 1018.74 569.841V569.851Z" fill="#C3A064"></path><path d="M1009.99 519.01C1011.15 519.01 1012.26 519.549 1012.98 520.477C1013.73 521.425 1013.97 522.593 1013.64 523.691C1012.97 525.957 1010.63 526.496 1010.53 526.516L1010.21 525.058L1010.37 525.787L1010.21 525.058C1010.27 525.038 1011.8 524.679 1012.22 523.272C1012.41 522.643 1012.26 521.964 1011.82 521.405C1011.35 520.806 1010.63 520.467 1009.88 520.507C1008.94 520.557 1008.14 521.036 1007.56 521.904C1006.38 523.701 1006.33 526.735 1007.44 529.809C1008.54 532.874 1010.83 535.249 1013.03 537.555C1014.62 539.222 1016.13 540.789 1017.07 542.505C1019.2 546.418 1021.16 551.748 1017.25 558.296C1014.59 562.737 1010.31 564.135 1007.46 563.556C1005.8 563.216 1004.7 562.218 1004.51 560.881C1004.37 559.853 1004.64 558.934 1005.29 558.296C1005.9 557.697 1006.78 557.427 1007.63 557.557C1009.24 557.807 1009.99 559.563 1010.07 559.763L1008.68 560.322C1008.55 560.002 1008.06 559.134 1007.41 559.034C1007.01 558.974 1006.61 559.094 1006.34 559.354C1006.04 559.653 1005.92 560.102 1005.99 560.661C1006.13 561.649 1007.27 561.979 1007.74 562.078C1010.18 562.578 1013.77 561.16 1015.95 557.517C1019.45 551.658 1017.81 546.997 1015.74 543.214C1014.9 541.677 1013.46 540.17 1011.94 538.583C1009.73 536.277 1007.23 533.672 1006.02 530.308C1004.73 526.735 1004.83 523.282 1006.31 521.066C1007.15 519.808 1008.38 519.07 1009.79 519C1009.85 519 1009.92 519 1009.98 519L1009.99 519.01Z" fill="#C3A064"></path><path d="M1020.07 530.856C1020.42 530.856 1020.78 530.906 1021.12 531.005C1022.77 531.504 1023.95 532.672 1024.63 534.499C1025.69 537.453 1024.41 540.897 1021.59 542.693C1020.93 543.112 1020.27 543.392 1019.7 543.602L1019.17 542.204C1019.66 542.015 1020.24 541.785 1020.78 541.436C1022.98 540.028 1024.03 537.274 1023.22 535.018C1022.71 533.65 1021.89 532.802 1020.7 532.453C1020.02 532.253 1019.21 532.403 1018.67 532.832C1018.37 533.071 1018.01 533.491 1018.03 534.179C1018.07 535.387 1019.99 535.477 1020.01 535.477L1019.95 536.974C1018.8 536.924 1016.62 536.285 1016.55 534.229C1016.52 533.201 1016.95 532.283 1017.75 531.644C1018.4 531.135 1019.24 530.866 1020.08 530.866L1020.07 530.856Z" fill="#C3A064"></path><path d="M1014.16 543.905L1014.64 545.323C1014.41 545.402 1014.13 545.482 1013.82 545.572C1012.17 546.051 1009.67 546.78 1008.15 549.115C1007.11 550.722 1007.13 551.95 1007.33 552.699C1007.53 553.447 1008.01 554.056 1008.65 554.385C1009.19 554.665 1009.86 554.635 1010.44 554.296C1011.03 553.956 1011.38 553.387 1011.41 552.729C1011.47 551.411 1009.88 550.872 1009.82 550.842L1010.28 549.415C1010.39 549.455 1013.02 550.323 1012.9 552.798C1012.84 553.956 1012.21 554.994 1011.19 555.583C1010.17 556.172 1008.96 556.222 1007.96 555.713C1006.95 555.194 1006.19 554.236 1005.88 553.078C1005.6 552.04 1005.55 550.363 1006.9 548.297C1008.71 545.492 1011.65 544.634 1013.4 544.125C1013.68 544.045 1013.94 543.965 1014.15 543.895L1014.16 543.905Z" fill="#C3A064"></path><path d="M999.386 572.376L1001.42 574.252C1001.51 574.342 1003.76 576.428 1004.83 579.762C1005.93 583.185 1005.22 585.371 1005.19 585.461L1005.11 585.691L1004.93 585.83C1004.87 585.87 1003.49 586.868 1001.78 586.898C1000.06 586.878 998.637 585.9 998.577 585.85L997.898 585.341L998.487 584.733C998.487 584.733 1000.24 582.836 1000.46 579.872C1000.7 576.688 1000.2 575.051 1000.2 575.031L999.386 572.376ZM1003.84 584.752C1003.96 584.174 1004.16 582.547 1003.41 580.221C1003.04 579.093 1002.52 578.115 1002.01 577.336C1002.04 578.075 1002.03 578.953 1001.96 579.981C1001.78 582.347 1000.81 584.104 1000.16 585.032C1000.58 585.222 1001.15 585.421 1001.77 585.401C1002.67 585.381 1003.48 584.982 1003.85 584.752H1003.84Z" fill="#C3A064"></path><path d="M994.346 570.494C994.516 570.494 994.685 570.504 994.865 570.534C996.203 570.724 997.211 571.822 997.54 573.478C998.119 576.333 996.722 580.615 992.28 583.27C985.732 587.183 980.402 585.226 976.49 583.09C974.773 582.152 973.206 580.645 971.539 579.058C969.233 576.852 966.848 574.566 963.794 573.459C960.71 572.341 957.685 572.391 955.889 573.588C955.02 574.167 954.541 574.966 954.491 575.904C954.451 576.643 954.791 577.371 955.39 577.84C955.949 578.279 956.627 578.429 957.256 578.24C958.663 577.83 959.023 576.303 959.043 576.233L960.5 576.553C960.48 576.653 959.941 578.998 957.675 579.667C956.577 579.986 955.4 579.747 954.461 578.998C953.483 578.23 952.934 577.032 953.004 575.814C953.074 574.407 953.813 573.169 955.07 572.331C957.286 570.863 960.739 570.754 964.313 572.041C967.676 573.259 970.281 575.754 972.587 577.96C974.174 579.477 975.671 580.914 977.218 581.763C981.001 583.829 985.662 585.476 991.521 581.972C995.165 579.797 996.582 576.193 996.083 573.768C995.983 573.289 995.654 572.141 994.665 572.011C994.107 571.931 993.657 572.051 993.358 572.361C993.088 572.63 992.969 573.029 993.039 573.429C993.138 574.087 994.007 574.576 994.326 574.716L993.767 576.104C993.568 576.024 991.811 575.275 991.561 573.668C991.422 572.8 991.701 571.921 992.3 571.313C992.829 570.774 993.548 570.494 994.356 570.494H994.346Z" fill="#C3A064"></path><path d="M968.088 582.546C968.088 582.546 968.168 582.546 968.198 582.546C970.264 582.616 970.893 584.802 970.943 585.95L969.446 586.01L970.194 585.98L969.446 586.01C969.446 586.01 969.336 584.073 968.148 584.033C967.469 584.013 967.03 584.363 966.801 584.672C966.371 585.221 966.222 586.02 966.421 586.708C966.781 587.896 967.619 588.724 968.996 589.223C971.242 590.032 974.007 588.984 975.404 586.778C975.754 586.239 975.993 585.66 976.173 585.161L977.57 585.69C977.361 586.259 977.081 586.928 976.662 587.587C974.865 590.411 971.432 591.689 968.477 590.631C966.651 589.952 965.473 588.774 964.984 587.127C964.655 585.97 964.894 584.672 965.613 583.744C966.222 582.955 967.1 582.526 968.078 582.526L968.088 582.546Z" fill="#C3A064"></path><path d="M985.842 571.751C986.321 571.751 986.731 571.821 987.07 571.911C988.228 572.22 989.186 572.979 989.705 573.997C990.214 574.995 990.164 576.192 989.575 577.211C988.986 578.229 987.948 578.867 986.791 578.927C984.305 579.047 983.447 576.412 983.407 576.302L984.834 575.843L984.126 576.073L984.834 575.843C984.854 575.913 985.403 577.49 986.721 577.43C987.379 577.4 987.948 577.041 988.288 576.462C988.617 575.883 988.657 575.214 988.378 574.675C988.048 574.037 987.429 573.557 986.691 573.358C985.942 573.158 984.715 573.138 983.108 574.186C980.772 575.693 980.043 578.199 979.564 579.846C979.474 580.155 979.395 580.425 979.315 580.664L977.897 580.185C977.967 579.975 978.047 579.716 978.127 579.436C978.636 577.68 979.494 574.745 982.299 572.939C983.686 572.04 984.894 571.771 985.852 571.771L985.842 571.751Z" fill="#C3A064"></path><path d="M581.551 10.5104C583.235 10.5104 584.772 11.2603 585.78 12.6003C587.009 14.2353 587.206 16.4603 586.321 18.415C584.636 22.0784 580.383 23.8117 572.503 24.033C568.311 24.1436 564.107 23.5413 559.632 22.8897C553.534 22.0046 547.24 21.0949 540.405 21.9677C530.571 23.2217 528.567 25.5943 528.247 26.8851C527.989 27.9546 528.186 28.9872 528.776 29.6019C529.243 30.0813 529.919 30.2534 530.718 30.0936C532.538 29.7248 532.624 27.4136 532.624 27.3153L534.468 27.3522C534.443 28.6922 533.693 31.3598 531.087 31.9007C529.649 32.1957 528.358 31.8269 527.448 30.8804C526.416 29.7986 526.047 28.1513 526.452 26.4548C527.227 23.2831 531.714 21.2178 540.159 20.136C547.228 19.2386 553.657 20.1729 559.878 21.0703C564.267 21.7096 568.409 22.2997 572.429 22.189C579.51 21.98 583.272 20.5786 584.624 17.6405C585.239 16.3128 585.104 14.8008 584.28 13.7067C583.518 12.6863 582.325 12.2069 580.961 12.4036C578.121 12.8093 578.367 15.7965 578.379 15.9194L576.547 16.0916C576.388 14.4197 577.064 11.1005 580.703 10.5842C580.985 10.5473 581.256 10.5227 581.539 10.5227L581.551 10.5104Z" fill="#C3A064"></path><path d="M567.156 15.17C569.541 15.17 571.373 15.674 571.508 15.7109L571.004 17.4811C571.004 17.4811 566.394 16.2272 562.669 17.8499C560.272 18.8825 558.833 20.6897 557.309 22.5828C556.387 23.7384 555.428 24.9308 554.223 26.0372C550.855 29.0982 547.044 30.5611 544.598 30.9176C541.561 31.3602 539.816 29.7621 539.435 27.9795C539.017 26.0003 540.283 24.0457 542.262 23.6277C544.008 23.2466 545.753 24.1932 546.43 25.8651L544.721 26.5535C544.389 25.7299 543.516 25.2504 542.656 25.4348C541.672 25.6438 541.033 26.615 541.242 27.5984C541.488 28.7417 542.692 29.3318 544.34 29.0859C546.516 28.7663 549.933 27.4387 552.982 24.6604C554.088 23.6523 554.998 22.5213 555.871 21.4272C557.469 19.4357 559.116 17.3705 561.931 16.1534C563.677 15.3912 565.546 15.17 567.156 15.17V15.17Z" fill="#C3A064"></path><path d="M444.319 10.5071C444.589 10.5071 444.872 10.5317 445.155 10.5685C448.806 11.0849 449.47 14.4041 449.322 16.0759L447.491 15.9038C447.515 15.5842 447.675 12.7813 444.909 12.388C443.569 12.2036 442.364 12.6707 441.59 13.691C440.766 14.7851 440.643 16.2972 441.246 17.6249C442.598 20.563 446.36 21.9644 453.44 22.1734C457.448 22.284 461.603 21.694 465.992 21.0547C472.212 20.1573 478.629 19.223 485.71 20.1204C494.168 21.2022 498.655 23.2675 499.417 26.4392C499.835 28.1356 499.466 29.7952 498.422 30.8647C497.512 31.8113 496.209 32.1801 494.783 31.8851C492.177 31.3565 491.427 28.6765 491.402 27.3366L493.246 27.2997C493.246 27.398 493.344 29.7092 495.152 30.078C495.963 30.2501 496.639 30.078 497.094 29.5862C497.684 28.9716 497.881 27.9389 497.622 26.8694C497.303 25.5663 495.311 23.1937 485.464 21.9521C478.642 21.0916 472.335 22.0013 466.238 22.8741C461.763 23.5257 457.534 24.128 453.367 24.0174C445.487 23.7961 441.233 22.0627 439.549 18.3994C438.652 16.457 438.861 14.232 440.09 12.5847C441.086 11.2447 442.622 10.4948 444.307 10.4948L444.319 10.5071Z" fill="#C3A064"></path><path d="M458.718 15.1711C460.329 15.1711 462.185 15.4047 463.943 16.1546C466.758 17.3716 468.405 19.4369 470.003 21.4284C470.876 22.5225 471.786 23.6535 472.892 24.6616C475.953 27.4398 479.359 28.7675 481.534 29.0871C483.169 29.3207 484.386 28.7429 484.632 27.5873C484.731 27.1079 484.632 26.6284 484.374 26.2105C484.104 25.8048 483.698 25.5221 483.219 25.4114C482.358 25.2393 481.473 25.6942 481.153 26.5301L479.445 25.8417C480.108 24.1821 481.854 23.2478 483.612 23.6043C484.571 23.801 485.395 24.3665 485.923 25.1902C486.464 26.0138 486.648 26.9973 486.439 27.9561C486.058 29.7387 484.313 31.3368 481.276 30.8942C478.83 30.5377 475.019 29.0748 471.651 26.0138C470.434 24.9074 469.487 23.7149 468.565 22.5594C467.041 20.6539 465.602 18.8591 463.205 17.8265C459.468 16.2038 454.92 17.4454 454.87 17.4577L454.366 15.6874C454.489 15.6506 456.333 15.1465 458.718 15.1465V15.1711Z" fill="#C3A064"></path><path d="M512.931 -0.00104759L513.583 0.638189C513.669 0.724241 515.71 2.74033 517.738 5.93658C519.791 9.14512 520.676 12.1201 520.713 12.2553L520.836 12.6856L520.578 13.0421C520.43 13.2634 520.172 13.5707 519.865 13.9518C518.5 15.6114 515.98 18.7093 515.562 22.1022C515.181 25.2739 515.783 26.368 516.189 27.0933L516.595 27.8678L516.3 28.3103C515.992 28.7652 515.378 29.6503 514.579 30.3879C514.21 30.7321 513.878 31.0025 513.595 31.2115L513.054 31.6172L512.513 31.2115C512.231 31.0025 511.899 30.7321 511.53 30.3879C510.719 29.638 510.104 28.7652 509.797 28.3103L509.502 27.8678L509.809 27.2777C510.178 26.577 510.719 25.5197 510.301 22.1022C509.883 18.7093 507.363 15.6114 505.998 13.9518C505.691 13.5707 505.432 13.2634 505.285 13.0421L505.027 12.6856L505.15 12.2553C505.187 12.1324 506.072 9.15742 508.125 5.93658C510.153 2.74033 512.194 0.724241 512.28 0.638189L512.931 -0.00104759ZM518.795 12.3291C518.488 11.4194 517.64 9.21887 516.177 6.92003C514.935 4.9654 513.669 3.45335 512.931 2.642C512.194 3.46564 510.928 4.9654 509.686 6.92003C508.223 9.23116 507.375 11.4317 507.068 12.3291C507.166 12.4643 507.289 12.6118 507.424 12.7716C508.899 14.5787 511.653 17.9471 512.132 21.8686C512.55 25.323 512.083 26.8106 511.641 27.7325C511.911 28.1136 512.317 28.6054 512.772 29.0356C512.87 29.1217 512.956 29.2077 513.042 29.2815C513.128 29.2077 513.226 29.1217 513.325 29.0356C513.78 28.6177 514.173 28.1259 514.443 27.7448C513.952 26.8351 513.3 25.3108 513.718 21.8686C514.198 17.9348 516.939 14.5787 518.426 12.7716C518.562 12.6118 518.685 12.4643 518.783 12.3291H518.795Z" fill="#C3A064"></path><path d="M516.226 11.3834C516.177 10.486 514.173 6.31856 512.944 5.22446C511.714 6.31856 509.711 10.486 509.661 11.3834C509.612 12.2808 512.944 17.6406 512.944 17.6406C512.944 17.6406 516.275 12.2808 516.226 11.3834Z" fill="#45DAFF"></path><path d="M525.602 13.1508L525.898 13.2C525.984 13.2123 528.049 13.5442 529.573 15.0071C531.098 16.4823 531.442 18.609 531.454 18.7073L531.602 19.74L530.557 19.7646C530.557 19.7646 527.373 19.8875 524.607 22.2847C521.632 24.854 520.624 26.7103 520.624 26.7225L519.026 29.7344L518.89 26.3292C518.89 26.1693 518.755 22.3953 520.722 18.5598C522.738 14.6137 525.258 13.3352 525.357 13.2737L525.615 13.1385L525.602 13.1508ZM529.352 18.0558C529.155 17.5272 528.823 16.8633 528.282 16.3347C527.483 15.5725 526.426 15.2161 525.91 15.0931C525.307 15.4988 523.709 16.7404 522.345 19.408C521.681 20.7111 521.275 22.0265 521.042 23.1452C521.656 22.4814 522.431 21.7192 523.39 20.8832C525.602 18.9778 527.987 18.3016 529.352 18.0558V18.0558Z" fill="#C3A064"></path><path d="M500.262 13.1551L500.52 13.2904C500.631 13.3395 503.139 14.6303 505.155 18.5764C507.122 22.4119 506.999 26.186 506.987 26.3458L506.851 29.8125L505.253 26.7269C505.253 26.7269 504.245 24.846 501.27 22.289C498.492 19.8918 495.345 19.7812 495.308 19.7689L494.275 19.732L494.423 18.7116C494.435 18.6256 494.767 16.4866 496.304 15.0114C497.816 13.5485 499.893 13.2166 499.979 13.2043L500.274 13.1551H500.262ZM504.823 23.1372C504.589 22.0185 504.196 20.7032 503.52 19.4001C502.155 16.7325 500.557 15.4908 499.943 15.0852C499.426 15.2204 498.369 15.5646 497.57 16.3268C497.029 16.8431 496.697 17.5192 496.5 18.0478C497.877 18.2937 500.25 18.9698 502.463 20.8753C503.421 21.6989 504.196 22.4611 504.811 23.1372H504.823Z" fill="#C3A064"></path><path d="M444.316 580.49C442.632 580.49 441.096 579.74 440.087 578.4C438.858 576.765 438.661 574.54 439.547 572.585C441.231 568.922 445.484 567.188 453.364 566.967C457.556 566.856 461.761 567.459 466.235 568.11C472.333 568.995 478.627 569.905 485.462 569.032C495.297 567.778 497.3 565.406 497.62 564.115C497.878 563.045 497.681 562.013 497.091 561.398C496.624 560.919 495.948 560.747 495.149 560.906C493.33 561.275 493.244 563.586 493.244 563.685L491.4 563.648C491.424 562.308 492.174 559.64 494.78 559.099C496.218 558.804 497.509 559.173 498.419 560.12C499.452 561.201 499.82 562.849 499.415 564.545C498.64 567.717 494.153 569.782 485.708 570.864C478.639 571.761 472.21 570.827 465.989 569.93C461.601 569.29 457.458 568.7 453.438 568.811C446.357 569.02 442.595 570.421 441.243 573.36C440.628 574.687 440.764 576.199 441.587 577.293C442.349 578.314 443.542 578.793 444.906 578.596C447.746 578.191 447.5 575.203 447.488 575.081L449.32 574.908C449.48 576.58 448.803 579.9 445.165 580.416C444.882 580.453 444.611 580.477 444.329 580.477L444.316 580.49Z" fill="#C3A064"></path><path d="M458.711 575.83C456.326 575.83 454.495 575.326 454.359 575.289L454.863 573.519C454.863 573.519 459.473 574.773 463.198 573.15C465.595 572.117 467.034 570.31 468.558 568.417C469.48 567.262 470.439 566.069 471.644 564.963C475.012 561.902 478.823 560.439 481.269 560.082C484.306 559.64 486.051 561.238 486.432 563.02C486.85 565 485.584 566.954 483.605 567.372C481.859 567.753 480.114 566.807 479.438 565.135L481.146 564.446C481.478 565.27 482.351 565.75 483.212 565.565C484.195 565.356 484.834 564.385 484.625 563.402C484.38 562.258 483.175 561.668 481.527 561.914C479.352 562.234 475.934 563.561 472.885 566.34C471.779 567.348 470.869 568.479 469.996 569.573C468.398 571.564 466.751 573.63 463.936 574.847C462.19 575.609 460.322 575.83 458.711 575.83V575.83Z" fill="#C3A064"></path><path d="M581.548 580.493C581.278 580.493 580.995 580.468 580.712 580.431C577.061 579.915 576.397 576.596 576.545 574.924L578.377 575.096C578.352 575.416 578.192 578.219 580.958 578.612C582.298 578.796 583.503 578.329 584.277 577.309C585.101 576.215 585.224 574.703 584.622 573.375C583.269 570.437 579.508 569.036 572.427 568.827C568.419 568.716 564.264 569.306 559.875 569.945C553.655 570.843 547.238 571.777 540.157 570.88C531.699 569.798 527.212 567.733 526.45 564.561C526.032 562.864 526.401 561.205 527.446 560.135C528.355 559.189 529.658 558.82 531.085 559.115C533.691 559.644 534.441 562.323 534.465 563.663L532.621 563.7C532.621 563.602 532.523 561.291 530.716 560.922C529.904 560.75 529.228 560.922 528.773 561.414C528.183 562.028 527.987 563.061 528.245 564.131C528.564 565.434 530.556 567.806 540.403 569.048C547.226 569.908 553.532 568.999 559.629 568.126C564.104 567.474 568.333 566.872 572.5 566.983C580.38 567.204 584.634 568.937 586.318 572.601C587.216 574.543 587.007 576.768 585.777 578.415C584.781 579.755 583.245 580.505 581.561 580.505L581.548 580.493Z" fill="#C3A064"></path><path d="M567.149 575.829C565.539 575.829 563.682 575.595 561.924 574.845C559.109 573.628 557.462 571.563 555.864 569.572C554.991 568.477 554.081 567.346 552.975 566.338C549.914 563.56 546.509 562.233 544.333 561.913C542.698 561.679 541.481 562.257 541.235 563.413C541.136 563.892 541.235 564.372 541.493 564.79C541.763 565.195 542.169 565.478 542.649 565.589C543.509 565.761 544.394 565.306 544.714 564.47L546.423 565.158C545.759 566.818 544.013 567.752 542.255 567.396C541.296 567.199 540.473 566.633 539.944 565.81C539.403 564.986 539.219 564.003 539.428 563.044C539.809 561.261 541.554 559.663 544.591 560.106C547.037 560.462 550.848 561.925 554.217 564.986C555.434 566.093 556.38 567.285 557.302 568.441C558.826 570.346 560.265 572.141 562.662 573.174C566.399 574.796 570.948 573.555 570.997 573.542L571.501 575.313C571.378 575.349 569.534 575.853 567.149 575.853V575.829Z" fill="#C3A064"></path><path d="M512.936 591.001L512.284 590.362C512.198 590.276 510.158 588.26 508.129 585.063C506.076 581.855 505.191 578.88 505.154 578.745L505.031 578.314L505.289 577.958C505.437 577.737 505.695 577.429 506.002 577.048C507.367 575.389 509.887 572.291 510.305 568.898C510.686 565.726 510.084 564.632 509.678 563.907L509.272 563.132L509.567 562.69C509.875 562.235 510.489 561.35 511.289 560.612C511.657 560.268 511.989 559.997 512.272 559.788L512.813 559.383L513.354 559.788C513.637 559.997 513.968 560.268 514.337 560.612C515.149 561.362 515.763 562.235 516.071 562.69L516.366 563.132L516.058 563.722C515.69 564.423 515.149 565.48 515.567 568.898C515.985 572.291 518.505 575.389 519.869 577.048C520.177 577.429 520.435 577.737 520.582 577.958L520.84 578.314L520.717 578.745C520.681 578.868 519.795 581.843 517.742 585.063C515.714 588.26 513.673 590.276 513.587 590.362L512.936 591.001ZM507.072 578.671C507.379 579.581 508.227 581.781 509.69 584.08C510.932 586.035 512.198 587.547 512.936 588.358C513.673 587.534 514.94 586.035 516.181 584.08C517.644 581.769 518.492 579.568 518.8 578.671C518.701 578.536 518.578 578.388 518.443 578.228C516.968 576.421 514.214 573.053 513.735 569.131C513.317 565.677 513.784 564.189 514.227 563.267C513.956 562.886 513.55 562.395 513.096 561.964C512.997 561.878 512.911 561.792 512.825 561.719C512.739 561.792 512.641 561.878 512.542 561.964C512.088 562.382 511.694 562.874 511.424 563.255C511.915 564.165 512.567 565.689 512.149 569.131C511.67 573.065 508.928 576.421 507.441 578.228C507.305 578.388 507.183 578.536 507.084 578.671H507.072Z" fill="#C3A064"></path><path d="M509.641 579.617C509.69 580.514 511.694 584.681 512.923 585.776C514.153 584.681 516.157 580.514 516.206 579.617C516.255 578.719 512.923 573.359 512.923 573.359C512.923 573.359 509.592 578.719 509.641 579.617Z" fill="#9825DE"></path><path d="M500.265 577.849L499.97 577.8C499.884 577.788 497.818 577.456 496.294 575.993C494.77 574.518 494.425 572.391 494.413 572.293L494.266 571.26L495.311 571.235C495.311 571.235 498.495 571.113 501.26 568.715C504.235 566.146 505.244 564.29 505.244 564.277L506.842 561.266L506.977 564.671C506.977 564.831 507.112 568.605 505.145 572.44C503.129 576.386 500.609 577.665 500.511 577.726L500.252 577.862L500.265 577.849ZM496.515 572.944C496.712 573.473 497.044 574.137 497.585 574.665C498.384 575.427 499.441 575.784 499.957 575.907C500.56 575.501 502.158 574.26 503.522 571.592C504.186 570.289 504.592 568.973 504.826 567.855C504.211 568.519 503.436 569.281 502.478 570.117C500.265 572.022 497.88 572.698 496.515 572.944V572.944Z" fill="#C3A064"></path><path d="M525.605 577.845L525.347 577.71C525.236 577.66 522.728 576.37 520.712 572.424C518.745 568.588 518.868 564.814 518.881 564.654L519.016 561.188L520.614 564.273C520.614 564.273 521.622 566.154 524.597 568.711C527.375 571.108 530.522 571.219 530.559 571.231L531.592 571.268L531.444 572.288C531.432 572.374 531.1 574.513 529.563 575.989C528.051 577.451 525.974 577.783 525.888 577.796L525.593 577.845H525.605ZM521.044 567.863C521.278 568.981 521.671 570.297 522.347 571.6C523.712 574.268 525.31 575.509 525.925 575.915C526.441 575.78 527.498 575.435 528.297 574.673C528.838 574.157 529.17 573.481 529.367 572.952C527.99 572.706 525.617 572.03 523.405 570.125C522.446 569.301 521.671 568.539 521.057 567.863H521.044Z" fill="#C3A064"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 894 940" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M16 75L16 869" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M878 75L878 869" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M71 20L375.5 20" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M518 20L823 20" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M521 924L823 924" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M72 924L374 924" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M21.9407 27.9556C21.1522 27.9556 20.4136 27.8259 20.0243 27.746L19.5951 27.6562L19.4155 27.0972C19.2059 26.4385 18.8965 25.4304 16.7405 23.7436C14.3451 21.8671 10.2128 21.2283 8.65578 20.9888C8.44618 20.9588 8.2765 20.9289 8.14674 20.9089L7.7974 20.849L7.62772 20.5296C7.57782 20.4398 6.38008 18.224 5.71134 15.1997C5.0426 12.2053 5.06256 9.86973 5.06256 9.76992V9.03131H5.80117C5.90098 9.03131 8.22659 9.01135 11.2309 9.68009C14.2552 10.3488 16.471 11.5466 16.5609 11.5965L16.8803 11.7662L16.9402 12.1155C16.9601 12.2453 16.9901 12.4149 17.02 12.6245C17.2596 14.1816 17.8983 18.3138 19.7748 20.7093C21.4616 22.8752 22.4697 23.1846 23.1285 23.3842L23.6774 23.5639L23.7673 23.9931C23.8371 24.3424 24.0068 25.2507 23.9669 26.179C23.9469 26.5882 23.917 26.9375 23.8771 27.217L23.7972 27.756L23.2582 27.8358C22.9788 27.8758 22.6294 27.9157 22.2202 27.9257C22.1304 27.9257 22.0405 27.9257 21.9507 27.9257L21.9407 27.9556ZM20.753 26.3586C21.1223 26.4185 21.6413 26.4684 22.1503 26.4584C22.2501 26.4584 22.3599 26.4584 22.4498 26.4385C22.4498 26.3387 22.4597 26.2388 22.4697 26.139C22.4897 25.63 22.4298 25.111 22.3699 24.7417C21.5614 24.4722 20.3238 23.8833 18.5771 21.6575C16.4611 18.9526 15.8023 14.6906 15.5228 12.8741C15.5228 12.8341 15.5128 12.7942 15.5029 12.7643C14.8042 12.4249 13.0575 11.6364 10.8816 11.1573C9.03507 10.7481 7.44806 10.6083 6.55974 10.5684C6.60964 11.4667 6.74938 13.0537 7.14863 14.8903C7.62772 17.0562 8.41624 18.8129 8.7556 19.5115C8.79552 19.5115 8.82546 19.5215 8.86539 19.5315C10.682 19.811 14.9439 20.4697 17.6488 22.5857C19.8746 24.3324 20.4635 25.5701 20.733 26.3686L20.753 26.3586Z" fill="#C3A064"></path><path d="M9.69876 17.4547C9.21966 16.9157 7.97201 13.3724 8.04188 12.0349C9.37936 11.9551 12.9227 13.2027 13.4617 13.6918C14.0006 14.1709 15.6076 19.6106 15.6076 19.6106C15.6076 19.6106 10.1779 18.0136 9.68877 17.4647L9.69876 17.4547Z" fill="#45DAFF"></path><path d="M5.67272 31.0782L5.17366 30.3995C5.13373 30.3396 4.09569 28.9222 4.12564 27.1955C4.15558 25.4887 5.1537 24.1013 5.19362 24.0514L5.33336 23.8618L5.56292 23.7819C5.65275 23.752 7.82865 23.0433 11.2622 24.1512C14.5959 25.2192 16.6819 27.465 16.7718 27.5548L18.6882 29.6309L16.0032 28.7825C16.0032 28.7825 14.3464 28.2834 11.1624 28.523C8.19795 28.7426 6.32149 30.4793 6.30153 30.4993L5.6827 31.0782H5.67272ZM6.26161 25.1494C6.04202 25.5187 5.63279 26.3271 5.61283 27.2254C5.60285 27.8343 5.79249 28.4132 5.98213 28.8324C6.91038 28.1836 8.66707 27.2055 11.0326 27.0358C12.0607 26.956 12.939 26.956 13.6776 26.9859C12.8991 26.4769 11.9209 25.9479 10.7931 25.5885C8.47743 24.8399 6.85049 25.0396 6.26161 25.1593V25.1494Z" fill="#C3A064"></path><path d="M15.0097 75.9903C13.8519 75.9903 12.744 75.4513 12.0154 74.5231C11.2668 73.5748 11.0272 72.4071 11.3566 71.3091C12.0254 69.0434 14.3709 68.5044 14.4707 68.4844L14.7901 69.9417L14.6304 69.2131L14.7901 69.9417C14.7303 69.9617 13.2031 70.321 12.7839 71.7283C12.5943 72.3571 12.744 73.0359 13.1832 73.5948C13.6523 74.1937 14.3709 74.533 15.1195 74.4931C16.0578 74.4432 16.8562 73.9641 17.4352 73.0958C18.6229 71.2991 18.6728 68.2649 17.5649 65.1907C16.457 62.1264 14.1713 59.7509 11.9655 57.4453C10.3785 55.7784 8.87131 54.2114 7.93308 52.4946C5.79711 48.582 3.8408 43.2521 7.75342 36.7044C10.4084 32.2628 14.6903 30.8654 17.5449 31.4443C19.2018 31.7837 20.2998 32.7818 20.4894 34.1193C20.6291 35.1473 20.3596 36.0656 19.7109 36.7044C19.102 37.3033 18.2237 37.5728 17.3653 37.443C15.7583 37.1935 15.0097 35.4368 14.9299 35.2372L16.3173 34.6782C16.447 34.9976 16.9361 35.866 17.5949 35.9658C17.9941 36.0257 18.3933 35.9059 18.6628 35.6464C18.9623 35.347 19.082 34.8978 19.0122 34.3389C18.8724 33.3507 17.7346 33.0214 17.2555 32.9215C14.8201 32.4225 11.2269 33.8398 9.05097 37.4829C5.54758 43.3419 7.19448 48.0031 9.26058 51.7859C10.099 53.323 11.5363 54.8302 13.0634 56.4172C15.2692 58.7229 17.7745 61.328 18.9822 64.6916C20.2698 68.2649 20.17 71.7183 18.6928 73.9342C17.8544 75.1918 16.6167 75.9304 15.2094 76.0003C15.1495 76.0003 15.0796 76.0003 15.0197 76.0003L15.0097 75.9903Z" fill="#C3A064"></path><path d="M4.93058 64.1444C4.58123 64.1444 4.22191 64.0945 3.88255 63.9947C2.22568 63.4956 1.0479 62.3278 0.369182 60.5013C-0.688822 57.5468 0.588768 54.1033 3.41344 52.3067C4.0722 51.8875 4.73095 51.608 5.29988 51.3984L5.82888 52.7958C5.3398 52.9854 4.7609 53.215 4.22191 53.5643C2.01607 54.9717 0.968052 57.7265 1.77653 59.9822C2.28557 61.3497 3.114 62.1981 4.30176 62.5474C4.98048 62.747 5.78896 62.5973 6.32794 62.1681C6.62737 61.9286 6.9867 61.5094 6.96673 60.8207C6.92681 59.6129 5.01043 59.5231 4.99046 59.5231L5.05035 58.0259C6.19818 58.0758 8.38406 58.7146 8.45393 60.7708C8.48387 61.7988 8.05468 62.7171 7.24621 63.3559C6.59743 63.8649 5.75901 64.1344 4.92059 64.1344L4.93058 64.1444Z" fill="#C3A064"></path><path d="M10.8385 51.1026L10.3594 49.6853C10.5889 49.6055 10.8684 49.5256 11.1778 49.4358C12.8347 48.9567 15.33 48.2281 16.8471 45.8925C17.8852 44.2855 17.8652 43.0578 17.6656 42.3092C17.466 41.5606 16.9869 40.9518 16.3481 40.6224C15.8091 40.3429 15.1404 40.3729 14.5614 40.7122C13.9726 41.0516 13.6232 41.6205 13.5933 42.2793C13.5334 43.5968 15.1204 44.1358 15.1803 44.1657L14.7211 45.593C14.6114 45.5531 11.9763 44.6847 12.0961 42.2094C12.156 41.0516 12.7948 40.0136 13.8129 39.4247C14.8309 38.8358 16.0387 38.7859 17.0368 39.2949C18.0549 39.8139 18.8134 40.7721 19.1228 41.9299C19.4023 42.968 19.4522 44.6448 18.1048 46.7109C16.2882 49.5156 13.3537 50.374 11.597 50.8831C11.3176 50.9629 11.0581 51.0427 10.8485 51.1126L10.8385 51.1026Z" fill="#C3A064"></path><path d="M25.6144 22.6242L23.5783 20.7477C23.4884 20.6579 21.2427 18.5718 20.1747 15.2381C19.0668 11.8146 19.7754 9.62868 19.8054 9.53885L19.8852 9.30928L20.0749 9.16955C20.1348 9.12962 21.5122 8.13151 23.2189 8.10156C24.9357 8.12152 26.363 9.09968 26.4229 9.14959L27.1016 9.65862L26.5127 10.2675C26.5127 10.2675 24.756 12.1639 24.5365 15.1283C24.2969 18.3123 24.796 19.9492 24.796 19.9692L25.6144 22.6242ZM21.1628 10.2475C21.043 10.8264 20.8434 12.4534 21.592 14.779C21.9613 15.9068 22.4803 16.885 22.9894 17.6635C22.9594 16.9249 22.9694 16.0466 23.0393 15.0185C23.2189 12.653 24.1871 10.8963 24.8359 9.96804C24.4167 9.7784 23.8478 9.57878 23.2289 9.59874C22.3306 9.6187 21.5221 10.0179 21.1528 10.2475H21.1628Z" fill="#C3A064"></path><path d="M30.6539 24.5137C30.4842 24.5137 30.3146 24.5037 30.1349 24.4738C28.7974 24.2841 27.7893 23.1862 27.46 21.5293C26.881 18.6747 28.2784 14.3928 32.72 11.7378C39.2677 7.82518 44.5976 9.78149 48.5102 11.9175C50.227 12.8557 51.794 14.3628 53.4609 15.9499C55.7665 18.1557 58.152 20.4414 61.2063 21.5493C64.2905 22.6672 67.3148 22.6173 69.1114 21.4195C69.9797 20.8406 70.4588 20.0421 70.5087 19.1039C70.5487 18.3653 70.2093 17.6367 69.6104 17.1676C69.0515 16.7284 68.3728 16.5787 67.744 16.7683C66.3366 17.1775 65.9773 18.7047 65.9573 18.7745L64.5001 18.4551C64.52 18.3553 65.059 16.0097 67.3247 15.341C68.4227 15.0216 69.6004 15.2611 70.5387 16.0097C71.5168 16.7783 72.0658 17.976 71.9959 19.1937C71.9261 20.6011 71.1875 21.8387 69.9298 22.6772C67.714 24.1444 64.2605 24.2542 60.6873 22.9666C57.3236 21.7489 54.7185 19.2536 52.4129 17.0478C50.8259 15.5306 49.3287 14.0934 47.7816 13.245C43.9987 11.1789 39.3375 9.53196 33.4786 13.0353C29.8355 15.2112 28.4181 18.8144 28.9172 21.2399C29.017 21.719 29.3464 22.8668 30.3345 22.9966C30.8935 23.0764 31.3426 22.9566 31.6421 22.6472C31.9116 22.3777 32.0313 21.9785 31.9615 21.5792C31.8616 20.9205 30.9933 20.4314 30.6739 20.2917L31.2328 18.9043C31.4325 18.9841 33.1891 19.7327 33.4387 21.3397C33.5784 22.208 33.2989 23.0864 32.7001 23.6952C32.1711 24.2342 31.4524 24.5137 30.6439 24.5137H30.6539Z" fill="#C3A064"></path><path d="M56.9118 12.4539C56.9118 12.4539 56.8319 12.4539 56.802 12.4539C54.7359 12.3841 54.1071 10.1982 54.0572 9.05035L55.5544 8.99046L54.8058 9.02041L55.5544 8.99046C55.5544 8.99046 55.6642 10.9268 56.8519 10.9667C57.5306 10.9867 57.9698 10.6374 58.1994 10.3279C58.6286 9.77898 58.7783 8.98048 58.5787 8.29178C58.2193 7.10402 57.3809 6.27559 56.0035 5.77653C53.7577 4.96805 50.993 6.01607 49.5956 8.22191C49.2463 8.7609 49.0067 9.3398 48.827 9.83886L47.4297 9.30986C47.6393 8.74093 47.9188 8.0722 48.338 7.41344C50.1346 4.58877 53.5681 3.31118 56.5225 4.36918C58.3491 5.0479 59.5269 6.22568 60.0159 7.87257C60.3453 9.03039 60.1058 10.3279 59.3871 11.2562C58.7783 12.0447 57.8999 12.4739 56.9218 12.4739L56.9118 12.4539Z" fill="#C3A064"></path><path d="M39.1576 23.2569C38.6785 23.2569 38.2693 23.1871 37.9299 23.0972C36.7721 22.7878 35.8139 22.0293 35.2949 21.0112C34.7859 20.0131 34.8358 18.8153 35.4247 17.7972C36.0136 16.7792 37.0516 16.1404 38.2094 16.0805C40.6947 15.9607 41.5531 18.5957 41.593 18.7055L40.1657 19.1647L40.8744 18.9351L40.1657 19.1647C40.1458 19.0948 39.5968 17.5178 38.2793 17.5776C37.6205 17.6076 37.0516 17.9669 36.7122 18.5458C36.3829 19.1247 36.3429 19.7935 36.6224 20.3325C36.9518 20.9712 37.5706 21.4503 38.3092 21.65C39.0578 21.8496 40.2855 21.8696 41.8925 20.8215C44.2281 19.3144 44.9567 16.8091 45.4358 15.1622C45.5256 14.8528 45.6055 14.5833 45.6853 14.3438L47.1026 14.8228C47.0328 15.0325 46.9529 15.292 46.8731 15.5714C46.364 17.3281 45.5056 20.2626 42.7009 22.0692C41.3136 22.9675 40.1058 23.237 39.1476 23.237L39.1576 23.2569Z" fill="#C3A064"></path><path d="M21.9407 916.052C21.1522 916.052 20.4136 916.182 20.0243 916.262L19.5951 916.352L19.4155 916.911C19.2059 917.569 18.8965 918.577 16.7405 920.264C14.3451 922.141 10.2128 922.78 8.65578 923.019C8.44618 923.049 8.2765 923.079 8.14674 923.099L7.7974 923.159L7.62772 923.478C7.57782 923.568 6.38008 925.784 5.71134 928.808C5.0426 931.802 5.06256 934.138 5.06256 934.238V934.976H5.80117C5.90098 934.976 8.22659 934.996 11.2309 934.328C14.2552 933.659 16.471 932.461 16.5609 932.411L16.8803 932.242L16.9402 931.892C16.9601 931.763 16.9901 931.593 17.02 931.383C17.2596 929.826 17.8983 925.694 19.7748 923.299C21.4616 921.133 22.4697 920.823 23.1285 920.624L23.6774 920.444L23.7673 920.015C23.8371 919.665 24.0068 918.757 23.9669 917.829C23.9469 917.42 23.917 917.07 23.8771 916.791L23.7972 916.252L23.2582 916.172C22.9788 916.132 22.6294 916.092 22.2202 916.082C22.1304 916.082 22.0405 916.082 21.9507 916.082L21.9407 916.052ZM20.753 917.649C21.1223 917.589 21.6413 917.539 22.1503 917.549C22.2501 917.549 22.3599 917.549 22.4498 917.569C22.4498 917.669 22.4597 917.769 22.4697 917.869C22.4897 918.378 22.4298 918.897 22.3699 919.266C21.5614 919.536 20.3238 920.125 18.5771 922.35C16.4611 925.055 15.8023 929.317 15.5228 931.134C15.5228 931.174 15.5128 931.214 15.5029 931.244C14.8042 931.583 13.0575 932.371 10.8816 932.851C9.03507 933.26 7.44806 933.399 6.55974 933.439C6.60964 932.541 6.74938 930.954 7.14863 929.118C7.62772 926.952 8.41624 925.195 8.7556 924.496C8.79552 924.496 8.82546 924.486 8.86539 924.476C10.682 924.197 14.9439 923.538 17.6488 921.422C19.8746 919.675 20.4635 918.438 20.733 917.639L20.753 917.649Z" fill="#C3A064"></path><path d="M9.69876 926.545C9.21966 927.084 7.97201 930.628 8.04188 931.965C9.37936 932.045 12.9227 930.797 13.4617 930.308C14.0006 929.829 15.6076 924.389 15.6076 924.389C15.6076 924.389 10.1779 925.986 9.68877 926.535L9.69876 926.545Z" fill="#9825DE"></path><path d="M5.67272 912.922L5.17366 913.601C5.13373 913.66 4.09569 915.078 4.12564 916.804C4.15558 918.511 5.1537 919.899 5.19362 919.949L5.33336 920.138L5.56292 920.218C5.65275 920.248 7.82865 920.957 11.2622 919.849C14.5959 918.781 16.6819 916.535 16.7718 916.445L18.6882 914.369L16.0032 915.217C16.0032 915.217 14.3464 915.717 11.1624 915.477C8.19795 915.257 6.32149 913.521 6.30153 913.501L5.6827 912.922H5.67272ZM6.26161 918.851C6.04202 918.481 5.63279 917.673 5.61283 916.775C5.60285 916.166 5.79249 915.587 5.98213 915.168C6.91038 915.816 8.66707 916.795 11.0326 916.964C12.0607 917.044 12.939 917.044 13.6776 917.014C12.8991 917.523 11.9209 918.052 10.7931 918.411C8.47743 919.16 6.85049 918.96 6.26161 918.841V918.851Z" fill="#C3A064"></path><path d="M15.0097 868.01C13.8519 868.01 12.744 868.549 12.0154 869.477C11.2668 870.425 11.0272 871.593 11.3566 872.691C12.0254 874.957 14.3709 875.496 14.4707 875.516L14.7901 874.058L14.6304 874.787L14.7901 874.058C14.7303 874.038 13.2031 873.679 12.7839 872.272C12.5943 871.643 12.744 870.964 13.1832 870.405C13.6523 869.806 14.3709 869.467 15.1195 869.507C16.0578 869.557 16.8562 870.036 17.4352 870.904C18.6229 872.701 18.6728 875.735 17.5649 878.809C16.457 881.874 14.1713 884.249 11.9655 886.555C10.3785 888.222 8.87131 889.789 7.93308 891.505C5.79711 895.418 3.8408 900.748 7.75342 907.296C10.4084 911.737 14.6903 913.135 17.5449 912.556C19.2018 912.216 20.2998 911.218 20.4894 909.881C20.6291 908.853 20.3596 907.934 19.7109 907.296C19.102 906.697 18.2237 906.427 17.3653 906.557C15.7583 906.807 15.0097 908.563 14.9299 908.763L16.3173 909.322C16.447 909.002 16.9361 908.134 17.5949 908.034C17.9941 907.974 18.3933 908.094 18.6628 908.354C18.9623 908.653 19.082 909.102 19.0122 909.661C18.8724 910.649 17.7346 910.979 17.2555 911.078C14.8201 911.578 11.2269 910.16 9.05097 906.517C5.54758 900.658 7.19448 895.997 9.26058 892.214C10.099 890.677 11.5363 889.17 13.0634 887.583C15.2692 885.277 17.7745 882.672 18.9822 879.308C20.2698 875.735 20.17 872.282 18.6928 870.066C17.8544 868.808 16.6167 868.07 15.2094 868C15.1495 868 15.0796 868 15.0197 868L15.0097 868.01Z" fill="#C3A064"></path><path d="M4.93058 879.856C4.58123 879.856 4.22191 879.906 3.88255 880.005C2.22568 880.504 1.0479 881.672 0.369182 883.499C-0.688822 886.453 0.588768 889.897 3.41344 891.693C4.0722 892.112 4.73095 892.392 5.29988 892.602L5.82888 891.204C5.3398 891.015 4.7609 890.785 4.22191 890.436C2.01607 889.028 0.968052 886.274 1.77653 884.018C2.28557 882.65 3.114 881.802 4.30176 881.453C4.98048 881.253 5.78896 881.403 6.32794 881.832C6.62737 882.071 6.9867 882.491 6.96673 883.179C6.92681 884.387 5.01043 884.477 4.99046 884.477L5.05035 885.974C6.19818 885.924 8.38406 885.285 8.45393 883.229C8.48387 882.201 8.05468 881.283 7.24621 880.644C6.59743 880.135 5.75901 879.866 4.92059 879.866L4.93058 879.856Z" fill="#C3A064"></path><path d="M10.8385 892.905L10.3594 894.323C10.5889 894.402 10.8684 894.482 11.1778 894.572C12.8347 895.051 15.33 895.78 16.8471 898.115C17.8852 899.722 17.8652 900.95 17.6656 901.699C17.466 902.447 16.9869 903.056 16.3481 903.385C15.8091 903.665 15.1404 903.635 14.5614 903.296C13.9726 902.956 13.6232 902.387 13.5933 901.729C13.5334 900.411 15.1204 899.872 15.1803 899.842L14.7211 898.415C14.6114 898.455 11.9763 899.323 12.0961 901.798C12.156 902.956 12.7948 903.994 13.8129 904.583C14.8309 905.172 16.0387 905.222 17.0368 904.713C18.0549 904.194 18.8134 903.236 19.1228 902.078C19.4023 901.04 19.4522 899.363 18.1048 897.297C16.2882 894.492 13.3537 893.634 11.597 893.125C11.3176 893.045 11.0581 892.965 10.8485 892.895L10.8385 892.905Z" fill="#C3A064"></path><path d="M25.6144 921.376L23.5783 923.252C23.4884 923.342 21.2427 925.428 20.1747 928.762C19.0668 932.185 19.7754 934.371 19.8054 934.461L19.8852 934.691L20.0749 934.83C20.1348 934.87 21.5122 935.868 23.2189 935.898C24.9357 935.878 26.363 934.9 26.4229 934.85L27.1016 934.341L26.5127 933.733C26.5127 933.733 24.756 931.836 24.5365 928.872C24.2969 925.688 24.796 924.051 24.796 924.031L25.6144 921.376ZM21.1628 933.752C21.043 933.174 20.8434 931.547 21.592 929.221C21.9613 928.093 22.4803 927.115 22.9894 926.336C22.9594 927.075 22.9694 927.953 23.0393 928.981C23.2189 931.347 24.1871 933.104 24.8359 934.032C24.4167 934.222 23.8478 934.421 23.2289 934.401C22.3306 934.381 21.5221 933.982 21.1528 933.752H21.1628Z" fill="#C3A064"></path><path d="M30.6539 919.494C30.4842 919.494 30.3146 919.504 30.1349 919.534C28.7974 919.724 27.7893 920.822 27.46 922.478C26.881 925.333 28.2784 929.615 32.72 932.27C39.2677 936.183 44.5976 934.226 48.5102 932.09C50.227 931.152 51.794 929.645 53.4609 928.058C55.7665 925.852 58.152 923.566 61.2063 922.459C64.2905 921.341 67.3148 921.391 69.1114 922.588C69.9797 923.167 70.4588 923.966 70.5087 924.904C70.5487 925.643 70.2093 926.371 69.6104 926.84C69.0515 927.279 68.3728 927.429 67.744 927.24C66.3366 926.83 65.9773 925.303 65.9573 925.233L64.5001 925.553C64.52 925.653 65.059 927.998 67.3247 928.667C68.4227 928.986 69.6004 928.747 70.5387 927.998C71.5168 927.23 72.0658 926.032 71.9959 924.814C71.9261 923.407 71.1875 922.169 69.9298 921.331C67.714 919.863 64.2605 919.754 60.6873 921.041C57.3236 922.259 54.7185 924.754 52.4129 926.96C50.8259 928.477 49.3287 929.914 47.7816 930.763C43.9987 932.829 39.3375 934.476 33.4786 930.972C29.8355 928.797 28.4181 925.193 28.9172 922.768C29.017 922.289 29.3464 921.141 30.3345 921.011C30.8935 920.931 31.3426 921.051 31.6421 921.361C31.9116 921.63 32.0313 922.029 31.9615 922.429C31.8616 923.087 30.9933 923.576 30.6739 923.716L31.2328 925.104C31.4325 925.024 33.1891 924.275 33.4387 922.668C33.5784 921.8 33.2989 920.921 32.7001 920.313C32.1711 919.774 31.4524 919.494 30.6439 919.494H30.6539Z" fill="#C3A064"></path><path d="M56.9118 931.546C56.9118 931.546 56.8319 931.546 56.802 931.546C54.7359 931.616 54.1071 933.802 54.0572 934.95L55.5544 935.01L54.8058 934.98L55.5544 935.01C55.5544 935.01 55.6642 933.073 56.8519 933.033C57.5306 933.013 57.9698 933.363 58.1994 933.672C58.6286 934.221 58.7783 935.02 58.5787 935.708C58.2193 936.896 57.3809 937.724 56.0035 938.223C53.7577 939.032 50.993 937.984 49.5956 935.778C49.2463 935.239 49.0067 934.66 48.827 934.161L47.4297 934.69C47.6393 935.259 47.9188 935.928 48.338 936.587C50.1346 939.411 53.5681 940.689 56.5225 939.631C58.3491 938.952 59.5269 937.774 60.0159 936.127C60.3453 934.97 60.1058 933.672 59.3871 932.744C58.7783 931.955 57.8999 931.526 56.9218 931.526L56.9118 931.546Z" fill="#C3A064"></path><path d="M39.1576 920.751C38.6785 920.751 38.2693 920.821 37.9299 920.911C36.7721 921.22 35.8139 921.979 35.2949 922.997C34.7859 923.995 34.8358 925.192 35.4247 926.211C36.0136 927.229 37.0516 927.867 38.2094 927.927C40.6947 928.047 41.5531 925.412 41.593 925.302L40.1657 924.843L40.8744 925.073L40.1657 924.843C40.1458 924.913 39.5968 926.49 38.2793 926.43C37.6205 926.4 37.0516 926.041 36.7122 925.462C36.3829 924.883 36.3429 924.214 36.6224 923.675C36.9518 923.037 37.5706 922.557 38.3092 922.358C39.0578 922.158 40.2855 922.138 41.8925 923.186C44.2281 924.693 44.9567 927.199 45.4358 928.846C45.5256 929.155 45.6055 929.425 45.6853 929.664L47.1026 929.185C47.0328 928.975 46.9529 928.716 46.8731 928.436C46.364 926.68 45.5056 923.745 42.7009 921.939C41.3136 921.04 40.1058 920.771 39.1476 920.771L39.1576 920.751Z" fill="#C3A064"></path><path d="M872.059 916.052C872.848 916.052 873.586 916.182 873.976 916.262L874.405 916.352L874.585 916.911C874.794 917.569 875.104 918.577 877.259 920.264C879.655 922.141 883.787 922.78 885.344 923.019C885.554 923.049 885.724 923.079 885.853 923.099L886.203 923.159L886.372 923.478C886.422 923.568 887.62 925.784 888.289 928.808C888.957 931.802 888.937 934.138 888.937 934.238V934.976H888.199C888.099 934.976 885.773 934.996 882.769 934.328C879.745 933.659 877.529 932.461 877.439 932.411L877.12 932.242L877.06 931.892C877.04 931.763 877.01 931.593 876.98 931.383C876.74 929.826 876.102 925.694 874.225 923.299C872.538 921.133 871.53 920.823 870.872 920.624L870.323 920.444L870.233 920.015C870.163 919.665 869.993 918.757 870.033 917.829C870.053 917.42 870.083 917.07 870.123 916.791L870.203 916.252L870.742 916.172C871.021 916.132 871.371 916.092 871.78 916.082C871.87 916.082 871.959 916.082 872.049 916.082L872.059 916.052ZM873.247 917.649C872.878 917.589 872.359 917.539 871.85 917.549C871.75 917.549 871.64 917.549 871.55 917.569C871.55 917.669 871.54 917.769 871.53 917.869C871.51 918.378 871.57 918.897 871.63 919.266C872.439 919.536 873.676 920.125 875.423 922.35C877.539 925.055 878.198 929.317 878.477 931.134C878.477 931.174 878.487 931.214 878.497 931.244C879.196 931.583 880.943 932.371 883.118 932.851C884.965 933.26 886.552 933.399 887.44 933.439C887.39 932.541 887.251 930.954 886.851 929.118C886.372 926.952 885.584 925.195 885.244 924.496C885.204 924.496 885.175 924.486 885.135 924.476C883.318 924.197 879.056 923.538 876.351 921.422C874.125 919.675 873.536 918.438 873.267 917.639L873.247 917.649Z" fill="#C3A064"></path><path d="M884.301 926.545C884.78 927.084 886.028 930.628 885.958 931.965C884.621 932.045 881.077 930.797 880.538 930.308C879.999 929.829 878.392 924.389 878.392 924.389C878.392 924.389 883.822 925.986 884.311 926.535L884.301 926.545Z" fill="#9825DE"></path><path d="M888.327 912.922L888.826 913.601C888.866 913.66 889.904 915.078 889.874 916.804C889.844 918.511 888.846 919.899 888.806 919.949L888.667 920.138L888.437 920.218C888.347 920.248 886.171 920.957 882.738 919.849C879.404 918.781 877.318 916.535 877.228 916.445L875.312 914.369L877.997 915.217C877.997 915.217 879.654 915.717 882.838 915.477C885.802 915.257 887.679 913.521 887.698 913.501L888.317 912.922H888.327ZM887.738 918.851C887.958 918.481 888.367 917.673 888.387 916.775C888.397 916.166 888.208 915.587 888.018 915.168C887.09 915.816 885.333 916.795 882.967 916.964C881.939 917.044 881.061 917.044 880.322 917.014C881.101 917.523 882.079 918.052 883.207 918.411C885.523 919.16 887.15 918.96 887.738 918.841V918.851Z" fill="#C3A064"></path><path d="M878.99 868.01C880.148 868.01 881.256 868.549 881.985 869.477C882.733 870.425 882.973 871.593 882.643 872.691C881.975 874.957 879.629 875.496 879.529 875.516L879.21 874.058L879.37 874.787L879.21 874.058C879.27 874.038 880.797 873.679 881.216 872.272C881.406 871.643 881.256 870.964 880.817 870.405C880.348 869.806 879.629 869.467 878.88 869.507C877.942 869.557 877.144 870.036 876.565 870.904C875.377 872.701 875.327 875.735 876.435 878.809C877.543 881.874 879.829 884.249 882.035 886.555C883.622 888.222 885.129 889.789 886.067 891.505C888.203 895.418 890.159 900.748 886.247 907.296C883.592 911.737 879.31 913.135 876.455 912.556C874.798 912.216 873.7 911.218 873.511 909.881C873.371 908.853 873.64 907.934 874.289 907.296C874.898 906.697 875.776 906.427 876.635 906.557C878.242 906.807 878.99 908.563 879.07 908.763L877.683 909.322C877.553 909.002 877.064 908.134 876.405 908.034C876.006 907.974 875.607 908.094 875.337 908.354C875.038 908.653 874.918 909.102 874.988 909.661C875.128 910.649 876.265 910.979 876.745 911.078C879.18 911.578 882.773 910.16 884.949 906.517C888.452 900.658 886.806 895.997 884.739 892.214C883.901 890.677 882.464 889.17 880.937 887.583C878.731 885.277 876.225 882.672 875.018 879.308C873.73 875.735 873.83 872.282 875.307 870.066C876.146 868.808 877.383 868.07 878.791 868C878.851 868 878.92 868 878.98 868L878.99 868.01Z" fill="#C3A064"></path><path d="M889.069 879.856C889.419 879.856 889.778 879.906 890.117 880.005C891.774 880.504 892.952 881.672 893.631 883.499C894.689 886.453 893.411 889.897 890.587 891.693C889.928 892.112 889.269 892.392 888.7 892.602L888.171 891.204C888.66 891.015 889.239 890.785 889.778 890.436C891.984 889.028 893.032 886.274 892.223 884.018C891.714 882.65 890.886 881.802 889.698 881.453C889.02 881.253 888.211 881.403 887.672 881.832C887.373 882.071 887.013 882.491 887.033 883.179C887.073 884.387 888.99 884.477 889.01 884.477L888.95 885.974C887.802 885.924 885.616 885.285 885.546 883.229C885.516 882.201 885.945 881.283 886.754 880.644C887.403 880.135 888.241 879.866 889.079 879.866L889.069 879.856Z" fill="#C3A064"></path><path d="M883.162 892.905L883.641 894.323C883.411 894.402 883.132 894.482 882.822 894.572C881.165 895.051 878.67 895.78 877.153 898.115C876.115 899.722 876.135 900.95 876.334 901.699C876.534 902.447 877.013 903.056 877.652 903.385C878.191 903.665 878.86 903.635 879.439 903.296C880.027 902.956 880.377 902.387 880.407 901.729C880.467 900.411 878.88 899.872 878.82 899.842L879.279 898.415C879.389 898.455 882.024 899.323 881.904 901.798C881.844 902.956 881.205 903.994 880.187 904.583C879.169 905.172 877.961 905.222 876.963 904.713C875.945 904.194 875.187 903.236 874.877 902.078C874.598 901.04 874.548 899.363 875.895 897.297C877.712 894.492 880.646 893.634 882.403 893.125C882.682 893.045 882.942 892.965 883.152 892.895L883.162 892.905Z" fill="#C3A064"></path><path d="M868.386 921.376L870.422 923.252C870.512 923.342 872.757 925.428 873.825 928.762C874.933 932.185 874.225 934.371 874.195 934.461L874.115 934.691L873.925 934.83C873.865 934.87 872.488 935.868 870.781 935.898C869.064 935.878 867.637 934.9 867.577 934.85L866.898 934.341L867.487 933.733C867.487 933.733 869.244 931.836 869.464 928.872C869.703 925.688 869.204 924.051 869.204 924.031L868.386 921.376ZM872.837 933.752C872.957 933.174 873.157 931.547 872.408 929.221C872.039 928.093 871.52 927.115 871.011 926.336C871.041 927.075 871.031 927.953 870.961 928.981C870.781 931.347 869.813 933.104 869.164 934.032C869.583 934.222 870.152 934.421 870.771 934.401C871.669 934.381 872.478 933.982 872.847 933.752H872.837Z" fill="#C3A064"></path><path d="M863.346 919.494C863.516 919.494 863.685 919.504 863.865 919.534C865.203 919.724 866.211 920.822 866.54 922.478C867.119 925.333 865.722 929.615 861.28 932.27C854.732 936.183 849.402 934.226 845.49 932.09C843.773 931.152 842.206 929.645 840.539 928.058C838.233 925.852 835.848 923.566 832.794 922.459C829.71 921.341 826.685 921.391 824.889 922.588C824.02 923.167 823.541 923.966 823.491 924.904C823.451 925.643 823.791 926.371 824.39 926.84C824.949 927.279 825.627 927.429 826.256 927.24C827.663 926.83 828.023 925.303 828.043 925.233L829.5 925.553C829.48 925.653 828.941 927.998 826.675 928.667C825.577 928.986 824.4 928.747 823.461 927.998C822.483 927.23 821.934 926.032 822.004 924.814C822.074 923.407 822.813 922.169 824.07 921.331C826.286 919.863 829.739 919.754 833.313 921.041C836.676 922.259 839.281 924.754 841.587 926.96C843.174 928.477 844.671 929.914 846.218 930.763C850.001 932.829 854.662 934.476 860.521 930.972C864.165 928.797 865.582 925.193 865.083 922.768C864.983 922.289 864.654 921.141 863.665 921.011C863.107 920.931 862.657 921.051 862.358 921.361C862.088 921.63 861.969 922.029 862.039 922.429C862.138 923.087 863.007 923.576 863.326 923.716L862.767 925.104C862.568 925.024 860.811 924.275 860.561 922.668C860.422 921.8 860.701 920.921 861.3 920.313C861.829 919.774 862.548 919.494 863.356 919.494H863.346Z" fill="#C3A064"></path><path d="M837.088 931.546C837.088 931.546 837.168 931.546 837.198 931.546C839.264 931.616 839.893 933.802 839.943 934.95L838.446 935.01L839.194 934.98L838.446 935.01C838.446 935.01 838.336 933.073 837.148 933.033C836.469 933.013 836.03 933.363 835.801 933.672C835.371 934.221 835.222 935.02 835.421 935.708C835.781 936.896 836.619 937.724 837.996 938.223C840.242 939.032 843.007 937.984 844.404 935.778C844.754 935.239 844.993 934.66 845.173 934.161L846.57 934.69C846.361 935.259 846.081 935.928 845.662 936.587C843.865 939.411 840.432 940.689 837.477 939.631C835.651 938.952 834.473 937.774 833.984 936.127C833.655 934.97 833.894 933.672 834.613 932.744C835.222 931.955 836.1 931.526 837.078 931.526L837.088 931.546Z" fill="#C3A064"></path><path d="M854.842 920.751C855.321 920.751 855.731 920.821 856.07 920.911C857.228 921.22 858.186 921.979 858.705 922.997C859.214 923.995 859.164 925.192 858.575 926.211C857.986 927.229 856.948 927.867 855.791 927.927C853.305 928.047 852.447 925.412 852.407 925.302L853.834 924.843L853.126 925.073L853.834 924.843C853.854 924.913 854.403 926.49 855.721 926.43C856.379 926.4 856.948 926.041 857.288 925.462C857.617 924.883 857.657 924.214 857.378 923.675C857.048 923.037 856.429 922.557 855.691 922.358C854.942 922.158 853.715 922.138 852.108 923.186C849.772 924.693 849.043 927.199 848.564 928.846C848.474 929.155 848.395 929.425 848.315 929.664L846.897 929.185C846.967 928.975 847.047 928.716 847.127 928.436C847.636 926.68 848.494 923.745 851.299 921.939C852.686 921.04 853.894 920.771 854.852 920.771L854.842 920.751Z" fill="#C3A064"></path><path d="M378.316 929.49C376.632 929.49 375.096 928.74 374.087 927.4C372.858 925.765 372.661 923.54 373.547 921.585C375.231 917.922 379.484 916.188 387.364 915.967C391.556 915.856 395.761 916.459 400.235 917.11C406.333 917.995 412.627 918.905 419.462 918.032C429.297 916.778 431.3 914.406 431.62 913.115C431.878 912.045 431.681 911.013 431.091 910.398C430.624 909.919 429.948 909.747 429.149 909.906C427.33 910.275 427.244 912.586 427.244 912.685L425.4 912.648C425.424 911.308 426.174 908.64 428.78 908.099C430.218 907.804 431.509 908.173 432.419 909.12C433.452 910.201 433.82 911.849 433.415 913.545C432.64 916.717 428.153 918.782 419.708 919.864C412.639 920.761 406.21 919.827 399.989 918.93C395.601 918.29 391.458 917.7 387.438 917.811C380.357 918.02 376.595 919.421 375.243 922.36C374.628 923.687 374.764 925.199 375.587 926.293C376.349 927.314 377.542 927.793 378.906 927.596C381.746 927.191 381.5 924.203 381.488 924.081L383.32 923.908C383.48 925.58 382.803 928.9 379.165 929.416C378.882 929.453 378.611 929.477 378.329 929.477L378.316 929.49Z" fill="#C3A064"></path><path d="M392.711 924.83C390.326 924.83 388.495 924.326 388.359 924.289L388.863 922.519C388.863 922.519 393.473 923.773 397.198 922.15C399.595 921.117 401.034 919.31 402.558 917.417C403.48 916.262 404.439 915.069 405.644 913.963C409.012 910.902 412.823 909.439 415.269 909.082C418.306 908.64 420.051 910.238 420.432 912.02C420.85 914 419.584 915.954 417.605 916.372C415.859 916.753 414.114 915.807 413.438 914.135L415.146 913.446C415.478 914.27 416.351 914.75 417.212 914.565C418.195 914.356 418.834 913.385 418.625 912.402C418.38 911.258 417.175 910.668 415.527 910.914C413.352 911.234 409.934 912.561 406.885 915.34C405.779 916.348 404.869 917.479 403.996 918.573C402.398 920.564 400.751 922.63 397.936 923.847C396.19 924.609 394.322 924.83 392.711 924.83Z" fill="#C3A064"></path><path d="M515.548 929.493C515.278 929.493 514.995 929.468 514.712 929.431C511.061 928.915 510.397 925.596 510.545 923.924L512.377 924.096C512.352 924.416 512.192 927.219 514.958 927.612C516.298 927.796 517.503 927.329 518.277 926.309C519.101 925.215 519.224 923.703 518.622 922.375C517.269 919.437 513.508 918.036 506.427 917.827C502.419 917.716 498.264 918.306 493.875 918.945C487.655 919.843 481.238 920.777 474.157 919.88C465.699 918.798 461.212 916.733 460.45 913.561C460.032 911.864 460.401 910.205 461.446 909.135C462.355 908.189 463.658 907.82 465.085 908.115C467.691 908.644 468.441 911.323 468.465 912.663L466.621 912.7C466.621 912.602 466.523 910.291 464.716 909.922C463.904 909.75 463.228 909.922 462.773 910.414C462.183 911.028 461.987 912.061 462.245 913.131C462.564 914.434 464.556 916.806 474.403 918.048C481.226 918.908 487.532 917.999 493.629 917.126C498.104 916.474 502.333 915.872 506.5 915.983C514.38 916.204 518.634 917.937 520.318 921.601C521.216 923.543 521.007 925.768 519.777 927.415C518.781 928.755 517.245 929.505 515.561 929.505L515.548 929.493Z" fill="#C3A064"></path><path d="M501.149 924.829C499.539 924.829 497.682 924.595 495.924 923.845C493.109 922.628 491.462 920.563 489.864 918.572C488.991 917.477 488.081 916.346 486.975 915.338C483.914 912.56 480.509 911.233 478.333 910.913C476.698 910.679 475.481 911.257 475.235 912.413C475.136 912.892 475.235 913.372 475.493 913.79C475.763 914.195 476.169 914.478 476.649 914.589C477.509 914.761 478.394 914.306 478.714 913.47L480.423 914.158C479.759 915.818 478.013 916.752 476.255 916.396C475.296 916.199 474.473 915.633 473.944 914.81C473.403 913.986 473.219 913.003 473.428 912.044C473.809 910.261 475.554 908.663 478.591 909.106C481.037 909.462 484.848 910.925 488.217 913.986C489.434 915.093 490.38 916.285 491.302 917.441C492.826 919.346 494.265 921.141 496.662 922.174C500.399 923.796 504.948 922.555 504.997 922.542L505.501 924.313C505.378 924.349 503.534 924.853 501.149 924.853V924.829Z" fill="#C3A064"></path><path d="M446.936 940.001L446.284 939.362C446.198 939.276 444.158 937.26 442.129 934.063C440.076 930.855 439.191 927.88 439.154 927.745L439.031 927.314L439.289 926.958C439.437 926.737 439.695 926.429 440.002 926.048C441.367 924.389 443.887 921.291 444.305 917.898C444.686 914.726 444.084 913.632 443.678 912.907L443.272 912.132L443.567 911.69C443.875 911.235 444.489 910.35 445.289 909.612C445.657 909.268 445.989 908.997 446.272 908.788L446.813 908.383L447.354 908.788C447.637 908.997 447.968 909.268 448.337 909.612C449.149 910.362 449.763 911.235 450.071 911.69L450.366 912.132L450.058 912.722C449.69 913.423 449.149 914.48 449.567 917.898C449.985 921.291 452.505 924.389 453.869 926.048C454.177 926.429 454.435 926.737 454.582 926.958L454.84 927.314L454.717 927.745C454.681 927.868 453.795 930.843 451.742 934.063C449.714 937.26 447.673 939.276 447.587 939.362L446.936 940.001ZM441.072 927.671C441.379 928.581 442.227 930.781 443.69 933.08C444.932 935.035 446.198 936.547 446.936 937.358C447.673 936.534 448.94 935.035 450.181 933.08C451.644 930.769 452.492 928.568 452.8 927.671C452.701 927.536 452.578 927.388 452.443 927.228C450.968 925.421 448.214 922.053 447.735 918.131C447.317 914.677 447.784 913.189 448.227 912.267C447.956 911.886 447.55 911.395 447.096 910.964C446.997 910.878 446.911 910.792 446.825 910.719C446.739 910.792 446.641 910.878 446.542 910.964C446.088 911.382 445.694 911.874 445.424 912.255C445.915 913.165 446.567 914.689 446.149 918.131C445.67 922.065 442.928 925.421 441.441 927.228C441.305 927.388 441.183 927.536 441.084 927.671H441.072Z" fill="#C3A064"></path><path d="M443.641 928.617C443.69 929.514 445.694 933.681 446.923 934.776C448.153 933.681 450.157 929.514 450.206 928.617C450.255 927.719 446.923 922.359 446.923 922.359C446.923 922.359 443.592 927.719 443.641 928.617Z" fill="#9825DE"></path><path d="M434.265 926.849L433.97 926.8C433.884 926.788 431.818 926.456 430.294 924.993C428.77 923.518 428.425 921.391 428.413 921.293L428.266 920.26L429.311 920.235C429.311 920.235 432.495 920.113 435.26 917.715C438.235 915.146 439.244 913.29 439.244 913.277L440.842 910.266L440.977 913.671C440.977 913.831 441.112 917.605 439.145 921.44C437.129 925.386 434.609 926.665 434.511 926.726L434.252 926.862L434.265 926.849ZM430.515 921.944C430.712 922.473 431.044 923.137 431.585 923.665C432.384 924.427 433.441 924.784 433.957 924.907C434.56 924.501 436.158 923.26 437.522 920.592C438.186 919.289 438.592 917.973 438.826 916.855C438.211 917.519 437.436 918.281 436.478 919.117C434.265 921.022 431.88 921.698 430.515 921.944Z" fill="#C3A064"></path><path d="M459.605 926.845L459.347 926.71C459.236 926.66 456.728 925.37 454.712 921.424C452.745 917.588 452.868 913.814 452.881 913.654L453.016 910.188L454.614 913.273C454.614 913.273 455.622 915.154 458.597 917.711C461.375 920.108 464.522 920.219 464.559 920.231L465.592 920.268L465.444 921.288C465.432 921.374 465.1 923.513 463.563 924.989C462.051 926.451 459.974 926.783 459.888 926.796L459.593 926.845H459.605ZM455.044 916.863C455.278 917.981 455.671 919.297 456.347 920.6C457.712 923.268 459.31 924.509 459.925 924.915C460.441 924.78 461.498 924.435 462.297 923.673C462.838 923.157 463.17 922.481 463.367 921.952C461.99 921.706 459.617 921.03 457.405 919.125C456.446 918.301 455.671 917.539 455.057 916.863H455.044Z" fill="#C3A064"></path><path d="M515.551 10.5104C517.235 10.5104 518.772 11.2603 519.78 12.6003C521.009 14.2353 521.206 16.4603 520.321 18.415C518.636 22.0784 514.383 23.8117 506.503 24.033C502.311 24.1436 498.107 23.5413 493.632 22.8897C487.534 22.0046 481.24 21.0949 474.405 21.9677C464.571 23.2217 462.567 25.5943 462.247 26.8851C461.989 27.9546 462.186 28.9872 462.776 29.6019C463.243 30.0813 463.919 30.2534 464.718 30.0936C466.538 29.7248 466.624 27.4136 466.624 27.3153L468.468 27.3522C468.443 28.6922 467.693 31.3598 465.087 31.9007C463.649 32.1957 462.358 31.8269 461.448 30.8804C460.416 29.7986 460.047 28.1513 460.452 26.4548C461.227 23.2831 465.714 21.2178 474.159 20.136C481.228 19.2386 487.657 20.1729 493.878 21.0703C498.267 21.7096 502.409 22.2997 506.429 22.189C513.51 21.98 517.272 20.5786 518.624 17.6405C519.239 16.3128 519.104 14.8008 518.28 13.7067C517.518 12.6863 516.325 12.2069 514.961 12.4036C512.121 12.8093 512.367 15.7965 512.379 15.9194L510.547 16.0916C510.388 14.4197 511.064 11.1005 514.703 10.5842C514.985 10.5473 515.256 10.5227 515.539 10.5227L515.551 10.5104Z" fill="#C3A064"></path><path d="M501.156 15.17C503.541 15.17 505.373 15.674 505.508 15.7109L505.004 17.4811C505.004 17.4811 500.394 16.2272 496.669 17.8499C494.272 18.8825 492.833 20.6897 491.309 22.5828C490.387 23.7384 489.428 24.9308 488.223 26.0372C484.855 29.0982 481.044 30.5611 478.598 30.9176C475.561 31.3602 473.816 29.7621 473.435 27.9795C473.017 26.0003 474.283 24.0457 476.262 23.6277C478.008 23.2466 479.753 24.1932 480.43 25.8651L478.721 26.5535C478.389 25.7299 477.516 25.2504 476.656 25.4348C475.672 25.6438 475.033 26.615 475.242 27.5984C475.488 28.7417 476.692 29.3318 478.34 29.0859C480.516 28.7663 483.933 27.4387 486.982 24.6604C488.088 23.6523 488.998 22.5213 489.871 21.4272C491.469 19.4357 493.116 17.3705 495.931 16.1534C497.677 15.3912 499.546 15.17 501.156 15.17Z" fill="#C3A064"></path><path d="M378.319 10.5071C378.589 10.5071 378.872 10.5317 379.155 10.5685C382.806 11.0849 383.47 14.4041 383.322 16.0759L381.491 15.9038C381.515 15.5842 381.675 12.7813 378.909 12.388C377.569 12.2036 376.364 12.6707 375.59 13.691C374.766 14.7851 374.643 16.2972 375.246 17.6249C376.598 20.563 380.36 21.9644 387.44 22.1734C391.448 22.284 395.603 21.6939 399.992 21.0547C406.212 20.1573 412.629 19.223 419.71 20.1204C428.168 21.2022 432.655 23.2675 433.417 26.4392C433.835 28.1356 433.466 29.7952 432.422 30.8647C431.512 31.8113 430.209 32.1801 428.783 31.8851C426.177 31.3565 425.427 28.6765 425.402 27.3366L427.246 27.2997C427.246 27.398 427.344 29.7092 429.152 30.078C429.963 30.2501 430.639 30.078 431.094 29.5862C431.684 28.9716 431.881 27.9389 431.622 26.8694C431.303 25.5663 429.311 23.1937 419.464 21.9521C412.642 21.0916 406.335 22.0013 400.238 22.8741C395.763 23.5257 391.534 24.128 387.367 24.0174C379.487 23.7961 375.233 22.0627 373.549 18.3994C372.652 16.457 372.861 14.232 374.09 12.5847C375.086 11.2447 376.622 10.4948 378.307 10.4948L378.319 10.5071Z" fill="#C3A064"></path><path d="M392.718 15.1712C394.329 15.1712 396.185 15.4047 397.943 16.1546C400.758 17.3716 402.405 19.4369 404.003 21.4284C404.876 22.5225 405.786 23.6535 406.892 24.6616C409.953 27.4398 413.359 28.7675 415.534 29.0871C417.169 29.3207 418.386 28.7429 418.632 27.5873C418.731 27.1079 418.632 26.6284 418.374 26.2105C418.104 25.8048 417.698 25.5221 417.219 25.4114C416.358 25.2393 415.473 25.6942 415.153 26.5301L413.445 25.8417C414.108 24.1821 415.854 23.2478 417.612 23.6043C418.571 23.801 419.395 24.3665 419.923 25.1902C420.464 26.0138 420.648 26.9973 420.439 27.9561C420.058 29.7387 418.313 31.3368 415.276 30.8942C412.83 30.5377 409.019 29.0748 405.651 26.0138C404.434 24.9074 403.487 23.7149 402.565 22.5594C401.041 20.6539 399.602 18.8591 397.205 17.8265C393.468 16.2038 388.92 17.4454 388.87 17.4577L388.366 15.6874C388.489 15.6506 390.333 15.1465 392.718 15.1465V15.1712Z" fill="#C3A064"></path><path d="M446.931 -0.00104713L447.583 0.638189C447.669 0.724241 449.71 2.74033 451.738 5.93658C453.791 9.14512 454.676 12.1201 454.713 12.2553L454.836 12.6856L454.578 13.0421C454.43 13.2634 454.172 13.5707 453.865 13.9518C452.5 15.6114 449.98 18.7093 449.562 22.1022C449.181 25.2739 449.783 26.368 450.189 27.0933L450.595 27.8678L450.3 28.3103C449.992 28.7652 449.378 29.6503 448.579 30.3879C448.21 30.7321 447.878 31.0025 447.595 31.2115L447.054 31.6172L446.513 31.2115C446.231 31.0025 445.899 30.7321 445.53 30.3879C444.719 29.638 444.104 28.7652 443.797 28.3103L443.502 27.8678L443.809 27.2777C444.178 26.577 444.719 25.5197 444.301 22.1022C443.883 18.7093 441.363 15.6114 439.998 13.9518C439.691 13.5707 439.432 13.2634 439.285 13.0421L439.027 12.6856L439.15 12.2553C439.187 12.1324 440.072 9.15742 442.125 5.93658C444.153 2.74033 446.194 0.724241 446.28 0.638189L446.931 -0.00104713ZM452.795 12.3291C452.488 11.4194 451.64 9.21887 450.177 6.92003C448.935 4.9654 447.669 3.45335 446.931 2.642C446.194 3.46564 444.928 4.9654 443.686 6.92003C442.223 9.23116 441.375 11.4317 441.068 12.3291C441.166 12.4643 441.289 12.6118 441.424 12.7716C442.899 14.5787 445.653 17.9471 446.132 21.8686C446.55 25.323 446.083 26.8106 445.641 27.7325C445.911 28.1136 446.317 28.6054 446.772 29.0356C446.87 29.1217 446.956 29.2077 447.042 29.2815C447.128 29.2077 447.226 29.1217 447.325 29.0356C447.78 28.6177 448.173 28.1259 448.443 27.7448C447.952 26.8351 447.3 25.3108 447.718 21.8686C448.198 17.9348 450.939 14.5787 452.426 12.7716C452.562 12.6118 452.685 12.4643 452.783 12.3291H452.795Z" fill="#C3A064"></path><path d="M450.226 11.3834C450.177 10.486 448.173 6.31856 446.944 5.22446C445.714 6.31856 443.711 10.486 443.661 11.3834C443.612 12.2808 446.944 17.6406 446.944 17.6406C446.944 17.6406 450.275 12.2808 450.226 11.3834Z" fill="#45DAFF"></path><path d="M459.602 13.1508L459.898 13.2C459.984 13.2123 462.049 13.5442 463.573 15.0071C465.098 16.4823 465.442 18.609 465.454 18.7073L465.602 19.74L464.557 19.7646C464.557 19.7646 461.373 19.8875 458.607 22.2847C455.632 24.854 454.624 26.7103 454.624 26.7225L453.026 29.7344L452.89 26.3292C452.89 26.1693 452.755 22.3953 454.722 18.5598C456.738 14.6137 459.258 13.3352 459.357 13.2737L459.615 13.1385L459.602 13.1508ZM463.352 18.0558C463.155 17.5272 462.823 16.8633 462.282 16.3347C461.483 15.5725 460.426 15.2161 459.91 15.0931C459.307 15.4988 457.709 16.7404 456.345 19.408C455.681 20.7111 455.275 22.0265 455.042 23.1452C455.656 22.4814 456.431 21.7192 457.39 20.8832C459.602 18.9778 461.987 18.3016 463.352 18.0558Z" fill="#C3A064"></path><path d="M434.262 13.1551L434.52 13.2903C434.631 13.3395 437.139 14.6303 439.155 18.5764C441.122 22.4119 440.999 26.186 440.987 26.3458L440.851 29.8125L439.253 26.7269C439.253 26.7269 438.245 24.846 435.27 22.289C432.492 19.8918 429.345 19.7812 429.308 19.7689L428.275 19.732L428.423 18.7116C428.435 18.6256 428.767 16.4866 430.304 15.0114C431.816 13.5485 433.893 13.2166 433.979 13.2043L434.274 13.1551H434.262ZM438.823 23.1372C438.589 22.0185 438.196 20.7032 437.52 19.4001C436.155 16.7325 434.557 15.4908 433.943 15.0852C433.426 15.2204 432.369 15.5646 431.57 16.3268C431.029 16.8431 430.697 17.5192 430.5 18.0478C431.877 18.2937 434.25 18.9698 436.463 20.8753C437.421 21.6989 438.196 22.4611 438.811 23.1372H438.823Z" fill="#C3A064"></path><path d="M872.059 27.9556C872.848 27.9556 873.586 27.8259 873.976 27.746L874.405 27.6562L874.585 27.0972C874.794 26.4385 875.104 25.4304 877.259 23.7436C879.655 21.8671 883.787 21.2283 885.344 20.9888C885.554 20.9588 885.724 20.9289 885.853 20.9089L886.203 20.849L886.372 20.5296C886.422 20.4398 887.62 18.224 888.289 15.1997C888.957 12.2053 888.937 9.86973 888.937 9.76992V9.03131H888.199C888.099 9.03131 885.773 9.01135 882.769 9.68009C879.745 10.3488 877.529 11.5466 877.439 11.5965L877.12 11.7662L877.06 12.1155C877.04 12.2453 877.01 12.4149 876.98 12.6245C876.74 14.1816 876.102 18.3138 874.225 20.7093C872.538 22.8752 871.53 23.1846 870.872 23.3842L870.323 23.5639L870.233 23.9931C870.163 24.3424 869.993 25.2507 870.033 26.179C870.053 26.5882 870.083 26.9375 870.123 27.217L870.203 27.756L870.742 27.8358C871.021 27.8758 871.371 27.9157 871.78 27.9257C871.87 27.9257 871.959 27.9257 872.049 27.9257L872.059 27.9556ZM873.247 26.3586C872.878 26.4185 872.359 26.4684 871.85 26.4584C871.75 26.4584 871.64 26.4584 871.55 26.4385C871.55 26.3387 871.54 26.2388 871.53 26.139C871.51 25.63 871.57 25.111 871.63 24.7417C872.439 24.4722 873.676 23.8833 875.423 21.6575C877.539 18.9526 878.198 14.6906 878.477 12.8741C878.477 12.8341 878.487 12.7942 878.497 12.7643C879.196 12.4249 880.943 11.6364 883.118 11.1573C884.965 10.7481 886.552 10.6083 887.44 10.5684C887.39 11.4667 887.251 13.0537 886.851 14.8903C886.372 17.0562 885.584 18.8129 885.244 19.5115C885.204 19.5115 885.175 19.5215 885.135 19.5315C883.318 19.811 879.056 20.4697 876.351 22.5857C874.125 24.3324 873.536 25.5701 873.267 26.3686L873.247 26.3586Z" fill="#C3A064"></path><path d="M884.301 17.4547C884.78 16.9157 886.028 13.3724 885.958 12.0349C884.621 11.9551 881.077 13.2027 880.538 13.6918C879.999 14.1709 878.392 19.6106 878.392 19.6106C878.392 19.6106 883.822 18.0136 884.311 17.4647L884.301 17.4547Z" fill="#45DAFF"></path><path d="M888.327 31.0782L888.826 30.3995C888.866 30.3396 889.904 28.9222 889.874 27.1955C889.844 25.4887 888.846 24.1013 888.806 24.0514L888.667 23.8618L888.437 23.7819C888.347 23.752 886.171 23.0433 882.738 24.1512C879.404 25.2192 877.318 27.465 877.228 27.5548L875.312 29.6309L877.997 28.7825C877.997 28.7825 879.654 28.2834 882.838 28.523C885.802 28.7426 887.679 30.4793 887.698 30.4993L888.317 31.0782H888.327ZM887.738 25.1494C887.958 25.5187 888.367 26.3271 888.387 27.2254C888.397 27.8343 888.208 28.4132 888.018 28.8324C887.09 28.1836 885.333 27.2055 882.967 27.0358C881.939 26.956 881.061 26.956 880.322 26.9859C881.101 26.4769 882.079 25.9479 883.207 25.5885C885.523 24.8399 887.15 25.0396 887.738 25.1593V25.1494Z" fill="#C3A064"></path><path d="M878.99 75.9903C880.148 75.9903 881.256 75.4513 881.985 74.5231C882.733 73.5748 882.973 72.4071 882.643 71.3091C881.975 69.0434 879.629 68.5044 879.529 68.4844L879.21 69.9417L879.37 69.2131L879.21 69.9417C879.27 69.9617 880.797 70.321 881.216 71.7283C881.406 72.3571 881.256 73.0359 880.817 73.5948C880.348 74.1937 879.629 74.533 878.88 74.4931C877.942 74.4432 877.144 73.9641 876.565 73.0958C875.377 71.2991 875.327 68.2649 876.435 65.1907C877.543 62.1264 879.829 59.7509 882.035 57.4453C883.622 55.7784 885.129 54.2114 886.067 52.4946C888.203 48.582 890.159 43.2521 886.247 36.7044C883.592 32.2628 879.31 30.8654 876.455 31.4443C874.798 31.7837 873.7 32.7818 873.511 34.1193C873.371 35.1473 873.64 36.0656 874.289 36.7044C874.898 37.3033 875.776 37.5728 876.635 37.443C878.242 37.1935 878.99 35.4368 879.07 35.2372L877.683 34.6782C877.553 34.9976 877.064 35.866 876.405 35.9658C876.006 36.0257 875.607 35.9059 875.337 35.6464C875.038 35.347 874.918 34.8978 874.988 34.3389C875.128 33.3507 876.265 33.0214 876.745 32.9215C879.18 32.4225 882.773 33.8398 884.949 37.4829C888.452 43.3419 886.806 48.0031 884.739 51.7859C883.901 53.323 882.464 54.8302 880.937 56.4172C878.731 58.7229 876.225 61.328 875.018 64.6916C873.73 68.2649 873.83 71.7183 875.307 73.9342C876.146 75.1918 877.383 75.9304 878.791 76.0003C878.851 76.0003 878.92 76.0003 878.98 76.0003L878.99 75.9903Z" fill="#C3A064"></path><path d="M889.069 64.1444C889.419 64.1444 889.778 64.0945 890.117 63.9947C891.774 63.4956 892.952 62.3278 893.631 60.5013C894.689 57.5468 893.411 54.1033 890.587 52.3067C889.928 51.8875 889.269 51.608 888.7 51.3984L888.171 52.7958C888.66 52.9854 889.239 53.215 889.778 53.5643C891.984 54.9717 893.032 57.7265 892.223 59.9822C891.714 61.3497 890.886 62.1981 889.698 62.5474C889.02 62.747 888.211 62.5973 887.672 62.1681C887.373 61.9286 887.013 61.5094 887.033 60.8207C887.073 59.6129 888.99 59.5231 889.01 59.5231L888.95 58.0259C887.802 58.0758 885.616 58.7146 885.546 60.7708C885.516 61.7988 885.945 62.7171 886.754 63.3559C887.403 63.8649 888.241 64.1344 889.079 64.1344L889.069 64.1444Z" fill="#C3A064"></path><path d="M883.162 51.1026L883.641 49.6853C883.411 49.6055 883.132 49.5256 882.822 49.4358C881.165 48.9567 878.67 48.2281 877.153 45.8925C876.115 44.2855 876.135 43.0578 876.334 42.3092C876.534 41.5606 877.013 40.9518 877.652 40.6224C878.191 40.3429 878.86 40.3729 879.439 40.7122C880.027 41.0516 880.377 41.6205 880.407 42.2793C880.467 43.5968 878.88 44.1358 878.82 44.1657L879.279 45.593C879.389 45.5531 882.024 44.6847 881.904 42.2094C881.844 41.0516 881.205 40.0136 880.187 39.4247C879.169 38.8358 877.961 38.7859 876.963 39.2949C875.945 39.8139 875.187 40.7721 874.877 41.9299C874.598 42.968 874.548 44.6448 875.895 46.7109C877.712 49.5156 880.646 50.374 882.403 50.8831C882.682 50.9629 882.942 51.0427 883.152 51.1126L883.162 51.1026Z" fill="#C3A064"></path><path d="M868.386 22.6242L870.422 20.7477C870.512 20.6579 872.757 18.5718 873.825 15.2381C874.933 11.8146 874.225 9.62868 874.195 9.53885L874.115 9.30928L873.925 9.16955C873.865 9.12962 872.488 8.13151 870.781 8.10156C869.064 8.12152 867.637 9.09968 867.577 9.14959L866.898 9.65862L867.487 10.2675C867.487 10.2675 869.244 12.1639 869.464 15.1283C869.703 18.3123 869.204 19.9492 869.204 19.9692L868.386 22.6242ZM872.837 10.2475C872.957 10.8264 873.157 12.4534 872.408 14.779C872.039 15.9068 871.52 16.885 871.011 17.6635C871.041 16.9249 871.031 16.0466 870.961 15.0185C870.781 12.653 869.813 10.8963 869.164 9.96804C869.583 9.7784 870.152 9.57878 870.771 9.59874C871.669 9.6187 872.478 10.0179 872.847 10.2475H872.837Z" fill="#C3A064"></path><path d="M863.346 24.5137C863.516 24.5137 863.685 24.5037 863.865 24.4738C865.203 24.2841 866.211 23.1862 866.54 21.5293C867.119 18.6747 865.722 14.3928 861.28 11.7378C854.732 7.82518 849.402 9.78149 845.49 11.9175C843.773 12.8557 842.206 14.3628 840.539 15.9499C838.233 18.1557 835.848 20.4414 832.794 21.5493C829.71 22.6672 826.685 22.6173 824.889 21.4195C824.02 20.8406 823.541 20.0421 823.491 19.1039C823.451 18.3653 823.791 17.6367 824.39 17.1676C824.949 16.7284 825.627 16.5787 826.256 16.7683C827.663 17.1775 828.023 18.7047 828.043 18.7745L829.5 18.4551C829.48 18.3553 828.941 16.0097 826.675 15.341C825.577 15.0216 824.4 15.2611 823.461 16.0097C822.483 16.7783 821.934 17.976 822.004 19.1937C822.074 20.6011 822.813 21.8387 824.07 22.6772C826.286 24.1444 829.739 24.2542 833.313 22.9666C836.676 21.7489 839.281 19.2536 841.587 17.0478C843.174 15.5306 844.671 14.0934 846.218 13.245C850.001 11.1789 854.662 9.53196 860.521 13.0353C864.165 15.2112 865.582 18.8144 865.083 21.2399C864.983 21.719 864.654 22.8668 863.665 22.9966C863.107 23.0764 862.657 22.9566 862.358 22.6472C862.088 22.3777 861.969 21.9785 862.039 21.5792C862.138 20.9205 863.007 20.4314 863.326 20.2917L862.767 18.9043C862.568 18.9841 860.811 19.7327 860.561 21.3397C860.422 22.208 860.701 23.0864 861.3 23.6952C861.829 24.2342 862.548 24.5137 863.356 24.5137H863.346Z" fill="#C3A064"></path><path d="M837.088 12.4539C837.088 12.4539 837.168 12.4539 837.198 12.4539C839.264 12.3841 839.893 10.1982 839.943 9.05035L838.446 8.99046L839.194 9.02041L838.446 8.99046C838.446 8.99046 838.336 10.9268 837.148 10.9667C836.469 10.9867 836.03 10.6374 835.801 10.3279C835.371 9.77898 835.222 8.98048 835.421 8.29178C835.781 7.10402 836.619 6.27559 837.996 5.77653C840.242 4.96805 843.007 6.01607 844.404 8.22191C844.754 8.7609 844.993 9.3398 845.173 9.83886L846.57 9.30986C846.361 8.74093 846.081 8.0722 845.662 7.41344C843.865 4.58877 840.432 3.31118 837.477 4.36918C835.651 5.0479 834.473 6.22568 833.984 7.87257C833.655 9.03039 833.894 10.3279 834.613 11.2562C835.222 12.0447 836.1 12.4739 837.078 12.4739L837.088 12.4539Z" fill="#C3A064"></path><path d="M854.842 23.2569C855.321 23.2569 855.731 23.1871 856.07 23.0972C857.228 22.7878 858.186 22.0293 858.705 21.0112C859.214 20.0131 859.164 18.8153 858.575 17.7972C857.986 16.7792 856.948 16.1404 855.791 16.0805C853.305 15.9607 852.447 18.5957 852.407 18.7055L853.834 19.1647L853.126 18.9351L853.834 19.1647C853.854 19.0948 854.403 17.5178 855.721 17.5776C856.379 17.6076 856.948 17.9669 857.288 18.5458C857.617 19.1247 857.657 19.7935 857.378 20.3325C857.048 20.9712 856.429 21.4503 855.691 21.65C854.942 21.8496 853.715 21.8696 852.108 20.8215C849.772 19.3144 849.043 16.8091 848.564 15.1622C848.474 14.8528 848.395 14.5833 848.315 14.3438L846.897 14.8228C846.967 15.0325 847.047 15.292 847.127 15.5714C847.636 17.3281 848.494 20.2626 851.299 22.0692C852.686 22.9675 853.894 23.237 854.852 23.237L854.842 23.2569Z" fill="#C3A064"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 1239 711" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M71 695L547 695" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M692 695L1168 695" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M71 16L547 16" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M692 16L1168 16" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M16 640L16 71" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M1223 640L1223 71" stroke="#C3A064" stroke-width="2" stroke-miterlimit="10"></path><path d="M21.9407 23.9556C21.1522 23.9556 20.4136 23.8259 20.0243 23.746L19.5951 23.6562L19.4155 23.0972C19.2059 22.4385 18.8965 21.4304 16.7405 19.7436C14.3451 17.8671 10.2128 17.2283 8.65578 16.9888C8.44618 16.9588 8.2765 16.9289 8.14674 16.9089L7.7974 16.849L7.62772 16.5296C7.57782 16.4398 6.38008 14.224 5.71134 11.1997C5.0426 8.20533 5.06256 5.86973 5.06256 5.76992V5.03131H5.80117C5.90098 5.03131 8.22659 5.01135 11.2309 5.68009C14.2552 6.34883 16.471 7.54657 16.5609 7.59647L16.8803 7.76615L16.9402 8.1155C16.9601 8.24525 16.9901 8.41493 17.02 8.62453C17.2596 10.1816 17.8983 14.3138 19.7748 16.7093C21.4616 18.8752 22.4697 19.1846 23.1285 19.3842L23.6774 19.5639L23.7673 19.9931C23.8371 20.3424 24.0068 21.2507 23.9669 22.179C23.9469 22.5882 23.917 22.9375 23.8771 23.217L23.7972 23.756L23.2582 23.8358C22.9788 23.8758 22.6294 23.9157 22.2202 23.9257C22.1304 23.9257 22.0405 23.9257 21.9507 23.9257L21.9407 23.9556ZM20.753 22.3586C21.1223 22.4185 21.6413 22.4684 22.1503 22.4584C22.2501 22.4584 22.3599 22.4584 22.4498 22.4385C22.4498 22.3387 22.4597 22.2388 22.4697 22.139C22.4897 21.63 22.4298 21.111 22.3699 20.7417C21.5614 20.4722 20.3238 19.8833 18.5771 17.6575C16.4611 14.9526 15.8023 10.6906 15.5228 8.87406C15.5228 8.83414 15.5128 8.79421 15.5029 8.76427C14.8042 8.42491 13.0575 7.6364 10.8816 7.1573C9.03507 6.74807 7.44806 6.60834 6.55974 6.56841C6.60964 7.46672 6.74938 9.05372 7.14863 10.8903C7.62772 13.0562 8.41624 14.8129 8.7556 15.5115C8.79552 15.5115 8.82546 15.5215 8.86539 15.5315C10.682 15.811 14.9439 16.4697 17.6488 18.5857C19.8746 20.3324 20.4635 21.5701 20.733 22.3686L20.753 22.3586Z" fill="#C3A064"></path><path d="M9.69876 13.4547C9.21966 12.9157 7.97201 9.37239 8.04188 8.03491C9.37936 7.95506 12.9227 9.20271 13.4617 9.69179C14.0006 10.1709 15.6076 15.6106 15.6076 15.6106C15.6076 15.6106 10.1779 14.0136 9.68877 13.4647L9.69876 13.4547Z" fill="#45DAFF"></path><path d="M5.67272 27.0782L5.17366 26.3995C5.13373 26.3396 4.09569 24.9222 4.12564 23.1955C4.15558 21.4887 5.1537 20.1013 5.19362 20.0514L5.33336 19.8618L5.56292 19.7819C5.65275 19.752 7.82865 19.0433 11.2622 20.1512C14.5959 21.2192 16.6819 23.465 16.7718 23.5548L18.6882 25.6309L16.0032 24.7825C16.0032 24.7825 14.3464 24.2834 11.1624 24.523C8.19795 24.7426 6.32149 26.4793 6.30153 26.4993L5.6827 27.0782H5.67272ZM6.26161 21.1494C6.04202 21.5187 5.63279 22.3271 5.61283 23.2254C5.60285 23.8343 5.79249 24.4132 5.98213 24.8324C6.91038 24.1836 8.66707 23.2055 11.0326 23.0358C12.0607 22.956 12.939 22.956 13.6776 22.9859C12.8991 22.4769 11.9209 21.9479 10.7931 21.5885C8.47743 20.8399 6.85049 21.0396 6.26161 21.1593V21.1494Z" fill="#C3A064"></path><path d="M15.0097 71.9903C13.8519 71.9903 12.744 71.4513 12.0154 70.5231C11.2668 69.5748 11.0272 68.407 11.3566 67.3091C12.0254 65.0434 14.3709 64.5044 14.4707 64.4844L14.7901 65.9417L14.6304 65.2131L14.7901 65.9417C14.7303 65.9617 13.2031 66.321 12.7839 67.7283C12.5943 68.3571 12.744 69.0359 13.1832 69.5948C13.6523 70.1937 14.3709 70.533 15.1195 70.4931C16.0578 70.4432 16.8562 69.9641 17.4352 69.0958C18.6229 67.2991 18.6728 64.2649 17.5649 61.1907C16.457 58.1264 14.1713 55.7509 11.9655 53.4453C10.3785 51.7784 8.87131 50.2114 7.93308 48.4946C5.79711 44.582 3.8408 39.2521 7.75342 32.7044C10.4084 28.2628 14.6903 26.8654 17.5449 27.4443C19.2018 27.7837 20.2998 28.7818 20.4894 30.1193C20.6291 31.1473 20.3596 32.0656 19.7109 32.7044C19.102 33.3033 18.2237 33.5728 17.3653 33.443C15.7583 33.1935 15.0097 31.4368 14.9299 31.2372L16.3173 30.6782C16.447 30.9976 16.9361 31.866 17.5949 31.9658C17.9941 32.0257 18.3933 31.9059 18.6628 31.6464C18.9623 31.347 19.082 30.8978 19.0122 30.3389C18.8724 29.3507 17.7346 29.0214 17.2555 28.9215C14.8201 28.4225 11.2269 29.8398 9.05097 33.4829C5.54758 39.3419 7.19448 44.0031 9.26058 47.786C10.099 49.3231 11.5363 50.8302 13.0634 52.4172C15.2692 54.7229 17.7745 57.328 18.9822 60.6916C20.2698 64.2649 20.17 67.7183 18.6928 69.9342C17.8544 71.1918 16.6167 71.9304 15.2094 72.0003C15.1495 72.0003 15.0796 72.0003 15.0197 72.0003L15.0097 71.9903Z" fill="#C3A064"></path><path d="M4.93058 60.1444C4.58123 60.1444 4.22191 60.0945 3.88255 59.9947C2.22568 59.4956 1.0479 58.3278 0.369182 56.5013C-0.688822 53.5468 0.588768 50.1033 3.41344 48.3067C4.0722 47.8875 4.73095 47.608 5.29988 47.3984L5.82888 48.7958C5.3398 48.9854 4.7609 49.215 4.22191 49.5643C2.01607 50.9717 0.968052 53.7265 1.77653 55.9822C2.28557 57.3497 3.114 58.1981 4.30176 58.5474C4.98048 58.747 5.78896 58.5973 6.32794 58.1681C6.62737 57.9286 6.9867 57.5094 6.96673 56.8207C6.92681 55.6129 5.01043 55.5231 4.99046 55.5231L5.05035 54.0259C6.19818 54.0758 8.38406 54.7146 8.45393 56.7708C8.48387 57.7988 8.05468 58.7171 7.24621 59.3559C6.59743 59.8649 5.75901 60.1344 4.92059 60.1344L4.93058 60.1444Z" fill="#C3A064"></path><path d="M10.8385 47.1026L10.3594 45.6853C10.5889 45.6055 10.8684 45.5256 11.1778 45.4358C12.8347 44.9567 15.33 44.2281 16.8471 41.8925C17.8852 40.2855 17.8652 39.0578 17.6656 38.3092C17.466 37.5606 16.9869 36.9518 16.3481 36.6224C15.8091 36.3429 15.1404 36.3729 14.5614 36.7122C13.9726 37.0516 13.6232 37.6205 13.5933 38.2793C13.5334 39.5968 15.1204 40.1358 15.1803 40.1657L14.7211 41.593C14.6114 41.5531 11.9763 40.6847 12.0961 38.2094C12.156 37.0516 12.7948 36.0136 13.8129 35.4247C14.8309 34.8358 16.0387 34.7859 17.0368 35.2949C18.0549 35.8139 18.8134 36.7721 19.1228 37.9299C19.4023 38.968 19.4522 40.6448 18.1048 42.7109C16.2882 45.5156 13.3537 46.374 11.597 46.8831C11.3176 46.9629 11.0581 47.0427 10.8485 47.1126L10.8385 47.1026Z" fill="#C3A064"></path><path d="M25.6144 18.6242L23.5783 16.7477C23.4884 16.6579 21.2427 14.5718 20.1747 11.2381C19.0668 7.81456 19.7754 5.62868 19.8054 5.53885L19.8852 5.30928L20.0749 5.16955C20.1348 5.12962 21.5122 4.13151 23.2189 4.10156C24.9357 4.12152 26.363 5.09968 26.4229 5.14959L27.1016 5.65862L26.5127 6.26748C26.5127 6.26748 24.756 8.1639 24.5365 11.1283C24.2969 14.3123 24.796 15.9492 24.796 15.9692L25.6144 18.6242ZM21.1628 6.24751C21.043 6.82642 20.8434 8.45335 21.592 10.779C21.9613 11.9068 22.4803 12.885 22.9894 13.6635C22.9594 12.9249 22.9694 12.0466 23.0393 11.0185C23.2189 8.65298 24.1871 6.89629 24.8359 5.96804C24.4167 5.7784 23.8478 5.57878 23.2289 5.59874C22.3306 5.6187 21.5221 6.01795 21.1528 6.24751H21.1628Z" fill="#C3A064"></path><path d="M30.6539 20.5137C30.4842 20.5137 30.3146 20.5037 30.1349 20.4738C28.7974 20.2841 27.7893 19.1862 27.46 17.5293C26.881 14.6747 28.2784 10.3928 32.72 7.7378C39.2677 3.82518 44.5976 5.78149 48.5102 7.91746C50.227 8.85569 51.794 10.3628 53.4609 11.9499C55.7665 14.1557 58.152 16.4414 61.2063 17.5493C64.2905 18.6672 67.3148 18.6173 69.1114 17.4195C69.9797 16.8406 70.4588 16.0421 70.5087 15.1039C70.5487 14.3653 70.2093 13.6367 69.6104 13.1676C69.0515 12.7284 68.3728 12.5787 67.744 12.7683C66.3366 13.1775 65.9773 14.7047 65.9573 14.7745L64.5001 14.4551C64.52 14.3553 65.059 12.0097 67.3247 11.341C68.4227 11.0216 69.6004 11.2611 70.5387 12.0097C71.5168 12.7783 72.0658 13.976 71.9959 15.1937C71.9261 16.6011 71.1875 17.8387 69.9298 18.6772C67.714 20.1444 64.2605 20.2542 60.6873 18.9666C57.3236 17.7489 54.7185 15.2536 52.4129 13.0478C50.8259 11.5306 49.3287 10.0934 47.7816 9.24495C43.9987 7.17885 39.3375 5.53196 33.4786 9.03535C29.8355 11.2112 28.4181 14.8144 28.9172 17.2399C29.017 17.719 29.3464 18.8668 30.3345 18.9966C30.8935 19.0764 31.3426 18.9566 31.6421 18.6472C31.9116 18.3777 32.0313 17.9785 31.9615 17.5792C31.8616 16.9205 30.9933 16.4314 30.6739 16.2917L31.2328 14.9043C31.4325 14.9841 33.1891 15.7327 33.4387 17.3397C33.5784 18.208 33.2989 19.0864 32.7001 19.6952C32.1711 20.2342 31.4524 20.5137 30.6439 20.5137H30.6539Z" fill="#C3A064"></path><path d="M56.9118 8.45393C56.9118 8.45393 56.8319 8.45393 56.802 8.45393C54.7359 8.38406 54.1071 6.19818 54.0572 5.05035L55.5544 4.99046L54.8058 5.02041L55.5544 4.99046C55.5544 4.99046 55.6642 6.92681 56.8519 6.96673C57.5306 6.9867 57.9698 6.63736 58.1994 6.32794C58.6286 5.77898 58.7783 4.98048 58.5787 4.29178C58.2193 3.10402 57.3809 2.27559 56.0035 1.77653C53.7577 0.968052 50.993 2.01607 49.5956 4.22191C49.2463 4.7609 49.0067 5.3398 48.827 5.83886L47.4297 5.30986C47.6393 4.74093 47.9188 4.0722 48.338 3.41344C50.1346 0.588768 53.5681 -0.688822 56.5225 0.369182C58.3491 1.0479 59.5269 2.22568 60.0159 3.87257C60.3453 5.03039 60.1058 6.32794 59.3871 7.25619C58.7783 8.0447 57.8999 8.47389 56.9218 8.47389L56.9118 8.45393Z" fill="#C3A064"></path><path d="M39.1576 19.2569C38.6785 19.2569 38.2693 19.1871 37.9299 19.0972C36.7721 18.7878 35.8139 18.0293 35.2949 17.0112C34.7859 16.0131 34.8358 14.8153 35.4247 13.7972C36.0136 12.7792 37.0516 12.1404 38.2094 12.0805C40.6947 11.9607 41.5531 14.5957 41.593 14.7055L40.1657 15.1647L40.8744 14.9351L40.1657 15.1647C40.1458 15.0948 39.5968 13.5178 38.2793 13.5776C37.6205 13.6076 37.0516 13.9669 36.7122 14.5458C36.3829 15.1247 36.3429 15.7935 36.6224 16.3325C36.9518 16.9712 37.5706 17.4503 38.3092 17.65C39.0578 17.8496 40.2855 17.8696 41.8925 16.8215C44.2281 15.3144 44.9567 12.8091 45.4358 11.1622C45.5256 10.8528 45.6055 10.5833 45.6853 10.3438L47.1026 10.8228C47.0328 11.0325 46.9529 11.292 46.8731 11.5714C46.364 13.3281 45.5056 16.2626 42.7009 18.0692C41.3136 18.9675 40.1058 19.237 39.1476 19.237L39.1576 19.2569Z" fill="#C3A064"></path><path d="M1217.06 23.9556C1217.85 23.9556 1218.59 23.8259 1218.98 23.746L1219.4 23.6562L1219.58 23.0972C1219.79 22.4385 1220.1 21.4304 1222.26 19.7436C1224.65 17.8671 1228.79 17.2283 1230.34 16.9888C1230.55 16.9588 1230.72 16.9289 1230.85 16.9089L1231.2 16.849L1231.37 16.5296C1231.42 16.4398 1232.62 14.224 1233.29 11.1997C1233.96 8.20533 1233.94 5.86973 1233.94 5.76992V5.03131H1233.2C1233.1 5.03131 1230.77 5.01135 1227.77 5.68009C1224.74 6.34883 1222.53 7.54657 1222.44 7.59647L1222.12 7.76615L1222.06 8.1155C1222.04 8.24525 1222.01 8.41493 1221.98 8.62453C1221.74 10.1816 1221.1 14.3138 1219.23 16.7093C1217.54 18.8752 1216.53 19.1846 1215.87 19.3842L1215.32 19.5639L1215.23 19.9931C1215.16 20.3424 1214.99 21.2507 1215.03 22.179C1215.05 22.5882 1215.08 22.9375 1215.12 23.217L1215.2 23.756L1215.74 23.8358C1216.02 23.8758 1216.37 23.9157 1216.78 23.9257C1216.87 23.9257 1216.96 23.9257 1217.05 23.9257L1217.06 23.9556ZM1218.25 22.3586C1217.88 22.4185 1217.36 22.4684 1216.85 22.4584C1216.75 22.4584 1216.64 22.4584 1216.55 22.4385C1216.55 22.3387 1216.54 22.2388 1216.53 22.139C1216.51 21.63 1216.57 21.111 1216.63 20.7417C1217.44 20.4722 1218.68 19.8833 1220.42 17.6575C1222.54 14.9526 1223.2 10.6906 1223.48 8.87406C1223.48 8.83414 1223.49 8.79421 1223.5 8.76427C1224.2 8.42491 1225.94 7.6364 1228.12 7.1573C1229.96 6.74807 1231.55 6.60834 1232.44 6.56841C1232.39 7.46672 1232.25 9.05372 1231.85 10.8903C1231.37 13.0562 1230.58 14.8129 1230.24 15.5115C1230.2 15.5115 1230.17 15.5215 1230.13 15.5315C1228.32 15.811 1224.06 16.4697 1221.35 18.5857C1219.13 20.3324 1218.54 21.5701 1218.27 22.3686L1218.25 22.3586Z" fill="#C3A064"></path><path d="M1229.3 13.4547C1229.78 12.9157 1231.03 9.37239 1230.96 8.03491C1229.62 7.95506 1226.08 9.20271 1225.54 9.69179C1225 10.1709 1223.39 15.6106 1223.39 15.6106C1223.39 15.6106 1228.82 14.0136 1229.31 13.4647L1229.3 13.4547Z" fill="#45DAFF"></path><path d="M1233.33 27.0782L1233.83 26.3995C1233.87 26.3396 1234.9 24.9222 1234.87 23.1955C1234.84 21.4887 1233.85 20.1013 1233.81 20.0514L1233.67 19.8618L1233.44 19.7819C1233.35 19.752 1231.17 19.0433 1227.74 20.1512C1224.4 21.2192 1222.32 23.465 1222.23 23.5548L1220.31 25.6309L1223 24.7825C1223 24.7825 1224.65 24.2834 1227.84 24.523C1230.8 24.7426 1232.68 26.4793 1232.7 26.4993L1233.32 27.0782H1233.33ZM1232.74 21.1494C1232.96 21.5187 1233.37 22.3271 1233.39 23.2254C1233.4 23.8343 1233.21 24.4132 1233.02 24.8324C1232.09 24.1836 1230.33 23.2055 1227.97 23.0358C1226.94 22.956 1226.06 22.956 1225.32 22.9859C1226.1 22.4769 1227.08 21.9479 1228.21 21.5885C1230.52 20.8399 1232.15 21.0396 1232.74 21.1593V21.1494Z" fill="#C3A064"></path><path d="M1223.99 71.9903C1225.15 71.9903 1226.26 71.4513 1226.98 70.5231C1227.73 69.5748 1227.97 68.407 1227.64 67.3091C1226.97 65.0434 1224.63 64.5044 1224.53 64.4844L1224.21 65.9417L1224.37 65.2131L1224.21 65.9417C1224.27 65.9617 1225.8 66.321 1226.22 67.7283C1226.41 68.3571 1226.26 69.0359 1225.82 69.5948C1225.35 70.1937 1224.63 70.533 1223.88 70.4931C1222.94 70.4432 1222.14 69.9641 1221.56 69.0958C1220.38 67.2991 1220.33 64.2649 1221.44 61.1907C1222.54 58.1264 1224.83 55.7509 1227.03 53.4453C1228.62 51.7784 1230.13 50.2114 1231.07 48.4946C1233.2 44.582 1235.16 39.2521 1231.25 32.7044C1228.59 28.2628 1224.31 26.8654 1221.46 27.4443C1219.8 27.7837 1218.7 28.7818 1218.51 30.1193C1218.37 31.1473 1218.64 32.0656 1219.29 32.7044C1219.9 33.3033 1220.78 33.5728 1221.63 33.443C1223.24 33.1935 1223.99 31.4368 1224.07 31.2372L1222.68 30.6782C1222.55 30.9976 1222.06 31.866 1221.41 31.9658C1221.01 32.0257 1220.61 31.9059 1220.34 31.6464C1220.04 31.347 1219.92 30.8978 1219.99 30.3389C1220.13 29.3507 1221.27 29.0214 1221.74 28.9215C1224.18 28.4225 1227.77 29.8398 1229.95 33.4829C1233.45 39.3419 1231.81 44.0031 1229.74 47.786C1228.9 49.3231 1227.46 50.8302 1225.94 52.4172C1223.73 54.7229 1221.23 57.328 1220.02 60.6916C1218.73 64.2649 1218.83 67.7183 1220.31 69.9342C1221.15 71.1918 1222.38 71.9304 1223.79 72.0003C1223.85 72.0003 1223.92 72.0003 1223.98 72.0003L1223.99 71.9903Z" fill="#C3A064"></path><path d="M1234.07 60.1444C1234.42 60.1444 1234.78 60.0945 1235.12 59.9947C1236.77 59.4956 1237.95 58.3278 1238.63 56.5013C1239.69 53.5468 1238.41 50.1033 1235.59 48.3067C1234.93 47.8875 1234.27 47.608 1233.7 47.3984L1233.17 48.7958C1233.66 48.9854 1234.24 49.215 1234.78 49.5643C1236.98 50.9717 1238.03 53.7265 1237.22 55.9822C1236.71 57.3497 1235.89 58.1981 1234.7 58.5474C1234.02 58.747 1233.21 58.5973 1232.67 58.1681C1232.37 57.9286 1232.01 57.5094 1232.03 56.8207C1232.07 55.6129 1233.99 55.5231 1234.01 55.5231L1233.95 54.0259C1232.8 54.0758 1230.62 54.7146 1230.55 56.7708C1230.52 57.7988 1230.95 58.7171 1231.75 59.3559C1232.4 59.8649 1233.24 60.1344 1234.08 60.1344L1234.07 60.1444Z" fill="#C3A064"></path><path d="M1228.16 47.1026L1228.64 45.6853C1228.41 45.6055 1228.13 45.5256 1227.82 45.4358C1226.17 44.9567 1223.67 44.2281 1222.15 41.8925C1221.11 40.2855 1221.13 39.0578 1221.33 38.3092C1221.53 37.5606 1222.01 36.9518 1222.65 36.6224C1223.19 36.3429 1223.86 36.3729 1224.44 36.7122C1225.03 37.0516 1225.38 37.6205 1225.41 38.2793C1225.47 39.5968 1223.88 40.1358 1223.82 40.1657L1224.28 41.593C1224.39 41.5531 1227.02 40.6847 1226.9 38.2094C1226.84 37.0516 1226.21 36.0136 1225.19 35.4247C1224.17 34.8358 1222.96 34.7859 1221.96 35.2949C1220.95 35.8139 1220.19 36.7721 1219.88 37.9299C1219.6 38.968 1219.55 40.6448 1220.9 42.7109C1222.71 45.5156 1225.65 46.374 1227.4 46.8831C1227.68 46.9629 1227.94 47.0427 1228.15 47.1126L1228.16 47.1026Z" fill="#C3A064"></path><path d="M1213.39 18.6242L1215.42 16.7477C1215.51 16.6579 1217.76 14.5718 1218.83 11.2381C1219.93 7.81456 1219.22 5.62868 1219.19 5.53885L1219.11 5.30928L1218.93 5.16955C1218.87 5.12962 1217.49 4.13151 1215.78 4.10156C1214.06 4.12152 1212.64 5.09968 1212.58 5.14959L1211.9 5.65862L1212.49 6.26748C1212.49 6.26748 1214.24 8.1639 1214.46 11.1283C1214.7 14.3123 1214.2 15.9492 1214.2 15.9692L1213.39 18.6242ZM1217.84 6.24751C1217.96 6.82642 1218.16 8.45335 1217.41 10.779C1217.04 11.9068 1216.52 12.885 1216.01 13.6635C1216.04 12.9249 1216.03 12.0466 1215.96 11.0185C1215.78 8.65298 1214.81 6.89629 1214.16 5.96804C1214.58 5.7784 1215.15 5.57878 1215.77 5.59874C1216.67 5.6187 1217.48 6.01795 1217.85 6.24751H1217.84Z" fill="#C3A064"></path><path d="M1208.35 20.5137C1208.52 20.5137 1208.69 20.5037 1208.87 20.4738C1210.2 20.2841 1211.21 19.1862 1211.54 17.5293C1212.12 14.6747 1210.72 10.3928 1206.28 7.7378C1199.73 3.82518 1194.4 5.78149 1190.49 7.91746C1188.77 8.85569 1187.21 10.3628 1185.54 11.9499C1183.23 14.1557 1180.85 16.4414 1177.79 17.5493C1174.71 18.6672 1171.69 18.6173 1169.89 17.4195C1169.02 16.8406 1168.54 16.0421 1168.49 15.1039C1168.45 14.3653 1168.79 13.6367 1169.39 13.1676C1169.95 12.7284 1170.63 12.5787 1171.26 12.7683C1172.66 13.1775 1173.02 14.7047 1173.04 14.7745L1174.5 14.4551C1174.48 14.3553 1173.94 12.0097 1171.68 11.341C1170.58 11.0216 1169.4 11.2611 1168.46 12.0097C1167.48 12.7783 1166.93 13.976 1167 15.1937C1167.07 16.6011 1167.81 17.8387 1169.07 18.6772C1171.29 20.1444 1174.74 20.2542 1178.31 18.9666C1181.68 17.7489 1184.28 15.2536 1186.59 13.0478C1188.17 11.5306 1189.67 10.0934 1191.22 9.24495C1195 7.17885 1199.66 5.53196 1205.52 9.03535C1209.16 11.2112 1210.58 14.8144 1210.08 17.2399C1209.98 17.719 1209.65 18.8668 1208.67 18.9966C1208.11 19.0764 1207.66 18.9566 1207.36 18.6472C1207.09 18.3777 1206.97 17.9785 1207.04 17.5792C1207.14 16.9205 1208.01 16.4314 1208.33 16.2917L1207.77 14.9043C1207.57 14.9841 1205.81 15.7327 1205.56 17.3397C1205.42 18.208 1205.7 19.0864 1206.3 19.6952C1206.83 20.2342 1207.55 20.5137 1208.36 20.5137H1208.35Z" fill="#C3A064"></path><path d="M1182.09 8.45393C1182.09 8.45393 1182.17 8.45393 1182.2 8.45393C1184.26 8.38406 1184.89 6.19818 1184.94 5.05035L1183.45 4.99046L1184.19 5.02041L1183.45 4.99046C1183.45 4.99046 1183.34 6.92681 1182.15 6.96673C1181.47 6.9867 1181.03 6.63736 1180.8 6.32794C1180.37 5.77898 1180.22 4.98048 1180.42 4.29178C1180.78 3.10402 1181.62 2.27559 1183 1.77653C1185.24 0.968052 1188.01 2.01607 1189.4 4.22191C1189.75 4.7609 1189.99 5.3398 1190.17 5.83886L1191.57 5.30986C1191.36 4.74093 1191.08 4.0722 1190.66 3.41344C1188.87 0.588768 1185.43 -0.688822 1182.48 0.369182C1180.65 1.0479 1179.47 2.22568 1178.98 3.87257C1178.65 5.03039 1178.89 6.32794 1179.61 7.25619C1180.22 8.0447 1181.1 8.47389 1182.08 8.47389L1182.09 8.45393Z" fill="#C3A064"></path><path d="M1199.84 19.2569C1200.32 19.2569 1200.73 19.1871 1201.07 19.0972C1202.23 18.7878 1203.19 18.0293 1203.71 17.0112C1204.21 16.0131 1204.16 14.8153 1203.58 13.7972C1202.99 12.7792 1201.95 12.1404 1200.79 12.0805C1198.31 11.9607 1197.45 14.5957 1197.41 14.7055L1198.83 15.1647L1198.13 14.9351L1198.83 15.1647C1198.85 15.0948 1199.4 13.5178 1200.72 13.5776C1201.38 13.6076 1201.95 13.9669 1202.29 14.5458C1202.62 15.1247 1202.66 15.7935 1202.38 16.3325C1202.05 16.9712 1201.43 17.4503 1200.69 17.65C1199.94 17.8496 1198.71 17.8696 1197.11 16.8215C1194.77 15.3144 1194.04 12.8091 1193.56 11.1622C1193.47 10.8528 1193.39 10.5833 1193.31 10.3438L1191.9 10.8228C1191.97 11.0325 1192.05 11.292 1192.13 11.5714C1192.64 13.3281 1193.49 16.2626 1196.3 18.0692C1197.69 18.9675 1198.89 19.237 1199.85 19.237L1199.84 19.2569Z" fill="#C3A064"></path><path d="M21.9407 687.052C21.1522 687.052 20.4136 687.182 20.0243 687.262L19.5951 687.352L19.4155 687.911C19.2059 688.569 18.8965 689.577 16.7405 691.264C14.3451 693.141 10.2128 693.78 8.65578 694.019C8.44618 694.049 8.2765 694.079 8.14674 694.099L7.7974 694.159L7.62772 694.478C7.57782 694.568 6.38008 696.784 5.71134 699.808C5.0426 702.802 5.06256 705.138 5.06256 705.238V705.976H5.80117C5.90098 705.976 8.22659 705.996 11.2309 705.328C14.2552 704.659 16.471 703.461 16.5609 703.411L16.8803 703.242L16.9402 702.892C16.9601 702.763 16.9901 702.593 17.02 702.383C17.2596 700.826 17.8983 696.694 19.7748 694.299C21.4616 692.133 22.4697 691.823 23.1285 691.624L23.6774 691.444L23.7673 691.015C23.8371 690.665 24.0068 689.757 23.9669 688.829C23.9469 688.42 23.917 688.07 23.8771 687.791L23.7972 687.252L23.2582 687.172C22.9788 687.132 22.6294 687.092 22.2202 687.082C22.1304 687.082 22.0405 687.082 21.9507 687.082L21.9407 687.052ZM20.753 688.649C21.1223 688.589 21.6413 688.539 22.1503 688.549C22.2501 688.549 22.3599 688.549 22.4498 688.569C22.4498 688.669 22.4597 688.769 22.4697 688.869C22.4897 689.378 22.4298 689.897 22.3699 690.266C21.5614 690.536 20.3238 691.125 18.5771 693.35C16.4611 696.055 15.8023 700.317 15.5228 702.134C15.5228 702.174 15.5128 702.214 15.5029 702.244C14.8042 702.583 13.0575 703.371 10.8816 703.851C9.03507 704.26 7.44806 704.399 6.55974 704.439C6.60964 703.541 6.74938 701.954 7.14863 700.118C7.62772 697.952 8.41624 696.195 8.7556 695.496C8.79552 695.496 8.82546 695.486 8.86539 695.476C10.682 695.197 14.9439 694.538 17.6488 692.422C19.8746 690.675 20.4635 689.438 20.733 688.639L20.753 688.649Z" fill="#C3A064"></path><path d="M9.69876 697.545C9.21966 698.084 7.97201 701.628 8.04188 702.965C9.37936 703.045 12.9227 701.797 13.4617 701.308C14.0006 700.829 15.6076 695.389 15.6076 695.389C15.6076 695.389 10.1779 696.986 9.68877 697.535L9.69876 697.545Z" fill="#9825DE"></path><path d="M5.67272 683.922L5.17366 684.601C5.13373 684.66 4.09569 686.078 4.12564 687.804C4.15558 689.511 5.1537 690.899 5.19362 690.949L5.33336 691.138L5.56292 691.218C5.65275 691.248 7.82865 691.957 11.2622 690.849C14.5959 689.781 16.6819 687.535 16.7718 687.445L18.6882 685.369L16.0032 686.217C16.0032 686.217 14.3464 686.717 11.1624 686.477C8.19795 686.257 6.32149 684.521 6.30153 684.501L5.6827 683.922H5.67272ZM6.26161 689.851C6.04202 689.481 5.63279 688.673 5.61283 687.775C5.60285 687.166 5.79249 686.587 5.98213 686.168C6.91038 686.816 8.66707 687.795 11.0326 687.964C12.0607 688.044 12.939 688.044 13.6776 688.014C12.8991 688.523 11.9209 689.052 10.7931 689.411C8.47743 690.16 6.85049 689.96 6.26161 689.841V689.851Z" fill="#C3A064"></path><path d="M15.0097 639.01C13.8519 639.01 12.744 639.549 12.0154 640.477C11.2668 641.425 11.0272 642.593 11.3566 643.691C12.0254 645.957 14.3709 646.496 14.4707 646.516L14.7901 645.058L14.6304 645.787L14.7901 645.058C14.7303 645.038 13.2031 644.679 12.7839 643.272C12.5943 642.643 12.744 641.964 13.1832 641.405C13.6523 640.806 14.3709 640.467 15.1195 640.507C16.0578 640.557 16.8562 641.036 17.4352 641.904C18.6229 643.701 18.6728 646.735 17.5649 649.809C16.457 652.874 14.1713 655.249 11.9655 657.555C10.3785 659.222 8.87131 660.789 7.93308 662.505C5.79711 666.418 3.8408 671.748 7.75342 678.296C10.4084 682.737 14.6903 684.135 17.5449 683.556C19.2018 683.216 20.2998 682.218 20.4894 680.881C20.6291 679.853 20.3596 678.934 19.7109 678.296C19.102 677.697 18.2237 677.427 17.3653 677.557C15.7583 677.807 15.0097 679.563 14.9299 679.763L16.3173 680.322C16.447 680.002 16.9361 679.134 17.5949 679.034C17.9941 678.974 18.3933 679.094 18.6628 679.354C18.9623 679.653 19.082 680.102 19.0122 680.661C18.8724 681.649 17.7346 681.979 17.2555 682.078C14.8201 682.578 11.2269 681.16 9.05097 677.517C5.54758 671.658 7.19448 666.997 9.26058 663.214C10.099 661.677 11.5363 660.17 13.0634 658.583C15.2692 656.277 17.7745 653.672 18.9822 650.308C20.2698 646.735 20.17 643.282 18.6928 641.066C17.8544 639.808 16.6167 639.07 15.2094 639C15.1495 639 15.0796 639 15.0197 639L15.0097 639.01Z" fill="#C3A064"></path><path d="M4.93058 650.856C4.58123 650.856 4.22191 650.906 3.88255 651.005C2.22568 651.504 1.0479 652.672 0.369182 654.499C-0.688822 657.453 0.588768 660.897 3.41344 662.693C4.0722 663.112 4.73095 663.392 5.29988 663.602L5.82888 662.204C5.3398 662.015 4.7609 661.785 4.22191 661.436C2.01607 660.028 0.968052 657.274 1.77653 655.018C2.28557 653.65 3.114 652.802 4.30176 652.453C4.98048 652.253 5.78896 652.403 6.32794 652.832C6.62737 653.071 6.9867 653.491 6.96673 654.179C6.92681 655.387 5.01043 655.477 4.99046 655.477L5.05035 656.974C6.19818 656.924 8.38406 656.285 8.45393 654.229C8.48387 653.201 8.05468 652.283 7.24621 651.644C6.59743 651.135 5.75901 650.866 4.92059 650.866L4.93058 650.856Z" fill="#C3A064"></path><path d="M10.8385 663.905L10.3594 665.323C10.5889 665.402 10.8684 665.482 11.1778 665.572C12.8347 666.051 15.33 666.78 16.8471 669.115C17.8852 670.722 17.8652 671.95 17.6656 672.699C17.466 673.447 16.9869 674.056 16.3481 674.385C15.8091 674.665 15.1404 674.635 14.5614 674.296C13.9726 673.956 13.6232 673.387 13.5933 672.729C13.5334 671.411 15.1204 670.872 15.1803 670.842L14.7211 669.415C14.6114 669.455 11.9763 670.323 12.0961 672.798C12.156 673.956 12.7948 674.994 13.8129 675.583C14.8309 676.172 16.0387 676.222 17.0368 675.713C18.0549 675.194 18.8134 674.236 19.1228 673.078C19.4023 672.04 19.4522 670.363 18.1048 668.297C16.2882 665.492 13.3537 664.634 11.597 664.125C11.3176 664.045 11.0581 663.965 10.8485 663.895L10.8385 663.905Z" fill="#C3A064"></path><path d="M25.6144 692.376L23.5783 694.252C23.4884 694.342 21.2427 696.428 20.1747 699.762C19.0668 703.185 19.7754 705.371 19.8054 705.461L19.8852 705.691L20.0749 705.83C20.1348 705.87 21.5122 706.868 23.2189 706.898C24.9357 706.878 26.363 705.9 26.4229 705.85L27.1016 705.341L26.5127 704.733C26.5127 704.733 24.756 702.836 24.5365 699.872C24.2969 696.688 24.796 695.051 24.796 695.031L25.6144 692.376ZM21.1628 704.752C21.043 704.174 20.8434 702.547 21.592 700.221C21.9613 699.093 22.4803 698.115 22.9894 697.336C22.9594 698.075 22.9694 698.953 23.0393 699.981C23.2189 702.347 24.1871 704.104 24.8359 705.032C24.4167 705.222 23.8478 705.421 23.2289 705.401C22.3306 705.381 21.5221 704.982 21.1528 704.752H21.1628Z" fill="#C3A064"></path><path d="M30.6539 690.494C30.4842 690.494 30.3146 690.504 30.1349 690.534C28.7974 690.724 27.7893 691.822 27.46 693.478C26.881 696.333 28.2784 700.615 32.72 703.27C39.2677 707.183 44.5976 705.226 48.5102 703.09C50.227 702.152 51.794 700.645 53.4609 699.058C55.7665 696.852 58.152 694.566 61.2063 693.459C64.2905 692.341 67.3148 692.391 69.1114 693.588C69.9797 694.167 70.4588 694.966 70.5087 695.904C70.5487 696.643 70.2093 697.371 69.6104 697.84C69.0515 698.279 68.3728 698.429 67.744 698.24C66.3366 697.83 65.9773 696.303 65.9573 696.233L64.5001 696.553C64.52 696.653 65.059 698.998 67.3247 699.667C68.4227 699.986 69.6004 699.747 70.5387 698.998C71.5168 698.23 72.0658 697.032 71.9959 695.814C71.9261 694.407 71.1875 693.169 69.9298 692.331C67.714 690.863 64.2605 690.754 60.6873 692.041C57.3236 693.259 54.7185 695.754 52.4129 697.96C50.8259 699.477 49.3287 700.914 47.7816 701.763C43.9987 703.829 39.3375 705.476 33.4786 701.972C29.8355 699.797 28.4181 696.193 28.9172 693.768C29.017 693.289 29.3464 692.141 30.3345 692.011C30.8935 691.931 31.3426 692.051 31.6421 692.361C31.9116 692.63 32.0313 693.029 31.9615 693.429C31.8616 694.087 30.9933 694.576 30.6739 694.716L31.2328 696.104C31.4325 696.024 33.1891 695.275 33.4387 693.668C33.5784 692.8 33.2989 691.921 32.7001 691.313C32.1711 690.774 31.4524 690.494 30.6439 690.494H30.6539Z" fill="#C3A064"></path><path d="M56.9118 702.546C56.9118 702.546 56.8319 702.546 56.802 702.546C54.7359 702.616 54.1071 704.802 54.0572 705.95L55.5544 706.01L54.8058 705.98L55.5544 706.01C55.5544 706.01 55.6642 704.073 56.8519 704.033C57.5306 704.013 57.9698 704.363 58.1994 704.672C58.6286 705.221 58.7783 706.02 58.5787 706.708C58.2193 707.896 57.3809 708.724 56.0035 709.223C53.7577 710.032 50.993 708.984 49.5956 706.778C49.2463 706.239 49.0067 705.66 48.827 705.161L47.4297 705.69C47.6393 706.259 47.9188 706.928 48.338 707.587C50.1346 710.411 53.5681 711.689 56.5225 710.631C58.3491 709.952 59.5269 708.774 60.0159 707.127C60.3453 705.97 60.1058 704.672 59.3871 703.744C58.7783 702.955 57.8999 702.526 56.9218 702.526L56.9118 702.546Z" fill="#C3A064"></path><path d="M39.1576 691.751C38.6785 691.751 38.2693 691.821 37.9299 691.911C36.7721 692.22 35.8139 692.979 35.2949 693.997C34.7859 694.995 34.8358 696.192 35.4247 697.211C36.0136 698.229 37.0516 698.867 38.2094 698.927C40.6947 699.047 41.5531 696.412 41.593 696.302L40.1657 695.843L40.8744 696.073L40.1657 695.843C40.1458 695.913 39.5968 697.49 38.2793 697.43C37.6205 697.4 37.0516 697.041 36.7122 696.462C36.3829 695.883 36.3429 695.214 36.6224 694.675C36.9518 694.037 37.5706 693.557 38.3092 693.358C39.0578 693.158 40.2855 693.138 41.8925 694.186C44.2281 695.693 44.9567 698.199 45.4358 699.846C45.5256 700.155 45.6055 700.425 45.6853 700.664L47.1026 700.185C47.0328 699.975 46.9529 699.716 46.8731 699.436C46.364 697.68 45.5056 694.745 42.7009 692.939C41.3136 692.04 40.1058 691.771 39.1476 691.771L39.1576 691.751Z" fill="#C3A064"></path><path d="M1217.06 687.052C1217.85 687.052 1218.59 687.182 1218.98 687.262L1219.4 687.352L1219.58 687.911C1219.79 688.569 1220.1 689.577 1222.26 691.264C1224.65 693.141 1228.79 693.78 1230.34 694.019C1230.55 694.049 1230.72 694.079 1230.85 694.099L1231.2 694.159L1231.37 694.478C1231.42 694.568 1232.62 696.784 1233.29 699.808C1233.96 702.802 1233.94 705.138 1233.94 705.238V705.976H1233.2C1233.1 705.976 1230.77 705.996 1227.77 705.328C1224.74 704.659 1222.53 703.461 1222.44 703.411L1222.12 703.242L1222.06 702.892C1222.04 702.763 1222.01 702.593 1221.98 702.383C1221.74 700.826 1221.1 696.694 1219.23 694.299C1217.54 692.133 1216.53 691.823 1215.87 691.624L1215.32 691.444L1215.23 691.015C1215.16 690.665 1214.99 689.757 1215.03 688.829C1215.05 688.42 1215.08 688.07 1215.12 687.791L1215.2 687.252L1215.74 687.172C1216.02 687.132 1216.37 687.092 1216.78 687.082C1216.87 687.082 1216.96 687.082 1217.05 687.082L1217.06 687.052ZM1218.25 688.649C1217.88 688.589 1217.36 688.539 1216.85 688.549C1216.75 688.549 1216.64 688.549 1216.55 688.569C1216.55 688.669 1216.54 688.769 1216.53 688.869C1216.51 689.378 1216.57 689.897 1216.63 690.266C1217.44 690.536 1218.68 691.125 1220.42 693.35C1222.54 696.055 1223.2 700.317 1223.48 702.134C1223.48 702.174 1223.49 702.214 1223.5 702.244C1224.2 702.583 1225.94 703.371 1228.12 703.851C1229.96 704.26 1231.55 704.399 1232.44 704.439C1232.39 703.541 1232.25 701.954 1231.85 700.118C1231.37 697.952 1230.58 696.195 1230.24 695.496C1230.2 695.496 1230.17 695.486 1230.13 695.476C1228.32 695.197 1224.06 694.538 1221.35 692.422C1219.13 690.675 1218.54 689.438 1218.27 688.639L1218.25 688.649Z" fill="#C3A064"></path><path d="M1229.3 697.545C1229.78 698.084 1231.03 701.628 1230.96 702.965C1229.62 703.045 1226.08 701.797 1225.54 701.308C1225 700.829 1223.39 695.389 1223.39 695.389C1223.39 695.389 1228.82 696.986 1229.31 697.535L1229.3 697.545Z" fill="#9825DE"></path><path d="M1233.33 683.922L1233.83 684.601C1233.87 684.66 1234.9 686.078 1234.87 687.804C1234.84 689.511 1233.85 690.899 1233.81 690.949L1233.67 691.138L1233.44 691.218C1233.35 691.248 1231.17 691.957 1227.74 690.849C1224.4 689.781 1222.32 687.535 1222.23 687.445L1220.31 685.369L1223 686.217C1223 686.217 1224.65 686.717 1227.84 686.477C1230.8 686.257 1232.68 684.521 1232.7 684.501L1233.32 683.922H1233.33ZM1232.74 689.851C1232.96 689.481 1233.37 688.673 1233.39 687.775C1233.4 687.166 1233.21 686.587 1233.02 686.168C1232.09 686.816 1230.33 687.795 1227.97 687.964C1226.94 688.044 1226.06 688.044 1225.32 688.014C1226.1 688.523 1227.08 689.052 1228.21 689.411C1230.52 690.16 1232.15 689.96 1232.74 689.841V689.851Z" fill="#C3A064"></path><path d="M1223.99 639.01C1225.15 639.01 1226.26 639.549 1226.98 640.477C1227.73 641.425 1227.97 642.593 1227.64 643.691C1226.97 645.957 1224.63 646.496 1224.53 646.516L1224.21 645.058L1224.37 645.787L1224.21 645.058C1224.27 645.038 1225.8 644.679 1226.22 643.272C1226.41 642.643 1226.26 641.964 1225.82 641.405C1225.35 640.806 1224.63 640.467 1223.88 640.507C1222.94 640.557 1222.14 641.036 1221.56 641.904C1220.38 643.701 1220.33 646.735 1221.44 649.809C1222.54 652.874 1224.83 655.249 1227.03 657.555C1228.62 659.222 1230.13 660.789 1231.07 662.505C1233.2 666.418 1235.16 671.748 1231.25 678.296C1228.59 682.737 1224.31 684.135 1221.46 683.556C1219.8 683.216 1218.7 682.218 1218.51 680.881C1218.37 679.853 1218.64 678.934 1219.29 678.296C1219.9 677.697 1220.78 677.427 1221.63 677.557C1223.24 677.807 1223.99 679.563 1224.07 679.763L1222.68 680.322C1222.55 680.002 1222.06 679.134 1221.41 679.034C1221.01 678.974 1220.61 679.094 1220.34 679.354C1220.04 679.653 1219.92 680.102 1219.99 680.661C1220.13 681.649 1221.27 681.979 1221.74 682.078C1224.18 682.578 1227.77 681.16 1229.95 677.517C1233.45 671.658 1231.81 666.997 1229.74 663.214C1228.9 661.677 1227.46 660.17 1225.94 658.583C1223.73 656.277 1221.23 653.672 1220.02 650.308C1218.73 646.735 1218.83 643.282 1220.31 641.066C1221.15 639.808 1222.38 639.07 1223.79 639C1223.85 639 1223.92 639 1223.98 639L1223.99 639.01Z" fill="#C3A064"></path><path d="M1234.07 650.856C1234.42 650.856 1234.78 650.906 1235.12 651.005C1236.77 651.504 1237.95 652.672 1238.63 654.499C1239.69 657.453 1238.41 660.897 1235.59 662.693C1234.93 663.112 1234.27 663.392 1233.7 663.602L1233.17 662.204C1233.66 662.015 1234.24 661.785 1234.78 661.436C1236.98 660.028 1238.03 657.274 1237.22 655.018C1236.71 653.65 1235.89 652.802 1234.7 652.453C1234.02 652.253 1233.21 652.403 1232.67 652.832C1232.37 653.071 1232.01 653.491 1232.03 654.179C1232.07 655.387 1233.99 655.477 1234.01 655.477L1233.95 656.974C1232.8 656.924 1230.62 656.285 1230.55 654.229C1230.52 653.201 1230.95 652.283 1231.75 651.644C1232.4 651.135 1233.24 650.866 1234.08 650.866L1234.07 650.856Z" fill="#C3A064"></path><path d="M1228.16 663.905L1228.64 665.323C1228.41 665.402 1228.13 665.482 1227.82 665.572C1226.17 666.051 1223.67 666.78 1222.15 669.115C1221.11 670.722 1221.13 671.95 1221.33 672.699C1221.53 673.447 1222.01 674.056 1222.65 674.385C1223.19 674.665 1223.86 674.635 1224.44 674.296C1225.03 673.956 1225.38 673.387 1225.41 672.729C1225.47 671.411 1223.88 670.872 1223.82 670.842L1224.28 669.415C1224.39 669.455 1227.02 670.323 1226.9 672.798C1226.84 673.956 1226.21 674.994 1225.19 675.583C1224.17 676.172 1222.96 676.222 1221.96 675.713C1220.95 675.194 1220.19 674.236 1219.88 673.078C1219.6 672.04 1219.55 670.363 1220.9 668.297C1222.71 665.492 1225.65 664.634 1227.4 664.125C1227.68 664.045 1227.94 663.965 1228.15 663.895L1228.16 663.905Z" fill="#C3A064"></path><path d="M1213.39 692.376L1215.42 694.252C1215.51 694.342 1217.76 696.428 1218.83 699.762C1219.93 703.185 1219.22 705.371 1219.19 705.461L1219.11 705.691L1218.93 705.83C1218.87 705.87 1217.49 706.868 1215.78 706.898C1214.06 706.878 1212.64 705.9 1212.58 705.85L1211.9 705.341L1212.49 704.733C1212.49 704.733 1214.24 702.836 1214.46 699.872C1214.7 696.688 1214.2 695.051 1214.2 695.031L1213.39 692.376ZM1217.84 704.752C1217.96 704.174 1218.16 702.547 1217.41 700.221C1217.04 699.093 1216.52 698.115 1216.01 697.336C1216.04 698.075 1216.03 698.953 1215.96 699.981C1215.78 702.347 1214.81 704.104 1214.16 705.032C1214.58 705.222 1215.15 705.421 1215.77 705.401C1216.67 705.381 1217.48 704.982 1217.85 704.752H1217.84Z" fill="#C3A064"></path><path d="M1208.35 690.494C1208.52 690.494 1208.69 690.504 1208.87 690.534C1210.2 690.724 1211.21 691.822 1211.54 693.478C1212.12 696.333 1210.72 700.615 1206.28 703.27C1199.73 707.183 1194.4 705.226 1190.49 703.09C1188.77 702.152 1187.21 700.645 1185.54 699.058C1183.23 696.852 1180.85 694.566 1177.79 693.459C1174.71 692.341 1171.69 692.391 1169.89 693.588C1169.02 694.167 1168.54 694.966 1168.49 695.904C1168.45 696.643 1168.79 697.371 1169.39 697.84C1169.95 698.279 1170.63 698.429 1171.26 698.24C1172.66 697.83 1173.02 696.303 1173.04 696.233L1174.5 696.553C1174.48 696.653 1173.94 698.998 1171.68 699.667C1170.58 699.986 1169.4 699.747 1168.46 698.998C1167.48 698.23 1166.93 697.032 1167 695.814C1167.07 694.407 1167.81 693.169 1169.07 692.331C1171.29 690.863 1174.74 690.754 1178.31 692.041C1181.68 693.259 1184.28 695.754 1186.59 697.96C1188.17 699.477 1189.67 700.914 1191.22 701.763C1195 703.829 1199.66 705.476 1205.52 701.972C1209.16 699.797 1210.58 696.193 1210.08 693.768C1209.98 693.289 1209.65 692.141 1208.67 692.011C1208.11 691.931 1207.66 692.051 1207.36 692.361C1207.09 692.63 1206.97 693.029 1207.04 693.429C1207.14 694.087 1208.01 694.576 1208.33 694.716L1207.77 696.104C1207.57 696.024 1205.81 695.275 1205.56 693.668C1205.42 692.8 1205.7 691.921 1206.3 691.313C1206.83 690.774 1207.55 690.494 1208.36 690.494H1208.35Z" fill="#C3A064"></path><path d="M1182.09 702.546C1182.09 702.546 1182.17 702.546 1182.2 702.546C1184.26 702.616 1184.89 704.802 1184.94 705.95L1183.45 706.01L1184.19 705.98L1183.45 706.01C1183.45 706.01 1183.34 704.073 1182.15 704.033C1181.47 704.013 1181.03 704.363 1180.8 704.672C1180.37 705.221 1180.22 706.02 1180.42 706.708C1180.78 707.896 1181.62 708.724 1183 709.223C1185.24 710.032 1188.01 708.984 1189.4 706.778C1189.75 706.239 1189.99 705.66 1190.17 705.161L1191.57 705.69C1191.36 706.259 1191.08 706.928 1190.66 707.587C1188.87 710.411 1185.43 711.689 1182.48 710.631C1180.65 709.952 1179.47 708.774 1178.98 707.127C1178.65 705.97 1178.89 704.672 1179.61 703.744C1180.22 702.955 1181.1 702.526 1182.08 702.526L1182.09 702.546Z" fill="#C3A064"></path><path d="M1199.84 691.751C1200.32 691.751 1200.73 691.821 1201.07 691.911C1202.23 692.22 1203.19 692.979 1203.71 693.997C1204.21 694.995 1204.16 696.192 1203.58 697.211C1202.99 698.229 1201.95 698.867 1200.79 698.927C1198.31 699.047 1197.45 696.412 1197.41 696.302L1198.83 695.843L1198.13 696.073L1198.83 695.843C1198.85 695.913 1199.4 697.49 1200.72 697.43C1201.38 697.4 1201.95 697.041 1202.29 696.462C1202.62 695.883 1202.66 695.214 1202.38 694.675C1202.05 694.037 1201.43 693.557 1200.69 693.358C1199.94 693.158 1198.71 693.138 1197.11 694.186C1194.77 695.693 1194.04 698.199 1193.56 699.846C1193.47 700.155 1193.39 700.425 1193.31 700.664L1191.9 700.185C1191.97 699.975 1192.05 699.716 1192.13 699.436C1192.64 697.68 1193.49 694.745 1196.3 692.939C1197.69 692.04 1198.89 691.771 1199.85 691.771L1199.84 691.751Z" fill="#C3A064"></path><path d="M688.551 10.5104C690.235 10.5104 691.772 11.2603 692.78 12.6003C694.009 14.2353 694.206 16.4603 693.321 18.415C691.636 22.0784 687.383 23.8117 679.503 24.033C675.311 24.1436 671.107 23.5413 666.632 22.8897C660.534 22.0046 654.24 21.0949 647.405 21.9677C637.571 23.2217 635.567 25.5943 635.247 26.8851C634.989 27.9546 635.186 28.9872 635.776 29.6019C636.243 30.0813 636.919 30.2534 637.718 30.0936C639.538 29.7248 639.624 27.4136 639.624 27.3153L641.468 27.3522C641.443 28.6922 640.693 31.3598 638.087 31.9007C636.649 32.1957 635.358 31.8269 634.448 30.8804C633.416 29.7986 633.047 28.1513 633.452 26.4548C634.227 23.2831 638.714 21.2178 647.159 20.136C654.228 19.2386 660.657 20.1729 666.878 21.0703C671.267 21.7096 675.409 22.2997 679.429 22.189C686.51 21.98 690.272 20.5786 691.624 17.6405C692.239 16.3128 692.104 14.8008 691.28 13.7067C690.518 12.6863 689.325 12.2069 687.961 12.4036C685.121 12.8093 685.367 15.7965 685.379 15.9194L683.547 16.0916C683.388 14.4197 684.064 11.1005 687.703 10.5842C687.985 10.5473 688.256 10.5227 688.539 10.5227L688.551 10.5104Z" fill="#C3A064"></path><path d="M674.156 15.17C676.541 15.17 678.373 15.674 678.508 15.7109L678.004 17.4811C678.004 17.4811 673.394 16.2272 669.669 17.8499C667.272 18.8825 665.833 20.6897 664.309 22.5828C663.387 23.7384 662.428 24.9308 661.223 26.0372C657.855 29.0982 654.044 30.5611 651.598 30.9176C648.561 31.3602 646.816 29.7621 646.435 27.9795C646.017 26.0003 647.283 24.0457 649.262 23.6277C651.008 23.2466 652.753 24.1932 653.43 25.8651L651.721 26.5535C651.389 25.7299 650.516 25.2504 649.656 25.4348C648.672 25.6438 648.033 26.615 648.242 27.5984C648.488 28.7417 649.692 29.3318 651.34 29.0859C653.516 28.7663 656.933 27.4387 659.982 24.6604C661.088 23.6523 661.998 22.5213 662.871 21.4272C664.469 19.4357 666.116 17.3705 668.931 16.1534C670.677 15.3912 672.546 15.17 674.156 15.17V15.17Z" fill="#C3A064"></path><path d="M551.319 10.5071C551.589 10.5071 551.872 10.5317 552.155 10.5685C555.806 11.0849 556.47 14.4041 556.322 16.0759L554.491 15.9038C554.515 15.5842 554.675 12.7813 551.909 12.388C550.569 12.2036 549.364 12.6707 548.59 13.691C547.766 14.7851 547.643 16.2972 548.246 17.6249C549.598 20.563 553.36 21.9644 560.44 22.1734C564.448 22.284 568.603 21.694 572.992 21.0547C579.212 20.1573 585.629 19.223 592.71 20.1204C601.168 21.2022 605.655 23.2675 606.417 26.4392C606.835 28.1356 606.466 29.7952 605.422 30.8647C604.512 31.8113 603.209 32.1801 601.783 31.8851C599.177 31.3565 598.427 28.6765 598.402 27.3366L600.246 27.2997C600.246 27.398 600.344 29.7092 602.152 30.078C602.963 30.2501 603.639 30.078 604.094 29.5862C604.684 28.9716 604.881 27.9389 604.622 26.8694C604.303 25.5663 602.311 23.1937 592.464 21.9521C585.642 21.0916 579.335 22.0013 573.238 22.8741C568.763 23.5257 564.534 24.128 560.367 24.0174C552.487 23.7961 548.233 22.0627 546.549 18.3994C545.652 16.457 545.861 14.232 547.09 12.5847C548.086 11.2447 549.622 10.4948 551.307 10.4948L551.319 10.5071Z" fill="#C3A064"></path><path d="M565.718 15.1711C567.329 15.1711 569.185 15.4047 570.943 16.1546C573.758 17.3716 575.405 19.4369 577.003 21.4284C577.876 22.5225 578.786 23.6535 579.892 24.6616C582.953 27.4398 586.359 28.7675 588.534 29.0871C590.169 29.3207 591.386 28.7429 591.632 27.5873C591.731 27.1079 591.632 26.6284 591.374 26.2105C591.104 25.8048 590.698 25.5221 590.219 25.4114C589.358 25.2393 588.473 25.6942 588.153 26.5301L586.445 25.8417C587.108 24.1821 588.854 23.2478 590.612 23.6043C591.571 23.801 592.395 24.3665 592.923 25.1902C593.464 26.0138 593.648 26.9973 593.439 27.9561C593.058 29.7387 591.313 31.3368 588.276 30.8942C585.83 30.5377 582.019 29.0748 578.651 26.0138C577.434 24.9074 576.487 23.7149 575.565 22.5594C574.041 20.6539 572.602 18.8591 570.205 17.8265C566.468 16.2038 561.92 17.4454 561.87 17.4577L561.366 15.6874C561.489 15.6506 563.333 15.1465 565.718 15.1465V15.1711Z" fill="#C3A064"></path><path d="M619.931 -0.00104759L620.583 0.638189C620.669 0.724241 622.71 2.74033 624.738 5.93658C626.791 9.14512 627.676 12.1201 627.713 12.2553L627.836 12.6856L627.578 13.0421C627.43 13.2634 627.172 13.5707 626.865 13.9518C625.5 15.6114 622.98 18.7093 622.562 22.1022C622.181 25.2739 622.783 26.368 623.189 27.0933L623.595 27.8678L623.3 28.3103C622.992 28.7652 622.378 29.6503 621.579 30.3879C621.21 30.7321 620.878 31.0025 620.595 31.2115L620.054 31.6172L619.513 31.2115C619.231 31.0025 618.899 30.7321 618.53 30.3879C617.719 29.638 617.104 28.7652 616.797 28.3103L616.502 27.8678L616.809 27.2777C617.178 26.577 617.719 25.5197 617.301 22.1022C616.883 18.7093 614.363 15.6114 612.998 13.9518C612.691 13.5707 612.432 13.2634 612.285 13.0421L612.027 12.6856L612.15 12.2553C612.187 12.1324 613.072 9.15742 615.125 5.93658C617.153 2.74033 619.194 0.724241 619.28 0.638189L619.931 -0.00104759ZM625.795 12.3291C625.488 11.4194 624.64 9.21887 623.177 6.92003C621.935 4.9654 620.669 3.45335 619.931 2.642C619.194 3.46564 617.928 4.9654 616.686 6.92003C615.223 9.23116 614.375 11.4317 614.068 12.3291C614.166 12.4643 614.289 12.6118 614.424 12.7716C615.899 14.5787 618.653 17.9471 619.132 21.8686C619.55 25.323 619.083 26.8106 618.641 27.7325C618.911 28.1136 619.317 28.6054 619.772 29.0356C619.87 29.1217 619.956 29.2077 620.042 29.2815C620.128 29.2077 620.226 29.1217 620.325 29.0356C620.78 28.6177 621.173 28.1259 621.443 27.7448C620.952 26.8351 620.3 25.3108 620.718 21.8686C621.198 17.9348 623.939 14.5787 625.426 12.7716C625.562 12.6118 625.685 12.4643 625.783 12.3291H625.795Z" fill="#C3A064"></path><path d="M623.226 11.3834C623.177 10.486 621.173 6.31856 619.944 5.22446C618.714 6.31856 616.711 10.486 616.661 11.3834C616.612 12.2808 619.944 17.6406 619.944 17.6406C619.944 17.6406 623.275 12.2808 623.226 11.3834Z" fill="#45DAFF"></path><path d="M632.602 13.1508L632.898 13.2C632.984 13.2123 635.049 13.5442 636.573 15.0071C638.098 16.4823 638.442 18.609 638.454 18.7073L638.602 19.74L637.557 19.7646C637.557 19.7646 634.373 19.8875 631.607 22.2847C628.632 24.854 627.624 26.7103 627.624 26.7225L626.026 29.7344L625.89 26.3292C625.89 26.1693 625.755 22.3953 627.722 18.5598C629.738 14.6137 632.258 13.3352 632.357 13.2737L632.615 13.1385L632.602 13.1508ZM636.352 18.0558C636.155 17.5272 635.823 16.8633 635.282 16.3347C634.483 15.5725 633.426 15.2161 632.91 15.0931C632.307 15.4988 630.709 16.7404 629.345 19.408C628.681 20.7111 628.275 22.0265 628.042 23.1452C628.656 22.4814 629.431 21.7192 630.39 20.8832C632.602 18.9778 634.987 18.3016 636.352 18.0558V18.0558Z" fill="#C3A064"></path><path d="M607.262 13.1551L607.52 13.2904C607.631 13.3395 610.139 14.6303 612.155 18.5764C614.122 22.4119 613.999 26.186 613.987 26.3458L613.851 29.8125L612.253 26.7269C612.253 26.7269 611.245 24.846 608.27 22.289C605.492 19.8918 602.345 19.7812 602.308 19.7689L601.275 19.732L601.423 18.7116C601.435 18.6256 601.767 16.4866 603.304 15.0114C604.816 13.5485 606.893 13.2166 606.979 13.2043L607.274 13.1551H607.262ZM611.823 23.1372C611.589 22.0185 611.196 20.7032 610.52 19.4001C609.155 16.7325 607.557 15.4908 606.943 15.0852C606.426 15.2204 605.369 15.5646 604.57 16.3268C604.029 16.8431 603.697 17.5192 603.5 18.0478C604.877 18.2937 607.25 18.9698 609.463 20.8753C610.421 21.6989 611.196 22.4611 611.811 23.1372H611.823Z" fill="#C3A064"></path><path d="M551.316 700.49C549.632 700.49 548.096 699.74 547.087 698.4C545.858 696.765 545.661 694.54 546.547 692.585C548.231 688.922 552.484 687.188 560.364 686.967C564.556 686.856 568.761 687.459 573.235 688.11C579.333 688.995 585.627 689.905 592.462 689.032C602.297 687.778 604.3 685.406 604.62 684.115C604.878 683.045 604.681 682.013 604.091 681.398C603.624 680.919 602.948 680.747 602.149 680.906C600.33 681.275 600.244 683.586 600.244 683.685L598.4 683.648C598.424 682.308 599.174 679.64 601.78 679.099C603.218 678.804 604.509 679.173 605.419 680.12C606.452 681.201 606.82 682.849 606.415 684.545C605.64 687.717 601.153 689.782 592.708 690.864C585.639 691.761 579.21 690.827 572.989 689.93C568.601 689.29 564.458 688.7 560.438 688.811C553.357 689.02 549.595 690.421 548.243 693.36C547.628 694.687 547.764 696.199 548.587 697.293C549.349 698.314 550.542 698.793 551.906 698.596C554.746 698.191 554.5 695.203 554.488 695.081L556.32 694.908C556.48 696.58 555.803 699.9 552.165 700.416C551.882 700.453 551.611 700.477 551.329 700.477L551.316 700.49Z" fill="#C3A064"></path><path d="M565.711 695.83C563.326 695.83 561.495 695.326 561.359 695.289L561.863 693.519C561.863 693.519 566.473 694.773 570.198 693.15C572.595 692.117 574.034 690.31 575.558 688.417C576.48 687.262 577.439 686.069 578.644 684.963C582.012 681.902 585.823 680.439 588.269 680.082C591.306 679.64 593.051 681.238 593.432 683.02C593.85 685 592.584 686.954 590.605 687.372C588.859 687.753 587.114 686.807 586.438 685.135L588.146 684.446C588.478 685.27 589.351 685.75 590.212 685.565C591.195 685.356 591.834 684.385 591.625 683.402C591.38 682.258 590.175 681.668 588.527 681.914C586.352 682.234 582.934 683.561 579.885 686.34C578.779 687.348 577.869 688.479 576.996 689.573C575.398 691.564 573.751 693.63 570.936 694.847C569.19 695.609 567.322 695.83 565.711 695.83V695.83Z" fill="#C3A064"></path><path d="M688.548 700.493C688.278 700.493 687.995 700.468 687.712 700.431C684.061 699.915 683.397 696.596 683.545 694.924L685.377 695.096C685.352 695.416 685.192 698.219 687.958 698.612C689.298 698.796 690.503 698.329 691.277 697.309C692.101 696.215 692.224 694.703 691.622 693.375C690.269 690.437 686.508 689.036 679.427 688.827C675.419 688.716 671.264 689.306 666.875 689.945C660.655 690.843 654.238 691.777 647.157 690.88C638.699 689.798 634.212 687.733 633.45 684.561C633.032 682.864 633.401 681.205 634.446 680.135C635.355 679.189 636.658 678.82 638.085 679.115C640.691 679.644 641.441 682.323 641.465 683.663L639.621 683.7C639.621 683.602 639.523 681.291 637.716 680.922C636.904 680.75 636.228 680.922 635.773 681.414C635.183 682.028 634.987 683.061 635.245 684.131C635.564 685.434 637.556 687.806 647.403 689.048C654.226 689.908 660.532 688.999 666.629 688.126C671.104 687.474 675.333 686.872 679.5 686.983C687.38 687.204 691.634 688.937 693.318 692.601C694.216 694.543 694.007 696.768 692.777 698.415C691.781 699.755 690.245 700.505 688.561 700.505L688.548 700.493Z" fill="#C3A064"></path><path d="M674.149 695.829C672.539 695.829 670.682 695.595 668.924 694.845C666.109 693.628 664.462 691.563 662.864 689.572C661.991 688.477 661.081 687.346 659.975 686.338C656.914 683.56 653.509 682.233 651.333 681.913C649.698 681.679 648.481 682.257 648.235 683.413C648.136 683.892 648.235 684.372 648.493 684.79C648.763 685.195 649.169 685.478 649.649 685.589C650.509 685.761 651.394 685.306 651.714 684.47L653.423 685.158C652.759 686.818 651.013 687.752 649.255 687.396C648.296 687.199 647.473 686.633 646.944 685.81C646.403 684.986 646.219 684.003 646.428 683.044C646.809 681.261 648.554 679.663 651.591 680.106C654.037 680.462 657.848 681.925 661.217 684.986C662.434 686.093 663.38 687.285 664.302 688.441C665.826 690.346 667.265 692.141 669.662 693.174C673.399 694.796 677.948 693.555 677.997 693.542L678.501 695.313C678.378 695.349 676.534 695.853 674.149 695.853V695.829Z" fill="#C3A064"></path><path d="M619.936 711.001L619.284 710.362C619.198 710.276 617.158 708.26 615.129 705.063C613.076 701.855 612.191 698.88 612.154 698.745L612.031 698.314L612.289 697.958C612.437 697.737 612.695 697.429 613.002 697.048C614.367 695.389 616.887 692.291 617.305 688.898C617.686 685.726 617.084 684.632 616.678 683.907L616.272 683.132L616.567 682.69C616.875 682.235 617.489 681.35 618.289 680.612C618.657 680.268 618.989 679.997 619.272 679.788L619.813 679.383L620.354 679.788C620.637 679.997 620.968 680.268 621.337 680.612C622.149 681.362 622.763 682.235 623.071 682.69L623.366 683.132L623.058 683.722C622.69 684.423 622.149 685.48 622.567 688.898C622.985 692.291 625.505 695.389 626.869 697.048C627.177 697.429 627.435 697.737 627.582 697.958L627.84 698.314L627.717 698.745C627.681 698.868 626.795 701.843 624.742 705.063C622.714 708.26 620.673 710.276 620.587 710.362L619.936 711.001ZM614.072 698.671C614.379 699.581 615.227 701.781 616.69 704.08C617.932 706.035 619.198 707.547 619.936 708.358C620.673 707.534 621.94 706.035 623.181 704.08C624.644 701.769 625.492 699.568 625.8 698.671C625.701 698.536 625.578 698.388 625.443 698.228C623.968 696.421 621.214 693.053 620.735 689.131C620.317 685.677 620.784 684.189 621.227 683.267C620.956 682.886 620.55 682.395 620.096 681.964C619.997 681.878 619.911 681.792 619.825 681.719C619.739 681.792 619.641 681.878 619.542 681.964C619.088 682.382 618.694 682.874 618.424 683.255C618.915 684.165 619.567 685.689 619.149 689.131C618.67 693.065 615.928 696.421 614.441 698.228C614.305 698.388 614.183 698.536 614.084 698.671H614.072Z" fill="#C3A064"></path><path d="M616.641 699.617C616.69 700.514 618.694 704.681 619.923 705.776C621.153 704.681 623.157 700.514 623.206 699.617C623.255 698.719 619.923 693.359 619.923 693.359C619.923 693.359 616.592 698.719 616.641 699.617Z" fill="#9825DE"></path><path d="M607.265 697.849L606.97 697.8C606.884 697.788 604.818 697.456 603.294 695.993C601.77 694.518 601.425 692.391 601.413 692.293L601.266 691.26L602.311 691.235C602.311 691.235 605.495 691.113 608.26 688.715C611.235 686.146 612.244 684.29 612.244 684.277L613.842 681.266L613.977 684.671C613.977 684.831 614.112 688.605 612.145 692.44C610.129 696.386 607.609 697.665 607.511 697.726L607.252 697.862L607.265 697.849ZM603.515 692.944C603.712 693.473 604.044 694.137 604.585 694.665C605.384 695.427 606.441 695.784 606.957 695.907C607.56 695.501 609.158 694.26 610.522 691.592C611.186 690.289 611.592 688.973 611.826 687.855C611.211 688.519 610.436 689.281 609.478 690.117C607.265 692.022 604.88 692.698 603.515 692.944V692.944Z" fill="#C3A064"></path><path d="M632.605 697.845L632.347 697.71C632.236 697.66 629.728 696.37 627.712 692.424C625.745 688.588 625.868 684.814 625.881 684.654L626.016 681.188L627.614 684.273C627.614 684.273 628.622 686.154 631.597 688.711C634.375 691.108 637.522 691.219 637.559 691.231L638.592 691.268L638.444 692.288C638.432 692.374 638.1 694.513 636.563 695.989C635.051 697.451 632.974 697.783 632.888 697.796L632.593 697.845H632.605ZM628.044 687.863C628.278 688.981 628.671 690.297 629.347 691.6C630.712 694.268 632.31 695.509 632.925 695.915C633.441 695.78 634.498 695.435 635.297 694.673C635.838 694.157 636.17 693.481 636.367 692.952C634.99 692.706 632.617 692.03 630.405 690.125C629.446 689.301 628.671 688.539 628.057 687.863H628.044Z" fill="#C3A064"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 521 309" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M188 19V16H40C17.9086 16 0 33.9086 0 56V269C0 291.091 17.9086 309 40 309H481C503.091 309 521 291.091 521 269V56C521 33.9086 503.091 16 481 16H334V19H481C501.435 19 518 35.5655 518 56V269C518 289.435 501.435 306 481 306H40C19.5655 306 3 289.435 3 269V56C3 35.5655 19.5655 19 40 19H188Z" fill="#C3A064"></path><path fill-rule="evenodd" clip-rule="evenodd" d="M188 19V16H40C17.9086 16 0 33.9086 0 56V269C0 291.091 17.9086 309 40 309H481C503.091 309 521 291.091 521 269V56C521 33.9086 503.091 16 481 16H334V19H481C501.435 19 518 35.5655 518 56V269C518 289.435 501.435 306 481 306H40C19.5655 306 3 289.435 3 269V56C3 35.5655 19.5655 19 40 19H188Z" fill="url(#framing-t2-paint0_linear_3642_6734)" fill-opacity="0.5"></path><path d="M329.551 10.5104C331.235 10.5104 332.772 11.2603 333.78 12.6003C335.009 14.2353 335.206 16.4603 334.321 18.415C332.636 22.0784 328.383 23.8117 320.503 24.033C316.311 24.1436 312.107 23.5413 307.632 22.8897C301.534 22.0046 295.24 21.0949 288.405 21.9677C278.571 23.2217 276.567 25.5943 276.247 26.8851C275.989 27.9546 276.186 28.9872 276.776 29.6019C277.243 30.0813 277.919 30.2534 278.718 30.0936C280.538 29.7248 280.624 27.4136 280.624 27.3153L282.468 27.3522C282.443 28.6922 281.693 31.3598 279.087 31.9007C277.649 32.1957 276.358 31.8269 275.448 30.8804C274.416 29.7986 274.047 28.1513 274.452 26.4548C275.227 23.2831 279.714 21.2178 288.159 20.136C295.228 19.2386 301.657 20.1729 307.878 21.0703C312.267 21.7096 316.409 22.2997 320.429 22.189C327.51 21.98 331.272 20.5786 332.624 17.6405C333.239 16.3128 333.104 14.8008 332.28 13.7067C331.518 12.6863 330.325 12.2069 328.961 12.4036C326.121 12.8093 326.367 15.7965 326.379 15.9194L324.547 16.0916C324.388 14.4197 325.064 11.1005 328.703 10.5842C328.985 10.5473 329.256 10.5227 329.539 10.5227L329.551 10.5104Z" fill="#C3A064"></path><path d="M315.156 15.17C317.541 15.17 319.373 15.674 319.508 15.7109L319.004 17.4811C319.004 17.4811 314.394 16.2272 310.669 17.8499C308.272 18.8825 306.833 20.6897 305.309 22.5828C304.387 23.7384 303.428 24.9308 302.223 26.0372C298.855 29.0982 295.044 30.5611 292.598 30.9176C289.561 31.3602 287.816 29.7621 287.435 27.9795C287.017 26.0003 288.283 24.0457 290.262 23.6277C292.008 23.2466 293.753 24.1932 294.43 25.8651L292.721 26.5535C292.389 25.7299 291.516 25.2504 290.656 25.4348C289.672 25.6438 289.033 26.615 289.242 27.5984C289.488 28.7417 290.692 29.3318 292.34 29.0859C294.516 28.7663 297.933 27.4387 300.982 24.6604C302.088 23.6523 302.998 22.5213 303.871 21.4272C305.469 19.4357 307.116 17.3705 309.931 16.1534C311.677 15.3912 313.546 15.17 315.156 15.17V15.17Z" fill="#C3A064"></path><path d="M192.319 10.5071C192.589 10.5071 192.872 10.5317 193.155 10.5685C196.806 11.0849 197.47 14.4041 197.322 16.0759L195.491 15.9038C195.515 15.5842 195.675 12.7813 192.909 12.388C191.569 12.2036 190.364 12.6707 189.59 13.691C188.766 14.7851 188.643 16.2972 189.246 17.6249C190.598 20.563 194.36 21.9644 201.44 22.1734C205.448 22.284 209.603 21.694 213.992 21.0547C220.212 20.1573 226.629 19.223 233.71 20.1204C242.168 21.2022 246.655 23.2675 247.417 26.4392C247.835 28.1356 247.466 29.7952 246.422 30.8647C245.512 31.8113 244.209 32.1801 242.783 31.8851C240.177 31.3565 239.427 28.6765 239.402 27.3366L241.246 27.2997C241.246 27.398 241.344 29.7092 243.152 30.078C243.963 30.2501 244.639 30.078 245.094 29.5862C245.684 28.9716 245.881 27.9389 245.622 26.8694C245.303 25.5663 243.311 23.1937 233.464 21.9521C226.642 21.0916 220.335 22.0013 214.238 22.8741C209.763 23.5257 205.534 24.128 201.367 24.0174C193.487 23.7961 189.233 22.0627 187.549 18.3994C186.652 16.457 186.861 14.232 188.09 12.5847C189.086 11.2447 190.622 10.4948 192.307 10.4948L192.319 10.5071Z" fill="#C3A064"></path><path d="M206.718 15.1711C208.329 15.1711 210.185 15.4047 211.943 16.1546C214.758 17.3716 216.405 19.4369 218.003 21.4284C218.876 22.5225 219.786 23.6535 220.892 24.6616C223.953 27.4398 227.359 28.7675 229.534 29.0871C231.169 29.3207 232.386 28.7429 232.632 27.5873C232.731 27.1079 232.632 26.6284 232.374 26.2105C232.104 25.8048 231.698 25.5221 231.219 25.4114C230.358 25.2393 229.473 25.6942 229.153 26.5301L227.445 25.8417C228.108 24.1821 229.854 23.2478 231.612 23.6043C232.571 23.801 233.395 24.3665 233.923 25.1902C234.464 26.0138 234.648 26.9973 234.439 27.9561C234.058 29.7387 232.313 31.3368 229.276 30.8942C226.83 30.5377 223.019 29.0748 219.651 26.0138C218.434 24.9074 217.487 23.7149 216.565 22.5594C215.041 20.6539 213.602 18.8591 211.205 17.8265C207.468 16.2038 202.92 17.4454 202.87 17.4577L202.366 15.6874C202.489 15.6506 204.333 15.1465 206.718 15.1465V15.1711Z" fill="#C3A064"></path><path d="M260.931 -0.00104759L261.583 0.638189C261.669 0.724241 263.71 2.74033 265.738 5.93658C267.791 9.14512 268.676 12.1201 268.713 12.2553L268.836 12.6856L268.578 13.0421C268.43 13.2634 268.172 13.5707 267.865 13.9518C266.5 15.6114 263.98 18.7093 263.562 22.1022C263.181 25.2739 263.783 26.368 264.189 27.0933L264.595 27.8678L264.3 28.3103C263.992 28.7652 263.378 29.6503 262.579 30.3879C262.21 30.7321 261.878 31.0025 261.595 31.2115L261.054 31.6172L260.513 31.2115C260.231 31.0025 259.899 30.7321 259.53 30.3879C258.719 29.638 258.104 28.7652 257.797 28.3103L257.502 27.8678L257.809 27.2777C258.178 26.577 258.719 25.5197 258.301 22.1022C257.883 18.7093 255.363 15.6114 253.998 13.9518C253.691 13.5707 253.432 13.2634 253.285 13.0421L253.027 12.6856L253.15 12.2553C253.187 12.1324 254.072 9.15742 256.125 5.93658C258.153 2.74033 260.194 0.724241 260.28 0.638189L260.931 -0.00104759ZM266.795 12.3291C266.488 11.4194 265.64 9.21887 264.177 6.92003C262.935 4.9654 261.669 3.45335 260.931 2.642C260.194 3.46564 258.928 4.9654 257.686 6.92003C256.223 9.23116 255.375 11.4317 255.068 12.3291C255.166 12.4643 255.289 12.6118 255.424 12.7716C256.899 14.5787 259.653 17.9471 260.132 21.8686C260.55 25.323 260.083 26.8106 259.641 27.7325C259.911 28.1136 260.317 28.6054 260.772 29.0356C260.87 29.1217 260.956 29.2077 261.042 29.2815C261.128 29.2077 261.226 29.1217 261.325 29.0356C261.78 28.6177 262.173 28.1259 262.443 27.7448C261.952 26.8351 261.3 25.3108 261.718 21.8686C262.198 17.9348 264.939 14.5787 266.426 12.7716C266.562 12.6118 266.685 12.4643 266.783 12.3291H266.795Z" fill="#C3A064"></path><path d="M264.226 11.3834C264.177 10.486 262.173 6.31856 260.944 5.22446C259.714 6.31856 257.711 10.486 257.661 11.3834C257.612 12.2808 260.944 17.6406 260.944 17.6406C260.944 17.6406 264.275 12.2808 264.226 11.3834Z" fill="#45DAFF"></path><path d="M273.602 13.1508L273.898 13.2C273.984 13.2123 276.049 13.5442 277.573 15.0071C279.098 16.4823 279.442 18.609 279.454 18.7073L279.602 19.74L278.557 19.7646C278.557 19.7646 275.373 19.8875 272.607 22.2847C269.632 24.854 268.624 26.7103 268.624 26.7225L267.026 29.7344L266.89 26.3292C266.89 26.1693 266.755 22.3953 268.722 18.5598C270.738 14.6137 273.258 13.3352 273.357 13.2737L273.615 13.1385L273.602 13.1508ZM277.352 18.0558C277.155 17.5272 276.823 16.8633 276.282 16.3347C275.483 15.5725 274.426 15.2161 273.91 15.0931C273.307 15.4988 271.709 16.7404 270.345 19.408C269.681 20.7111 269.275 22.0265 269.042 23.1452C269.656 22.4814 270.431 21.7192 271.39 20.8832C273.602 18.9778 275.987 18.3016 277.352 18.0558V18.0558Z" fill="#C3A064"></path><path d="M248.262 13.1551L248.52 13.2904C248.631 13.3395 251.139 14.6303 253.155 18.5764C255.122 22.4119 254.999 26.186 254.987 26.3458L254.851 29.8125L253.253 26.7269C253.253 26.7269 252.245 24.846 249.27 22.289C246.492 19.8918 243.345 19.7812 243.308 19.7689L242.275 19.732L242.423 18.7116C242.435 18.6256 242.767 16.4866 244.304 15.0114C245.816 13.5485 247.893 13.2166 247.979 13.2043L248.274 13.1551H248.262ZM252.823 23.1372C252.589 22.0185 252.196 20.7032 251.52 19.4001C250.155 16.7325 248.557 15.4908 247.943 15.0852C247.426 15.2204 246.369 15.5646 245.57 16.3268C245.029 16.8431 244.697 17.5192 244.5 18.0478C245.877 18.2937 248.25 18.9698 250.463 20.8753C251.421 21.6989 252.196 22.4611 252.811 23.1372H252.823Z" fill="#C3A064"></path><defs><linearGradient id="framing-t2-paint0_linear_3642_6734" x1="260.5" y1="16" x2="260.5" y2="309" gradientUnits="userSpaceOnUse"><stop stop-color="#E8D590"></stop><stop offset="0.5" stop-color="#9E844C"></stop><stop offset="1" stop-color="#E8D590"></stop></linearGradient></defs></svg>'},function(e,t){e.exports='<svg viewBox="0 0 21 39" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18.9986 19.3693C18.8713 16.9841 13.6831 5.90793 10.5 3C7.31705 5.90793 2.12871 16.9841 2.00139 19.3693C1.87407 21.7544 10.5 36 10.5 36C10.5 36 19.1259 21.7544 18.9986 19.3693Z" fill="url(#thumbnail-decor-diamond-paint0_linear_3675_808)"></path><path d="M18.9986 19.3693C18.8713 16.9841 13.6831 5.90793 10.5 3C7.31705 5.90793 2.12871 16.9841 2.00139 19.3693C1.87407 21.7544 10.5 36 10.5 36C10.5 36 19.1259 21.7544 18.9986 19.3693Z" stroke="#C3A064" stroke-width="3" stroke-miterlimit="10"></path><path d="M18.9986 19.3693C18.8713 16.9841 13.6831 5.90793 10.5 3C7.31705 5.90793 2.12871 16.9841 2.00139 19.3693C1.87407 21.7544 10.5 36 10.5 36C10.5 36 19.1259 21.7544 18.9986 19.3693Z" stroke="url(#thumbnail-decor-diamond-paint1_linear_3675_808)" stroke-opacity="0.5" stroke-width="3" stroke-miterlimit="10"></path><path d="M14.968 19.4353C14.9005 18.2014 12.1496 12.4712 10.4619 10.9668C8.77426 12.4712 6.02333 18.2014 5.95582 19.4353C5.88831 20.6693 10.4619 28.0391 10.4619 28.0391C10.4619 28.0391 15.0355 20.6693 14.968 19.4353Z" fill="#45DAFF"></path><defs><linearGradient id="thumbnail-decor-diamond-paint0_linear_3675_808" x1="10.2404" y1="32.805" x2="10.8443" y2="3.00697" gradientUnits="userSpaceOnUse"><stop stop-color="#E8D590"></stop><stop offset="0.427083" stop-color="#D9BF86"></stop><stop offset="0.489583" stop-color="#7A592A"></stop></linearGradient><linearGradient id="thumbnail-decor-diamond-paint1_linear_3675_808" x1="10.5" y1="36" x2="10.5" y2="3" gradientUnits="userSpaceOnUse"><stop stop-color="#E8D590"></stop><stop offset="0.5" stop-color="#9E844C"></stop><stop offset="1" stop-color="#E8D590"></stop></linearGradient></defs></svg>'},function(e,t,n){var map={"./icon-audio-off.svg":1285,"./icon-audio-on.svg":1286,"./icon-be.svg":1287,"./icon-caret.svg":1288,"./icon-client-audio-off.svg":1289,"./icon-close.svg":1290,"./icon-external-arrow.svg":1291,"./icon-faq.svg":1292,"./icon-motion-off.svg":1293,"./icon-motion-on.svg":1294,"./icon-rp.svg":1295,"./icon-token.svg":1296};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1284},function(e,t){e.exports='<svg viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M26.1443 7.76654L19.8708 10.693V13.8788L18.2839 12.2919V5.65337L26.135 2L26.1443 7.76654ZM19.8708 20.848L26.5689 27.5461L28.2524 25.8625L8.83984 6.44987L7.15625 8.13346L18.2839 19.2611V22.9696C18.2839 22.9696 16.9011 21.3107 13.7922 21.6835C10.8226 22.0376 9.00362 24.5447 9.00362 27.555C9.00362 30.5653 11.4351 33.0164 14.4326 33.0164C17.263 33.0164 19.5924 30.8821 19.8522 28.0489L19.8708 27.8439V20.848Z" fill="currentColor"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M26.1406 7.76654L19.8672 10.693V27.8439L19.8486 28.0489C19.5888 30.8821 17.2594 33.0164 14.4289 33.0164C11.4314 33.0164 9 30.5653 9 27.555C9 24.5447 10.8189 22.0376 13.7886 21.6835C16.8975 21.3107 18.2803 22.9696 18.2803 22.9696V5.65337L26.1313 2L26.1406 7.76654Z" fill="currentColor"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 19 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.30818 12L1.19182 9.60002L9.5 0L14.25 4.79999L8.30818 12ZM14.25 18L9.5 24L0 12L14.25 18ZM15.4418 8.39999L19 12L15.4418 15.6L10.6918 13.2L15.4418 8.39999Z" class="fill-current"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 15 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.07576 9.5L1.63211 3.45907L4.36788 0.540924L13.9242 9.5L4.36788 18.4591L1.63211 15.5409L8.07576 9.5Z" fill="#1C242A" class="fill-current"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.66667 14.5714H8V24.8571H13L18 30H21.3333V28.2857L9.66667 16.2857V14.5714ZM21.3333 17.3143V9.42857H18L15.8334 11.6571L10.3333 6L8 8.4L13.5 14.0571L13 14.5714L21.3333 23.1429V22.1143L25.6667 26.5714L28 24.1714L21.3333 17.3143Z" fill="currentColor"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 32 32" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.72416 16L1.65517 9.93101C-0.551723 7.44826 -0.551723 3.86206 1.65517 1.65517C3.86206 -0.551723 7.72412 -0.551723 9.93101 1.65517L16 7.72416L22.069 1.65517C24.2759 -0.551723 28.1379 -0.551723 30.3448 1.65517C32.5517 3.86206 32.5517 7.72412 30.3448 9.93101L24.2758 16L30.3448 22.069C32.5517 24.2759 32.5517 28.1379 30.3448 30.3448C28.1379 32.5517 24.2759 32.5517 22.069 30.3448L16 24.2758L9.93101 30.3448C7.72412 32.5517 3.86206 32.5517 1.65517 30.3448C-0.551723 28.1379 -0.551723 24.2759 1.65517 22.069L7.72416 16Z" class="fill-current"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 13 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M9.29289 2.64655H2.70711V0.646545H11.7071H12.7071V1.64655V10.6465H10.7071V4.06076L1.41421 13.3537L0 11.9394L9.29289 2.64655Z" fill="#C8AA6E" class="fill-current"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11 14.1257C12.3714 11.3486 14.7029 10.1829 16.4171 10.1829C17.6857 10.1829 18.6457 10.8686 18.6457 11.9657C18.6457 14.5371 12.8514 15.4629 12.8514 19.8857C12.8514 22.2514 14.9086 23.2457 16.8286 23.2457C17.5829 23.2457 18.5086 22.9714 19.0914 22.2857C18.3714 22.1829 17.9257 21.9771 17.9257 20.9143C17.9257 17.7257 24.7829 16.6286 24.7829 11.4171C24.7829 8.12571 21.9714 6 17.5143 6C15.0457 6 12.4743 6.65143 11 7.50857V14.1257ZM13.4 27.0857C13.4 28.7314 14.6343 29.9314 16.4514 29.9314C18.2686 29.9314 19.5029 28.7314 19.5029 27.0857C19.5029 25.44 18.2686 24.24 16.4514 24.24C14.6343 24.24 13.4 25.44 13.4 27.0857Z" fill="currentColor"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M23.3028 25.9864L26.5689 29.2524L28.2524 27.5689L8.83984 8.15625L7.15625 9.83984L10.5063 13.1899C9.55607 14.6425 9.00362 16.3788 9.00362 18.2441C9.00362 23.35 13.1427 27.4891 18.2486 27.4891C20.1139 27.4891 21.8502 26.9366 23.3028 25.9864ZM27.4935 18.2441C27.4935 19.8461 27.0861 21.3529 26.3692 22.6665L13.8262 10.1235C15.1398 9.40661 16.6466 8.99916 18.2486 8.99916C23.3544 8.99916 27.4935 13.1383 27.4935 18.2441Z" fill="currentColor"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 36 36" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M25.8967 27.4977C31.0026 27.4977 35.1417 23.3586 35.1417 18.2528C35.1417 13.1469 31.0026 9.00781 25.8967 9.00781C20.7909 9.00781 16.6518 13.1469 16.6518 18.2528C16.6518 23.3586 20.7909 27.4977 25.8967 27.4977ZM10.7676 26.5073C8.31525 24.6659 6.72886 21.7336 6.72886 18.4308C6.72886 15.128 8.31525 12.1957 10.7676 10.3543C10.0199 10.1365 9.22913 10.0197 8.41107 10.0197C3.76576 10.0197 0 13.7855 0 18.4308C0 23.0761 3.76576 26.8419 8.41107 26.8419C9.22913 26.8419 10.0199 26.7251 10.7676 26.5073ZM19.1754 26.5073C16.723 24.6659 15.1366 21.7336 15.1366 18.4308C15.1366 15.128 16.723 12.1957 19.1754 10.3543C18.4276 10.1365 17.6369 10.0197 16.8188 10.0197C12.1735 10.0197 8.40774 13.7855 8.40774 18.4308C8.40774 23.0761 12.1735 26.8419 16.8188 26.8419C17.6369 26.8419 18.4276 26.7251 19.1754 26.5073Z" fill="currentColor"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 3.10948L12 0L7.99999 3.10948V14.3582L12 17.1382L16 14.3582V3.10948ZM22.4 10.3409L24 9.17576L19.2 4.71644V15.9652L13.6 19.9826V24L24 17.0339L22.4 15.1617V10.3409ZM4.8 4.71644L0 9.17576L1.6 10.3409V15.1617L0 17.0339L10.4 24V19.9826L4.8 15.9652V4.71644Z" class="fill-current"></path></svg>'},function(e,t){e.exports='<svg viewBox="0 0 34 34" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.003 33.3967C26.1045 33.3967 33.4826 26.0185 33.4826 16.9171C33.4826 7.81566 26.1045 0.4375 17.003 0.4375C7.9016 0.4375 0.523438 7.81566 0.523438 16.9171C0.523438 26.0185 7.9016 33.3967 17.003 33.3967Z" fill="#F1B883"></path><g filter="url(#icon-token-filter0_i_3685_5368)"><path d="M16.9997 30.6869C24.602 30.6869 30.765 24.5239 30.765 16.9216C30.765 9.31919 24.602 3.15625 16.9997 3.15625C9.39731 3.15625 3.23438 9.31919 3.23438 16.9216C3.23438 24.5239 9.39731 30.6869 16.9997 30.6869Z" fill="#143589"></path></g><g filter="url(#icon-token-filter1_i_3685_5368)"><path d="M17.9185 18.6767C18.2176 16.2578 20.3235 13.2181 20.7789 12.5759C20.7789 12.5759 20.302 10.9746 19.1967 9.26365C18.0914 7.5539 16.9709 6.46875 16.9709 6.46875C16.9709 6.46875 15.8504 7.5539 14.7464 9.26491C13.641 10.9759 13.1641 12.5771 13.1641 12.5771C13.6196 13.2194 15.7268 16.2578 16.0246 18.6778C16.2857 20.7876 15.8302 21.0261 15.5993 21.4691C15.7571 21.705 16.0776 22.1479 16.4737 22.5087C16.6592 22.6766 16.8296 22.8179 16.9722 22.9189C17.1147 22.8179 17.2851 22.6766 17.4706 22.5087C17.8667 22.1479 18.1874 21.705 18.345 21.4691C18.1141 21.0261 17.6587 20.7876 17.9198 18.6778L17.9185 18.6767ZM16.9709 16.0723C16.9709 16.0723 15.1274 12.4497 15.1564 11.9626C15.1855 11.4756 16.2921 9.20308 16.9709 8.60625C17.6511 9.20434 18.7564 11.4756 18.7853 11.9626C18.8144 12.4497 16.9709 16.0723 16.9709 16.0723Z" fill="#F1B883"></path><path d="M16.1932 24.3813C15.9345 24.1946 15.4487 23.7339 14.9074 22.8747C14.3661 22.0154 13.7504 20.6918 13.2204 19.9814C11.5561 17.7543 9.50189 17.1524 8.29182 17.2723C7.08175 17.3921 6.02184 18.249 5.8616 19.6104C5.70134 20.9706 6.63003 22.37 8.24767 22.5189C8.24767 22.5189 7.55115 20.7095 9.18771 20.2476C10.9504 19.7505 13.3933 22.7182 13.8488 23.2999C14.1428 23.676 14.4267 24.0608 14.7459 24.4203C15.2797 25.0248 16.067 25.5535 16.9478 25.5636V24.645C16.7989 24.645 16.4519 24.568 16.1932 24.3813H16.192H16.1932Z" fill="#F1B883"></path><path d="M17.6986 24.3813C17.9572 24.1946 18.4431 23.7339 18.9844 22.8747C19.5243 22.0141 20.1415 20.6918 20.6713 19.9814C22.3358 17.7543 24.3899 17.1524 25.6001 17.2723C26.8101 17.3921 27.8712 18.249 28.0315 19.6104C28.1916 20.9706 27.263 22.37 25.6454 22.5189C25.6454 22.5189 26.3419 20.7095 24.7053 20.2476C22.9426 19.7505 20.4997 22.7182 20.0443 23.2999C19.7502 23.676 19.4664 24.0608 19.1471 24.4203C18.6133 25.0248 17.826 25.5535 16.9453 25.5636V24.645C17.0942 24.645 17.4411 24.568 17.6998 24.3813H17.6986Z" fill="#F1B883"></path><path d="M12.8099 17.6648C10.6043 15.2724 8.24219 15.8049 8.24219 15.8049C8.86046 14.6945 9.99104 13.3671 11.7121 13.7229C11.7121 13.7229 13.1342 14.5431 14.0465 16.716C14.8035 18.5179 14.796 20.0861 14.8035 20.5253C14.7505 20.3789 14.3493 19.2938 12.8099 17.6673V17.6648Z" fill="#F1B883"></path><path d="M21.2124 17.6648C23.4181 15.2724 25.7801 15.8049 25.7801 15.8049C25.1619 14.6945 24.0314 13.3671 22.3101 13.7229C22.3101 13.7229 20.8882 14.5431 19.9758 16.716C19.2187 18.5179 19.2263 20.0861 19.2188 20.5253C19.2719 20.3789 19.673 19.2938 21.2124 17.6673V17.6648Z" fill="#F1B883"></path></g><defs><filter id="icon-token-filter0_i_3685_5368" x="3.23438" y="3.15625" width="27.5312" height="31.5312" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"></feBlend><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="4"></feGaussianBlur><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"></feColorMatrix><feBlend mode="normal" in2="shape" result="effect1_innerShadow_3685_5368"></feBlend></filter><filter id="icon-token-filter1_i_3685_5368" x="5.84375" y="6.46875" width="22.2031" height="23.0938" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"></feFlood><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"></feBlend><feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"></feColorMatrix><feOffset dy="4"></feOffset><feGaussianBlur stdDeviation="4"></feGaussianBlur><feComposite in2="hardAlpha" operator="arithmetic" k2="-1" k3="1"></feComposite><feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0"></feColorMatrix><feBlend mode="normal" in2="shape" result="effect1_innerShadow_3685_5368"></feBlend></filter></defs></svg>'},function(e,t,n){"use strict";n.r(t);n(32),n(8),n(37),n(276),n(35);var o=new WeakMap,r={bind:function(element,e,t){var n=e.arg,r=e.value,l=void 0===r||r,c=t.context,d="boolean"!=typeof l&&null,f={mouseenter:function(){return c[n]=l},mouseleave:function(){return c[n]=d}};for(var m in f)element.addEventListener(m,f[m]);o.set(element,f),c.$on("hook:deactivated",(function(){return c[n]=d}))},unbind:function(element){var e=o.get(element);for(var t in e)element.removeEventListener(t,e[t]);o.delete(element)}};t.default=r},,,function(e,t){function n(e){return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}))}n.keys=function(){return[]},n.resolve=n,e.exports=n,n.id=1300},function(e,t,n){"use strict";n.r(t),n.d(t,"default",(function(){return o}));n(48);function o(){var e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],t=arguments.length>1?arguments[1]:void 0,n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:0;return e.slice(n,t)}},,function(e,t,n){var map={"./stagger-apply-context.component.ts":86,"./stagger-apply-in-view.component.vue":182,"./stagger-apply.component.ts":184,"./stagger-wipe.component.vue":185};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1303},,,,function(e,t,n){var map={"./inline-svg.component.ts":149,"./svg-image.filter.ts":397,"./svg-image.plugin.ts":1308};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1307},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return o}));var o=n(397).default},function(e,t,n){var map={"./modal-ui.component.vue":131,"./modals-root.component.js":101,"./modals.component.js":180};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1309},function(e,t,n){var map={"./after-delay.component.js":148,"./block-scroll.component.js":152,"./device-permissions.component.ts":224,"./group-child.component.ts":176,"./group-parent.component.ts":129,"./inline-svg.component.ts":149,"./live-camera.component.vue":226,"./local-value.component.js":150,"./modal-ui.component.vue":131,"./modal.component.js":225,"./modals-root.component.js":101,"./modals.component.js":180,"./order-by.component.js":177,"./pages-of.component.js":178,"./scroll-parent.component.vue":127,"./stagger-apply-context.component.ts":86,"./stagger-apply-in-view.component.vue":182,"./stagger-apply.component.ts":184,"./stagger-text.component.vue":227,"./stagger-wipe.component.vue":185,"./transition-gsap.component.ts":130,"./transition-wipe.component.ts":179,"./transitions-disabled.component.vue":181,"./video-cover.component.vue":183,"./with-in-view.component.vue":126,"./with-promise.component.ts":151,"./with-scroll.component.js":113,"./with-size.component.js":85};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1310},,function(e,t,n){var map={"./after-delay.component.js":148,"./block-scroll.component.js":152,"./device-permissions.component.ts":224,"./group-child.component.ts":176,"./group-parent.component.ts":129,"./inline-svg.component.ts":149,"./live-camera.component.vue":226,"./local-value.component.js":150,"./modal-ui.component.vue":131,"./modal.component.js":225,"./modals-root.component.js":101,"./modals.component.js":180,"./order-by.component.js":177,"./pages-of.component.js":178,"./scroll-parent.component.vue":127,"./stagger-apply-context.component.ts":86,"./stagger-apply-in-view.component.vue":182,"./stagger-apply.component.ts":184,"./stagger-text.component.vue":227,"./stagger-wipe.component.vue":185,"./transition-gsap.component.ts":130,"./transition-wipe.component.ts":179,"./transitions-disabled.component.vue":181,"./video-cover.component.vue":183,"./with-in-view.component.vue":126,"./with-promise.component.ts":151,"./with-scroll.component.js":113,"./with-size.component.js":85};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1312},function(e,t,n){var map={"./fitted-font-size.directive.ts":913,"./retina-src.directive.ts":228,"./tabindex-child.directive.ts":1314,"./tabindex-parent.directive.ts":236,"./video-api.directive.ts":377};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1313},function(e,t,n){"use strict";n.r(t);var o=n(13),r=n.n(o),l=(n(32),n(8),n(37),n(276),n(35),n(21),n(20),n(24),n(12),n(17),n(38),n(236)),c=n(300),d=n(234),f=n(10);function m(object,e){var t=Object.keys(object);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(object);e&&(n=n.filter((function(e){return Object.getOwnPropertyDescriptor(object,e).enumerable}))),t.push.apply(t,n)}return t}var h=new WeakMap,v={bind:function(element,e){var t=e.arg,n=e.value,o=Object(c.a)(n,Object(d.a)([{init:[{$eq:["enabled","autofocus","default"]},{$typeof:"undefined"}]},{$typeof:"undefined"}]),"Invalid tabindex-child value; if you wish to add more properties to this child, add the `.custom` modifier to this instance of `v-tabindex-child`")||{};if(t){var v=function(){var e=Object(l.getParent)(t);e.enabledChild&&e.enabledChild.disable(),element.tabIndex=0,e.enabledChild=y},y=function(e){for(var i=1;i<arguments.length;i++){var source=null!=arguments[i]?arguments[i]:{};i%2?m(Object(source),!0).forEach((function(t){r()(e,t,source[t])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(source)):m(Object(source)).forEach((function(t){Object.defineProperty(e,t,Object.getOwnPropertyDescriptor(source,t))}))}return e}({element:element,focus:function(){v(),f.a.nextTick((function(){return element.focus()}))},enable:v,disable:function(){element.tabIndex=-1;var e=Object(l.getParent)(t);y===e.enabledChild&&(e.enabledChild=void 0)}},o),C=Object(l.addChild)(t,y);h.set(element,C)}else console.error("No arg passed to tabindex-child, cannot attach to parent",element)},unbind:function(element){h.get(element)()}};t.default=v},function(e,t,n){var map={"./after-delay.component.js":148,"./json.filter.js":912,"./local-value.component.js":150,"./retina-src.directive.ts":228,"./viewport-size.plugin.ts":96,"./with-in-view.component.vue":126,"./with-promise.component.ts":151,"./with-size.component.js":85};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1315},function(e,t,n){var map={"./after-delay.component.js":148,"./block-scroll.component.js":152,"./device-permissions.component.ts":224,"./group-child.component.ts":176,"./group-parent.component.ts":129,"./inline-svg.component.ts":149,"./live-camera.component.vue":226,"./local-value.component.js":150,"./modal-ui.component.vue":131,"./modal.component.js":225,"./modals-root.component.js":101,"./modals.component.js":180,"./order-by.component.js":177,"./pages-of.component.js":178,"./scroll-parent.component.vue":127,"./stagger-apply-context.component.ts":86,"./stagger-apply-in-view.component.vue":182,"./stagger-apply.component.ts":184,"./stagger-text.component.vue":227,"./stagger-wipe.component.vue":185,"./transition-gsap.component.ts":130,"./transition-wipe.component.ts":179,"./transitions-disabled.component.vue":181,"./video-cover.component.vue":183,"./with-in-view.component.vue":126,"./with-promise.component.ts":151,"./with-scroll.component.js":113,"./with-size.component.js":85};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1316},function(e,t,n){var map={"./after-delay.component.js":148,"./block-scroll.component.js":152,"./device-permissions.component.ts":224,"./group-child.component.ts":176,"./group-parent.component.ts":129,"./inline-svg.component.ts":149,"./live-camera.component.vue":226,"./local-value.component.js":150,"./modal-ui.component.vue":131,"./modal.component.js":225,"./modals-root.component.js":101,"./modals.component.js":180,"./order-by.component.js":177,"./pages-of.component.js":178,"./scroll-parent.component.vue":127,"./stagger-apply-context.component.ts":86,"./stagger-apply-in-view.component.vue":182,"./stagger-apply.component.ts":184,"./stagger-text.component.vue":227,"./stagger-wipe.component.vue":185,"./transition-gsap.component.ts":130,"./transition-wipe.component.ts":179,"./transitions-disabled.component.vue":181,"./video-api.directive.ts":377,"./video-cover.component.vue":183,"./with-in-view.component.vue":126,"./with-promise.component.ts":151,"./with-scroll.component.js":113,"./with-size.component.js":85};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1317},function(e,t,n){var map={"./after-delay.component.js":148,"./block-scroll.component.js":152,"./device-permissions.component.ts":224,"./group-child.component.ts":176,"./group-parent.component.ts":129,"./inline-svg.component.ts":149,"./live-camera.component.vue":226,"./local-value.component.js":150,"./modal-ui.component.vue":131,"./modal.component.js":225,"./modals-root.component.js":101,"./modals.component.js":180,"./order-by.component.js":177,"./pages-of.component.js":178,"./scroll-parent.component.vue":127,"./stagger-apply-context.component.ts":86,"./stagger-apply-in-view.component.vue":182,"./stagger-apply.component.ts":184,"./stagger-text.component.vue":227,"./stagger-wipe.component.vue":185,"./transition-gsap.component.ts":130,"./transition-wipe.component.ts":179,"./transitions-disabled.component.vue":181,"./video-cover.component.vue":183,"./with-in-view.component.vue":126,"./with-promise.component.ts":151,"./with-scroll.component.js":113,"./with-size.component.js":85};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1318},function(e,t,n){var map={"./abilities-showcase.component.vue":1351,"./ability-icon.component.vue":1352,"./ability-video.component.vue":1353,"./auto-rotator.component.vue":1354,"./button-audio.component.vue":1355,"./button-decorated.component.vue":1356,"./button-default.component.vue":1357,"./button-event-shop.component.vue":1358,"./button-faq.component.vue":1359,"./button-global-control.component.vue":1360,"./button-motion.component.vue":1361,"./card-primary.component.vue":1362,"./card-secondary.component.vue":1363,"./carousel-arrow.component.vue":1364,"./carousel-card.component.vue":1365,"./carousel-thumbnail.component.vue":1366,"./carousel.component.vue":1379,"./content-drawer.component.vue":1367,"./default-modal.component.vue":1368,"./embed-state.plugin.ts":1331,"./infinite-cycler.component.vue":1386,"./logo.component.vue":1369,"./pause-auto-rotator.component.vue":398,"./progress-bar.component.vue":1370,"./qa-mode-ability-volume.component.vue":1371,"./qa-mode-r-client-messages.component.vue":1372,"./shared-svg-defs.component.vue":1383,"./svg-image.filter.ts":396,"./tooltip.component.vue":1373,"./video-player-button.component.vue":1374};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1319},function(e,t,n){"use strict";n(915)},function(e,t,n){"use strict";n(916)},function(e,t,n){"use strict";n(917)},,,,,,,,,function(e,t,n){"use strict";n.r(t),n.d(t,"EmbedState",(function(){return L})),n.d(t,"inject",(function(){return P}));var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0)),x=n(106),k=n(303);function _(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var O=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},L=function(e){f()(n,e);var t=_(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).skin=k.a[0],e.showContentDrawer=!1,e.getTooltip=null,e.userHasClicked=!1,e}return c()(n,[{key:"setTooltip",value:function(e){this.getTooltip=e?"function"==typeof e?e:function(){return e}:null}},{key:"mounted",value:function(){var e=this,t=Object(x.a)({context:this,target:window.document.body,event:"click"},(function(){e.userHasClicked=!0,t()}))}}]),n}(j.h.extend({render:function(){}})),P=(new(L=O([j.a],L))).$mount()},,function(e,t){function n(e){return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}))}n.keys=function(){return[]},n.resolve=n,e.exports=n,n.id=1333},function(e,t,n){var map={"./client-utils.plugin.ts":1335,"./ping-utils.plugin.ts":1338};function o(e){var t=r(e);return n(t)}function r(e){if(!n.o(map,e)){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}return map[e]}o.keys=function(){return Object.keys(map)},o.resolve=r,e.exports=o,o.id=1334},function(e,t,n){"use strict";n.r(t),function(e){n.d(t,"name",(function(){return F})),n.d(t,"inject",(function(){return N}));n(27),n(64),n(168),n(56),n(60),n(8),n(72),n(32),n(37),n(35),n(270),n(143),n(455),n(48),n(213),n(81),n(175),n(17),n(24),n(77),n(110),n(31),n(21),n(1336);var o,r,l,c=n(95),d={clientcompetitive:function(){RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-show-clash"})},clientloot:function(){RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-open-loot",data:{showBetterRewardsDayOneModal:!1}})},clientfreechamprotation:T,clientmissions:B,clientpersonalizedoffers:D,clientstore:z,clientstorepaw:z,clientstoredeeplink:function(e){var t=H(e.urlRedirect),n={};t.get("page")&&(n.page=t.get("page"));if(t.get("items"))try{n.items=JSON.parse(decodeURIComponent(t.get("items")))}catch(e){return void console.warn("deeplinkStoreViaClientAction failed. items could not be parsed.",e)}else{if(!t.get("inventoryType")||!t.get("itemId"))return void console.warn("deeplinkStoreViaClientAction failed. Please define item(s) to link to.");n.inventoryType=t.get("inventoryType"),n.itemId=t.get("itemId")}G(n)},clientqueue:function(e,element){if(element.data("disabled"))return;var t=H(e.urlRedirect).get("queueId");RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-create-lobby",data:{queueId:parseInt(t)}})},clienthometab:function(e,t){var n=function(){t.off("click"),e.tag=e.tag.replace(/clienthometab/,""),R(t,e),t.click()};if(!e.urlRedirect)return void n();var o=H(e.urlRedirect).get("tabId");"pending"===Z.state()&&(RClientWindowMessenger.addMessageListener({messageType:"rcp-fe-lol-home-enabled-tabs-response",handlers:function(e,data){Z.resolve(data.tabIds)}}),RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-enabled-tabs-request"}));Z.then((function(e){o&&e.indexOf(o)>=0?RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-change-tab",data:{tabId:o}}):n()}))},clientcdp:function(e){var t,n=H(location.href),o=H(e.urlRedirect),section=o.get("section");if(o.has("championId"))t=o.get("championId");else if(n.has("filters")){var r=n.get("filters").split(",");t=function(e){var t=/^filter_main_\d+$/,n=e.find((function(filter){return t.test(filter)}));if(!n)return null;return n.split("_").pop()}(r)}t||(t=21);RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-open-champion-details",data:{section:section,championId:parseInt(t,10)}})}},f="oembedGlobals"in e&&"/v2/"+oembedGlobals.region+"/"+oembedGlobals.language+"/",m=["riotgames.com","lolesports.com","leagueoflegends.com"],h=["_self","_blank"],v=function(e,t){if(e){if(t=$.extend({},{target:"_self"},t),h.indexOf(t.target)<0)return console&&console.log("client-utils[openUrl] The specified target is not valid: "+t.target),null;if("_self"===t.target)$("body").trigger("modal-opened"),RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-open-full-page-modal",data:{url:e}});else{if("_blank"!==t.target)return console&&console.log("client-utils[openUrl] The specified target is valid but does not have support yet: "+t.target),null;Object(c.windowOpen)(e,"_blank")}}},y=["uuid","list"],C=/[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}/,w="$"in e&&"document"in e&&(o=$.Deferred(),r=location.protocol+"//127.0.0.1:"+location.port,l={account_id:1234567890,env:"NA1",web_region:"na",locale:"en_US",summoner_level:30,app_name:"LeagueClient",app_version:"0.0.0",user_agent:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36",system_os:"Macintosh; Intel Mac OS X 10_10_3",port:location.port,assetUrls:{baseUrl:r,splashUrl:r+"/lol-game-data/assets/v1/champion-splashes/{championId}/{skinId}.jpg"}},addEventListener("message",(function(e){if(e.data&&"rcp-fe-lol-home-data-request"===e.data.messageType){var t=Object.assign({},l);o.resolve(t)}})),RClientWindowMessenger.addMessageListener({messageType:"rcp-fe-lol-home-data-response",handlers:function(e,data){(null==data?void 0:data.clientData)&&o.resolve(data.clientData)}}),RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-data-request"}),function(){return o.promise()});function j(e){e.mouseover(x.bind(null,e,"hover","hover")),e.mouseout(x.bind(null,e,"out","idle")),e.mousedown(x.bind(null,e,"down","down")),e.click(x.bind(null,e,"click","click"))}function x(e,t,n){k(e,n),"click"===t&&(!function(e){var t=600;(function(e){e.off()})(e),k(e,"click"),setTimeout((function(){j(e),k(e,"idle")}),t)}(e),O()),"hover"===t&&_()}function k(e,t){["idle","hover","down","click"].forEach((function(t){e.removeClass(t)})),t&&e.addClass(t)}function _(){RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-play-sound",data:{key:"button-hover"}})}function O(){RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-play-sound",data:{key:"button-click"}})}function L(e){var t="standard";return E(e.tag,["client_update_article","client_update_dev_blog"])?t="alpha-dev-blog":A(e.tag,"client_update_changelog")?t="alpha-changelog":A(e.tag,"patch_notes")&&(t="patch-notes"),location.origin+"/"+oembedGlobals.locale+"/article/"+t+"/"+e.uuid}function P(e){return E(e.tag,["client_update_article","client_update_dev_blog","client_update_changelog"])}function M(e,t){var n=function(e){return e.tag.split(" ").filter((function(e){return void 0!==d[e]}))}(e);if(-1!==n.indexOf("clientqueue")){var o=H(e.urlRedirect).get("queueId");RClientWindowMessenger.addMessageListener({messageType:"play-enabled-response",handlers:function(e,data){S(t,data.enabled)}}),RClientWindowMessenger.addMessageListener({messageType:"eligible-queues-response",handlers:function(e,data){data.queues.some((function(e){return e.queueId===o&&(S(t,e.eligible),!0)}))}}),RClientWindowMessenger.addMessageListener({messageType:"create-lobby-response",handlers:function(e,data){S(t,!1)}}),RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-play-enabled"}),RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-eligible-queues"})}}function R(e,t){var n,o=t.openExternally&&!P(t),r=o?t.url:L(t),l=o?"_blank":"_self",c=function(e){return e.tag.split(" ").some((function(element){return!!d[element]}))}(t);if(o)try{n=function(e,t){if(!t)return t;var n=new URL(t),o=m.some((function(e){return n.hostname===e||n.hostname.endsWith("."+e)})),r=e.closest("div[data-utm-medium]").data("utm-medium"),l=new URLSearchParams(n.search.slice(1)),c=!(!l.has("utm_source")&&!l.has("utm_medium"));return o&&!c&&(l.set("utm_source","LeagueClient"),r&&l.set("utm_medium",r)),n.search=l.toString(),n.href}(e,r)}catch(e){return void console.warn("Click handler for article not added: ",e.message)}else n=r;if(n&&0!==n.trim().length||c)return M(t,e),e.on("click",f),function(){e.off("click",f)};function f(o){o.preventDefault(),c?function(e,t){e.tag.split(" ").forEach((function(n){d[n]&&d[n](e,t)}))}(t,e):(v(n,{target:l}),"_self"===l&&v(n,{target:l}))}}function S(e,t){e.data("disabled",!t),e.children(".lol-uikit-flat-button").toggleClass("disabled",!t)}function A(e,t){return e.split(" ").includes(t)}function E(e,t){return t.some((function(t){return A(e,t)}))}function T(){RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-free-champ-rotation-open"})}function B(){RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-show-missions"})}function D(){RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-personalized-offers-open"})}function I(data){if("CHAMPION_SKIN"===data.inventoryType&&[99017,99018].includes(parseInt(data.itemId)))return data.page="skins",void G(data);var e={inventoryType:data.inventoryType,itemId:data.itemId};data.source&&(e.source=data.source),RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-open-paw",data:e})}function G(data){var e={inventoryType:data.inventoryType,itemId:data.itemId,items:data.items,page:void 0};data.page&&(e.page=data.page),RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-open-store",data:e})}function z(e){var t=H(e.urlRedirect),n={inventoryType:t.get("inventoryType"),itemId:+t.get("itemId"),source:void 0};t.get("source")&&(n.source=t.get("source")),I(n)}var Z="$"in e&&$.Deferred();function H(e){var t;try{var n=new URL(e);t=new URLSearchParams(n.search.replace(/^\?/,"")),Object.keys(t).map((function(param){"string"==typeof t[param]&&(t[param]=t[param].trim())}))}catch(e){t=new URLSearchParams("")}return t}function U(e){var t=!1;return function(){t||(t=!0,e.apply(this,arguments))}}RClientWindowMessenger.addMessageListener({messageType:"rcp-fe-lol-home-modal-open",handlers:function(){$("body").trigger("modal-opened")}}),RClientWindowMessenger.addMessageListener({messageType:"rcp-fe-lol-home-section-show",handlers:function(){$("body").trigger("section-show")}}),RClientWindowMessenger.addMessageListener({messageType:"rcp-fe-lol-home-section-hide",handlers:function(){$("body").trigger("section-hide")}}),RClientWindowMessenger.addMessageListener({messageType:"rcp-fe-lol-home-hide",handlers:function(){$("body").trigger("home-hide")}});var F="cu",N={loadImage:function(e,t){e&&(t||(t={}),e.setAttribute("src",e.getAttribute("data-src-original")))},openUrl:v,getOembedUrl:function(e,t,n){if(e&&t){if(n=$.extend({},{sandbox:!0},n),y.indexOf(e)<0)return console&&console.log("client-utils[getUrlFromUUID] The specified type is not valid: "+e),null;var o,r=oembedGlobals.oembedProviderHost+"/"+(n.sandbox?"sandbox":"oembed")+"?url=";if(o=oembedGlobals.newsOembedServiceHost+f,"uuid"===e)o=o+"news/"+t;else{if("list"!==e)return console&&console.log("client-utils[getUrlFromUUID] The specified type is valid but does not have support yet: "+e),null;o=o+"lists/"+t}return o=encodeURIComponent(o),n.queryParams&&(o=o+"?"+$.param(n.queryParams)),r+o}},getUUID:function(e){if(!e)return null;var t=C.exec(e);return t?t[0]:null},getClientData:w,addExternalLinkIcon:function(e,t){if(e)if(t||(t={}),$(e).text()&&0===$("*",e).length){var n=$(e).text().split(/\s+/),o=n.pop(),r=n.join(" ");$(e).html(r+' <span class="lcu-external-link">'+o+"</span>")}else e.addClass("lcu-external-link")},removeExternalLinkIcon:function(e){var t=$(e).find(".lcu-external-link");if(t){var n=t.text();t.remove(),$(e).append(n)}},createLcuFlatButton:function(e,t){var n=$(' <div class="lol-uikit-flat-button-container"> <div class="lol-uikit-flat-button"> <div class="lol-uikit-flat-button-bg"></div> <div class="lol-uikit-flat-button-border-idle"></div> <div class="lol-uikit-flat-button-border-transition"></div> <div class="lol-uikit-flat-button-flare"></div> <div class="lol-uikit-flat-button-glow"></div> <div class="lol-uikit-flat-button-sheen-wrapper"> <div class="lol-uikit-flat-button-sheen"></div> </div> <div class="lol-uikit-flat-button-content-wrapper">'+e+" </div> </div> </div>"),o=$(".lol-uikit-flat-button",n);return t&&o.addClass(t),j(o),n},playHoverSound:_,playClickSound:O,playSocialLinkClick:function(){RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-play-sound",data:{key:"icon-click"}})},playPageupSound:function(){RClientWindowMessenger.sendMessage({messageType:"rcp-fe-lol-home-play-sound",data:{key:"button-pageup-click"}})},getOembedNodeData:function(e){return{uuid:e.data("oembed-uuid"),url:e.data("oembed-url"),urlRedirect:e.data("oembed-url-redirect"),category:e.data("oembed-category"),subcategory:e.data("oembed-subcategory"),tag:e.data("oembed-tag")||"",openExternally:1,ctaButtonText:e.data("oembed-cta-button-text"),hideCta:e.data("oembed-open-hide-cta"),articleType:e.data("oembed-article-type")}},getArticleFullModePath:L,getArticleWebUrl:function(e){if(P(e)){var t=A(e.tag,"client_update_changelog")?"changelog":"article";return i18nEmbed["links.clientUpdateWebsiteUrl"]+"/client-update/{type}/{uuid}".replace("{type}",t).replace("{uuid}",e.uuid)}return e.url},isAlphaArticle:P,linkElementToFullArticle:R,openFreeChampRotation:T,openMissions:B,openPersonalizedOffers:D,openStore:I,lassoEmbedLoadedAll:function(e,t){"function"==typeof e&&(t=e,e={}),e=Object.assign({lassoEmbeds:$("lasso-embed"),maxFailures:0},e);var n=new Set;e.lassoEmbeds.each((function(i,element){n.add(element)}));var o=!1;n.forEach((function(element){$(element).onLassoEmbedLoad((function(){n.delete(element),n.size<=e.maxFailures&&!o&&(o=!0,t())}))}))},imagesLoaded:function(e,t,n){var o=0,r=U(t);0!==e.length?("number"==typeof n&&setTimeout(r,n),e.each((function(i,element){!function(img,e){img.complete?e():(img.addEventListener("load",e),img.addEventListener("error",(function(){ping("image_failed_load",{"meta.src":img.src},img)})))}(element,(function(){++o===e.length&&r()}))}))):r()},once:U}}.call(this,n(40))},,,function(e,t,n){"use strict";n.r(t),function(e){n.d(t,"inject",(function(){return l}));var o;n(8),n(17),n(56),n(48),n(64),n(21),n(31);function r(element,e){var t,n={},o="";(o=element.getAttribute("data-ping-meta"))&&o.split("|").forEach((function(e){var t=e.split("=");n[t[0]]=t.slice(1).join("=")})),Object.assign(n,e),t=Object.keys(n).map((function(e){return e+"="+n[e]})).join("|"),element.setAttribute("data-ping-meta",t)}"document"in e&&((o=document.querySelector(".screen-metadata"))&&r(o,{loadTime:Date.now()}));var l={setMetaData:r,oembedDisplay:function(element){ping("oembed_displayed",{},element)},oembedLoaded:function(element){ping("oembed_loaded",{},element)},oembedFailure:function(e){var t=e.target,n={lassoUrl:encodeURIComponent(t.getAttribute("url"))};ping("oembed_failure",n,t)},clickSubnavTab:function(element){ping("click",{"meta.interactionType":"tab"},element)},subscreenHide:function(element){ping("subscreen_hide",{},element)}}}.call(this,n(40))},function(e,t){function n(e){return Promise.resolve().then((function(){var t=new Error("Cannot find module '"+e+"'");throw t.code="MODULE_NOT_FOUND",t}))}n.keys=function(){return[]},n.resolve=n,e.exports=n,n.id=1339},function(e,t,n){"use strict";n.r(t),function(e){var t=n(26);"oembedGlobals"in e&&(t.inject.isWebpackDev&&t.inject.inBrowser&&(oembedGlobals.oembedProviderHost="http://frontpage.localhost.leagueoflegends.com:3030",oembedGlobals.amServiceHost=""),document.body.dataset.lassoEndpoint=oembedGlobals.oembedProviderHost+"/oembed")}.call(this,n(40))},function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(52),n(0));var x=n(936);function k(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var _=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},O=function(e){f()(n,e);var t=k(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).thumbWidth=null,e.playerApi=null,e.playerVars={autoplay:0,mute:0,rel:0,widget_referrer:"leagueclient"},e}return c()(n,[{key:"playExternal",get:function(){return this.linkOverride||this.external||this.$homeData.lowSpecMode}},{key:"externalBg",get:function(){var e,t="";return(t="string"==typeof this.poster?this.poster:this.poster?this.$assetMagick((e=this.videoId)?"https://img.youtube.com/vi/".concat(e,"/maxresdefault.jpg"):"",{width:this.thumbWidth}):"")&&"url(".concat(t,")")}},{key:"mounted",value:function(){var e=this;this.$once("hook:beforeDestroy",this.$rClient.on("sectionHide",(function(){var t;null===(t=e.playerApi)||void 0===t||t.stopVideo()})))}}]),n}(j.h.extend({components:{YoutubeVideo:x.a}}));_([Object(j.e)(String)],O.prototype,"videoId",void 0),_([Object(j.e)([Boolean,String])],O.prototype,"poster",void 0),_([Object(j.e)(Boolean)],O.prototype,"external",void 0),_([Object(j.e)()],O.prototype,"pingMeta",void 0),_([Object(j.e)(String)],O.prototype,"linkOverride",void 0),_([Object(j.e)(String)],O.prototype,"playButtonSpriteClass",void 0),_([Object(j.e)(Boolean)],O.prototype,"playButtonHover",void 0),_([Object(j.e)(Number)],O.prototype,"width",void 0),_([Object(j.e)(String)],O.prototype,"title",void 0);var L=O=_([j.a],O),P=n(9),component=Object(P.a)(L,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[n("with-size",{on:{input:function(t){e.thumbWidth=t.width}}},[n("div",{staticClass:"relative",class:{"lasso-card":e.title},style:e.width&&{width:e.width+"px"}},[n("div",{staticClass:"spacer-9/16"}),e._v(" "),e.playExternal?n("ping-impression",{attrs:{meta:Object.assign({},{contentOpens:"external",interactionType:"button",buttonType:"openModal"},e.pingMeta),disabled:!1===e.pingMeta}},[n("div",{staticClass:"absolute inset-0 cursor-pointer bg-cover bg-center",style:{backgroundImage:e.externalBg},on:{click:function(t){e.$linkOut(e.linkOverride)||e.$youtubeModal(e.videoId)}}},[n("div",{staticClass:"oembed-content-field oembed-content-media oembed-content-media-type-image"}),e._v(" "),e.title?n("div",{staticClass:"oembed-content-wrapper"},[n("div",{staticClass:"oembed-inner-wrap"},[n("h3",{staticClass:"oembed-content-short-title",domProps:{innerHTML:e._s(e.title)}})])]):e._e(),e._v(" "),e.playButtonSpriteClass?n("div",{staticClass:"absolute inset-0 flex items-center justify-center",class:{group:e.playButtonHover}},[e.playButtonHover?n("div",{staticClass:"centered absolute opacity-0 transition group-hover:opacity-100",class:e.playButtonSpriteClass+"-hover"}):e._e(),e._v(" "),n("div",{staticClass:"transition",class:[e.playButtonSpriteClass,{"group-hover:opacity-0":e.playButtonHover}]})]):e._t("play-button")],2)]):n("ping-impression",{attrs:{meta:Object.assign({},{contentOpens:"client",interactionType:"video"},e.pingMeta),disabled:!1===e.pingMeta}},[n("youtube-video",{staticClass:"absolute inset-0 h-full w-full",attrs:{"video-id":e.videoId,"player-vars":e.playerVars},on:{"youtube-player:loaded":function(t){e.playerApi=t}}})],1)],1)])],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(20),n(46),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l};var _=function(e){f()(n,e);var t=x(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"headline",get:function(){var e;return null===(e=this.config)||void 0===e?void 0:e.headline}},{key:"description",get:function(){var e;return null===(e=this.config)||void 0===e?void 0:e.description}},{key:"badge",get:function(){var e;return null===(e=this.config)||void 0===e?void 0:e.badge}},{key:"cta",get:function(){var e;return null===(e=this.config)||void 0===e?void 0:e.cta}},{key:"bg",get:function(){var e;return null===(e=this.config)||void 0===e?void 0:e.background}},{key:"targetParams",get:function(){var e;return null===(e=this.config)||void 0===e?void 0:e.targetParams}},{key:"target",get:function(){var e;return(null===(e=this.config)||void 0===e?void 0:e.target)||"external"}},{key:"showPlayButton",get:function(){var e;return null===(e=this.config)||void 0===e?void 0:e.showPlayButton}},{key:"onClick",value:function(){var e=this.target,t=this.targetParams;if(t)if(function(e,t){return"store"===t&&(null==e?void 0:e.items)}(t,e)){var n=t.items,o=t.page;this.$rClient.openStoreForItems(n,o)}else"modal"===e?this.$rClient.openModal(t):this.$linkOut(t,{target:e})}}]),n}(j.h);k([Object(j.e)(Object)],_.prototype,"meta",void 0),k([Object(j.e)({type:String,required:!0})],_.prototype,"interactiveContentId",void 0),k([Object(j.e)(Object)],_.prototype,"config",void 0),k([Object(j.e)({type:String,default:""})],_.prototype,"ctaClass",void 0),k([Object(j.e)(String)],_.prototype,"bgSprite",void 0),k([Object(j.e)(Boolean)],_.prototype,"noGradient",void 0);var O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ping-impression",{attrs:{meta:e.$ping.meta({contentOpens:"external",interactionType:"card",interactiveContentId:e.interactiveContentId,title:e.headline,type:e.badge},e.meta)}},[n("a",e._g({staticClass:"lasso-card group relative h-full w-full flex-1 bg-black",on:{click:e.onClick}},e.$listeners),[n("div",{staticClass:"oembed-wrapper"},[n("div",{staticClass:"oembed-content-field oembed-content-media oembed-content-media-type-image bg-cover",class:{"no-gradient":e.noGradient},style:{backgroundImage:e.bg?"url("+e.bg+")":"none"}},[n("div",{class:e.bgSprite})]),e._v(" "),n("div",{staticClass:"oembed-content-wrapper"},[n("div",{staticClass:"oembed-inner-wrap"},[e.badge?n("div",{staticClass:"oembed-content-subtitle",domProps:{innerHTML:e._s(e.badge)}}):e._e(),e._v(" "),e.headline?n("h3",{staticClass:"oembed-content-short-title",domProps:{innerHTML:e._s(e.headline)}}):e._e(),e._v(" "),e.description?n("div",{staticClass:"oembed-content-field oembed-content-body-small",domProps:{innerHTML:e._s(e.description)}}):e._e()]),e._v(" "),e.cta?n("div",{staticClass:"oembed-cta",class:e.ctaClass,domProps:{innerHTML:e._s(e.cta)}}):e._e()]),e._v(" "),e.showPlayButton&&e.$slots["play-button"]?n("div",[e._t("play-button")],2):e._e()])])])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t),n.d(t,"injectPageContainer",(function(){return L}));var o=n(13),r=n.n(o),l=n(3),c=n.n(l),d=n(4),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=(n(12),n(8),n(20),n(46),n(15),n(0));function _(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var O=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},L={from:Symbol("pageContainer"),default:function(){return{}}},P=function(e){h()(n,e);var t=_(n);function n(){return c()(this,n),t.apply(this,arguments)}return f()(n,[{key:"baseRouteName",get:function(){return this.getRouteBaseName()}},{key:"activeBg",get:function(){for(var e={video:"",image:""},t=0,n=[this.bgImage,this.baseRouteName&&"bg-".concat(this.baseRouteName),this.defaultBgImage];t<n.length;t++){var image=n[t];if(image){if(this.withVideo&&!e.video){var o=this.$video(image);o&&(e.video=o)}if(!e.image){var r=this.$bgImage(image);r&&(e.image=r)}if((!this.withVideo||e.video)&&e.image)return e}}if(e.image)return e}}]),n}(k.h.extend({provide:function(){return r()({},L.from,this)}}));O([Object(k.e)(String)],P.prototype,"bgImage",void 0),O([Object(k.e)({type:String,default:"bg-default"})],P.prototype,"defaultBgImage",void 0),O([Object(k.e)(String)],P.prototype,"pageSection",void 0),O([Object(k.e)(Boolean)],P.prototype,"noScroll",void 0),O([Object(k.e)(Boolean)],P.prototype,"formatModal",void 0),O([Object(k.e)(Boolean)],P.prototype,"withVideo",void 0),O([Object(k.g)()],P.prototype,"bgs",void 0);var M=P=O([k.a],P),R=(n(1235),n(9)),component=Object(R.a)(M,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[n("transition",{attrs:{name:"fade-slow",mode:"in-out"}},e._l([e.activeBg],(function(t){return n("div",{key:t.image,ref:"bgs",refInFor:!0,staticClass:"animate-opacity hold-leave absolute h-full w-client bg-w-full bg-no-repeat",style:{marginTop:"modal"===e.$siteMode.mode?"0px":void 0,backgroundImage:t.image}},[n("transition",[e.$hubIs.withMotion&&t.video?n("video",{attrs:{src:t.video,preload:"auto",autoplay:"",loop:"",muted:"",playsinline:""},domProps:{muted:!0}}):e._e()])],1)})),0),e._v(" "),e.$siteMode.isProd||!e.bgImage||e.$image(e.bgImage)?e._e():n("div",{staticClass:"inset-50 absolute bg-white/20 text-white",staticStyle:{"font-size":"24px"}},[n("div",{staticClass:"centered absolute max-w-full"},[e._v("\n\t\t\t"+e._s(e.bgImage)+"\n\t\t")])]),e._v(" "),n("div",{staticClass:"scrollbar page-container absolute inset-0 block w-client",class:[e.noScroll?"overflow-visible":"mask-app overflow-y-auto",e.formatModal?"mask-none":"mt-toolbar"],attrs:{"data-ping-meta":"pageSection="+(e.pageSection||e.baseRouteName||"default")}},[e._t("default")],2)],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).selectedSfx=null,e.selectedAmbience=null,e.allSfx=[],e.allAmbiences=[],e}return r()(n)}(j.h),O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[n("div",{staticClass:"font-spiegel-bold"},[e._v("AUDIO")]),e._v(" "),n("div",{staticClass:"mb-2 flex items-center justify-between"},[n("select",{directives:[{name:"model",rawName:"v-model",value:e.selectedSfx,expression:"selectedSfx"}],staticClass:"text-black",on:{change:function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){return"_value"in e?e._value:e.value}));e.selectedSfx=t.target.multiple?n:n[0]}}},[n("option",{domProps:{value:null}},[e._v("Select UI SFX")]),e._v(" "),e._l(e.allSfx,(function(t){return n("option",{key:t,domProps:{value:t}},[e._v("\n\t\t\t\t"+e._s(t)+"\n\t\t\t")])}))],2),e._v(" "),n("button",{class:{"pointer-events-none opacity-50":!e.selectedSfx},on:{"qa-click":function(t){e.selectedSfx&&e.$playAudioAsset(e.selectedSfx)}}},[e._v("\n\t\t\tPLAY UI SFX\n\t\t")])]),e._v(" "),n("div",{staticClass:"mb-2 flex items-center justify-between"},[n("select",{directives:[{name:"model",rawName:"v-model",value:e.selectedAmbience,expression:"selectedAmbience"}],staticClass:"text-black",on:{change:function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){return"_value"in e?e._value:e.value}));e.selectedAmbience=t.target.multiple?n:n[0]}}},[n("option",{domProps:{value:null}},[e._v("Select Ambient SFX")]),e._v(" "),e._l(e.allAmbiences,(function(t){return n("option",{key:t,domProps:{value:t}},[e._v("\n\t\t\t\t"+e._s(t)+"\n\t\t\t")])}))],2),e._v(" "),n("button",{class:{"pointer-events-none opacity-50":!e.selectedAmbience},on:{"qa-click":function(t){e.selectedAmbience&&e.$playAmbience("primary",{ambientAsset:e.selectedAmbience})}}},[e._v("\n\t\t\tPLAY AMBIENCE\n\t\t")])])])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(14),r=n.n(o),l=n(3),c=n.n(l),d=n(4),f=n.n(d),m=n(5),h=n.n(m),v=n(7),y=n.n(v),C=n(1),w=n.n(C),j=n(2),x=n.n(j),k=n(6),_=n.n(k),O=(n(12),n(8),n(15),n(0));function L(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=w()(e);if(t){var r=w()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return y()(this,n)}}var P=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":x()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},M=function(e){h()(o,e);var t,n=L(o);function o(){return c()(this,o),n.apply(this,arguments)}return f()(o,[{key:"reset",value:(t=r()(_.a.mark((function e(){return _.a.wrap((function(e){for(;;)switch(e.prev=e.next){case 0:return this.$rClientSettings.introWatched=!1,e.next=3,this.$rClientSettings.lastSetPromise;case 3:this.$qaState.refresh();case 4:case"end":return e.stop()}}),e,this)}))),function(){return t.apply(this,arguments)})}]),o}(O.h),R=M=P([O.a],M),S=n(9),component=Object(S.a)(R,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[n("div",{staticClass:"flex items-center justify-between"},[n("div",{staticClass:"font-spiegel-bold"},[e._v("INTRO BEHAVIOR")]),e._v(" "),n("button",{on:{"qa-click":e.reset}},[e._v("RESET")])]),e._v(" "),n("div",{domProps:{innerHTML:e._s(e.$rClientSettings.introWatched?"VIEWED INTRO":"WILL SHOW INTRO")}})])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(93),n(24),n(269),n(0)),x=n(133);function k(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var _=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},O=function(e){f()(n,e);var t=k(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).selectedLocale=e.$i18n.locale,e.useSlugs=!1,e}return c()(n,[{key:"mounted",value:function(){var e=this;this.$watch((function(){return e.selectedLocale}),(function(t){e.$i18n.setLocale(t)}))}},{key:"supportedLocales",get:function(){return Object.values(x.a).filter((function(e){var t=e.slug;return-1!="en-us en-gb en-pl en-au de-de es-es fr-fr it-it pl-pl ro-ro el-gr hu-hu cs-cz pt-br tr-tr es-mx es-ar ru-ru ja-jp ko-kr zh-cn en-ph en-sg th-th vi-vn zh-tw".indexOf(t)})).sort((function(a,b){return a.locale.localeCompare(b.locale)}))}}]),n}(j.h),L=O=_([j.a],O),P=n(9),component=Object(P.a)(L,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[n("div",{staticClass:"font-spiegel-bold"},[e._v("LOCALE")]),e._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:e.selectedLocale,expression:"selectedLocale"}],staticClass:"mt-[2px] block w-full text-black",on:{change:function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){return"_value"in e?e._value:e.value}));e.selectedLocale=t.target.multiple?n:n[0]}}},e._l(e.supportedLocales,(function(t){return n("option",{key:t.locale,style:{fontWeight:t.locale===e.selectedLocale?"bold":"normal"},domProps:{value:e.useSlugs?t.slug:t.locale,textContent:e._s((t.locale===e.selectedLocale?"-> ":"")+t.locale+": "+t.label)}})})),0)])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(25),n(56),n(31),n(0)),x=n(394),k=n.n(x);function _(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var O=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},L=function(e){f()(n,e);var t=_(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).viewType=null,e}return c()(n,[{key:"copy",value:function(e){k()(e)}},{key:"copyAllLogsOfType",value:function(e){k()("PUUID: ".concat(this.$homeData.puuid," - ").concat(e," items (").concat(this.$qaLog.logByType[e].items.length," total)\n\n")+this.$qaLog.logByType[e].items.map((function(e){return"".concat(e.time,"\n").concat(e.data,"\n")})).join("\n"))}}]),n}(j.h),P=L=O([j.a],L),M=n(9),component=Object(M.a)(P,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",e._l(e.$qaLog.logByType,(function(t,o,r){return n("div",{key:o,class:{"mt-[15px]":r>0}},[n("div",{staticClass:"flex justify-between"},[n("div",{staticClass:"flex flex-1 items-center"},[n("div",{staticClass:"mr-[2px] font-spiegel-bold",domProps:{innerHTML:e._s(e.$qaLog.logLabelByType[o]||o)}}),e._v(" "),n("div",{staticClass:"mr-[5px]",domProps:{innerHTML:e._s("("+t.items.length+" total)")}}),e._v(" "),t.items.length?n("button",{domProps:{innerHTML:e._s("COPY ALL")},on:{"qa-click":function(t){return e.copyAllLogsOfType(o)}}}):e._e()]),e._v(" "),e.viewType===o?n("button",{staticClass:"mr-[2px]",domProps:{innerHTML:e._s("CLEAR")},on:{"qa-click":function(t){return e.$qaLog.clearLog(o)}}}):e._e(),e._v(" "),n("button",{domProps:{innerHTML:e._s(e.viewType===o?"CLOSE":"VIEW ALL")},on:{"qa-click":function(t){e.viewType=e.viewType===o?void 0:o}}})]),e._v(" "),n("local-value",{attrs:{value:e._f("limitTo")(t.items,e.viewType===o?void 0:e.$qaLog.freshCountByType[o])},scopedSlots:e._u([{key:"default",fn:function(t){return[n("div",e._l(t,(function(t){return n("div",{key:t.id,staticClass:"mt-[5px] border border-white p-[5px] transition hover:bg-blue/80",class:{"bg-blue/80":t.freshUntil}},[n("div",{staticClass:"flex justify-between pb-[10px]"},[n("div",[e._v(e._s(t.time)+" - "+e._s(o)+" "+e._s(t.id))]),e._v(" "),n("button",{domProps:{innerHTML:e._s("COPY")},on:{"qa-click":function(n){return e.copy(t.data)}}})]),e._v(" "),"ping"===o?n("local-value",{attrs:{value:JSON.parse(t.data)},scopedSlots:e._u([{key:"default",fn:function(t){return[n("div",{staticClass:"mb-[10px] text-[16px]",domProps:{innerHTML:e._s(t.eventName+": "+(t["meta.interactiveContentId"]||"Unknown"))}})]}}],null,!0)}):e._e(),e._v(" "),n("div",{staticClass:"flex-1 overflow-auto"},[n("local-value",{attrs:{value:Array.isArray(t.data)?t.data:[t.data]},scopedSlots:e._u([{key:"default",fn:function(data){return[n("div",e._l(data,(function(t,i){return n("pre",{key:i,staticClass:"select-text",domProps:{innerHTML:e._s(t)}})})),0)]}}],null,!0)})],1)],1)})),0)]}}],null,!0)})],1)})),0)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(31),n(0)),x=n(90),k=n(107);function _(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var O=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},L=function(e){f()(n,e);var t=_(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).inventoryItems=Object(k.a)(x.b.map((function(e){var t=e.slug,n=e.inventory;return"item"in n&&n.item&&{slug:t,inventory:n}}))),e}return r()(n)}(j.h),P=L=O([j.a],L),M=n(9),component=Object(M.a)(P,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[n("div",{staticClass:"font-spiegel-bold"},[e._v("OWNED ITEMS")]),e._v(" "),e._l(e.inventoryItems,(function(t){var o=t.slug,r=t.inventory,label=r.label,l=r.item;return n("local-value",{key:o,attrs:{value:e.$rClient.inventoryOwned(l)},scopedSlots:e._u([{key:"default",fn:function(t){return[n("label",{staticClass:"flex items-center py-[5px]"},[n("input",{staticClass:"mr-[5px]",attrs:{type:"checkbox"},domProps:{checked:t},on:{"qa-click":function(t){return e.$rClient.inventoryOverrideToggle(l)}}}),e._v(" "),n("div",{domProps:{innerHTML:e._s(label||l.inventoryType+" "+l.itemId)}})])]}}],null,!0)})}))],2)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).shown=!0,e}return c()(n,[{key:"mounted",value:function(){this.shown=!1}}]),n}(j.h),O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement;return(e._self._c||t)("span",[e.shown?e._t("default"):e._e()],2)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"publisher",get:function(){return"tencent"===this.$locale.publisher?"T":"garena"===this.$locale.publisher?"G":"RR"}}]),n}(j.h),O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement;return(e._self._c||t)("div",{staticClass:"pointer-events-none z-1 p-[10px] text-[24px] uppercase opacity-20 font-spiegel"},[e._v("\n\tDEBUG - Build:"+e._s(e.$projectConfig.buildVersion)+" - C:"+e._s(e.$siteMode.inBrowser?"B":"LCU")+"\n\t- E:"+e._s(e.$homeData.env)+" - R:"+e._s(e.publisher)+"\n")])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(31),n(25),n(0)),x=n(914);function k(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var _=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},O={diana:{p:{name:"inventory.skin.winterblessed_diana.ability.p",video:"diana/ability-p",poster:"diana/ability-poster-p",icon:"diana/ability-icon-p"},q:{name:"inventory.skin.winterblessed_diana.ability.q",video:"diana/ability-q",poster:"diana/ability-poster-q",icon:"diana/ability-icon-q"},w:{name:"inventory.skin.winterblessed_diana.ability.w",video:"diana/ability-w",poster:"diana/ability-poster-w",icon:"diana/ability-icon-w"},e:{name:"inventory.skin.winterblessed_diana.ability.e",video:"diana/ability-e",poster:"diana/ability-poster-e",icon:"diana/ability-icon-e"},r:{name:"inventory.skin.winterblessed_diana.ability.r",video:"diana/ability-r",poster:"diana/ability-poster-r",icon:"diana/ability-icon-r"}},shaco:{p:{name:"inventory.skin.winterblessed_shaco.ability.p",video:"shaco/ability-p",poster:"shaco/ability-poster-p",icon:"shaco/ability-icon-p"},q:{name:"inventory.skin.winterblessed_shaco.ability.q",video:"shaco/ability-q",poster:"shaco/ability-poster-q",icon:"shaco/ability-icon-q"},w:{name:"inventory.skin.winterblessed_shaco.ability.w",video:"shaco/ability-w",poster:"shaco/ability-poster-w",icon:"shaco/ability-icon-w"},e:{name:"inventory.skin.winterblessed_shaco.ability.e",video:"shaco/ability-e",poster:"shaco/ability-poster-e",icon:"shaco/ability-icon-e"},r:{name:"inventory.skin.winterblessed_shaco.ability.r",video:"shaco/ability-r",poster:"shaco/ability-poster-r",icon:"shaco/ability-icon-r"}},swain:{p:{name:"inventory.skin.winterblessed_swain.ability.p",video:"swain/ability-p",poster:"swain/ability-poster-p",icon:"swain/ability-icon-p"},q:{name:"inventory.skin.winterblessed_swain.ability.q",video:"swain/ability-q",poster:"swain/ability-poster-q",icon:"swain/ability-icon-q"},w:{name:"inventory.skin.winterblessed_swain.ability.w",video:"swain/ability-w",poster:"swain/ability-poster-w",icon:"swain/ability-icon-w"},e:{name:"inventory.skin.winterblessed_swain.ability.e",video:"swain/ability-e",poster:"swain/ability-poster-e",icon:"swain/ability-icon-e"},r:{name:"inventory.skin.winterblessed_swain.ability.r",video:"swain/ability-r",poster:"swain/ability-poster-r",icon:"swain/ability-icon-r"}},warwick:{p:{name:"inventory.skin.winterblessed_warwick.ability.p",video:"warwick/ability-p",poster:"warwick/ability-poster-p",icon:"warwick/ability-icon-p"},q:{name:"inventory.skin.winterblessed_warwick.ability.q",video:"warwick/ability-q",poster:"warwick/ability-poster-q",icon:"warwick/ability-icon-q"},w:{name:"inventory.skin.winterblessed_warwick.ability.w",video:"warwick/ability-w",poster:"warwick/ability-poster-w",icon:"warwick/ability-icon-w"},e:{name:"inventory.skin.winterblessed_warwick.ability.e",video:"warwick/ability-e",poster:"warwick/ability-poster-e",icon:"warwick/ability-icon-e"},r:{name:"inventory.skin.winterblessed_warwick.ability.r",video:"warwick/ability-r",poster:"warwick/ability-poster-r",icon:"warwick/ability-icon-r"}},warwickp:{p:{name:"inventory.skin.winterblessed_warwickp.ability.p",video:"warwickp/ability-p",poster:"warwickp/ability-poster-p",icon:"warwickp/ability-icon-p"},q:{name:"inventory.skin.winterblessed_warwickp.ability.q",video:"warwickp/ability-q",poster:"warwickp/ability-poster-q",icon:"warwickp/ability-icon-q"},w:{name:"inventory.skin.winterblessed_warwickp.ability.w",video:"warwickp/ability-w",poster:"warwickp/ability-poster-w",icon:"warwickp/ability-icon-w"},e:{name:"inventory.skin.winterblessed_warwickp.ability.e",video:"warwickp/ability-e",poster:"warwickp/ability-poster-e",icon:"warwickp/ability-icon-e"},r:{name:"inventory.skin.winterblessed_warwickp.ability.r",video:"warwickp/ability-r",poster:"warwickp/ability-poster-r",icon:"warwickp/ability-icon-r"}},zilean:{p:{name:"inventory.skin.winterblessed_zilean.ability.p",video:"zilean/ability-p",poster:"zilean/ability-poster-p",icon:"zilean/ability-icon-p"},q:{name:"inventory.skin.winterblessed_zilean.ability.q",video:"zilean/ability-q",poster:"zilean/ability-poster-q",icon:"zilean/ability-icon-q"},w:{name:"inventory.skin.winterblessed_zilean.ability.w",video:"zilean/ability-w",poster:"zilean/ability-poster-w",icon:"zilean/ability-icon-w"},e:{name:"inventory.skin.winterblessed_zilean.ability.e",video:"zilean/ability-e",poster:"zilean/ability-poster-e",icon:"zilean/ability-icon-e"},r:{name:"inventory.skin.winterblessed_zilean.ability.r",video:"zilean/ability-r",poster:"zilean/ability-poster-r",icon:"zilean/ability-icon-r"}},zoe:{p:{name:"inventory.skin.winterblessed_zoe.ability.p",video:"zoe/ability-p",poster:"zoe/ability-poster-p",icon:"zoe/ability-icon-p"},q:{name:"inventory.skin.winterblessed_zoe.ability.q",video:"zoe/ability-q",poster:"zoe/ability-poster-q",icon:"zoe/ability-icon-q"},w:{name:"inventory.skin.winterblessed_zoe.ability.w",video:"zoe/ability-w",poster:"zoe/ability-poster-w",icon:"zoe/ability-icon-w"},e:{name:"inventory.skin.winterblessed_zoe.ability.e",video:"zoe/ability-e",poster:"zoe/ability-poster-e",icon:"zoe/ability-icon-e"},r:{name:"inventory.skin.winterblessed_zoe.ability.r",video:"zoe/ability-r",poster:"zoe/ability-poster-r",icon:"zoe/ability-icon-r"}}},L=function(e){f()(n,e);var t=k(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).hotkeyIndex=1,e.pauseHotkeyRotationByTrigger={video:!1,p:!1,q:!1,w:!1,e:!1,r:!1},e}return c()(n,[{key:"mounted",value:function(){var e=this;this.$watch((function(){return e.$embedState.skin}),(function(t){e.hotkeyIndex=1,e.$eagerVideoLoader.append(["ability-w","ability-e","ability-r","ability-p"].map((function(video){return e.$video("".concat(t,"/").concat(video))})))}))}},{key:"configByHotkey",get:function(){return O[this.$embedState.skin]}},{key:"currentHotkey",get:function(){return x.a[this.hotkeyIndex]}},{key:"playNextHotkey",value:function(){this.hotkeyIndex=this.hotkeyIndex>=x.a.length-1?0:this.hotkeyIndex+1}},{key:"isVideoLooping",get:function(){return this.$hubIs.visible&&(this.pauseHotkeyRotationByTrigger.video||this.pauseHotkeyRotationByTrigger[this.currentHotkey])}}]),n}(j.h),P=L=_([j.a],L),M=n(9),component=Object(M.a)(P,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{attrs:{"data-ping-meta":"position=Abilities Showcase"}},[n("div",{staticClass:"relative mb-[20px] h-[280px] w-[497px]",on:{mouseenter:function(t){e.pauseHotkeyRotationByTrigger.video=!0},mouseleave:function(t){e.pauseHotkeyRotationByTrigger.video=!1}}},[n("transition",{attrs:{mode:"in-out",duration:500}},[n("div",{key:e.configByHotkey[e.currentHotkey].video,staticClass:"tl absolute"},[n("ability-video",{attrs:{video:e.configByHotkey[e.currentHotkey].video,poster:e.configByHotkey[e.currentHotkey].poster,loop:e.isVideoLooping,"data-ping-meta":"position=Ability Video - "+e.$embedState.skin+" - "+e.currentHotkey},on:{"video-ended":e.playNextHotkey}})],1)])],1),e._v(" "),n("div",{staticClass:"flex justify-between"},[n("div",{staticClass:"flex flex-1 items-center space-x-[10px]"},[n("div",{staticClass:"flex h-[33px] w-[33px] items-center justify-center border-[2px] border-gray-5B5A56 bg-gray-5B5A56/25 text-[16px] text-gray-A09B8C font-beaufort-bold",domProps:{innerHTML:e._s(e.$t("labels.ability."+e.currentHotkey))}}),e._v(" "),n("div",{staticClass:"flex-1 text-[14px] text-gold-E5CF9B font-beaufort-bold",domProps:{innerHTML:e._s(e.$t(e.configByHotkey[e.currentHotkey].name))}})]),e._v(" "),n("div",{staticClass:"-mr-[5px] flex items-center space-x-[8px]"},e._l(e.configByHotkey,(function(t,o,r){var l=t.name,c=t.icon;return n("div",{staticClass:"flex items-center"},[n("ping-impression",{attrs:{meta:{interactiveContentId:"Ability Icon - "+e.$embedState.skin+" - "+o,interactionType:"button",buttonType:"showAbility"}}},[n("ability-icon",{attrs:{name:e.$t(l),image:c,active:e.currentHotkey===o},on:{click:function(t){e.hotkeyIndex=r},mouseenter:function(t){e.pauseHotkeyRotationByTrigger[o]=!0},mouseleave:function(t){e.pauseHotkeyRotationByTrigger[o]=!1}}})],1),e._v(" "),0===r?n("div",{staticClass:"ml-[10px] mr-[2px] h-[33px] w-[2px] bg-white"}):e._e()],1)})),0)])])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return c()(this,n),t.apply(this,arguments)}return r()(n)}(j.h);k([Object(j.e)({type:String,required:!0})],_.prototype,"name",void 0),k([Object(j.e)({type:String,required:!0})],_.prototype,"image",void 0),k([Object(j.e)(Boolean)],_.prototype,"active",void 0);var O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",e._g({staticClass:"group relative flex w-[40px] origin-center cursor-pointer justify-center bg-cover transition",class:{"scale-[0.85]":!e.active},style:{backgroundImage:e.$bgImage(e.image)},on:{click:function(t){return e.$playAudioAsset("icon-click")}}},e.$listeners),[n("div",{staticClass:"spacer-1/1"}),e._v(" "),n("div",{staticClass:"absolute inset-0 border border-brown-463714 bg-black/50 transition-opacity",class:{"opacity-0":e.active}}),e._v(" "),n("div",{staticClass:"absolute inset-0 border-[2px] border-gold-C8AA6E shadow-inset-black transition-opacity",class:{"opacity-0":!e.active}}),e._v(" "),n("div",{staticClass:"pointer-events-none absolute bottom-full opacity-0 transition-opacity group-hover:opacity-100"},[n("tooltip",{attrs:{label:e.name,caret:"b","no-wrap":""}})],1)])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).clickedToPause=!1,e}return c()(n,[{key:"mounted",value:function(){var e=this,t=[];this.$watch((function(){return e.key}),(function(){t.forEach((function(e){return e()})),t.length=0,t.push(e.$watch((function(){return e.volume}),(function(t){e.videoEl.volume=t}),{immediate:!0}))}),{immediate:!0}),this.$watch((function(){return e.paused}),(function(t){t?e.videoEl.pause():e.videoEl.play()}),{immediate:!0})}},{key:"key",get:function(){return"".concat(this.autoplay)}},{key:"autoplay",get:function(){return this.$hubIs.visible&&!this.$hubIs.blurred&&!this.paused}},{key:"volume",get:function(){var e;return((null===(e=this.$qaState)||void 0===e?void 0:e.abilityVideoVolume)||35)/100}},{key:"pausedFromState",get:function(){return this.$embedState.showContentDrawer||this.$hubIs.blurred}},{key:"paused",get:function(){return this.clickedToPause||this.pausedFromState}}]),n}(j.h);k([Object(j.e)({type:String,required:!0})],_.prototype,"video",void 0),k([Object(j.e)({type:String,required:!0})],_.prototype,"poster",void 0),k([Object(j.e)(Boolean)],_.prototype,"loop",void 0),k([Object(j.g)()],_.prototype,"videoEl",void 0);var O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"group relative h-[280px] w-[497px]"},[n("video",e._b({ref:"videoEl",attrs:{src:e.$video(e.video),poster:e.$image(e.poster),playsinline:"",preload:"auto"},domProps:{muted:!(e.$embedState.userHasClicked&&e.$hubIs.hasLcuAmbientSfx&&e.$hubIs.wantsAmbientAudio&&e.$hubIs.visible)},on:{ended:function(t){return e.$emit("video-ended")}}},"video",{autoplay:e.autoplay,key:e.key,loop:e.loop},!1)),e._v(" "),n("div",{staticClass:"br absolute m-[15px]"},[n("ping-impression",{attrs:{meta:{interactiveContentId:e.paused?"Play Button":"Pause Button",interactionType:"button",buttonType:e.paused?"play":"pause"}}},[n("video-player-button",{attrs:{pause:!e.paused},on:{click:function(t){e.$playAudioAsset("icon-click"),e.clickedToPause=!e.clickedToPause}}})],1)],1),e._v(" "),n("inline-svg",{staticClass:"pointer-events-none absolute -top-[9px] -left-[8px]",attrs:{image:"framing-ability-video","half-size":""}})],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(52),n(0)),x=n(53),k=n(398);function _(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var O=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},L=function(e){f()(n,e);var t=_(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).nextItemQueuedAt=null,e.nextItemQueuedRemainingTime=e.duration,e}return c()(n,[{key:"animationDuration",get:function(){return"".concat(this.duration,"ms")}},{key:"playing",get:function(){return 0===k.pausingEvents.count&&!this.disabled&&this.$hubIs.visible}},{key:"activeIndex",get:function(){return this.value},set:function(e){this.$emit("input",e)}},{key:"mounted",value:function(){var e=this;this.$watch((function(){return e.playing}),(function(t){t?e.queueNextItem():e.nextItemCancel&&(e.nextItemCancel(),e.nextItemQueuedRemainingTime=Math.max(0,e.nextItemQueuedRemainingTime-(Date.now().valueOf()-e.nextItemQueuedAt)))}),{immediate:!0})}},{key:"queueNextItem",value:function(){var e,t=this;null===(e=this.nextItemCancel)||void 0===e||e.call(this),this.playing&&(this.nextItemCancel=Object(x.a)((function(){t.nextItemQueuedRemainingTime=t.duration,t.goToItem(t.activeIndex+1)}),this.nextItemQueuedRemainingTime),this.nextItemQueuedAt=Date.now().valueOf())}},{key:"goToItem",value:function(e){var t=arguments.length>1&&void 0!==arguments[1]&&arguments[1];t&&(this.nextItemQueuedRemainingTime=this.duration),(e<0||e>=this.maxValue)&&(e=0),this.activeIndex=e,this.queueNextItem()}}]),n}(j.h);O([Object(j.e)({type:Number,default:5e3})],L.prototype,"duration",void 0),O([Object(j.e)({type:Number,default:0})],L.prototype,"value",void 0),O([Object(j.e)({type:Number,required:!0})],L.prototype,"maxValue",void 0),O([Object(j.e)(Boolean)],L.prototype,"disabled",void 0);var P=L=O([j.a],L),M=n(9),component=Object(M.a)(P,(function(){var e=this,t=e.$createElement;return(e._self._c||t)("span",[e._t("default",null,null,{animationDuration:e.animationDuration,playing:e.playing})],2)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"state",get:function(){return this.$hubIs.hasLcuAmbientSfx?this.$hubIs.wantsAmbientAudio?"audio-on":"audio-off":"client-audio-off"}},{key:"tooltip",get:function(){return this.$hubIs.hasLcuAmbientSfx?this.$hubIs.wantsAmbientAudio?this.$t("tooltip.audio_on"):this.$t("tooltip.audio_off"):this.$t("tooltip.client_audio_off")}},{key:"click",value:function(){this.$hubIs.hasLcuAmbientSfx?this.$hubIs.wantsAmbientAudio=!this.$hubIs.wantsAmbientAudio:this.$rClientAudio.openSoundSettings()}}]),n}(j.h),O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ping-impression",{attrs:{meta:{interactiveContentId:"Sound Toggle Button",buttonType:e.$hubIs.hasLcuAmbientSfx?e.$hubIs.wantsAmbientAudio?"toggleOff":"toggleOn":"openSettings",position:"Global Controls"}}},[n("button-global-control",e._g(e._b({attrs:{icon:e.state},on:{mouseenter:function(t){e.$embedState.setTooltip((function(){return e.tooltip}))},mouseleave:function(t){return e.$embedState.setTooltip()},click:e.click}},"button-global-control",e.$attrs,!1),e.$listeners))],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"classRounded",get:function(){return this.withFlatBottom?"rounded-t-[16px]":"rounded-[16px]"}},{key:"onMouseEnter",value:function(){this.hoverAsset&&this.$playAudioAsset(this.hoverAsset),this.vfxMouseEnter&&this.vfxMouseEnter.play()}},{key:"onClick",value:function(){this.clickAsset&&this.$playAudioAsset(this.clickAsset)}}]),n}(j.h);k([Object(j.e)(String)],_.prototype,"label",void 0),k([Object(j.e)({type:String,default:"button-hover"})],_.prototype,"hoverAsset",void 0),k([Object(j.e)({type:String,default:"button-click"})],_.prototype,"clickAsset",void 0),k([Object(j.e)(Boolean)],_.prototype,"withFlatBottom",void 0),k([Object(j.e)(Boolean)],_.prototype,"forClose",void 0),k([Object(j.g)()],_.prototype,"vfxMouseEnter",void 0);var O=_=k([j.a],_),L=(n(1320),n(9)),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",e._g({staticClass:"group relative flex cursor-pointer items-center justify-center",class:e.classRounded,on:{mouseenter:e.onMouseEnter,click:e.onClick}},e.$listeners),[n("div",{staticClass:"bg-gradient-base-brown absolute inset-x-0 top-[1px] bottom-0",class:e.classRounded}),e._v(" "),n("div",{staticClass:"absolute inset-x-0 top-px bottom-0 overflow-hidden opacity-0 transition-opacity group-hover:opacity-100",class:e.classRounded},[n("div",{staticClass:"bg-gradient-blue-aura absolute inset-0"}),e._v(" "),n("div",{staticClass:"border-gradient-blue-aura absolute inset-0 border-x-[3px] border-b-[3px] border-t-[2px] border-transparent",class:e.classRounded})]),e._v(" "),n("div",{staticClass:"border-gradient-brown clip-border-button absolute inset-0 border-[2px] border-transparent",class:e.classRounded}),e._v(" "),n("div",{staticClass:"relative flex h-[52px] items-center justify-center px-[15px] text-[14px] leading-none text-gold-F0E6D2 transition font-beaufort-heavy group-hover:text-blue-DAFBFF group-hover:drop-shadow-sm-blue",class:e.forClose?"w-[180px]":"w-[230px]"},[e._t("default",(function(){return[n("span",{staticClass:"-mb-[2px]",domProps:{innerHTML:e._s(e.label)}})]}))],2),e._v(" "),n("client-only",[n("transition",[e.$hubIs.withMotion?n("div",{staticClass:"tl pointer-events-none absolute",class:e.forClose?"-ml-[28px] -mt-[27px] w-[235px]":"-ml-[25px] -mt-[27px] w-[280px]"},[n("video",{staticClass:"tl absolute",attrs:{src:e.$video(e.forClose?"button-close-idle":"button-explore-more-idle"),preload:"auto",autoplay:"",loop:"",muted:"",playsinline:""},domProps:{muted:!0}}),e._v(" "),n("video",{ref:"vfxMouseEnter",staticClass:"tl absolute",attrs:{src:e.$video(e.forClose?"button-close-mouseenter":"button-explore-more-mouseenter"),preload:"auto",muted:"",playsinline:""},domProps:{muted:!0}})]):e._e()])],1),e._v(" "),n("inline-svg",{staticClass:"pointer-events-none absolute top-0 -mt-[11px]",attrs:{image:"button-decor-tc","half-size":""}}),e._v(" "),n("inline-svg",{staticClass:"pointer-events-none absolute bottom-0 -mb-[20px]",attrs:{image:"button-decor-bc","half-size":""}}),e._v(" "),n("inline-svg",{staticClass:"pointer-events-none absolute left-0 -ml-[13px]",attrs:{image:"button-decor-cl","half-size":""}}),e._v(" "),n("inline-svg",{staticClass:"pointer-events-none absolute right-0 -mr-[13px] scale-x-flip",attrs:{image:"button-decor-cl","half-size":""}})],1)}),[],!1,null,"703cd54c",null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return c()(this,n),t.apply(this,arguments)}return r()(n)}(j.h);k([Object(j.e)(String)],_.prototype,"label",void 0);var O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",e._g({staticClass:"group relative cursor-pointer rounded-full"},e.$listeners),[e._m(0),e._v(" "),e._m(1),e._v(" "),n("div",{staticClass:"relative px-[16px] py-[6px] text-[12px] text-gold-F0E6D2 transition font-beaufort-heavy group-hover:text-blue-DAFBFF group-hover:drop-shadow-sm-blue"},[e._t("default",(function(){return[n("span",{domProps:{innerHTML:e._s(e.label)}})]}))],2)])}),[function(){var e=this.$createElement,t=this._self._c||e;return t("div",{staticClass:"absolute inset-0 rounded-full border border-gold-C3A064 bg-blue-010A13"},[t("div",{staticClass:"absolute inset-0 bg-gradient-default-button-glow"})])},function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"opacity-0 transition-opacity group-hover:opacity-100"},[n("div",{staticClass:"bg-gradient-blue-aura absolute inset-0 rounded-full drop-shadow-sm-black"}),e._v(" "),n("div",{staticClass:"border-gradient-blue-aura absolute inset-0 rounded-full border-[2px] border-transparent"})])}],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"onMouseEnter",value:function(){this.$playAudioAsset("button-hover"),this.vfxMouseEnter&&this.vfxMouseEnter.play()}},{key:"onClick",value:function(){this.$playAudioAsset("button-click"),this.$rClientEventShop.open()}}]),n}(j.h);k([Object(j.g)()],_.prototype,"vfxMouseEnter",void 0);var O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ping-impression",{attrs:{meta:{interactiveContentId:"Event Shop Button",interactionType:"button",buttonType:"openEventShop"}}},[n("div",{staticClass:"group relative flex h-[52px] w-[78px] cursor-pointer justify-center rounded-[18px]",on:{mouseenter:e.onMouseEnter,click:e.onClick}},[n("div",{staticClass:"pointer-events-none absolute top-0 -left-[2px]"},[n("inline-svg",{attrs:{image:"button-event-shop","half-size":""}}),e._v(" "),n("inline-svg",{staticClass:"tl absolute opacity-0 transition-opacity group-hover:opacity-100",attrs:{image:"button-event-shop-hover","half-size":""}})],1),e._v(" "),n("client-only",[n("transition",[e.$hubIs.withMotion?n("div",{staticClass:"tl pointer-events-none absolute -ml-[25px] -mt-[31px] w-[135px]"},[n("video",{staticClass:"tl absolute",attrs:{src:e.$video("button-event-shop-idle"),preload:"auto",autoplay:"",loop:"",muted:"",playsinline:""},domProps:{muted:!0}}),e._v(" "),n("video",{ref:"vfxMouseEnter",staticClass:"tl absolute",attrs:{src:e.$video("button-event-shop-mouseenter"),preload:"auto",muted:"",playsinline:""},domProps:{muted:!0}})]):e._e()])],1),e._v(" "),n("transition",[e.$rClientEventShop.showPip?n("div",{staticClass:"sprite-pip pointer-events-none absolute -bottom-[12px] left-[27px]"}):e._e()]),e._v(" "),n("div",{staticClass:"pointer-events-none absolute bottom-full z-2 opacity-0 transition-opacity group-hover:opacity-100"},[n("tooltip",{attrs:{label:e.$t("overview.event_shop.tooltip"),caret:"b","no-wrap":""}})],1)],1)])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"click",value:function(){this.$linkOut(this.$hubConfig.eventFaqUrl||this.$locale.vars.eventFaqUrl)}}]),n}(j.h),O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ping-impression",{attrs:{meta:{interactiveContentId:"Event FAQ Button",buttonType:"weblink",position:"Global Controls"}}},[n("button-global-control",e._g(e._b({attrs:{icon:"faq"},on:{mouseenter:function(t){e.$embedState.setTooltip(e.$t("tooltip.event_faq"))},mouseleave:function(t){return e.$embedState.setTooltip()},click:e.click}},"button-global-control",e.$attrs,!1),e.$listeners))],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(77),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=["motion-on","motion-off","audio-on","audio-off","faq"],O=function(e){f()(n,e);var t=x(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"mouseenter",value:function(){!this.noSfx&&this.hoverAsset&&this.$playAudioAsset(this.hoverAsset)}},{key:"click",value:function(){!this.noSfx&&this.clickAsset&&this.$playAudioAsset(this.clickAsset)}}]),n}(j.h);k([Object(j.e)({type:String,default:"close",validator:function(e){return _.includes(e)}})],O.prototype,"icon",void 0),k([Object(j.e)({type:[String,Array],default:null})],O.prototype,"hoverAsset",void 0),k([Object(j.e)({type:[String,Array],default:"icon-click"})],O.prototype,"clickAsset",void 0),k([Object(j.e)(Boolean)],O.prototype,"noSfx",void 0);var L=O=k([j.a],O),P=n(9),component=Object(P.a)(L,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",e._g({staticClass:"group relative flex cursor-pointer items-center justify-center rounded-[8px] p-[17px] transition",attrs:{"data-ping-meta":"interactionType=button"},on:{click:e.click,mouseenter:e.mouseenter}},e.$listeners),[n("div",{staticClass:"bg-gradient-base-brown absolute inset-0 rounded-[8px]"}),e._v(" "),n("div",{staticClass:"border-gradient-brown absolute inset-0 rounded-[8px] border border-transparent"}),e._v(" "),e._m(0),e._v(" "),n("transition",[n("inline-svg",{key:e.icon,staticClass:"absolute text-gold-CDBE91 transition group-hover:text-blue-DAFBFF group-hover:drop-shadow-sm-blue",attrs:{image:"icon-"+e.icon,"half-size":""}})],1)],1)}),[function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"opacity-0 transition-opacity group-hover:opacity-100"},[n("div",{staticClass:"bg-gradient-blue-aura absolute inset-0 rounded-[8px] drop-shadow-sm-black"}),e._v(" "),n("div",{staticClass:"border-gradient-blue-aura absolute inset-0 rounded-[8px] border-[2px] border-transparent"})])}],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"tooltip",get:function(){return this.$hubIs.wantsMotion?this.$t("tooltip.motion_on"):this.$t("tooltip.motion_off")}}]),n}(j.h),O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ping-impression",{attrs:{meta:{interactiveContentId:"Motion Toggle Button",buttonType:e.$hubIs.wantsMotion?"toggleOff":"toggleOn",position:"Global Controls"}}},[n("button-global-control",e._g(e._b({attrs:{icon:e.$hubIs.wantsMotion?"motion-on":"motion-off"},on:{mouseenter:function(t){e.$embedState.setTooltip((function(){return e.tooltip}))},mouseleave:function(t){return e.$embedState.setTooltip()},click:function(t){e.$hubIs.wantsMotion=!e.$hubIs.wantsMotion}}},"button-global-control",e.$attrs,!1),e.$listeners))],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return c()(this,n),t.apply(this,arguments)}return r()(n)}(j.h);k([Object(j.e)({type:String,required:!0})],_.prototype,"image",void 0),k([Object(j.e)({type:String,required:!0})],_.prototype,"copy",void 0),k([Object(j.e)(Boolean)],_.prototype,"external",void 0),k([Object(j.e)(Boolean)],_.prototype,"showVideoButton",void 0);var O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",e._g({staticClass:"group relative h-[340px] w-[604px] cursor-pointer",on:{mouseenter:function(t){return e.$playAudioAsset("button-hover")},click:function(t){return e.$playAudioAsset("button-click")}}},e.$listeners),[n("div",{staticClass:"relative flex h-full w-full items-end bg-cover",style:{backgroundImage:e.$bgImage(e.image)}},[n("div",{staticClass:"absolute inset-0 bg-gradient-card-overlay transition-opacity group-hover:opacity-80"}),e._v(" "),n("div",{staticClass:"absolute inset-0 bg-gradient-card-overlay-hover opacity-0 transition-opacity group-hover:opacity-80"}),e._v(" "),n("div",{staticClass:"relative flex max-w-3/4 items-center p-[25px]"},[e.showVideoButton?n("div",{staticClass:"mr-[20px] flex items-center justify-center p-[22px]"},[n("inline-svg",{staticClass:"absolute",attrs:{image:"decorated-video-player-button","half-size":""}})],1):e._e(),e._v(" "),n("div",{staticClass:"flex-1 text-[18px] leading-none text-gold-E5CF9B transition font-beaufort-heavy group-hover:text-blue-DAFBFF group-hover:drop-shadow-sm-blue"},[e._v("\n\t\t\t\t"+e._s(e.copy)+"\n\n\t\t\t\t"),e.external?n("inline-svg",{staticClass:"-mb-px ml-px inline-block w-[11px]",attrs:{image:"icon-external-arrow","full-size":""}}):e._e()],1)])]),e._v(" "),n("inline-svg",{staticClass:"pointer-events-none absolute -bottom-[8px] -left-[8px]",attrs:{image:"framing-t1","half-size":""}})],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return c()(this,n),t.apply(this,arguments)}return r()(n)}(j.h);k([Object(j.e)({type:String,required:!0})],_.prototype,"image",void 0),k([Object(j.e)({type:String,required:!0})],_.prototype,"copy",void 0),k([Object(j.e)(Boolean)],_.prototype,"external",void 0);var O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",e._g({staticClass:"group relative h-[146px] w-[261px] cursor-pointer",on:{mouseenter:function(t){return e.$playAudioAsset("button-hover")},click:function(t){return e.$playAudioAsset("button-click")}}},e.$listeners),[n("div",{staticClass:"relative flex h-full w-full items-end overflow-hidden rounded-[20px] bg-cover",style:{backgroundImage:e.$bgImage(e.image)}},[n("div",{staticClass:"absolute inset-0 bg-gradient-card-overlay transition-opacity group-hover:opacity-80"}),e._v(" "),n("div",{staticClass:"absolute inset-0 bg-gradient-card-overlay-hover opacity-0 transition-opacity group-hover:opacity-80"}),e._v(" "),n("div",{staticClass:"relative flex max-w-4/5 items-center py-[12px] px-[20px]"},[n("div",{staticClass:"flex-1 text-[12px] leading-[1.1] text-gold-E5CF9B transition font-beaufort-heavy group-hover:text-blue-DAFBFF group-hover:drop-shadow-sm-blue"},[e._v("\n\t\t\t\t"+e._s(e.copy)+"\n\n\t\t\t\t"),e.external?n("inline-svg",{staticClass:"-mb-px inline-block w-[7px]",attrs:{image:"icon-external-arrow","full-size":""}}):e._e()],1)])]),e._v(" "),n("inline-svg",{staticClass:"pointer-events-none absolute bottom-0 left-0",attrs:{image:"framing-t2","half-size":""}})],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(77),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=["left","right"],O=0,L=function(e){f()(n,e);var t=x(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).id="carousel-arrow-".concat(O++),e}return r()(n)}(j.h);k([Object(j.e)({type:String,default:"left",validator:function(e){return _.includes(e)}})],L.prototype,"direction",void 0);var P=L=k([j.a],L),M=(n(1321),n(9)),component=Object(M.a)(P,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("ping-impression",{attrs:{meta:{interactionType:"button",interactiveContentId:"Carousel "+("left"===e.direction?"Left":"Right")+" Button",buttonType:"switchCarouselSlide"}}},[n("div",e._g({staticClass:"group relative flex cursor-pointer items-center",class:{"scale-x-flip":"right"===e.direction}},e.$listeners),[n("div",{staticClass:"bg-gradient-carousel-arrow-hover pointer-events-none absolute left-[5px] h-[63px] w-[30px] rounded-l-[15px] opacity-0 transition-opacity group-hover:opacity-100"}),e._v(" "),n("inline-svg",{staticClass:"relative transition group-hover:-translate-x-[5px]",attrs:{image:"carousel-arrow-l","half-size":""}})],1)])}),[],!1,null,"7deccfe6",null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"isLootItem",get:function(){var e=this.item.inventory,t=e.inEventShop;return e.item&&t}},{key:"owned",get:function(){var e=this.item.inventory.item;return e&&this.$rClient.inventoryOwned(e)}}]),n}(j.h);k([Object(j.e)({type:Object,required:!0})],_.prototype,"item",void 0),k([Object(j.e)(Boolean)],_.prototype,"disabled",void 0);var O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",e._g({staticClass:"group"},e.$listeners),[n("div",{staticClass:"relative"},[n("img",{directives:[{name:"retina-src",rawName:"v-retina-src",value:e.item.skin+"/carousel-card",expression:"`${item.skin}/carousel-card`"}],staticClass:"relative"}),e._v(" "),n("transition",[e.$hubIs.withMotion?n("video",{staticClass:"tl absolute",attrs:{src:e.$video(e.item.skin+"/carousel-card"),preload:"auto",autoplay:"",loop:"",muted:"",playsinline:""},domProps:{muted:!0}}):e._e()]),e._v(" "),n("div",{staticClass:"absolute inset-0 bg-gradient-card-overlay opacity-90 transition-opacity group-hover:opacity-70"}),e._v(" "),n("div",{staticClass:"absolute inset-0 bg-gradient-card-overlay-hover opacity-0 transition-opacity group-hover:opacity-70"}),e._v(" "),n("div",{staticClass:"absolute inset-x-0 bottom-[15px] flex flex-col items-center px-[50px]"},[n("div",{staticClass:"relative mb-[8px] text-center text-[29px] leading-none text-gold-F0E6D2 font-beaufort-heavy children:text-[12px] children:tracking-widest children:text-gold-CDBE91 children:font-spiegel-bold",domProps:{innerHTML:e._s(e.$t(e.item.title))}}),e._v(" "),n("button-default",[n("div",{staticClass:"relative flex items-center justify-center"},[e.owned?n("div",{domProps:{innerHTML:e._s(e.$t("labels.owned"))}}):[n("inline-svg",{staticClass:"text-gold-rp",attrs:{image:e.isLootItem?"icon-token":"icon-rp","half-size":""}}),e._v(" "),n("div",{staticClass:"ml-[5px]",domProps:{innerHTML:e._s(e.$t(e.item.priceRP))}})]],2)])],1),e._v(" "),n("inline-svg",{staticClass:"pointer-events-none absolute -top-[10px] -left-[8px]",attrs:{image:"framing-carousel-card","half-size":""}})],1)])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return c()(this,n),t.apply(this,arguments)}return r()(n)}(j.h);k([Object(j.e)({type:String,required:!0})],_.prototype,"skin",void 0),k([Object(j.e)(Boolean)],_.prototype,"active",void 0);var O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"group relative flex items-center"},[n("div",e._g({staticClass:"pointer-events-auto relative cursor-pointer overflow-hidden rounded-[12px] border border-gold-C3A064 transition-all",class:e.active?"h-[69px] w-[124px]":"h-[52px] w-[93px]"},e.$listeners),[n("div",{staticClass:"absolute inset-0 bg-cover",style:{backgroundImage:e.$bgImage(e.skin+"/carousel-thumbnail-active")}}),e._v(" "),n("div",{staticClass:"absolute inset-0 bg-cover transition-opacity",class:{"opacity-0":e.active},style:{backgroundImage:e.$bgImage(e.skin+"/carousel-thumbnail")}})]),e._v(" "),n("div",{staticClass:"pointer-events-none absolute inset-0 rounded-[12px] border-[2px] border-gold-C3A064 transition-opacity group-hover:opacity-100",class:e.active?"opacity-100":"opacity-0"}),e._v(" "),n("transition",[e.active?n("div",{staticClass:"pointer-events-none flex items-center"},[n("inline-svg",{staticClass:"absolute -left-[5px]",attrs:{image:"thumbnail-decor-diamond","half-size":""}}),e._v(" "),n("inline-svg",{staticClass:"absolute -right-[5px]",attrs:{image:"thumbnail-decor-diamond","half-size":""}})],1):e._e()])],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return c()(this,n),t.apply(this,arguments)}return r()(n)}(j.h),O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"relative flex flex-col items-center",attrs:{"data-ping-meta":"pageSection=content-drawer"}},[n("div",{staticClass:"relative h-[442px] w-[1055px]"},[n("div",{staticClass:"absolute inset-0 rounded-t-[20px] border-x-[2px] border-t-[2px] border-gold-BCA46C bg-cover",style:{backgroundImage:e.$bgImage("bg-content-drawer")}}),e._v(" "),n("div",{staticClass:"flex h-full items-center justify-center"},[n("div",{staticClass:"relative"},[n("ping-impression",{attrs:{meta:{interactiveContentId:"Event Trailer",interactionType:"button",buttonType:"weblink",position:"T1"}}},[n("card-primary",{attrs:{image:"card-event-trailer",copy:e.$t("content_drawer.event_trailer.title"),"show-video-button":"",external:""},on:{click:function(t){return e.$linkOut(e.$hubConfig.eventTrailerUrl||e.$locale.vars.eventTrailerUrl)}}})],1)],1),e._v(" "),n("inline-svg",{staticClass:"relative mx-[44px]",attrs:{image:"divider","half-size":""}}),e._v(" "),n("div",{staticClass:"relative space-y-[47px]"},[n("div",{staticClass:"relative"},[n("ping-impression",{attrs:{meta:{interactiveContentId:"Event Theme",interactionType:"button",buttonType:"weblink",position:"T2"}}},[n("card-secondary",{attrs:{image:"card-event-theme",copy:e.$t("content_drawer.event_theme.title"),external:""},on:{click:function(t){return e.$linkOut(e.$hubConfig.eventThemeUrl||e.$locale.vars.eventThemeUrl)}}})],1)],1),e._v(" "),n("div",{staticClass:"relative"},[n("ping-impression",{attrs:{meta:{interactiveContentId:"Event Article",interactionType:"button",buttonType:"weblink",position:"T2"}}},[n("card-secondary",{attrs:{image:"card-event-article",copy:e.$t("content_drawer.event_article.title"),external:""},on:{click:function(t){return e.$linkOut(e.$hubConfig.eventArticleUrl||e.$locale.vars.eventArticleUrl)}}})],1)],1)])],1)]),e._v(" "),n("div",{staticClass:"absolute bottom-full ml-px -mb-[2px]"},[n("button-decorated",{attrs:{label:e.$t("content_drawer.button"),"hover-asset":null,"click-asset":"icon-click","with-flat-bottom":"","for-close":""},on:{click:function(t){e.$embedState.showContentDrawer=!1}}})],1)])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(21),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).startedHidden=!e.value,e}return c()(n,[{key:"parsedClosePingMeta",get:function(){return Object.keys(this.closePingMeta).length?this.$ping.meta(this.closePingMeta).toObject({prefix:"meta."}):null}},{key:"close",value:function(){this.closedWithBackdrop(),this.$emit("input",void 0)}},{key:"closedWithBackdrop",value:function(){this.parsedClosePingMeta&&this.$ping.send("click",this.parsedClosePingMeta,this.backdrop)}}]),n}(j.h);k([Object(j.e)()],_.prototype,"value",void 0),k([Object(j.e)({type:Object,default:function(){return{}}})],_.prototype,"closePingMeta",void 0),k([Object(j.g)("backdrop")],_.prototype,"backdrop",void 0);var O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",[n("server-only",[e.value?n("div",{staticClass:"relative z-max"},[n("modal-ui",{attrs:{modal:{value:e.value,transition:{name:"fade-fast",appear:e.startedHidden}}},scopedSlots:e._u([{key:"backdrop",fn:function(){return[n("div",{ref:"backdrop"},[n("div",{staticClass:"fixed inset-0 bg-black/40"})])]},proxy:!0},{key:"default",fn:function(){return[e._t("default",null,null,{close:function(){return e.$emit("input",!1)}})]},proxy:!0}],null,!0)})],1):e._e()]),e._v(" "),n("client-only",[n("modal",e._g(e._b({attrs:{value:e.value,"scroll-parent-class":"pt-toolbar"},on:{input:function(t){return e.$emit("input",t)},"closed-with-backdrop":e.closedWithBackdrop},scopedSlots:e._u([{key:"backdrop",fn:function(){return[n("div",{ref:"backdrop"},[n("div",{staticClass:"fixed inset-0 bg-black/40"})])]},proxy:!0},{key:"default",fn:function(){return[n("transition-gsap",{attrs:{preload:"","gone-styles":{opacity:0,translateY:25},duration:.66,appear:e.startedHidden}},[n("div",{staticClass:"relative"},[e._t("default",null,null,{close:e.close})],2)])]},proxy:!0}],null,!0)},"modal",Object.assign({},{transition:{name:"fade-fast",appear:e.startedHidden}},e.$attrs),!1),e.$listeners))],1)],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"vignette",get:function(){switch(this.$locale.value){case"ja_JP":case"ko_KR":case"zh_CN":case"zh_TW":return"logo-vignette-sm";case"el_GR":case"ro_RO":return"logo-vignette-lg";default:return"logo-vignette-md"}}}]),n}(j.h);k([Object(j.e)(Boolean)],_.prototype,"withVignette",void 0);var O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"relative flex items-center justify-center"},[e.withVignette?n("img",{directives:[{name:"retina-src",rawName:"v-retina-src",value:e.vignette,expression:"vignette"}],staticClass:"absolute"}):e._e(),e._v(" "),n("img",{directives:[{name:"retina-src",rawName:"v-retina-src",value:"logo-wb",expression:"'logo-wb'"}],staticClass:"relative"}),e._v(" "),n("transition",[e.$hubIs.withMotion?n("video",{staticClass:"absolute w-[375px]",attrs:{src:e.$video("logo-wb"),preload:"auto",autoplay:"",loop:"",muted:"",playsinline:""},domProps:{muted:!0}}):e._e()])],1)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(27),n(82),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=0,O=function(e){f()(n,e);var t=x(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).id="progress-bar-".concat(_++),e}return c()(n,[{key:"mounted",value:function(){var e=this;this.$watch((function(){return e.paused}),(function(t){t?e.svg.pauseAnimations():e.svg.unpauseAnimations()}),{immediate:!0})}}]),n}(j.h);k([Object(j.e)({type:String,required:!0,validator:function(e){return e.match(/^[0-9]\.?[0-9]{0,}(s|ms)/i)}})],O.prototype,"duration",void 0),k([Object(j.e)(Boolean)],O.prototype,"paused",void 0),k([Object(j.g)()],O.prototype,"svg",void 0);var L=O=k([j.a],O),P=n(9),component=Object(P.a)(L,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("svg",{ref:"svg",attrs:{width:"107",height:"6",viewBox:"0 0 107 6",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("path",{attrs:{d:"M5.59438 5.2993L6.38482 5.29932L11.04 0.799317L0.939209 0.799296L5.59438 5.2993Z",fill:"url(#paint0_linear_76_3423-"+e.id+")","fill-opacity":"0.0"}},[n("animate",{attrs:{attributeName:"d",dur:e.duration,to:"M5.59438 5.29932L100.504 5.29932L105.159 0.799322L0.939209 0.799315L5.59438 5.29932Z",repeatCount:"0"}}),e._v(" "),n("animate",{attrs:{attributeName:"fill-opacity",dur:e.duration,values:"0.0; 1.0; 1.0",keyTimes:"0.0; 0.1; 1.0",repeatCount:"0"}})]),e._v(" "),n("path",{attrs:{d:"M105.154 1.29932L101.338 4.79932L6.0411 4.79931L2.22456 1.29931L105.154 1.29932Z",stroke:"#9CE5FF"}}),e._v(" "),n("defs",[n("linearGradient",{attrs:{id:"paint0_linear_76_3423-"+e.id,x1:"0%",y1:"0",x2:"100%",y2:"0",gradientUnits:"objectBoundingBox"}},[n("stop",{attrs:{"stop-color":"#213872"}}),e._v(" "),n("stop",{attrs:{offset:"0.584073","stop-color":"#5AC7EE"}})],1)],1)])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=function(e){f()(n,e);var t=x(n);function n(){return c()(this,n),t.apply(this,arguments)}return r()(n)}(j.h),O=_=k([j.a],_),L=n(9),component=Object(L.a)(O,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[n("div",{staticClass:"font-spiegel-bold"},[e._v("ABILITY VIDEO VOLUME")]),e._v(" "),n("div",{staticClass:"flex items-center"},[n("input",{directives:[{name:"model",rawName:"v-model",value:e.$qaState.abilityVideoVolume,expression:"$qaState.abilityVideoVolume"}],staticClass:"flex-1",attrs:{type:"range",min:"0",max:"100"},domProps:{value:e.$qaState.abilityVideoVolume},on:{__r:function(t){return e.$set(e.$qaState,"abilityVideoVolume",t.target.value)}}}),e._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:e.$qaState.abilityVideoVolume,expression:"$qaState.abilityVideoVolume"}],staticClass:"ml-[20px] text-[13px] text-black",attrs:{type:"number",min:"0",max:"100"},domProps:{value:e.$qaState.abilityVideoVolume},on:{input:function(t){t.target.composing||e.$set(e.$qaState,"abilityVideoVolume",t.target.value)}}})])])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0)),x=n(30);function k(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var _=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},O=function(e){f()(n,e);var t=k(n);function n(){var e;return r()(this,n),(e=t.apply(this,arguments)).message="",e.payload="",e.error=null,e}return c()(n,[{key:"submit",value:function(){this.error=null;try{if(this.payload){var e=JSON.parse(this.payload);x.inject.trigger(this.message,this.message,e)}}catch(e){this.error=e}}}]),n}(j.h),L=O=_([j.a],O),P=n(9),component=Object(P.a)(L,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[n("div",{staticClass:"font-spiegel-bold"},[e._v("MOCK RCLIENT RESPONSE")]),e._v(" "),n("div",{staticClass:"mb-[5px]"},[n("div",[e._v("Message")]),e._v(" "),n("input",{directives:[{name:"model",rawName:"v-model",value:e.message,expression:"message"}],staticClass:"w-full text-black",attrs:{type:"text"},domProps:{value:e.message},on:{input:function(t){t.target.composing||(e.message=t.target.value)}}})]),e._v(" "),n("div",{staticClass:"mb-[5px]"},[n("div",[e._v("Payload (JSON)")]),e._v(" "),n("textarea",{directives:[{name:"model",rawName:"v-model",value:e.payload,expression:"payload"}],staticClass:"w-full text-black",attrs:{type:"textarea"},domProps:{value:e.payload},on:{input:function(t){t.target.composing||(e.payload=t.target.value)}}}),e._v(" "),e.error?n("div",{staticClass:"text-[11px] text-red-600",domProps:{innerHTML:e._s(e.error)}}):e._e()]),e._v(" "),n("button",{on:{"qa-click":e.submit}},[e._v("RESPOND")])])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);n(15);var o=n(3),r=n.n(o),l=n(4),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(77),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=["t","r","b","l"],O=function(e){f()(n,e);var t=x(n);function n(){return r()(this,n),t.apply(this,arguments)}return c()(n,[{key:"positionClass",get:function(){return{t:"bottom-full -mb-[6px]",l:"right-full -mt-[6px]",b:"top-full -mt-[6px]",r:"left-full -ml-[6px]"}[this.caret]}}]),n}(j.h);k([Object(j.e)(String)],O.prototype,"label",void 0),k([Object(j.e)(Boolean)],O.prototype,"noWrap",void 0),k([Object(j.e)({type:String,default:"r",validator:function(e){return _.includes(e)}})],O.prototype,"caret",void 0);var L=O=k([j.a],O),P=n(9),component=Object(P.a)(L,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"relative flex items-center justify-center"},[n("div",{staticClass:"absolute origin-center rotate-45 border border-brown-332F28 bg-blue-081921 p-[4px]",class:e.positionClass}),e._v(" "),n("div",{staticClass:"relative rounded-[8px] border border-brown-332F28 bg-blue-081921 px-[15px] py-[10px] text-[13px] text-gold-F0E6D2 font-beaufort-heavy"},[n("div",{staticClass:"absolute inset-0 bg-gradient-default-button-glow"}),e._v(" "),n("div",{staticClass:"relative text-center",class:{"whitespace-nowrap":e.noWrap}},[e._t("default",(function(){return[n("span",{domProps:{innerHTML:e._s(e.label)}})]}))],2)])])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(4),r=n.n(o),l=n(3),c=n.n(l),d=n(5),f=n.n(d),m=n(7),h=n.n(m),v=n(1),y=n.n(v),C=n(2),w=n.n(C),j=(n(12),n(8),n(15),n(0));function x(e){var t=function(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],(function(){}))),!0}catch(e){return!1}}();return function(){var n,o=y()(e);if(t){var r=y()(this).constructor;n=Reflect.construct(o,arguments,r)}else n=o.apply(this,arguments);return h()(this,n)}}var k=function(e,t,n,desc){var o,r=arguments.length,l=r<3?t:null===desc?desc=Object.getOwnPropertyDescriptor(t,n):desc;if("object"===("undefined"==typeof Reflect?"undefined":w()(Reflect))&&"function"==typeof Reflect.decorate)l=Reflect.decorate(e,t,n,desc);else for(var i=e.length-1;i>=0;i--)(o=e[i])&&(l=(r<3?o(l):r>3?o(t,n,l):o(t,n))||l);return r>3&&l&&Object.defineProperty(t,n,l),l},_=0,O=function(e){f()(n,e);var t=x(n);function n(){var e;return c()(this,n),(e=t.apply(this,arguments)).id="video-player-button-".concat(_++),e}return r()(n)}(j.h);k([Object(j.e)(Boolean)],O.prototype,"pause",void 0);var L=O=k([j.a],O),P=n(9),component=Object(P.a)(L,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",e._g({staticClass:"group/vpb pointer-events-none cursor-pointer"},e.$listeners),[n("svg",{attrs:{width:"46",height:"46",viewBox:"0 0 46 46",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("g",[n("circle",{attrs:{cx:"23",cy:"23",r:"21.0825",fill:"#010A13"}}),e._v(" "),n("circle",{attrs:{cx:"23",cy:"23",r:"21.0825",fill:"url(#paint4_radial_3662_225-"+e.id+")","fill-opacity":"0.2"}}),e._v(" "),n("circle",{attrs:{cx:"23",cy:"23",r:"21.0825",stroke:"#C3A064","stroke-width":"1.835"}})]),e._v(" "),n("g",{staticClass:"group-hover/vpb:opacity-100 opacity-0 transition-opacity"},[n("circle",{staticClass:"pointer-events-auto",attrs:{cx:"23",cy:"23",r:"20.5",fill:"#45DAFF"}}),e._v(" "),n("circle",{attrs:{cx:"23",cy:"23",r:"20.5",fill:"url(#paint0_linear_3662_225-"+e.id+")","fill-opacity":"0.2"}}),e._v(" "),n("circle",{staticClass:"mix-blend-overlay",attrs:{cx:"23",cy:"23",r:"20.5",fill:"url(#paint1_linear_3662_225-"+e.id+")"}}),e._v(" "),n("circle",{attrs:{cx:"23",cy:"23",r:"20.5",fill:"url(#paint2_radial_3662_225-"+e.id+")","fill-opacity":"0.5"}}),e._v(" "),n("circle",{attrs:{cx:"23",cy:"23",r:"20.5",stroke:"url(#paint3_linear_3662_225-"+e.id+")","stroke-width":"3"}})]),e._v(" "),n("path",{staticClass:"group-hover/vpb:text-blue-DAFBFF text-gold-F0E6D2 transition",class:{"opacity-0":e.pause},attrs:{d:"M19.3359 19.0414C19.3359 18.3468 20.0794 17.9055 20.6891 18.2381L27.9466 22.1967C28.5824 22.5435 28.5824 23.4565 27.9466 23.8033L20.6891 27.7619C20.0794 28.0945 19.3359 27.6532 19.3359 26.9586L19.3359 19.0414Z",fill:"currentColor"}}),e._v(" "),n("path",{staticClass:"group-hover/vpb:text-blue-DAFBFF text-gold-F0E6D2 transition",class:{"opacity-0":!e.pause},attrs:{d:"M21.9547 18.4688H18.9609V27.949H21.9547V18.4688ZM26.9443 18.4688H23.9505V27.949H26.9443V18.4688Z","fill-rule":"evenodd","clip-rule":"evenodd",fill:"currentColor"}}),e._v(" "),n("defs",[n("filter",{attrs:{id:"filter0_d_3662_225-"+e.id,x:"1.33594",y:"0.75",width:"44.0938",height:"44.5",filterUnits:"userSpaceOnUse","color-interpolation-filters":"sRGB"}},[n("feFlood",{attrs:{"flood-opacity":"0",result:"BackgroundImageFix"}}),e._v(" "),n("feColorMatrix",{attrs:{in:"SourceAlpha",type:"matrix",values:"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0",result:"hardAlpha"}}),e._v(" "),n("feOffset"),e._v(" "),n("feGaussianBlur",{attrs:{stdDeviation:"9"}}),e._v(" "),n("feComposite",{attrs:{in2:"hardAlpha",operator:"out"}}),e._v(" "),n("feColorMatrix",{attrs:{type:"matrix",values:"0 0 0 0 0.816667 0 0 0 0 0.98018 0 0 0 0 1 0 0 0 0.75 0"}}),e._v(" "),n("feBlend",{attrs:{mode:"normal",in2:"BackgroundImageFix",result:"effect1_dropShadow_3662_225"}}),e._v(" "),n("feBlend",{attrs:{mode:"normal",in:"SourceGraphic",in2:"effect1_dropShadow_3662_225",result:"shape"}})],1),e._v(" "),n("linearGradient",{attrs:{id:"paint0_linear_3662_225-"+e.id,x1:"23",y1:"1",x2:"23",y2:"45",gradientUnits:"userSpaceOnUse"}},[n("stop",{attrs:{"stop-color":"#E1A7F5"}}),e._v(" "),n("stop",{attrs:{offset:"1","stop-color":"#A9573D"}})],1),e._v(" "),n("linearGradient",{attrs:{id:"paint1_linear_3662_225-"+e.id,x1:"45",y1:"0.999975",x2:"0.389485",y2:"3.21615",gradientUnits:"userSpaceOnUse"}},[n("stop",{attrs:{offset:"0.0253117","stop-color":"#8994EA"}}),e._v(" "),n("stop",{attrs:{offset:"0.198465","stop-color":"#7A6FB4"}}),e._v(" "),n("stop",{attrs:{offset:"0.452216","stop-color":"#AE88DA"}}),e._v(" "),n("stop",{attrs:{offset:"0.723403","stop-color":"#AB62FF"}}),e._v(" "),n("stop",{attrs:{offset:"1","stop-color":"#AE88DA"}})],1),e._v(" "),n("radialGradient",{attrs:{id:"paint2_radial_3662_225-"+e.id,cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(23 45) rotate(90) scale(28.7692 17.8562)"}},[n("stop",{attrs:{"stop-color":"white"}}),e._v(" "),n("stop",{attrs:{offset:"1","stop-color":"white","stop-opacity":"0"}})],1),e._v(" "),n("linearGradient",{attrs:{id:"paint3_linear_3662_225-"+e.id,x1:"23",y1:"1",x2:"23",y2:"45",gradientUnits:"userSpaceOnUse"}},[n("stop",{attrs:{"stop-color":"#C5EEF8"}}),e._v(" "),n("stop",{attrs:{offset:"1","stop-color":"#45DAFF"}})],1),e._v(" "),n("radialGradient",{attrs:{id:"paint4_radial_3662_225-"+e.id,cx:"0",cy:"0",r:"1",gradientUnits:"userSpaceOnUse",gradientTransform:"translate(23 45) rotate(90) scale(28.7692)"}},[n("stop",{attrs:{"stop-color":"white"}}),e._v(" "),n("stop",{attrs:{offset:"1","stop-color":"white","stop-opacity":"0"}})],1),e._v(" "),n("linearGradient",{attrs:{id:"paint6_linear_3662_225-"+e.id,x1:"22.9526",y1:"18.4688",x2:"22.9526",y2:"27.949",gradientUnits:"userSpaceOnUse"}},[n("stop",{attrs:{"stop-color":"#A7F2F5"}}),e._v(" "),n("stop",{attrs:{offset:"1","stop-color":"#9DF5FB"}})],1)],1)])])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(292).a,r=n(9),component=Object(r.a)(o,(function(){var e,t=this,n=t.$createElement,o=t._self._c||n;return o("div",{staticClass:"lasso-card absolute inset-0 overflow-hidden",class:["card-tier-"+t.embedTier,(e={},e["card-type-"+t.embedType]=t.embedType,e["card-style-"+t.embedStyle]=t.embedStyle,e)],attrs:{"data-tier":t.embedTier},on:{mouseenter:function(e){t.halted=!0},mouseleave:function(e){t.halted=!1}}},[t.pingInitialized?[o("lasso-embed",{ref:"embed",staticClass:"hidden",attrs:{url:t.embedUrl}}),t._v(" "),o("div",{staticClass:"oembed-wrapper"},t._l(t.slides,(function(e,i){return o("lasso-card",{key:i,staticClass:"absolute inset-0 transition",class:{"opacity-0":null!==t.activeIndex&&t.activeIndex!==i,"z-1":t.activeIndex===i},attrs:{content:e.content,"no-inject-ctas":t.noInjectCtas,hidden:t.activeIndex!==i},on:{loaded:function(e){return t.cardLoaded(i)}},scopedSlots:t._u([{key:"play-button",fn:function(){return[t._t("play-button")]},proxy:!0}],null,!0)})})),1),t._v(" "),t.slides.length>1?o("div",{staticClass:"oembed-slider-dots absolute top-0 right-0 z-2 p-[5px]"},t._l(t.slides,(function(e,i){return o("a",{key:i,staticClass:"slider-dot inline-block bg-black",class:t.activeIndex===i&&"slider-dot--active bg-white",on:{click:function(e){t.activeIndex=i}}})})),0):t._e()]:t._e()],2)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(285).a,r=n(9),component=Object(r.a)(o,(function(){var e=this,t=e.$createElement;return(e._self._c||t)("span",[e._t("default",null,null,e.countByTimeUnit)],2)}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(287).a,r=n(9),component=Object(r.a)(o,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[n("div",{staticClass:"flex items-center justify-between"},[n("div",{staticClass:"font-spiegel-bold"},[e._v("A/B TEST GROUP")]),e._v(" "),n("div",{domProps:{innerHTML:e._s(e.$abTest.group.groupId||"(none)")}})]),e._v(" "),e.noMatchedGroup?n("div",{staticClass:"text-red-600"},[e._v("\n\t\tNOTE: No A/B group matches current selection.\n\t")]):e._e(),e._v(" "),n("div",{staticClass:"mt-[10px]"},[n("div",{staticClass:"font-spiegel-bold"},[e._v("A/B - CONTENT STRATEGY")]),e._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:e.selectedTestContentStrategy,expression:"selectedTestContentStrategy"}],staticClass:"mt-[2px] block w-full text-black",on:{change:function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){return"_value"in e?e._value:e.value}));e.selectedTestContentStrategy=t.target.multiple?n:n[0]}}},[n("option",{domProps:{value:null}},[e._v("None")]),e._v(" "),e._l(e.testOptionsContentStrategy,(function(t){var option=t[0],label=t[1];return n("option",{key:option,domProps:{value:option,textContent:e._s(label)}})}))],2)])])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(288).a,r=n(9),component=Object(r.a)(o,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",[n("div",{staticClass:"flex items-center justify-between"},[n("div",{staticClass:"font-spiegel-bold"},[e._v("\n\t\t\tHUB PHASE"+e._s(e.nowOverrideFormatted?": "+e.nowOverrideFormatted:"")+"\n\t\t")]),e._v(" "),n("button",{domProps:{innerHTML:e._s(e.viewCurrentPhase?"CLOSE":"VIEW")},on:{"qa-click":function(t){e.viewCurrentPhase=!e.viewCurrentPhase}}})]),e._v(" "),n("select",{directives:[{name:"model",rawName:"v-model",value:e.nowOverride,expression:"nowOverride"}],staticClass:"mt-[2px] block w-full text-black",on:{change:function(t){var n=Array.prototype.filter.call(t.target.options,(function(e){return e.selected})).map((function(e){return"_value"in e?e._value:e.value}));e.nowOverride=t.target.multiple?n:n[0]}}},[n("option",{domProps:{value:null}},[e._v("None (now)")]),e._v(" "),e._l(e.overrideByLabel,(function(t,label){return n("option",{key:label,domProps:{value:t,textContent:e._s(label)}})}))],2),e._v(" "),e.viewCurrentPhase?n("div",{staticClass:"overflow-auto pt-[10px]"},[n("pre",{staticClass:"select-text"},[e._v(e._s(e._f("json")(e.$phase.current,void 0,2)))])]):e._e()])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(290).a,r=(n(1322),n(9)),component=Object(r.a)(o,(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"relative flex flex-col items-center justify-end",attrs:{"data-ping-meta":"position=Carousel"}},[n("div",{staticClass:"group relative mb-[25px]"},e._l(e.storeItems,(function(t,o){return n("ping-impression",{key:"carousel-card-"+o,attrs:{meta:{interactiveContentId:t.inventory.label,interactionType:"button",buttonType:e.activeStoreItem.inventory.inEventShop?"openEventShop":"storePAW"}}},[n("carousel-card",{staticClass:"cursor-pointer transition-opacity",class:[0==o?"relative":"tl absolute",{"pointer-events-auto:none pointer-events-none opacity-0":e.activeIndex%e.storeItems.length!==o}],attrs:{item:t},on:{mouseenter:function(t){return e.$playAudioAsset("button-hover")},click:function(t){e.$playAudioAsset("button-click"),e.$rClientStore.purchase(e.activeStoreItem.inventory)}}})],1)})),1),e._v(" "),n("infinite-cycler",{attrs:{items:e.storeItems,"max-movement":e.maxMovement,"max-visible":e.maxVisible,"active-index":e.activeIndex,"cycled-items-ref":e.cycledItems},on:{"update:activeIndex":function(t){e.activeIndex=t},"update:active-index":function(t){e.activeIndex=t},"update:cycledItemsRef":function(t){e.cycledItems=t},"update:cycled-items-ref":function(t){e.cycledItems=t}},scopedSlots:e._u([{key:"default",fn:function(t){var o=t.items;return[n("div",{staticClass:"relative flex h-[70px] w-[524px] items-center justify-center"},[n("div",{staticClass:"mask-thumbnails-container relative z-0 flex h-full w-full items-center justify-center"},e._l(o,(function(t){var o=t.value,r=t.index,l=t.offsetFromCenter;return n("ping-impression",{key:"thumb-"+r,attrs:{meta:{interactionType:"button",interactiveContentId:o.inventory.label+" Thumbnail",buttonType:"switchCarouselSlide"}}},[n("div",{staticClass:"absolute transition",class:{"pointer-events-auto:none pointer-events-none":l<-e.maxMovement||l>e.maxMovement},style:e.getThumbnailStyle(l)},[n("carousel-thumbnail",{attrs:{skin:o.skin,active:0===l},on:{click:function(t){return e.goToItem(r)}}})],1)])})),1),e._v(" "),n("div",{staticClass:"absolute left-[35px]"},[n("carousel-arrow",{attrs:{direction:"left"},on:{click:e.moveLeft}})],1),e._v(" "),n("div",{staticClass:"absolute right-[35px]"},[n("carousel-arrow",{attrs:{direction:"right"},on:{click:e.moveRight}})],1)])]}}])})],1)}),[],!1,null,"5f105519",null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(9),component=Object(o.a)({},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("transition",[e.$hubIs.ready?e._e():n("div",{staticClass:"fixed inset-0 z-max flex items-center justify-center bg-blue-client pt-[40px] pl-[40px]"},[n("div",{staticClass:"sprite-spinner spin"})])])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(9),component=Object(o.a)({},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"flex items-center justify-between"},[n("div",{staticClass:"font-spiegel-bold"},[e._v("AMBIENT AUDIO IS")]),e._v(" "),n("button",{domProps:{innerHTML:e._s(e.$hubIs.wantsAmbientAudio?"ENABLED":"DISABLED")},on:{"qa-click":function(t){e.$hubIs.wantsAmbientAudio=!e.$hubIs.wantsAmbientAudio}}})])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(9),component=Object(o.a)({},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("div",{staticClass:"flex items-center justify-between"},[n("div",{staticClass:"font-spiegel-bold"},[e._v("MOTIONS ARE")]),e._v(" "),e.$homeData.lowSpecMode?n("div",[e._v("DISABLED DUE TO LOW-SPEC MODE")]):n("button",{domProps:{innerHTML:e._s(e.$hubIs.wantsMotion?"ENABLED":"DISABLED")},on:{"qa-click":function(t){e.$hubIs.wantsMotion=!e.$hubIs.wantsMotion}}})])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t);var o=n(9),component=Object(o.a)({},(function(){var e=this,t=e.$createElement,n=e._self._c||t;return n("span",[n("svg",{attrs:{width:"142",height:"97",viewBox:"0 0 142 97",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("clipPath",{attrs:{id:"thumb-frame-clip"}},[n("path",{attrs:{d:"M40.5171 3.2986H0.699219L4.11625 26.5178L3.63817 26.1809L11.647 74.2081L11.7202 74.1314L13.6929 86.4186H114.67L116.647 74.1333L116.717 74.2026L124.708 26.1851L124.244 26.5112L127.699 3.27942H87.8814L83.3457 1.41858H45.0141L40.5171 3.2986Z",fill:"#FF0000"}})])]),e._v(" "),n("svg",{attrs:{width:"560",height:"251",viewBox:"0 0 560 251",fill:"none",xmlns:"http://www.w3.org/2000/svg"}},[n("clipPath",{attrs:{id:"t1frame-clip"}},[n("path",{attrs:{d:"M239.748 15.3911L235.879 12.4878L224.398 13.237L216.66 6.24415L200.187 0.99948L24.7204 0.5L11.7415 17.4827V65.1883L6.5 73.43L7.24878 181.327L11.9911 187.072L11.4919 233.517L24.7204 250.25L181.218 250.5L190.952 245.755H288.544L298.278 250.5L449.28 250.25L463.508 233.517L463.009 187.072L466.751 181.327L467.5 73.43L463.259 65.1883V17.4827L449.28 0.5L279.309 0.99948L262.836 6.24415L254.098 13.237L243.617 12.4878L239.748 15.3911Z",fill:"#FF0000"}})])])])}),[],!1,null,null,null);t.default=component.exports},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return l}));n(25);var o=n(935),r=n.n(o);var l=function(e){return r()("".concat("17").concat(e))}},function(e,t,n){"use strict";n.r(t),n.d(t,"inject",(function(){return f}));n(64),n(56),n(31),n(21),n(25);var o=n(41),r=n(409);var l=n(30),c=n(105),d=n(95);function f(e,t){return!!e&&("tencent"!==o.inject.publisher&&c.inject.lowSpecMode?Object(d.windowOpen)("https://youtu.be/".concat(e)):l.inject.openModal(function(e){var t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{},n={autoplay:0,mute:0,rel:0,widget_referrer:"leagueclient"},l=Object.assign({},n,t),c=Object.keys(l).map((function(e){return"".concat(e,"=").concat(encodeURIComponent(l[e]))})).join("&");return"tencent"!==o.inject.publisher?"https://www.youtube.com/embed/".concat(e,"?").concat(c):"https://lol.qq.com/client/lcu/page/video.html?vid=".concat(e,"&ADTAG=clientlcu.").concat(r.a,".video&e_code=441370")}(e,t)),!0)}},function(e,t,n){"use strict";n.r(t);var o=n(291).a,r=n(9),component=Object(r.a)(o,undefined,undefined,!1,null,null,null);t.default=component.exports}]),[[951,31,1,32]]]); | Find an SVG constructed in javascript nuxt | 2023-01-01T21:56:07.000Z |
(?<ServerName>[^.][a-z 0-9 A-Z _ -]*)\.(?<Domain>.*) | Server3.lands.resnet.qg
server2.dpi.qld.gov.au
Server3201.org.local | Separating Server and Domain from FQDN | 2016-04-05T03:10:50.000Z |
|
RDATE parsing REGEX | RDATE(?:(?:;(?<value_param>VALUE=(?<value_param_type>DATE-TIME|DATE|PERIOD)))|;(?<tzid_param>TZID=(?<tzid_param_tz>[\w\/-]+))|;(?:(?!VALUE|TZID)\w+=[a-zA-Z0-9_\-\/]+))+:(?<value>(?:.*)) | RDATE;FAKE=fake;VALUE=DATE-TIME;TZID=America/New_York:19970714T083000 | RDATE | 2016-03-08T21:26:51.000Z |
match ternary operator in C++ | (?P<conditional>(?:(?:(?:"(?:(?:\\")|[^"\n])*")|(?:'(?:(?:\\')|[^'\n])*'))|(?:==|>=|<=)?[^=\?\n\(\)]|\((?1)\))*)\?(?P<true>[^{}\n:]*)\:(?P<else>[^{}\n:]*)(?:;|\)) | #include <iostream>
int main() {
int a, b;
a = b = 0;
std::cout << "Enter a number: ";
std::cin >> a;
std::cout << "\nEnter a number: ";
std::cin >> b;
std::cout << "Largest: " << ((a > b) ? a : b) << "\nSmallest: " << ((a < b) ? a : b) << std::endl;
return 0;
}
void exec(std::string args, bool block) {
pid_t pid = fork(); // This process executes a given program
((pid == -1) ? ((pid == 0) ? child(args) : parent(pid, block)) : error("fatal fork error", true));
}
some_val = x >= 0 ? x : ( y >= 0 ) ? y : z;
(a>b) ? modifyB(b) : modifyA(a); | ternary operator in C++ | 2015-12-29T13:44:22.000Z |
This will find all instances where the WP i18n function `__()` is used, and change the text domain to something else.
This will recognize instances of the function use as separate, even if they appear in the same function | __\(\s?((['"])(((?!(?<!\\)\2).)*)\2), 'wprss'\s?\) | __( 'Export & Import S\'ettings', 'wprss' ), __( 'Import & Export', 'wprss' ), apply_filters( ' $ | Replace text domain in WP i18n | 2014-09-22T21:03:57.000Z |
a | (?<=\n|^|\.|\/)[\w\-]+\.[\w\-]+(?=\n|\/|$) | *.facebook.com
facebook.com
*.xz.fbcdn.net
messenger.com
fb.com
*.m.facebook.com
*.fbsbx.com
*.xy.fbcdn.net
*.messenger.com
*.fb.com
*.fbcdn.net
*.xx.fbcdn.net
*.facebook.net
| a | 2015-11-28T16:12:44.000Z |
(?<=Zeus_Web_Version = )\d.[^\s]+ |
d:\jenkins\workspace\ZeusWeb-Deploy>echo Zeus_Web_Version = 2.14.0.1732
Zeus_Web_Version = 2.14.0.1732
| 1 | 2015-11-06T20:12:09.000Z |
|
\'{2,} | aaaaa''''a'''a''x1'sdd | Replace multi 's | 2018-06-16T15:48:42.000Z |
|
\$.+?\$ | $aslfabvaw18684rd,W@18396$
sacvndu
$89ajcan219*@($&@($^)! | Lazy | 2019-10-28T08:13:23.000Z |
|
Extracts system name, planet, moon (if applicable), and NPC faction for NPC stations in the MMORG Eve Online. | (.+) ([IVXLC]*)(?: \(.+\))? (?:- Moon (\d+) )?- (Doomheim|Pann's Peeps|Polaris Bug Hunters|Polaris Corporation|Polaris Events|24th Imperial Crusade|Amarr Certified News|Amarr Civil Service|Amarr Constructions|Amarr Navy|Amarr Templars|Amarr Trade Registry|Ametat Security|Ardishapur Family|Bragian Order|Carthum Conglomerate|Civic Court|Company of Marcher Lords|Court Chamberlain|Ducia Foundry|Emperor Family|Fraternity of St\. Venefice|Further Foodstuffs|Hedion University|Holdfast Syndicate|HZO Refinery|Imperial Academy|Imperial Armaments|Imperial Chancellor|Imperial Guard|Imperial Shipment|Inherent Implants|Joint Harvesting|Kador Family|Kameira Lodge|Kor-Azor Family|Ministry of Assessment|Ministry of Internal Order|Ministry of War|Noble Appliances|Nurtura|Paladin Survey Force|Red and Silver Hand|Royal Amarr Institute|Royal Uhlans|Sarum Family|Shining Flame|Tal-Romon Legion|Tash-Murkon Family|Theology Council|Viziam|Zoar and Sons|Ammatar Consulate|Ammatar Fleet|Nefantar Miner Association|Archangels|Dominations|Guardian Angels|Salvation Angels|Blood Raiders|Caldari Business Tribunal|Caldari Constructions|Caldari Funds Unlimited|Caldari Navy|Caldari Provisions|Caldari Steel|CBD Corporation|CBD Sell Division|Chief Executive Panel|Commando Perkone|Corporate Police Force|Deep Core Mining Inc\.|Echelon Entertainment|Expert Distribution|Expert Housing|Expert Intervention|Home Guard|House of Records|Hyasyoda Corporation|Ikomari-Onu Enforcement|Intara Direct Action|Internal Security|Ishukone Corporation|Ishukone Watch|Isuuaya Tactical|Kaalakiota Corporation|Kinsho Swords|Kirkinen Risk Control|Lai Dai Corporation|Lai Dai Protection Service|Mercantile Club|Minedrill|Modern Finances|Nugoeihuvi Corporation|Onikanabo Brigade|Osmon Surveillance|Peace and Order Unit|Perkone|Poksu Mineral Group|Prompt Delivery|Propel Dynamics|Rapid Assembly|School of Applied Knowledge|Science and Trade Institute|Seituoda Taskforce Command|Spacelane Patrol|State and Region Bank|State Peacekeepers|State Protectorate|State War Academy|Storm Wind Strikeforce|Sukuuvestaa Corporation|Templis Dragonaurs|Top Down|Wiyrkomi Corporation|Wiyrkomi Peace Corps|Ytiri|Zainou|Zero-G Research Firm|Zumari Force Projection|CONCORD|DED|Inner Circle|Secure Commerce Commission|Vigilant Tyrannos|Algintal Core|Aliastra|Allotek Industries|Astral Mining Inc\.|Bank of Luminaire|Center for Advanced Studies|Chatelain Rapid Response|Chemal Tech|Combined Harvest|Condotta Rouvenor|CreoDron|Crux Special Tasks Group|Duvolle Laboratories|Edimmu Warfighters|Egonics Inc\.|Federal Administration|Federal Defense Union|Federal Freight|Federal Intelligence Office|Federal Marines|Federal Navy Academy|Federation Customs|Federation Navy|FedMart|Garoun Investment Bank|Impetus|Inner Zone Shipping|Kang Lo Directorate|Mannar Focused Warfare|Material Acquisition|Namtar Elite|Ostrakon Agency|Pend Insurance|Poteque Pharmaceuticals|President|Quafe Company|Resheph Interstellar Strategy|Roden Shipyards|Senate|Sinq Laison Gendarmes|Supreme Court|The Scope|TransStellar Shipping|University of Caille|Villore Sec Ops|Guristas|Guristas Production|Academy of Aggressive Behaviour|Genolution|Impro|Jove Navy|Jovian Directorate|Material Institute|Prosper|Shapeset|X-Sense|Khanid Innovation|Khanid Transport|Khanid Works|Royal Khanid Navy|Boundless Creation|Brutor Tribe|Brutor Vanguard|Circle of Huskarl|Core Complexion Inc\.|Eifyr and Co\.|Eyniletti Rangers|Forty-Nine Fedayeen|Freedom Extension|Krullefor Organization|Krusual Covert Operators|Krusual Tribe|Mikramurka Shock Troop|Minmatar Mining Corporation|Native Freshfood|Pator Tech School|Republic Command|Republic Fleet|Republic Justice Department|Republic Military School|Republic Parliament|Republic Security Services|Republic University|Sanmatar Kelkoons|Sebiestor Field Sappers|Sebiestor Tribe|Seykal Expeditionary Group|Six Kin Development|The Leisure Group|Tribal Liberation Force|Tronhadar Free Guard|Urban Management|Vherokior Combat Logistics|Vherokior Tribe|Mordu's Legion|Outer Ring Development|Outer Ring Excavations|Outer Ring Prospecting|True Creations|True Power|Serpentis Corporation|Serpentis Inquest|Food Relief|Sisters of EVE|The Sanctuary|InterBus|Society of Conscious Thought|Intaki Bank|Intaki Commerce|Intaki Space Police|Intaki Syndicate|Thukker Mix|Trust Partners|Arkombine) | Jita IV - Moon 4 - Caldari Navy Assembly Plant
Amarr VIII (Oris) - Emperor Family Academy
Dodixie IX - Moon 20 - Federation Navy Assembly Plant
Hek VIII - Moon 12 - Boundless Creation Factory
Rens VI - Moon 8 - Brutor Tribe Treasury
Mastakomon VI - Propel Dynamics Factory
Ishisomo VIII - Propel Dynamics Factory
Oursulaert III - Federation Navy Testing Facilities
Eruka II - Propel Dynamics Warehouse
Agil VI - Moon 2 - CONCORD Logistic Support
Orvolle I - Federation Navy Assembly Plant
Tash-Murkon Prime II - Moon 1 - Kaalakiota Corporation Factory
Stacmon V - Moon 9 - Federation Navy Assembly Plant
Ichoriya V - Caldari Navy Logistic Support
Motsu VII - Moon 6 - Caldari Navy Logistic Support
X-7OMU II - Moon 7 - The Sanctuary School
Apanake VIII - Moon 8 - Sisters of EVE Bureau
PR-8CA III - Blood Raiders Logistic Support
Teonusude III - Moon 1 - Republic Fleet Assembly Plant
5ZXX-K V - Moon 17 - Mordu's Legion Testing Facilities
Vlillirier IV - Moon 13 - Wiyrkomi Corporation Warehouse
TG-Z23 III - Moon 8 - True Power Logistic Support
Tar III - Secure Commerce Commission Depository
Asghatil IX - Moon 3 - DED Assembly Plant
Osmon II - Moon 1 - Sisters of EVE Bureau
Villore VI - Federal Defense Union Logistic Support
Charmerout IX - Wiyrkomi Corporation Factory
Halle VII - Moon 6 - Federal Intelligence Office Assembly Plant
XHQ-7V VI - True Yulai Shipyards
Waskisen IX - Moon 11 - Corporate Police Force Logistic Support
N5Y-4N VII - Moon 20 - Guristas Logistic Support
Badivefi VIII - Moon 10 - Royal Khanid Navy Logistic Support
Kamela V - 24th Imperial Crusade Logistic Support
Esescama VIII - Moon 3 - Imperial Armaments Warehouse
Arnon IX - Moon 3 - Sisters of EVE Bureau
Couster II - Moon 1 - Federal Navy Academy
Clellinon VI - Moon 11 - Center for Advanced Studies School
Maila VII - Expert Housing Warehouse
Aeschee X - Moon 20 - Sisters of EVE Academy
XX9-WV VII - Moon 3 - Salvation Angels Trading Post
Chamemi VI - Moon 1 - Royal Khanid Navy Assembly Plant
Simela IV - Moon 7 - Sisters of EVE Academy
Berta VI - Moon 19 - Ammatar Consulate Bureau
Jita IV - Moon 5 - Caldari Navy Assembly Plant
Nein VII - Moon 4 - Impro Factory
Maila VI - Moon 1 - Zainou Biotech Production
Tintoh VIII - Caldari Navy Testing Facilities
Nourvukaiken V - State Protectorate Logistic Support
Kakakela VI - Moon 15 - Caldari Navy Assembly Plant
Alentene V - Moon 4 - Duvolle Laboratories Factory
Pakkonen IV - Moon 19 - Caldari Constructions Production Plant
Boystin V - Moon 6 - Federal Intelligence Office Assembly Plant
Kamio VI - Moon 7 - Sukuuvestaa Corporation Production Plant
Masalle VI - Moon 9 - Federation Navy Logistic Support
Serpentis Prime VIII - Moon 2 - Serpentis Corporation Chemical Refinery
A-ELE2 VI - Blood Raiders Assembly Plant
Okagaiken IV - Caldari Navy Logistic Support
Vey VIII - Moon 15 - FedMart Warehouse
Alentene VI - Moon 6 - Roden Shipyards Warehouse
Nisuwa VII - State Protectorate Logistic Support
Irjunen II - Corporate Police Force Assembly Plant
Aunia I - Moon 11 - Federation Navy Assembly Plant
Pashanai III - Moon 2 - Amarr Navy Assembly Plant
Illuin V - Moon 13 - Republic University
Sortet V - Moon 1 - Federation Navy Assembly Plant
Bereye VI - Federal Intelligence Office Assembly Plant
Cat VI - Moon 7 - Federal Intelligence Office Logistic Support
Hysera II - Corporate Police Force Assembly Plant
Akiainavas III - School of Applied Knowledge
V-3YG7 VI - The Capital
Uemisaisen VII - Moon 16 - Home Guard Assembly Plant
Ordion VII - Moon 16 - Amarr Navy Testing Facilities
J5A-IX III - Mark Watney flies like Ironman
Huola VI - 24th Imperial Crusade Logistic Support
Algogille IX - Moon 3 - Federal Administration Information Center
Kourmonen V - Ishukone Corporation Factory
Sujarento IV - State Protectorate Logistic Support
SHBF-V VI - atap's Hafnium Vault
Nennamaila X - Wiyrkomi Peace Corps Assembly Plant
LGK-VP V - Moon 3 - True Power Assembly Plant
K-QWHE VI - Moon 15 - Serpentis Corporation Chemical Refinery
Uitra VI - Moon 4 - State War Academy
Zinkon VII - Moon 1 - Caldari Business Tribunal Accounting
Kehjari II - Kaalakiota Corporation Factory
Konora VI - Kaalakiota Corporation Factory
YZ-LQL VII - Moon 1 - Guardian Angels Assembly Plant
Kulelen V - Moon 8 - Zainou Biotech Production
Vestouve IX - Moon 11 - Aliastra Warehouse
G-0Q86 VII - Moon 1 - Guardian Angels Assembly Plant
Kinakka III - Lai Dai Corporation Factory
Gehi IX - Moon 4 - Royal Khanid Navy Assembly Plant
Funtanainen IV - Moon 1 - Caldari Navy Logistic Support
Ihakana VIII - Moon 6 - Nugoeihuvi Corporation Development Studio
Oshaima IV - State Protectorate Logistic Support
Shintaht IV (Konrakas) - Asgard I9B-8X
Auvergne V - Moon 5 - Federal Intelligence Office Assembly Plant
Aphend VII - Moon 7 - Carthum Conglomerate Foundry
B-WPLZ VII - The Stables
43B-O1 VIII - 43Bad Titans
5KG-PY II - 20000 Isotopes
Palas II - Royal Khanid Navy Assembly Plant
E02-IK VIII - Moon 1 - Thukker Mix Factory
Sirekur VIII - Moon 1 - Republic University
WW-OVQ VI - District-85 Trade and Sale
Luminaire VII (Caldari Prime) - Moon 6 - Federation Navy Assembly Plant
4C-B7X VIII - Moon 1 - Outer Ring Excavations Mining Outpost
Maila IV - Zainou Biotech Production
Aldrat IX - Moon 13 - Minmatar Mining Corporation Mineral Reserve
Tuomuta III - Ducia Foundry Mining Outpost
Eldjaerin IV - Nurtura Food Packaging
WY-9LL VIII - Moon 3 - Dominations Testing Facilities
J7A-UR VI - Dominations Testing Facilities
Mani VII - Moon 10 - Amarr Navy Assembly Plant
Z3V-1W VII - Blood Raiders Assembly Plant
N-HSK0 IV - Newport Beach
Duripant VII - Moon 6 - Federal Navy Academy
Venilen IX - Moon 7 - Caldari Navy Testing Facilities
D87E-A VII - Moon 16 - Archangels Assembly Plant
P-33KR II - RIP Vile Rat
Sobaseki VII - Caldari Navy Logistic Support
Nakri V - Moon 5 - Sarum Family Assembly Plant
E-FIC0 I - E-FIC0NGESTION
DR-427 VIII - Knackwurst inside
P4-3TJ IX - Puckum's house of Handy's
Azer VI - Moon 3 - Federation Customs Assembly Plant
Lanngisi III - Moon 2 - Sisters of EVE Bureau
Avenod VIII - Moon 17 - TransStellar Shipping Storage
319-3D IX - Moon 22 - Blood Raiders Logistic Support
Onnamon IV - State Protectorate Logistic Support
Deltole III - Moon 1 - Core Complexion Inc. Warehouse
X-M2LR VI - Moon 8 - Intaki Commerce Warehouse
Dresi I - Moon 18 - Emperor Family Bureau
Onnamon I - State War Academy
Gamis X - Ammatar Fleet Logistic Support
Badivefi VI - Moon 2 - Royal Khanid Navy Logistic Support
C1-HAB IV - Ulthor's Manor
Hasmijaala X - Moon 3 - Expert Housing Production Plant
Dumkirinur V - Republic Military School
6T3I-L VII - Moon 5 - Beta HQ
Mora VI - Moon 4 - Ishukone Corporation Factory
XGH-SH VIII - Look who's back
Friggi VII - Moon 12 - Lai Dai Corporation Factory
Bhizheba IX - Moon 1 - Amarr Navy Logistic Support
XKM-DE X - Panhellenic project
4-1ECP VIII - Blood-Gulch Outpost Number One
N-8BZ6 IX - The Curse Of Volt
Jufvitte VI - Moon 4 - Roden Shipyards Factory
C8-CHY X - RIP Vile Rat
Akonoinen I - Wiyrkomi Peace Corps Assembly Plant
FC-3YI VII - Ragnar Anchorage
Fliet III - Federal Defense Union Logistic Support
Uemon VIII - Moon 3 - Perkone Factory
Uedama VII - Lai Dai Corporation Factory
Vasala VI - Moon 10 - Genolution Biotech Production
Avele V - Moon 11 - CreoDron Warehouse
I-1QKL VII - Operation Barbarossa
Cistuvaert V - Moon 12 - Center for Advanced Studies School
ERVK-P VII - Scorpio Base
Niballe V - Moon 1 - Federation Navy Testing Facilities
RQNF-9 XI - Bear's Den
Halle VII - Federal Administration Bureau Offices
Arnola VII - Moon 1 - Trust Partners Trading Post
Parses VI - Moon 11 - Royal Khanid Navy Assembly Plant
Siseide VII - Expert Distribution Retail Center
Aunsou IV - Moon 3 - Core Complexion Inc. Factory
FZCR-3 I - The Oasis
Zehru IX - Moon 4 - Viziam Factory
Torrinos V - Moon 16 - Home Guard Logistic Support
6VDT-H V - Praesidium
FD-MLJ VII - Moon 2 - Intaki Bank Depository
Bosboger VI - Moon 7 - Republic Security Services Assembly Plant
Piak III - Moon 19 - Caldari Navy Assembly Plant
Ishomilken V - State Protectorate Logistic Support
WV-0R2 V - It won't fit
O-O2GN II - Ice Citadel
Kulu X - Moon 16 - Royal Amarr Institute School
1L-OEK VIII - Spectre's Cloaky Ninjas
3V8-LJ IV - DOKDO-SUPREMACY
Auner VIII - Moon 10 - Thukker Mix Factory
Muvolailen IX - Moon 11 - Spacelane Patrol Assembly Plant
OP7-BP V - The Tapirs Den
L-1SW8 I - Fort Apache
Tanoo IV - Trust Partners Trading Post
XUW-3X VIII - Shoulder Deep
Gergish X - Moon 3 - Royal Amarr Institute School
M-RPN3 VII - Deeps homeland
DK-FXK V - DK-Favela
VSIG-K VIII - Moon 1 - Intaki Syndicate Bureau
Algogille XIII - Federation Navy Testing Facilities
Oulley IV - Moon 1 - Federation Navy Assembly Plant
Sasta VI - Moon 3 - Ammatar Fleet Assembly Plant
KFIE-Z III - Moon 7 - Blood Raiders Assembly Plant
W0X-MG VI - ManDude - The Mouth Of The North
Kubinen IX - Spacelane Patrol Assembly Plant
Hageken V - Moon 2 - Caldari Navy Assembly Plant
Sivala VIII - Sukuuvestaa Corporation Warehouse
Scheenins II - Moon 2 - Roden Shipyards Factory
Myyhera VIII - Moon 2 - Amarr Constructions Production Plant
HVGR-R V - HVGR-R - MTL Reprocessing Plant
8QMO-E III - RIP Vile Rat
Jouvulen III - Science and Trade Institute School
Arton II - CreoDron Factory
Pemene VI - Moon 2 - Wiyrkomi Corporation Factory
0N-3RO VII - Moon 14 - Blood Raiders Testing Facilities
85-B52 IV - 85-B52s Love Shack
Kisogo VII - State War Academy
Khanid Prime V - Moon 1 - Khanid Innovation Factory
Scolluzer XI - Moon 4 - Nugoeihuvi Corporation Development Studio
NG-M8K III - Tetonic Shift
Aurohunen V - Moon 10 - Propel Dynamics Factory
Penirgman IX - Moon 3 - Ministry of Internal Order Assembly Plant
Sakht VI - Moon 7 - Genolution Biotech Production
E8-432 III - Trust in Patrick
1-7B6D VI - 1-7 SHIME ratting carriers here
HED-GP III - Hatuk Homestead
Uedama VI - Moon 8 - Spacelane Patrol Logistic Support
Esa VIII - Moon 2 - Viziam Warehouse
Sirppala IV - Moon 4 - Rapid Assembly Factory
Hentogaira I - Moon 11 - Science and Trade Institute School
PC9-AY III - Intaki Commerce Trading Post
MB-NKE VII - Word Of Bob
Vlillirier VII - Roden Shipyards Factory
NM-OEA V - Moon 4 - Outer Ring Excavations Mining Outpost
E-YCML IV - Lion's Den
0DD-MH VI - Alpha HQ
Nalvula IX - Moon 2 - Spacelane Patrol Assembly Plant
M-MBRT I - Moishe's Pawn Shop - we buy gold
O-N589 VIII - Citadel Thugs
60M-TG I - Intergalactic Sparkle Dragon Den
Lirsautton I - CreoDron Factory
Rayl X - Moon 3 - Carthum Conglomerate Factory
9F-7PZ IX - If it aint Dutch It aint much
Eygfe VII - Moon 19 - Minmatar Mining Corporation Refinery
Jel V - Duvolle Laboratories Factory
CH9L-K VI - CH9L-K Milliways
G-D0N3 VIII - Can gD0 attitude
3-SFWG V - DRASY Jobcenter
Shafrak VIII - Moon 9 - Amarr Navy Assembly Plant
Huola X - Moon 2 - Ishukone Corporation Factory
O94U-A I - In Honor of Sean -Vile Rat
Gulfonodi X - Moon 15 - Republic Fleet Testing Facilities
X-7BIX VIII - S E V A S T O P O L
1IX-C0 IX - Carebear Retirement Home
G-4H4C III - Kazeboshka
UVHO-F II - Special Ed Academy
Eha III - State Protectorate Logistic Support
FDZ4-A IX - Moon 6 - Society of Conscious Thought School
DP-JD4 IX - Armistice Station
Ikami X - CreoDron Factory
Villore VII - Moon 6 - Senate Bureau
Tanoo V - Moon 1 - Ammatar Consulate Bureau
NBW-GD VI - ISI's Pleasure Palace
H-GKI6 VI - Basilica of Maxentius
Q-ITV5 VI - Sala Alts
Chej VI - Ministry of Internal Order Assembly Plant
Hentogaira II - Perkone Factory
Sasiekko III - 24th Imperial Crusade Logistic Support
0-O6XF IX - Princess of the south
Dresi I - Moon 18 - Republic Security Services Assembly Plant
Tash-Murkon Prime V - Moon 1 - Tash-Murkon Family Bureau
Suroken VIII - Moon 7 - Propel Dynamics Factory
C-BHDN III - Mount Sinai
KZFV-4 IX - FR Liberte Egalite Fraternite
Gisleres IV - Moon 6 - Roden Shipyards Warehouse
Otsela VI - Moon 13 - Ishukone Corporation Factory | Eve Online Stations | 2015-12-01T14:18:25.000Z |
Reference Citation parser 13 | (?<ChapterAuthors>[A-Z'a-z,\s]+?)(?: et al)?:(?<ChapterTitle>[A-Za-z,#\(\)\/0-9"’'&\sö]+)\.\s?In\s?(?<BookAuthors>[A-Za-z,\s]+?)(?: et al)?:(?<BookTitle>[A-Za-z,#\(\)0-9"’'&\s]+)\.\s?(?<Edition>\d+(?:rd|nd|st|th)\s(?:[eE]d|[eE]dition|))\.(?<Location>[-A-Za-z,.\s]+):(?<Publisher>[-A-Za-z,\(\)\/&\s]+)[\.]\s?(?<StartPage>\w?\d+\w?)-\s?(?<EndPage>\w?\d+\w?)[,\.;]\s?(?<Year>\d{4}) | Johnson M: Amino acids and proteins. In Burtis CA et al: Tietz Fundamentals of Clinical Chemistry. 6th ed. St. Louis: Saunders. 286-310, 2008
Dufour DR: Liver disease. In Burtis CA et al: Tietz Fundamentals of Clinical Chemistry. 6th ed. St. Louis: Saunders. 675-95, 2008
Cunningham FG et al: Diseases and abnormalities of the placenta. In: Licht J, ed. Williams's obstetrics. 19th ed. Norwalk, Conn: Appleton & Lange. 748-59, 1993
Tille PM: Enterobacteriaceae. In Tille PM: Bailey & Scott’s Diagnostic Microbiology. 13th ed. St. Louis: Mosby. 307-28, 2013 | Regex 13 | 2016-08-03T21:59:34.000Z |
Find instances of <?=$some_variable?>
Usefult to replace with <?php echo $some_variable ?> | (<\?=).+(\?\>) | <?
some function();
?>
<h1>This is some <?=poorly?> written php</h1>
<?php
echo 'along with proper code';
?> | Find php short echo tags | 2015-07-31T15:34:58.000Z |
^(?<Beleg>[A-Z0-9]{4,6})\s{1,3}(?<Kontierung>\d{3,5}[.]?\d{3}[.]?\d{0,2}[-]?\d{0,2})\s(?<Datum>[0-3][0-9][.][0-1]\d[.]\d\d)\s(?<VS>[A-Z0-9]{0,3})\s(?<US>[0-9]{0,3})\s?(?<UmsatzSoSPACE>[\s]{0,17})(?<UmsatzSo>[0-9]{0,2}?[.]?\d{0,3}[.]?\d{0,3}[.]?\d{0,3}?[.]?\d{0,2}\d{1},\d{2})\s?(?<UmsatzHaSPACE>[\s]{0,16})\s(?<UmsatzHa>[0-9]{0,1}?[.]?\d{0,3}[.]?\d{0,3}[.]?\d{0,3}?[.]?\d{0,2}\d{1},\d{2})\s?(?<GK>[A-Z0-9]{0,2})\s?(?<Buchungstext>[(\w)(\W)(\s)]{14,53})\s?(?<MwSt>[0-9]{0,4})?\s?(?<E_Nr>[0-9]{5}$)?\s? | ^JJ33JJ 444.447.66 12.01.99 HHH 456 111.110,00 0,00 AA §$%tgvrvvrvrv&vvrv
^JJ33JJ 444.447.66 12.01.99 HHH 456 0,00 0,00 AA §$%tgvrvvrvrv&vvrvrv r rr 555555
^JJ33JJ 444.447.66 12.01.99 HHH 456 111.110,00 0,00 AA §$%tgvrvvrvrv&vvrv
JJ33JJ 444.447.66 12.01.99 HHH 456 0,00 0,00 AA §$%tgvrvvrvrv&vvrvrv r rr 555555
JJ33JJ 444.447.66 12.01.99 HHH 456 111.110,00 0,00 AA §$%tgvrvvrvrv&vvrv
JJ33JJ 444.447.66 12.01.99 HHH 456 0,00 0,00 AA §$%tgvrvvrvrv&vvrvrv r rr 555555
| ZettIsor | 2016-04-11T22:56:45.000Z |
|
((?<=\.|^)[a-zA-Z]|[A-Z]) | bid.imp.ext.upsolverSomething.OtherThing | FindAllMatches | 2016-06-16T11:15:39.000Z |
|
[^.]*?\boak(?:\W+[^\W.]+){0,5}?\W+wood(?:\W+[^\W.]+){0,5}?\W+table(?:\W+[^\W.]+){0,5}?\W+variety[^.]*\.+ | ...would be a lovely addition to any home. This lovely oak hard wood table comes in a variety of sizes. Another great reason to consider...
This oak is separated by more than five words from wood and table variety.
However this oak, is from wood, and table; variety.
| sentence selection with specific words in proximity | 2020-06-03T05:56:15.000Z |
|
^(\s*)(\d+\.\s+)(.*) | --
- ok
- - ok
-- ok
* ok
** ok
* - ok
1. ok
2. ok
01. ok
39. 1. ok | Markdown ordered list | 2020-06-10T11:23:56.000Z |
|
^[a-zA-Z_\-][a-zA-Z0-9_\-]*(?:[ ]+(?:(?:[a-zA-Z_\-][a-zA-Z0-9_\-]*)))*$ | class1 class-2 class__35--opa | Validation rules | 2018-03-22T15:33:01.000Z |
|
<div class="comment-item__reply">ваш комментарий в статье <a href="http:\/\/cont\.ws\/post\/\d+#com(\d+)">[\s\S]*?<\/a>\s*<\/div> | co | 2017-08-10T20:33:27.000Z |
||
^(?:[^ ]*, )*?(?<client_ip>[^ ]*) (?<host>[^ ]*) (?<user>[^ ]*) \[(?<time>[^\]]*)\] "(?<method>\S+)(?: +(?<uri>[^\"]*?)(?: +\S*)?)?" "(?<body>.*?)" (?<code>[^ ]*) (?<size>[^ ]*)(?: "(?<referer>[^\"]*)" "(?<agent>[^\"]*)")? (?<request_time>[^ ]*) (?<upstream_response_time>.*)$ | 140.207.54.75, 100.97.90.103, 10.117.43.51 - - [24/Jun/2016:05:32:02 +0800] "POST /weixin/notify/open/authorize?signature=2ac1ca77cf259bc2b234e3261e320db698c53a9c×tamp=1466717523&nonce=1035843400&encrypt_type=aes&msg_signature=2712811c2c6cf0cacdfb65461ab4c23ec36a3c61 HTTP/1.0" "<xml>\x0A <AppId><![CDATA[wxe484f12197737223]]></AppId>\x0A <Encrypt><![CDATA[By8VnMuxv0R05S8Zl4+eY5Nq5nzqjNcTN8ljzfIOBM/GSzYMEPXwNck62DjFqnSbOkHK0xZ4uLJkc09Bnomr4Q/Zdt98YGNcdXmW4lDA8rQPfJU97hRfM5EwWGUI1n2EOgk8rSBVNwYE08DMdtXy6NVtPEi3JVktUlq0X5DkMhQg+YchJTAeiw+zbXoqYjWWX+prSDPXFArLu+6jzKliB8i+B9R2uaqtx+f2ceRY2vPoVP4p9xg2+ViOCM7n3rA8hjvk9Qf2pdeAvLsJxon/NTRkSAiUDKYwEwT5zF5sJ7S0nem3PyXHtiNczIDeNIIhl0lbsfY4muVuDx0I0GFp7PH/mJM9OdpJSarE6znxTAuij151NsmiehZsCAEQqKhbiVCCyvvdHAmWvZn1UZ86XSF5d0r1HBPeUYegsHfuj7lOpkalB65Br3DVDEkPjiCljwlcx7R5rAutvRHzBx2Y/A==]]></Encrypt>\x0A</xml>\x0A" 200 7 "-" "Mozilla/4.0" 0.008 0.007 | multiple upstream time | 2016-06-24T11:33:39.000Z |
|
as title | (?<=<p>).*?(?=<\/p>) | <p>Hello !</p> <p>I wont select tags! Only text with in</p>
<p>Hello !</p> <p>I wont select tags! Only text with in</p>
<p>Hello !</p> <p>I wont select tags! Only text with in</p>
<p>Hello !</p> <p>I wont select tags! Only text with in</p> | select in tag - with no tag | 2015-11-13T12:17:46.000Z |
Vérifie un numéro de téléphone (français) :
0630848239 --> ok
06.30.84.82.39 --> ok
06-30-84-82-39 --> ok
06 30 84 82 39 --> ok
+33630848239 --> ok
+336.30.84.82.39 --> ok
+336-30-84-82-39 --> ok
+336 30 84 82 39 --> ok
+33 630848239 --> ok
+33 6.30.84.82.39 --> ok
+33 6-30-84-82-39 --> ok
+33 6 30 84 82 39 --> ok
etc. | ^(0|(\+[0-9]{2}[. -]?))[1-9]([. -]?[0-9][0-9]){4}$ | +33 632841181 | Vérifie un numéro de téléphone (français) | 2016-06-07T15:32:27.000Z |
Tiempo mercados | (.+) \[INFO.+\nStopWatch(?:.+?\n)+?(.+% .+ Mercado) | (.+) \[INFO.+\nStopWatch(?:.+?\n)+?(.+% .+ Mercado) | 2016-01-28T02:14:51.000Z |
|
Validar teléfono móvil de España sin el prefijo +34 | ^[76]{1}[0-9]{8}$ | 789654123 | Validar teléfono móvil España | 2019-07-23T07:02:09.000Z |
\s*\d+\-?\d* | 18-19
2018 | Catwalk - extract year | 2018-01-18T17:50:50.000Z |
|
((?<func>latest|diff|avg|median|total|rollingmedian|rollingavg)\((?<par>[^(),]*),(?<uom>[^(),]*)(?:,(?<sp>[^()]*|))?\))|((?<func1>diffdays)\((?<par1>[^(),]*)(?:,(?<sp1>[^()]*|))?\))+ | rollingmedian( ecoli, orgs/100mL, [tat10, tat11] ) + latest(ecoli,) + diffdays(ecoli) | expressions | 2017-08-03T09:17:37.000Z |
|
This regex is decision phone number | 0[7-9]0-\d{4}-[0-9]{4} | 080-1234-5678
070-9999-8888
060-1234-5555
| phone | 2021-07-09T03:14:17.000Z |
This regex is a duplicate of [another one](https://regex101.com/library/qO4zS9), but with a minor modification to support subdomains with one or more "-" in it.
ie: <https://sub-domain.example.com|Link to example.com> | <(https?:\/\/[\w-]+(?:\.[\w]+)+(?:\/[\w-?=%&@$#_.+]+)*\/?)(?:\|((?:[^>])+))?> | <https://sky.slack.com/messages/2233/3333/33>
<https://sky.slack.com/>
<https://sky.slack.com/messages/@george.richmond/team/|@george.richmond>
<https://sky-2.slack.com/messages/@george.richmond/team/|@george.richmond> | Regex for parsing Slack Urls | 2017-01-18T00:48:03.000Z |
(?:{{(?:(\d?\-?\d?)(:=?)('[^']*'),*).*?}}) | 0:'ingen',1:'menneske',2:'mennesker'
0:='ingen',-1:'fugl'
1:'cola',2-:'colar'
0:='ingen',0:'biler',1:'bil',2:'biler',3-:'bøller'
{{0:'ingen',1:'menneske',2:'mennesker'}}
{{0-2:='ingen',0-1:'fugl'}}
{{1:'cola',2-:'colar'}}
{{0:='ingen',0:'biler',1:'bil',2:'biler',3-:'bøller'}}
Single ${{var}}
Vi er ${{var_U}}{{0:'ingen',1:'menneske',2:'mennesker'}}
Der er en ${{var_1}}{{0:='ingen',0-1:'fugl'}}
Gi' mig ${{var}}{{1:'cola',2-:'colar'}}
Jeg har ${{var}}{{0:='ingen',0:'biler',1:'bil',2:'biler',3-:'bøller'}}
\$\{\{(.+)\}\}\{\{((\d)(\-)?(\d)?(:(=)?)\'(.+)\'),?\}\}
\${{([A-Za-z\_\d]+)}}((?:{{)?((\d-?\d?)(:=?)\'(.*?)\'),?(?:}})?)?
\${{(?P<var>[A-Za-z09_]+)}}({{(?:(?P<factorL>\d)?(?P<diff>\-)?(?P<factorH>\d)?(?P<assert>:=?)(\'(?P<string>.+?)\')+?)?}})?
{{([A-Za-z0-9_]+)}}(?:{{((\d?\-?\d?)(:=?)('.+?'),?)+}})? | l10n | 2019-01-24T23:30:51.000Z |
|
(192.168.1.\d{1,3}).*?((\w{2}[:]){5}(\w{2})) | {
"34:d2:70:87:42:68;": [
"192.168.1.81",
"\"amazon-8dee0891a\";"
],
"98:e0:d9:91:bc:71;": [
"192.168.1.32",
"\"Cathys-Air\";"
],
"88:71:e5:b3:cb:4e;": [
"192.168.1.172",
"\"amazon-205f4e28e\";"
],
"34:d2:70:7f:df:e7;": [
"192.168.1.76",
"\"amazon-8b38e6c4e\";"
],
"88:71:e5:a2:ff:66;": [
"192.168.1.77",
"\"amazon-43faa4ef3\";"
],
"b8:3e:59:f1:73:9f;": [
"192.168.1.190",
"\"Roku"
],
"18:b4:30:14:bc:da;": [
"192.168.1.179",
"\"02AA01AC42140DKR\";"
],
"ac:d1:b8:4d:a3:85;": [
"192.168.1.180",
"\"NPI4DA385\";"
],
"14:91:82:c9:8b:61;": [
"192.168.1.174",
"\"wemo\";"
],
"14:91:82:00:d5:35;": [
"192.168.1.184",
"\"wemo\";"
],
"08:00:27:89:03:db;": [ | Mac IP | 2020-06-24T14:30:07.000Z |
|
Validates domain names. Support https:// or http:// prefix. | ^[^\s]*[a-z][^\s][.{1}][^\s\b]*[a-z][^.\b][^\s\b]$ | test.com
www.alexan.com
wander.economical.badnc.edu.org
https://website.com
wad.
wanders
WAD.ness
ww w.edu catio n.net | Domain name validator | 2023-11-05T10:47:31.000Z |
^[А-ЩЄЮІЇЯ][а-щьєюіїя']{1,}(-[А-ЩЄЮІЇЯ][а-щьєюіїя']{1,})? [А-ЩЄЮІЇЯ][а-щьєюіїя']{1,}(-[А-ЩЄЮІЇЯ][а-щьєюіїя']{1,})? [А-ЩЄЮІЇЯ][а-щьєюіїя']{1,}$ | Прасько Орест Гнатович
Хуба-Буба Мар'яна-Галина В'ячеславівна
Хуба-Буба Мар'яна-Галина В'ячеславівна-Василівна | FIO | 2019-03-18T18:03:20.000Z |
|
^(0|[1-9]+[0-9]*) (@[^@]+@ |)([A-Za-z0-9_]+)( [^\n\r]*|)$ | 0 @N1@ NOTE Lorem ipsum dolor sit amet
0 HEAD
1 SOUR FTM
2 VERS 22.2.6.950
1 DEST FTM
1 DATE 31 MAR 2017
1 CHAR UTF-8
3 _LINK http://www.facebook.com/1247584965
2 SOUR @S122@
3 PAGE Facebook update - David Hatch - 6/5/2013
3 _LINK http://www.facebook.com/1247584965
1 RESI
2 DATE BET 1935 AND 1993
2 PLAC San Francisco, California, USA
1 RESI
2 DATE 1994
2 PLAC San Francisco, California, USA
2 SOUR @S605@
3 DATA
4 TEXT Birth date: 20 Sep 1966 Birth place: Residence date: 1994
5 CONC Residence place: San Francisco, CA
1 RESI 106 Oakcrest Rd
2 DATE 26 MAR 2017
2 PLAC San Anselmo, Marin, California, USA
1 FAMS @F500@
1 FAMC @F656@
0 @I923@ INDI
1 NAME Vincent /Crilley/
1 SEX M
1 FAMS @F254@
0 @I5899@ INDI
1 NAME Marjorie Edna /Footitt/
2 SOUR @S506@
2 SOUR @S176@
2 SOUR @S168@
2 SOUR @S624@
3 DATA
4 TEXT Residence date: Residence place: USA
2 SOUR @S115@
3 PAGE Year: 1940; Census Place: St Paul, Ramsey, Minnesota; Roll: T627_1996;
4 CONC Page: 11A; Enumeration District: 90-73.
3 DATA
4 _TEXT Birth date: abt 1918 Birth place: North Dakota Residence date: 1
5 CONC Apr 1940 Residence place: St Paul, Ramsey, Minnesota, United States
2 SOUR @S607@
3 PAGE Year: 1920; Census Place: Carrington, Foster, North Dakota; Roll:
4 CONC T625_1334; Page: 13B; Enumeration District: 117; Image: .
3 DATA | GEDCOM parsing experiment | 2017-04-10T03:13:19.000Z |
|
Número de Identificación Tributaria para Colombia 🇨🇴. | [1-9]{9}(-[0-9])? | 123456789-7 | NIT Colombia | 2023-02-27T14:14:01.000Z |
matlab代码 | ^[a-zA-Z][a-zA-Z=0-9;]* | 3. 宿舍开水一壶价格已达到1元以上,%给学生用水造成很大负担。
4. 空调租赁机制不合理问题,%租赁只能以年为单位,但学生一般只在夏季使用,多出费用很多
5. 厕所洗手液没有%及时更换
matlab=123;%this is a matlab test function
Matlab=123;%this is a matlab test function | matlab代码 | 2022-04-21T02:19:17.000Z |
ERROR: type should be string, got "https://pan\\.baidu\\.com/s/\\w+$" | https://pan.baidu.com/s/1pa7EApPNc8WbgGfQ4nJJJQ
https://pan.baidu.com/s/1hI5tdwvXj8nDTfglFI2QXA
| panbaidu | 2019-11-11T14:52:18.000Z |
|
Here's a regular expression to handle a specific year in the different forms of dates:
YYYY-MM-DD
DD-MM-YYYY
MM-DD-YYYY
| ^(2010)[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]|3[01])$|(^[0-3]?[0-9].[0-3]?[0-9].(2010)$) | flkdjaklfd qhsrmq 2011-03-20
2010-03-20
31-01-2010
01-31-2010
02-28-2011
| Specific Year Dates (Regular Expression) | 2022-03-16T19:33:46.000Z |
Only if needle is before target | ^(?:(?!\bbag\b).)*\bred\b.+?\bbag\b | choose balls if they are in red bag, or they are in green bag
choose balls if they are in green bag, or they are in red bag
choose balls if they are in red bag
choose balls if they are in green bag
bag red bag
red bag red
green bag red bag
red bags | Only if before | 2022-11-24T05:09:16.000Z |
Password Complexity
8-32 Characters, AlphaNumeric with OWASP Special Characters | ^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[ !"#$%£&'()*+,-.\/:;<=>?@[\\\]^_`{|}~])[A-Za-z\d !"#$£%&'()*+,-.\/:;<=>?@[\\\]^_`{|}~]{8,32}$ | Test-123\!!!!!/!!
Test 123[!!!!!!!
Test_123£}!!\!!!!!
Test_123!!_!!!!! | Password Complexity | 2022-02-21T16:02:47.000Z |
^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)[a-zA-Z\d\!\?\@\-\\\/\:\;\&\[\]\(\)\<\>\=\'\"\+\{\}\~\^\#\%\|_,\.\*\$]{10,64}$ | Account Password Regex | 2021-01-21T16:36:44.000Z |
||
\+359([ -])2\1\d{3}\1\d{4}\b | +359 2 222 2222,359-2-222-2222, +359/2/222/2222, +359-2 222 2222 +359 2-222-2222, +359-2-222-222, +359-2-222-22222 +359-2-222-2222 | Phone Number Pattern for Sofia | 2019-07-20T13:34:51.000Z |
|
# GS1Numeric Serialized GTIN with Lot and Expiry
Will recognize and pull into groups the following:
* GTIN-14
* Serial Number
* Expiration Date
* Lot | ^\(01\)(?P<gtin14>[0-9]{14})\(21\)(?P<serial_number>[0-9]{1,20})\(17\)(?P<expiration_date>[0-9]{6})\(10\)(?P<lot>[a-zA-Z0-9]{1,20}) | (01)03555555345345(21)234390(17)201231(10)22654 | GS1Numeric Serialized GTIN with Lot and Expiry | 2018-05-20T15:39:12.000Z |
For extracting the base URL and domain from a URL String | (?P<url>(?:https?:\/\/)?(?:[^@\/\n]+@)?(?:www\.)?(?P<domain>[^:\/?\n]+))/*.* | http://google.com/sldjakdjadlkf
https://www.yahoo.com/dkajldakjfdk?dajfdlkfdj_=$
https://www.bing.com
https://google.com.in/dlajfkdlakdffd
| URL Extract base url (https://google.com) and domain (google.com) from URL String | 2021-05-12T15:32:23.000Z |
This is an adapted version of the regex writen at the book Mastering Reguar Expressions. | \b([\w]+) +(\1)\b | b ata ata | Find doubled works | 2018-08-14T22:56:38.000Z |
BF > Trade Channel > One in each line | , | GROCERY
CHILD_NUTRITION_FOOD_PROGRAMS,GROCERY
FOOD_SERVICE
FOOD_SERVICE,GROCERY
CHILD_NUTRITION_FOOD_PROGRAMS
CHILD_NUTRITION_FOOD_PROGRAMS,FOOD_SERVICE
CHILD_NUTRITION_FOOD_PROGRAMS,FOOD_SERVICE,GROCERY
VENDING,ONLINE,MASS_MERCHANDISING,FOOD_SERVICE,MILITARY,CONVENIENCE,GROCERY,DRUG
ONLINE,CHILD_NUTRITION_FOOD_PROGRAMS,FOOD_SERVICE,GROCERY
ONLINE,FOOD_SERVICE
ONLINE,CONVENIENCE
ONLINE,GROCERY,DRUG
ONLINE,GROCERY
ONLINE,FOOD_SERVICE,GROCERY
ONLINE,FOOD_SERVICE,CONVENIENCE
| BF / Trade Channel / One in each line | 2022-11-02T18:09:40.000Z |
Database data type determination and extraction.
Example:
- varchar(20)
- varchar2(20)
- number(20,3)
- timestamp
- Varchar(20)
| (?<type>[a-zA-Z2]*)(\((?<precision>\d*)(,(?<scale>\d*))?\))? | varchar(30)
timestamp
number(20,5)
NUMBER(20,3)
timestamp | Database datatype check | 2023-03-06T08:15:57.000Z |
Email Regex 320 chars | ^(?!.{321})((?:\w+[.-])*\w{1,64})(@)(\w{1,255}(?:[.-]\w+)*\.\w{2,3})$ | tffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffest@gogggggggllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllklllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllllggggg.d.fr | Email Regex 320 chars | 2022-08-19T15:50:46.000Z |
test | (\[琅琊榜\]\.Nirvana\.in\.Fire\.2015\.Ep)([0-9]{2})(\.WEB-DL\.4K\.HEVC\.AAC-CMCTV) | /[琅琊榜].Nirvana.in.Fire.2015.Ep13.WEB-DL.4K.HEVC.AAC-CMCTV | TVseriesFileName | 2023-10-04T13:50:58.000Z |
Facebook Social media | row\s+easyzoom\-thumbnails(.*?)row\s+expanded |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="ctl00_Head1"><!-- Google Tag Manager -->
<script>
dataLayer = [{
'userId': ''}];
</script>
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-WG3GHN8&userId=" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});
var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})
(window,document,'script','dataLayer','GTM-WG3GHN8');
</script>
<!-- End Google Tag Manager -->
<title>
Andersen Flex-Tip Outdoor Scraper Entrance Mat - FloorMatShop - Commercial Floor Matting & Custom Logo Mats
</title><meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1" /><meta id="ctl00_MetaKeywords" name="Keywords" content="Doormats, Exterior Entrance Matting, Front Door Mats, Rear Door Mats, OSHA Compliant, Scraper Floor Mat, anti-fatigue mats, cushion mats, US matting, NFSI certified, commercial matting, office entrance mat" /><meta id="ctl00_MetaDescription" name="Description" content="Flex Tip Outdoor Scraper Entrance Mat features OSHA-compliant beveled edges and deep wells to hold heavy soil and debris. Exterior Entrance Mats are the most effective at stopping dirt and moisture from entering the building." /><link rel="preload" href="BVModules/Themes/Foundation4%20Responsive/foundation4/css/normalize.css" as="style" /><link rel="preload" href="BVModules/Themes/Foundation4%20Responsive/foundation4/css/foundation.min.css" as="style" /><link rel="preload" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" as="style" /><link rel="preload" href="BVModules/Themes/Foundation4%20Responsive/styles/webicons.css" as="style" /><link rel="preload" href="BVModules/Themes/Foundation4%20Responsive/styles/styles.css" as="style" /><link rel="preload" href="BVModules/Themes/Foundation4%20Responsive/styles/custom.min.css?v=1.0" as="style" /><link rel="preload" href="/scripts/ui-lightness/jquery-ui-1.8.5.custom.css" as="style" /><link rel="preload" href="/scripts/jquery.dd/jquery.dd.css?v=1.15" as="style" /><link rel="preload" href="/scripts/jquery.dd/jquery.scrollbar.css" as="style" /><link rel="preload" href="/scripts/jquery.fileupload/css/jquery.fileupload.css" as="style" /><link rel="preload" href="/scripts/jquery.fileupload/css/styles.css" as="style" /><link rel="preload" href="/scripts/owlcarousel/css/owl.carousel.css" as="style" /><link rel="preload" href="/scripts/owlcarousel/css/owl.theme.css" as="style" /><link rel="preload" href="//use.edgefonts.net/kaffeesatz:n1,n3,n4,n7:all.js" as="script" /><link rel="preload" href="BVModules/Themes/Foundation4%20Responsive/foundation4/js/vendor/custom.modernizr.js" as="script" /><link rel="preload" href="/scripts/jquery-1.10.2.min.js" as="script" /><link rel="preload" href="/scripts/jquery-ui-1.10.2.custom.min.js" as="script" /><link rel="preload" href="BVModules/Themes/Foundation4%20Responsive/foundation4/js/foundation.min.js" as="script" /><link rel="preload" href="BVModules/Themes/Foundation4%20Responsive/foundation4/js/foundation/foundation.forms.js" as="script" /><link rel="preload" href="BVModules/Themes/Foundation4%20Responsive/foundation4/js/foundation/foundation.topbar.js" as="script" /><link rel="preload" href="BVModules/Themes/Foundation4%20Responsive/scripts/app.js" as="script" /><link rel="preload" href="/scripts/jquery.dd/jquery.dd.js" as="script" /><link rel="preload" href="/scripts/jquery.dd/jquery.scrollbar.min.js" as="script" /><link rel="preload" href="////cdn.callrail.com/companies/428178183/6e8b24cb38818a5c5477/12/swap.js" as="script" /><link rel="preload" href="/scripts/jquery.fileupload/scripts/jquery.iframe-transport.js" as="script" /><link rel="preload" href="/scripts/jquery.fileupload/scripts/jquery.fileupload.js" as="script" /><link rel="preload" href="/scripts/owlcarousel/owl.carousel.min.js" as="script" />
<script src="//use.edgefonts.net/kaffeesatz:n1,n3,n4,n7:all.js"></script>
<script src="/BVModules/Themes/Foundation4 Responsive/foundation4/js/vendor/custom.modernizr.js"></script><link href="/BVModules/Themes/Foundation4 Responsive/foundation4/css/normalize.css" rel="stylesheet"><link href="/BVModules/Themes/Foundation4 Responsive/foundation4/css/foundation.min.css" rel="stylesheet">
<script src="/scripts/jquery-1.10.2.min.js"></script>
<script src="/scripts/jquery-ui-1.10.2.custom.min.js"></script>
<link type="text/css" rel="stylesheet" href="/scripts/ui-lightness/jquery-ui-1.8.5.custom.css" /><link type="text/css" rel="stylesheet" href="/scripts/jquery.dd/jquery.dd.css?v=1.15" />
<script type="text/javascript" src="/scripts/jquery.dd/jquery.dd.js"></script>
<link type="text/css" rel="stylesheet" href="/scripts/jquery.dd/jquery.scrollbar.css" />
<script type="text/javascript" src="/scripts/jquery.dd/jquery.scrollbar.min.js"></script>
<link href="//netdna.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet" /><link href="/BVModules/Themes/Foundation4 Responsive/styles/webicons.css" rel="stylesheet">
<script type="text/javascript" src="/scripts/jquery.fileupload/scripts/jquery.iframe-transport.js"></script>
<script type="text/javascript" src="/scripts/jquery.fileupload/scripts/jquery.fileupload.js"></script>
<link type="text/css" rel="stylesheet" href="/scripts/jquery.fileupload/css/jquery.fileupload.css" /><link type="text/css" rel="stylesheet" href="/scripts/jquery.fileupload/css/styles.css" />
<script type="text/javascript" src="/scripts/owlcarousel/owl.carousel.min.js"></script>
<link type="text/css" rel="stylesheet" href="/scripts/owlcarousel/css/owl.carousel.css" /><link type="text/css" rel="stylesheet" href="/scripts/owlcarousel/css/owl.theme.css" /><script src="/BVModules/Themes/Foundation4 Responsive/foundation4/js/foundation.min.js"></script><script src="/BVModules/Themes/Foundation4 Responsive/foundation4/js/foundation/foundation.forms.js"></script><script src="/BVModules/Themes/Foundation4 Responsive/foundation4/js/foundation/foundation.topbar.js"></script>
<!--[if lt IE 9]>
<script src="/BVModules/Themes/Foundation4 Responsive/scripts/respond-master/dest/respond.src.js"></script><link href="/BVModules/Themes/Foundation4 Responsive/styles/styles-ie.css" rel="stylesheet">
<![endif]-->
<link href="/BVModules/Themes/Foundation4 Responsive/styles/styles.css" rel="stylesheet"><link href="/BVModules/Themes/Foundation4 Responsive/styles/custom.min.css?v=1.0" rel="stylesheet"><script src="/BVModules/Themes/Foundation4 Responsive/scripts/app.js"></script>
<script>
$(document).ready(function () {
$(document).foundation();
});
</script>
<script type="text/javascript">
$(document).ready(function () {
$('#pagetabber #nav a').unbind();
$('#pagetabber .hiddencontent').hide();
$('#pagetabber #nav a').removeClass('selected');
$('#pagetabber #nav a').click(function (e) {
var contentDivId = $(this).attr('title');
if ($(this).hasClass('selected')) {
if ($("#" + contentDivId).css('display') == 'block')
$("#" + contentDivId).slideUp('fast'); //.css('display', 'none');
else
$("#" + contentDivId).slideDown('fast'); //.css('display', 'block');
}
else {
$('#pagetabber #nav a').removeClass();
$('#pagetabber .hiddencontent').slideUp('fast'); //.hide();
// now lets show the desired information
$(this).addClass('selected');
$("#" + contentDivId).slideDown('fast'); //.css('display', 'block');
}
var evt = window.event || e;
if (evt.preventDefault) {
evt.preventDefault();
} else {
evt.returnValue = false;
}
});
});
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src='//www.googletagmanager.com/gtag/js?id=UA-26464667-3'></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-26464667-3');
gtag('config', '980861243');
gtag('event', 'view_item', {
'items': [
{
'id': 'AM-874',
'name': 'Flex-Tip Outdoor Scraper Entrance Mat',
'category': 'Entrance - Exterior',
'brand': '',
'price':'38.11'
}
]});
gtag('event', 'page_view', {
'send_to': '980861243',
'ecomm_pagetype': 'product',
'ecomm_prodid': 'AM-874',
'ecomm_totalvalue': 38.11,
'ecomm_category': 'Entrance - Exterior',
'isSaleItem': 'False'
});
</script>
</head>
<body>
<form name="aspnetForm" method="post" action="/874-Flex-Tip-Outdoor-Scraper-Entrance-Mat.aspx" onsubmit="javascript:return WebForm_OnSubmit();" id="aspnetForm">
<div>
<input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" value="" />
<input type="hidden" name="__EVENTARGUMENT" id="__EVENTARGUMENT" value="" />
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="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" />
</div>
<script type="text/javascript">
//<![CDATA[
var theForm = document.forms['aspnetForm'];
if (!theForm) {
theForm = document.aspnetForm;
}
function __doPostBack(eventTarget, eventArgument) {
if (!theForm.onsubmit || (theForm.onsubmit() != false)) {
theForm.__EVENTTARGET.value = eventTarget;
theForm.__EVENTARGUMENT.value = eventArgument;
theForm.submit();
}
}
//]]>
</script>
<script src="/WebResource.axd?d=pynGkmcFUV13He1Qd6_TZAJv0otKaRoHdgqpah1rm_g3GYpwLypVuu3OZHCZLACnauHetBpgosu3VuNBd52-GA2&t=637814480020000000" type="text/javascript"></script>
<script src="/WebResource.axd?d=3aJe5EVz5a65qlRd-GY67rDYPlyy_swX-ClBwJ0ccLMb3NxAdoLxkNkq5KyGjvDUfwalBpPR06GX9b8OwQ2KChsp1Cw0yxpY4k3rgm1zjyo1&t=637121373000000000" type="text/javascript"></script>
<script src="/BVModules/Themes/Foundation4 Responsive/scripts/theme.js" type="text/javascript"></script><script type="text/javascript">
//<![CDATA[
var Anthem_FormID = "aspnetForm";
//]]>
</script>
<script src="//s7.addthis.com/js/300/addthis_widget.js" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function() { loadImages(); });//]]>
</script>
<script src="/WebResource.axd?d=x2nkrMJGXkMELz33nwnakN9kvF1t7T8MkX-OIKkOg4FUKqfxiaNd8SOu70K7wdraF07oIU_F2QRF5-qcfHYWCM_bxSmkXSSn-I_-aHnfwIU1&t=637814480020000000" type="text/javascript"></script>
<script type="text/javascript">
//<![CDATA[
function WebForm_OnSubmit() {
if (typeof(ValidatorOnSubmit) == "function" && ValidatorOnSubmit() == false) return false;
return true;
}
//]]>
</script>
<div>
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="1581744E" />
<input type="hidden" name="__VIEWSTATEENCRYPTED" id="__VIEWSTATEENCRYPTED" value="" />
<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="FosntiXpj+wdCaytER79GDYT/x/XmSf94VQv6TLX94xChotqL0IgjkoBOrrETf8ClLZfWvZPFGDzsVlS3JvpaG/SM1thfvsDHuyG3Q7AgBxnxDNzsA8cGnZpTsBtlyRX10u0VBm0Uets2i7VV81BG8CToHjdT//9QvO5cAwXZzFXAMJw6UJAt0+PEF39bjdPISFI37Td/E+yDbedXKHTtC/4adXrhfEKNn72XFNIhDnR0hii7Z91cyPduzsIZdn2VZMEcaatAvTTmlGp20RQhzooCk7NXOiQAIlQ6pfHpHBLQMO+ykDrQmt8Xxwml1ATA7xedvU3iqb8uW3CbnYRgMtZ/SVLdV+jsFA0tJjRuwOY9isADINVQ9Vo3MEVHJN3PmJLIEc9GPadiu3E09VPEzpJ6qwpzMldEKxVbxmOmTjzWvxlPGPNKzeBIxoH2CtkELNYWO+zxmqv9A3bYo/jTCc9m3B7ahEYE06uGav50gQCG8CeKQR+5diqsXau+gQPHXgO+vd5gxaKuZITB7w6wA==" />
</div>
<div class="preheader">
<div class="row ">
<div class="large-12 columns hideforlowres">
<div id="SiteMenu" class="right">
<ul id="sitemnenucontent">
<li class="notice">
<p><a style="color: #3d7547; font-size: 1.2em; text-transform: none;" href="/Floor-Mat-Shop-Shipping-Information.aspx">Free Shipping on $150.00 or More of Commercial and Logo Matting*</a></p>
</li>
<li> </li>
<li>
<a href="/Login.aspx" class="lnkSignIn"><i class="fa fa-lock"></i> <span>Login</span></a>
</li>
<li>
<a id="ctl00_Header1_lnkMyAccount" class="lnkAccount" href="MyAccount_Orders.aspx"><i class="fa fa-user"></i> My Account</a></li>
<li>
<a id="ctl00_Header1_lnkContactUs" class="lnkService" href="ContactUs.aspx"><i class="fa fa-question-circle"></i> Customer Service</a>
<!--<a class="hideforhighres" href="tel:8882262724">888-226-2724</a>
<a class="hideforlowres" href="/ContactUs.aspx">888-226-2724</a>-->
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row hideforhighres">
<div class="column notice text-center">
<p><a style="color: #3d7547; font-size: 1.2em; text-transform: none;" href="/Floor-Mat-Shop-Shipping-Information.aspx">Free Shipping on $150.00 or More of Commercial and Logo Matting*</a></p>
</div>
</div>
<div class="header">
<div class="row" style="width: 100%;">
<div class="column header-search hideforhighres">
<div class="search row collapse search-phrases">
<style type="text/css">
.row.search.search-phrases{margin-top:.5em;}
.row.search.search-phrases input.search-input{position:static;}
.row.search.search-phrases .search-results .results a{font-size:.9em;}
@media screen and (min-width:480px){.row.search.search-phrases a.search-button{position:absolute;top:5px;right:5px;}}
.row.search.search-phrases div.search-results{position:absolute;top:46px;width:100%;border:1px solid #ccc;background:#fff;z-index:11980;/*padding:.5em;*/ display:none;}
.row.search.search-phrases .search-results h4{margin:.5em 0 0;}
.row.search.search-phrases .search-results .results a{line-height:1.5em;display:block;text-decoration:none;padding-left:1em;padding-right:1em;}
.row.search.search-phrases .search-results .results.phrases a{line-height:2em;color:#333;}
.row.search.search-phrases .search-results .results.phrases a:hover{background:#ccc;}
@media screen and (max-width:479px){
/*.row.search.search-phrases .search-box{float:left;width:65%;}
.row.search.search-phrases .search-box > input{width:100% !important;}*/
.header .columns.minicart{top:0/*60px*/;}
}
.search-reset{display:none;position:absolute;z-index:10;top:10px;right:35px;font-size:1.4em;padding:.2em .3em;cursor:pointer;background:#e8e8e8;color:#333;-webkit-border-radius:15px;-moz-border-radius:15px;-ms-border-radius:15px;-o-border-radius:15px;border-radius:15px;-webkit-transition:background-color 0.2s ease 0.2s;-moz-transition:background-color 0.2s ease 0.2s;-ms-transition:background-color 0.2s ease 0.2s;-o-transition:background-color 0.2s ease 0.2s;transition:background-color 0.2s ease 0.2s;}
.search-reset:hover{background-color:#ddd;}
.search-reset:active{-webkit-box-shadow:inset 1px 1px 2px #bbb;-moz-box-shadow:inset 1px 1px 2px #bbb;-ms-box-shadow:inset 1px 1px 2px #bbb;-o-box-shadow:inset 1px 1px 2px #bbb;box-shadow:inset 1px 1px 2px #bbb;}
.input-group{margin-bottom:.5em;}
.input-group input, .input-group a.button{font-size:16px;height:2.25em;line-height:2.25em;line-height:1 !important;}
.input-group .button{padding-left:.5em;padding-right:.5em;}
.input-group .button > i{padding-left:.5em;padding-right:.5em;}
.input-group input{margin:0;}
.header .header-search {z-index: 11990;}
#header-search input{height:40px;border-radius:0;}
#header-search .input-group{position:relative;}
#header-search .input-group-button{position:absolute;right:0;top:0;bottom:0;width:2em;}
#header-search .input-group-button a{width:100%;top:10px;/*background:url("../../images/header/search.png") no-repeat center center transparent;background-size:contain;*/}
</style>
<div id="ctl00_Header1_ctl00_pnlSearch" class="search-wrap" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_Header1_ctl00_btnSearch')" style="position:relative;">
<div id="header-search" class="column">
<div class="input-group">
<div class="search-box" style="position:relative;">
<input name="ctl00$Header1$ctl00$KeywordField" type="text" size="15" id="ctl00_Header1_ctl00_KeywordField" class="search-input forminput" autocomplete="off" />
<div class="search-reset">✖</div>
</div>
<div class="input-group-button">
<a id="ctl00_Header1_ctl00_btnSearch" class="fa fa-search search-button" href="javascript:__doPostBack('ctl00$Header1$ctl00$btnSearch','')"></a>
</div>
</div>
</div>
<div id="ctl00_Header1_ctl00_pnlResults" class="search-results">
<div class="row" style="display:table;width:100%;">
<div class="large-12 columns phrases results" style="padding:0;">
</div>
</div>
</div>
</div>
<style type="text/css">
ul.spbox{width:350px;}
</style>
<script type="text/javascript">
var timeoutId;
var ht;
jQuery(document).ready(function (){
jQuery(".search-input").keyup(function (e){
if (jQuery(this).val().length != 0){
jQuery(".search-reset").show();
} else{
jQuery(".search-reset").hide();
}
});
jQuery('.search-input').keydown(function (e){
if (e.keyCode == 27){
jQuery(this).val("");
jQuery(".search-reset").hide();
}
});
jQuery(".search-reset").click(function (event){
jQuery(".search-reset").hide();
jQuery('.search-results').hide();
jQuery(".search-input").val('');
});
jQuery(document).mouseup(function (e){
var container = jQuery('#ctl00_Header1_ctl00_pnlSearch');
if (!container.is(e.target) // if the target of the click isn't the container...
&& container.has(e.target).length === 0) // ... nor a descendant of the container
{
$('#ctl00_Header1_ctl00_pnlResults').hide();
}
});
jQuery('#ctl00_Header1_ctl00_KeywordField').focus(function (){
if (jQuery(this).val().length > 1){
$('#ctl00_Header1_ctl00_pnlResults').show();
jQuery('#ctl00_Header1_ctl00_KeywordField').keyup();
}
});
jQuery('#ctl00_Header1_ctl00_KeywordField').keyup(function (){
loadSearch(jQuery('#ctl00_Header1_ctl00_KeywordField').val());
});
function loadSearch(keyword, holdPhrases){
if (keyword.length > 1){
jQuery('#ctl00_Header1_ctl00_pnlResults .title').html('<h4>Top Results for "' + keyword + '"</h4>');
jQuery('#ctl00_Header1_ctl00_pnlResults').show();
jQuery.ajax({
type:"POST",
url:"/BVAdmin/Search/SearchService.asmx/SearchPhrases",
data:"{Keyword:'" + keyword + "'}",
contentType:"application/json;charset=utf-8",
success:function (data){
renderResults(data.d, holdPhrases);
}
});
}
else{
jQuery('#ctl00_Header1_ctl00_pnlResults .title').html('');
jQuery('#ctl00_Header1_ctl00_pnlResults').hide();
}
}
function renderResults(d, holdPhrases){
jQuery('#ctl00_Header1_ctl00_pnlResults .results.phrases').html('');
jQuery('#ctl00_Header1_ctl00_pnlResults .results.list').html('<ul></ul>');
jQuery.each(d, function (){
var item = jQuery(this)[0];
switch (item.Type){
case 0://phrase
var $a = jQuery('<a onclick="setPhrase(this);">' + item.Name + '</a>');
jQuery('#ctl00_Header1_ctl00_pnlResults .results.phrases').append($a);
break;
}
});
}
});
function setPhrase(e){
var keyword = jQuery(e).html().replace(/<b>/g, '').replace(/<\/b>/g, '');
window.location.href = '/search.aspx?keyword=' + keyword;
}
if (jQuery('body').width() <= 420){
jQuery('#ctl00_Header1_ctl00_KeywordField').attr('placeholder', 'ENTER KEYWORD OR PART #');
//jQuery('#ctl00_Header1_ctl00_btnSearch').text('SEARCH');
}
</script>
</div>
</div>
<div class="column notice hideforhighres text-center">
<h4><strong> </strong></h4>
</div>
</div>
<div class="row">
<div class="large-10 columns">
<div class="row">
<div class="large-5 columns header-logo">
<a id="ctl00_Header1_lnkStoreName" class="logo" href="https://www.floormatshop.com/"><img src="Images/FLOOR_MAT_SHOP_LOGO.png" alt="Floor Mat Shop - A March Industries, Inc. Company" style="border-width:0px;" /></a>
</div>
<div class="large-7 columns header-search hideforlowres">
<div class="search row collapse">
<style type="text/css">
input.search-input::-ms-clear {display: none;}
/*@media screen and (min-width:480px) {*/
/*.header .header-search {margin-top:.5em;}*/
.header .header-search input.search-input {position:static;}
.header .header-search a.search-button {position:absolute;top:2px;right:5px;}
.header .header-search div.search-results {position:absolute;top:100%;width:150%;border:1px solid #ccc;background:#fff;z-index:2000;/*padding:.5em;*/display:none;}
.header .header-search .search-results h4 {margin:.5em 0 0;}
.header .header-search .search-results .results ul li {color:#0878A3;list-style:disc;}
.header .header-search .search-results .results a {line-height:1.5em;display:block;text-decoration:none;font-size:.8em;}
.header .header-search .search-results .results.phrases a {line-height:2em;color:#333;}
.header .header-search .search-results .results.phrases a:hover {background:#ccc;}
.header .header-search .search-results .results.products .record {padding:0;float:left !important;}
.header .header-search .search-results .results.products .record > div {border:1px solid #dbdbdb;border-radius:.2em;margin:.5em .2em;padding:0 .1em;}
.header .header-search .search-results .results.products .record a {text-align:center;margin-top:.5em;font-size:.7em;}
.header .header-search .search-results .results.products .record .recordimage{position:relative;}
.header .header-search .search-results .results.products .record .recordimage .sale-badge{font-size:.7em;}
.header .header-search .search-results .results.products .record .recordname a {min-height:6em;}
.header .header-search .search-results .results.products .record .recordprice{padding-bottom:.5em;min-height:3em;}
.header .header-search .search-results .results.products .record .recordprice a {color:#0878A3;font-weight:bold;font-size:.85em;line-height:1em;}
.header .header-search .search-results .results.products .record .recordprice a.saleprice{color:#a10000;}
.header .header-search .search-results .results.products .record .recordprice a.oldprice{text-decoration:line-through;}
.header .header-search .search-results .results.products .record .recordimage img {max-height:9em;}
/*}*/
.header .header-search .search-results>.row{display:table;}
.header .header-search .search-results>.row>.columns{padding-top:1em;padding-bottom:1em;display:table-cell;float:none;vertical-align:top;}
</style>
<div id="ctl00_Header1_ctl01_pnlSearch" class="search-wrap" class="small-12 columns" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_Header1_ctl01_btnSearch')" style="position: relative;">
<input name="ctl00$Header1$ctl01$KeywordField" type="text" size="15" id="ctl00_Header1_ctl01_KeywordField" class="search-input forminput" autocomplete="off" />
<a id="ctl00_Header1_ctl01_btnSearch" class="fa fa-search search-button" href="javascript:__doPostBack('ctl00$Header1$ctl01$btnSearch','')"></a>
<div id="ctl00_Header1_ctl01_pnlResults" class="search-results">
<div class="row" style="display:table;">
<div class="large-4 columns phrases results">
</div>
<div class="large-8 columns" style="background-color:#eee;">
<div class="large-12 columns title">
</div>
<div class="large-12 columns products results">
</div>
<div class="large-12 columns">
<div class="large-6 columns categories results list">
</div>
<div class="large-6 columns brands results list">
</div>
</div>
</div>
</div>
</div>
</div>
<style type="text/css">
ul.spbox {
width: 350px;
}
</style>
<script type="text/javascript">
var timeoutId;
var ht;
jQuery(document).ready(function () {
jQuery(document).mouseup(function (e) {
var container = jQuery('#ctl00_Header1_ctl01_pnlSearch');
if (!container.is(e.target) // if the target of the click isn't the container...
&& container.has(e.target).length === 0) // ... nor a descendant of the container
{
$('#ctl00_Header1_ctl01_pnlResults').hide();
}
});
jQuery('#ctl00_Header1_ctl01_KeywordField').focus(function () {
if (jQuery(this).val().length > 1) {
$('#ctl00_Header1_ctl01_pnlResults').show();
jQuery('#ctl00_Header1_ctl01_KeywordField').keyup();
}
});
jQuery('#ctl00_Header1_ctl01_KeywordField').keyup(function () {
loadSearch(jQuery('#ctl00_Header1_ctl01_KeywordField').val());
});
function loadSearch(keyword, holdPhrases) {
if (keyword.length > 1) {
jQuery('#ctl00_Header1_ctl01_pnlResults .title').html('<h4>Top Results for "' + keyword + '"</h4>');
jQuery('#ctl00_Header1_ctl01_pnlResults').show();
jQuery.ajax({
type: "POST",
url: "/BVAdmin/Search/SearchService.asmx/SearchAll",
data: "{Keyword:'" + keyword + "'}",
contentType: "application/json; charset=utf-8",
success: function (data) {
renderResults(data.d, holdPhrases);
}
});
}
else {
jQuery('#ctl00_Header1_ctl01_pnlResults .title').html('');
jQuery('#ctl00_Header1_ctl01_pnlResults').hide();
}
}
function renderResults(d, holdPhrases) {
jQuery('#ctl00_Header1_ctl01_pnlResults .results.products').html('');
jQuery('#ctl00_Header1_ctl01_pnlResults .results.categories').html('');
jQuery('#ctl00_Header1_ctl01_pnlResults .results.brands').html('');
if (typeof (holdPhrases) == 'undefined' || holdPhrases == false)
jQuery('#ctl00_Header1_ctl01_pnlResults .results.phrases').html(' ');
jQuery('#ctl00_Header1_ctl01_pnlResults .results.list').html('<ul></ul>');
var cats = 0;
var brands = 0;
jQuery.each(d, function () {
var item = jQuery(this)[0];
switch (item.Type) {
case 0: //phrase
if (typeof (holdPhrases) == 'undefined' || holdPhrases == false) {
var $a = jQuery('<a onclick="setPhrase(this);">' + item.Name + '</a>')
.hover(function () {
if (timeoutId) {
window.clearTimeout(timeoutId);
timeoutId = null;
}
//if (!timeoutId) {
timeoutId = window.setTimeout(function () {
timeoutId = null;
var keyword = $a.html().replace(/<b>/g, '').replace(/<\/b>/g, '');
jQuery('#ctl00_Header1_ctl01_KeywordField').val(keyword);
loadSearch(jQuery('#ctl00_Header1_ctl01_KeywordField').val(), true);
}, 300);
//}
},
function () {
if (timeoutId) {
window.clearTimeout(timeoutId);
timeoutId = null;
}
});
jQuery('#ctl00_Header1_ctl01_pnlResults .results.phrases').append($a);
}
break;
case 1: //product
var s = '<div class="columns large-4 small-6 record"><div><div class="recordimage">';
if (item.SalePrice < item.SitePrice) {
s += '<span class="sale-badge"><span>Sale</span></span>';
}
s += '<a href="' + item.URL + '"><img src="' + item.ImageURL + '" alt="product image" /></a></div><div class="recordsku"><a href="' + item.URL + '">' + item.Sku + '</a></div><div class="recordname"><a href="' + item.URL + '">' + item.Name + '</a></div>';
if (item.SalePrice < item.SitePrice)
s += '<div class="recordprice"><a class="saleprice" href="' + item.URL + '">' + item.SitePricePrefix + '$' + item.SalePrice.toFixed(2) + '</a><a class="oldprice" href="' + item.URL + '">$' + item.SitePrice.toFixed(2) + '</a></div></div></div>';
else
s += '<div class="recordprice"><a href="' + item.URL + '">' + item.SitePricePrefix + '$' + item.SitePrice.toFixed(2) + '</a></div></div></div>';
jQuery('#ctl00_Header1_ctl01_pnlResults .results.products').append(s);
break;
case 2: //category
cats++;
jQuery('#ctl00_Header1_ctl01_pnlResults .results.categories > ul').append('<li><a href="' + item.URL + '">' + item.Name + '</a></li>');
break;
case 3: //brand
brands++;
jQuery('#ctl00_Header1_ctl01_pnlResults .results.brands > ul').append('<li><a href="' + item.URL + '">' + item.Name + '</a></li>');
break;
}
});
if (cats > 0) {
jQuery('#ctl00_Header1_ctl01_pnlResults .results.categories').prepend('<h4>Category</h4>')
}
if (brands > 0) {
jQuery('#ctl00_Header1_ctl01_pnlResults .results.brands').prepend('<h4>Brand</h4>')
}
}
});
function setPhrase(e) {
var keyword = jQuery(e).html().replace(/<b>/g, '').replace(/<\/b>/g, '');
//jQuery('#ctl00_Header1_ctl01_KeywordField').val(keyword);
//jQuery('#ctl00_Header1_ctl01_KeywordField').keyup();
window.location.href = '/search.aspx?keyword=' + keyword;
}
if (jQuery('body').width() <= 420) {
jQuery('#ctl00_Header1_ctl01_KeywordField').attr('placeholder', 'ENTER KEYWORD OR PART #');
//jQuery('#ctl00_Header1_ctl01_btnSearch').text('SEARCH');
}
</script>
</div>
</div>
</div>
<div class="row">
<div class="column notice hideforlowres">
<h4><strong> </strong></h4>
</div>
</div>
</div>
<div class="large-2 medium-4 columns minicart">
<div id="floatcart">
<a href="/cart.aspx" id="cartanchor"><span id="ctl00_Header1_FloatCart1_cartqty" class="cartqty">0</span><span id="ctl00_Header1_FloatCart1_carttotals" class="carttotals"></span></a>
<div id="ctl00_Header1_FloatCart1_cartcontent" class="cartcontent"></div>
</div>
<script type="text/javascript" src="/scripts/pageservices.cart.js"></script>
<script type="text/javascript" src="/scripts/jquery.json-2.2.min.js"></script>
<script type="text/javascript">
jQuery(document).ready(function () {
$('#floatcart #cartanchor').mouseover(function () {
if ($('#ctl00_Header1_FloatCart1_cartcontent .cartItem').length > 0) {
$('#ctl00_Header1_FloatCart1_cartcontent').show();
$(this).addClass('hover');
}
}).mouseout(function () {
$('#ctl00_Header1_FloatCart1_cartcontent').hide();
$(this).removeClass('hover');
});
$('#ctl00_Header1_FloatCart1_cartcontent').mouseover(function () {
if ($('#ctl00_Header1_FloatCart1_cartcontent .cartItem').length > 0) {
$(this).show();
$('#floatcart #cartanchor').addClass('hover');
}
}).mouseout(function () {
$(this).hide();
$('#floatcart #cartanchor').removeClass('hover');
});
});
</script>
</div>
</div>
</div>
<div class="navwrapper">
<div class="row">
<div class="large-12 columns">
<nav class="top-bar" data-topbar role="navigation">
<ul class="title-area">
<li class="toggle-topbar name menu-icon-medium">
<h2>Product Category</h2>
</li>
<li class="name menu-icon-small">
<a href="/" class="logo-small"></a>
</li>
<li class="toggle-topbar menu-icon-medium"><a id="top-menu1-toggle" href="#"><span><i class="fa fa-bars"></i> SHOP</span></a></li>
</ul>
<section class="top-bar-section">
<div style="position:relative;">
<div class="block topmenu">
<ul id="headernavmenu"><li class="has-dropdown"><a title="Custom Logo Floor Mats - Choose From These Styles" href="/Custom-Logo-Floor-Mats.aspx"><span>Custom Logo</span></a><ul class="dropdown"><li><a title="Indoor Logo Mats" href="/Indoor-Custom-Logo-Mats-Entrance-Mats-Scraper-Wiper-Mats.aspx"><span>Indoor Logo Mats</span></a></li><li><a title="Indoor/Outdoor Logo Mats" href="/Indoor-Outdoor-Custom-Logo-Mats-Entrance-Mats-Scraper-Mats.aspx"><span>Indoor/Outdoor Logo Mats</span></a></li><li><a title="Anti-Fatigue Logo Mats" href="/Custom-Logo-Anti-Fatigue-Floor-Mats-Customized-Cushion-Matting.aspx"><span>Anti-Fatigue Logo Mats</span></a></li><li class="category-image"><img src="" style="border-width:0px;" /></li></ul></li></li><li class="has-dropdown"><a title="Commercial Floor Mats" href="/Commercial-Floor-Matting.aspx"><span>Commercial Mats</span></a><ul class="dropdown"><li><a title="Outdoor Entrance Mats" href="/Outdoor-Scraper-Floor-Mats.aspx"><span>Outdoor Entrance Mats</span></a></li><li><a title="Scraper/Wiper Mats" href="/Indoor-Scraper-Floor-Mats.aspx"><span>Scraper/Wiper Mats</span></a></li><li><a title="Interior Wiper Mats" href="/Interior-Wiper-Floor-Mats.aspx"><span>Interior Wiper Mats</span></a></li><li><a title="Flow-Through Mats" href="/Flow-Through-Floor-Mats.aspx"><span>Flow-Through Mats</span></a></li><li><a title="Waterhog Mats" href="/Waterhog-Entrance-Floor-Mats.aspx"><span>Waterhog Mats</span></a></li><li><a title="Foyers & Recessed Wells" href="/Foyers-Recessed-Well-Mats.aspx"><span>Foyers & Recessed Wells</span></a></li><li><a title="Floor Runners" href="/Floor-Runner-Mats.aspx"><span>Floor Runners</span></a></li><li><a title="Oriental Mats" href="/Designer-Oriental-Floor-Mats.aspx"><span>Oriental Mats</span></a></li><li><a title="High Def Photo Mats" href="/Message-Media-Floor-Mats.aspx"><span>High Def Photo Mats</span></a></li><li><a title="Specialty Mats" href="/Specialty-Foor-Mats.aspx"><span>Specialty Mats</span></a></li><li><a title="Non-Conductive Arc Flash Mats" href="/Non-Conductive-Mats.aspx"><span>Non-Conductive Arc Flash Mats</span></a></li><li><a title="Modular/Interlocking Tile Mats" href="http://www.floormatshop.com/interlocking-tile-mats.aspx"><span>Modular/Interlocking Tile Mats</span></a></li><li><a title="Rubber Floor Mats" href="/Rubber-Floor-Matting.aspx"><span>Rubber Floor Mats</span></a></li><li><a title="Salon/Barber Mats" href="http://www.floormatshop.com/Salon-Barber-Anti-Fatigue-Floor-Mats-Comfort-Mats.aspx"><span>Salon/Barber Mats</span></a></li><li class="category-image"><img src="" style="border-width:0px;" /></li></ul></li></li><li class="has-dropdown"><a title="Anti-Fatigue Mats" href="/Anti-Fatigue-Mats.aspx"><span>Anti-Fatigue</span></a><ul class="dropdown"><li><a title="Anti-Static Floor Mats - Anti-Fatigue" href="/Anti-Static-Anti-Fatigue-Floor-Mats.aspx"><span>Anti-Static Floor Mats - Anti-Fatigue</span></a></li><li><a title="Dry Area Floor Mats - Anti-Fatigue" href="/Dry-Area-Anti-Fatigue-Mats.aspx"><span>Dry Area Floor Mats - Anti-Fatigue</span></a></li><li><a title="Oily Area Floor Mats - Anti-Fatigue" href="/Oily-Area-Anti-Fatigue-Mats.aspx"><span>Oily Area Floor Mats - Anti-Fatigue</span></a></li><li><a title="Wet Area Floor Mats - Anti-Fatigue" href="/Wet-Area-Anti-Fatigue-Mats.aspx"><span>Wet Area Floor Mats - Anti-Fatigue</span></a></li><li><a title="Runner Floor Mats - Anti-Fatigue" href="/Anti-Fatigue-Mat-Runners.aspx"><span>Runner Floor Mats - Anti-Fatigue</span></a></li><li><a title="Interlocking Tile Mats - Anti-Fatigue" href="http://www.floormatshop.com/interlocking-tile-mats.aspx"><span>Interlocking Tile Mats - Anti-Fatigue</span></a></li><li><a title="Salon / Barber Mats - Anti Fatigue" href="/Salon-Barber-Anti-Fatigue-Floor-Mats-Comfort-Mats.aspx"><span>Salon / Barber Mats - Anti Fatigue</span></a></li><li><a title="Welding Safe Mats - Anti-Fatigue" href="/Anti-Fatigue-Welding-Safe-Floor-Mats.aspx"><span>Welding Safe Mats - Anti-Fatigue</span></a></li><li class="category-image"><img src="" style="border-width:0px;" /></li></ul></li></li><li class="has-dropdown"><a title="Kitchen Floor Mats" href="/Kitchen-Floor-Mats.aspx"><span>Kitchen Floor Mats</span></a><ul class="dropdown"><li><a title="Commercial Kitchen Mats" href="/Commercial-Kitchen-Mats.aspx"><span>Commercial Kitchen Mats</span></a></li><li class="category-image"><img src="" style="border-width:0px;" /></li></ul></li></li><li><a title="Message Mats" href="/Message-Mats.aspx"><span>Message Mats</span></a></li></li><li class="has-dropdown"><a title="Residential Matting" href="/Residential-Floor-Matting.aspx"><span>Residential Matting</span></a><ul class="dropdown"><li><a title="The Peach Mill" href="/ThePeachMill.aspx"><span>The Peach Mill</span></a></li><li><a title="Novelty Mats" href="http://www.floormatshop.com/Home-Decor-Mats.aspx"><span>Novelty Mats</span></a></li><li><a title="Area Mats & Rugs" href="/Residential-Area-Mats-Rugs.aspx"><span>Area Mats & Rugs</span></a></li><li><a title="Bath & Shower Mats" href="/Residential-Bathroom-Mats.aspx"><span>Bath & Shower Mats</span></a></li><li><a title="Boot Trays & Scrapers" href="/Residential-Boot-Tray-Scraper-Mats.aspx"><span>Boot Trays & Scrapers</span></a></li><li><a title="Door Mats - Astroturf" href="/Astroturf-Door-Mats.aspx"><span>Door Mats - Astroturf</span></a></li><li><a title="Door Mats - Designer" href="/Designer-Door-Mats.aspx"><span>Door Mats - Designer</span></a></li><li><a title="Door Mats - Shapes" href="/Door-Mat-Shapes.aspx"><span>Door Mats - Shapes</span></a></li><li><a title="Door Mats - Solid Color" href="/Solid-Color-Door-Mats.aspx"><span>Door Mats - Solid Color</span></a></li><li><a title="Floor Runners" href="/Residential-Runner-Mats.aspx"><span>Floor Runners</span></a></li><li><a title="Garage Matting" href="/Garage-Matting-Floor-Tiles.aspx"><span>Garage Matting</span></a></li><li><a title="Licensed Logo Mats" href="/Licensed-Logo-Floor-Mats.aspx"><span>Licensed Logo Mats</span></a></li><li class="category-image"><img src="" style="border-width:0px;" /></li></ul></li></li><li class="has-dropdown"><a title="Floor Mat & Carpet Care" href="/Commercial-Entrance-Mat-Scraper-Mat-Carpet-Cleaning-Chemicals-Equipment.aspx"><span>Cleaning & Accessories</span></a><ul class="dropdown"><li><a title="Eco-Friendly Cleaners" href="/Eco-Friendly-Cleaning-Chemicals-Green-Seal-Certified-Carpet-Matting-Cleaners.aspx"><span>Eco-Friendly Cleaners</span></a></li><li><a title="Carpet & Floor Cleaning Chemicals" href="/Heavy-Duty-Carpet-Matting-Cleaning-Chemicals.aspx"><span>Carpet & Floor Cleaning Chemicals</span></a></li><li><a title="Safety Supplies" href="/Floor-Safety-Signs.aspx"><span>Safety Supplies</span></a></li><li><a title="Equipment - Dry Cleaning" href="/Cleaning-Equipment-Dry-Floor-Mat-Vacuums-Back-Pack-Vacuums-Hipstyle-Upright-Vacuum-Cleaners.aspx"><span>Equipment - Dry Cleaning</span></a></li><li><a title="Equipment - Wet Cleaning" href="/Cleaning-Equipment-Wet-Floor-Mat-Extractors-Box-Extractors-Spray-Spot-Extractors.aspx"><span>Equipment - Wet Cleaning</span></a></li><li><a title="Grip & Grit Tape" href="http://www.floormatshop.com/Grip-Tape.aspx"><span>Grip & Grit Tape</span></a></li><li><a title="Nosing & Edging" href="http://www.floormatshop.com/Floor-Mat-Nosing-Edging.aspx"><span>Nosing & Edging</span></a></li><li><a title="Seaming Tools & Rollers" href="http://www.floormatshop.com/Carpet-Seaming-Tools.aspx"><span>Seaming Tools & Rollers</span></a></li><li><a title="Slip-Resistant Backing" href="http://www.floormatshop.com/Floor-Mat-Slip-Resistant-Backing.aspx"><span>Slip-Resistant Backing</span></a></li><li><a title="Slip-Resistant Rug Pads" href="http://www.floormatshop.com/Slip-Resistant-Rug-Pads.aspx"><span>Slip-Resistant Rug Pads</span></a></li><li><a title="Surface Protectants" href="http://www.floormatshop.com/Carpet-Surface-Protectors.aspx"><span>Surface Protectants</span></a></li><li><a title="Best Practices" href="http://www.floormatshop.com/Resource-Entrance-Mat-Floor-Mat-Cleaning-Best-Practices.aspx"><span>Best Practices</span></a></li><li><a title="Cleaning Suggestions" href="http://www.floormatshop.com/Resource-Carpet-Matting-Maintenance-Cleaning-Tips-Guidelines.aspx"><span>Cleaning Suggestions</span></a></li><li><a title="Preventing Floor Discoloration" href="http://www.floormatshop.com/Resource-Cleaning-Yellow-Brown-Discolorization-Floor-Tile-Under-Floor-Mats.aspx"><span>Preventing Floor Discoloration</span></a></li><li class="category-image"><img src="" style="border-width:0px;" /></li></ul></li></li><li class="has-dropdown"><a title="Video / Q&A" href="/Floor-Matting-Video-Blogs.aspx"><span>Video / Q&A</span></a><ul class="dropdown"><li><a title="Questions & Answers" href="/Floormatshop-FAQ.aspx"><span>Questions & Answers</span></a></li><li><a title="Logo Mat FAQ" href="/Questions-and-Answers-Logo-Mats.aspx"><span>Logo Mat FAQ</span></a></li><li class="category-image"><img src="" style="border-width:0px;" /></li></ul></li></li><li class="hideforhighres"><a title="Login" href="/login.aspx"><span>Login</span></a></li></li></ul>
</div>
</div>
</section>
</nav>
</div>
</div>
</div>
<div style="position:relative;">
</div>
<div class="breadcrumbwrapper hideforlowres">
<div class="row">
<div class="large-12 columns">
<div>
<div class="breadcrumbs"><a href="https://www.floormatshop.com/" class="home"><span>Home</span></a>
<span class="spacer"> » </span>
<div itemscope itemprop="itemListElement" itemtype="http://schema.org/ListItem">
<a href="/Industry-Facility-Type-Entrance-Mats-Floor-Mats-Carpet-Solutions.aspx" itemprop="item">
<span itemprop="name">Matting By Industry Type</span>
<meta itemprop="position" content="1" />
</a>
</div>
<span class="spacer"> » </span>
<div itemscope itemprop="itemListElement" itemtype="http://schema.org/ListItem">
<a href="/Entrance-Mats-Floor-Mats-Colleges-Universities-High-Schools-Middle-Schools-Pre-K-12-Day-Care-Centers.aspx" itemprop="item">
<span itemprop="name">Education School Matting</span>
<meta itemprop="position" content="2" />
</a>
</div>
<span class="spacer"> » </span>
<div itemscope itemprop="itemListElement" itemtype="http://schema.org/ListItem">
<a href="/Education-College-University-Schools-Exterior-Outdoor-Entrance-Floor-Mats.aspx" itemprop="item">
<span itemprop="name">Entrance - Exterior</span>
<meta itemprop="position" content="3" />
</a>
</div>
<span class="spacer"> » </span>
<span>Flex-Tip Outdoor Scraper Entrance Mat</span>
</div>
</div>
</div>
</div>
</div>
<div class="main">
<div class="row">
<div class="large-12 columns">
<div id="Anthem_ctl00_MessageBox1_pnlMain__"></div>
<div itemscope itemtype="http://schema.org/WebPage">
<div id="matproduct">
<div id="productpage" itemscope itemtype="http://schema.org/Product">
<meta itemprop="ItemCondition" content="NewCondition" />
<div class="row">
<div class="large-9 columns">
<h1 class="product-name">
<span id="Anthem_ctl00_MainContentHolder_lblName__"><span id="ctl00_MainContentHolder_lblName" itemprop="name">Flex-Tip Outdoor Scraper Entrance Mat</span></span></h1>
</div>
<div id="rating" class="large-3 columns text-right">
<a href="#Write">
<div class="tp-stars tp-stars--5">
<div>
<svg viewBox="0 0 251 46">
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M0 46.330002h46.375586V0H0z"></path>
<path class="tp-star__shape" d="M39.533936 19.711433L13.230239 38.80065l3.838216-11.797827L7.02115 19.711433h12.418975l3.837417-11.798624 3.837418 11.798624h12.418975zM23.2785 31.510075l7.183595-1.509576 2.862114 8.800152L23.2785 31.510075z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M51.24816 46.330002h46.375587V0H51.248161z"></path>
<path class="tp-star__shape" d="M74.990978 31.32991L81.150908 30 84 39l-9.660206-7.202786L64.30279 39l3.895636-11.840666L58 19.841466h12.605577L74.499595 8l3.895637 11.841466H91L74.990978 31.329909z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M102.532209 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M142.066994 19.711433L115.763298 38.80065l3.838215-11.797827-10.047304-7.291391h12.418975l3.837418-11.798624 3.837417 11.798624h12.418975zM125.81156 31.510075l7.183595-1.509576 2.862113 8.800152-10.045708-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M153.815458 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M193.348355 19.711433L167.045457 38.80065l3.837417-11.797827-10.047303-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418974zM177.09292 31.510075l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M205.064416 46.330002h46.375587V0h-46.375587z"></path>
<path class="tp-star__shape" d="M244.597022 19.711433l-26.3029 19.089218 3.837419-11.797827-10.047304-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418975zm-16.255436 11.798642l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
</svg>
</div>
<div class="tp-review-popup tp-widget-wrapper" style="display:none;">
<div class="tp-widget-productinfo">5.0 out of 5</div>
<div class="tp-widget-businessinfo">
<div class="score">
<div class="score__stars">5 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--5" style="width: 100%;"></div>
</div>
<div class="score__number">(1)</div>
</div>
<div class="score">
<div class="score__stars">4 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--4" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">3 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--3" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">2 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--2" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">1 star</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--1" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
</div>
</div>
</div>
<div class="tp-widget-readmore">1 review</div>
</a>
</div>
</div>
<div class="row row-03">
<div class="large-6 column">
<div id="productimage" class="product-main-image">
<script type="text/javascript" src="/scripts/easyzoom/easyzoom.js"></script>
<link type="text/css" rel="stylesheet" href="/scripts/easyzoom/easyzoom.css" />
<style type="text/css">
.product-main-image{max-height:none !important;}
</style>
<div id="Anthem_ctl00_MainContentHolder_ImageView_pnlImages__"><div id="ctl00_MainContentHolder_ImageView_pnlImages" class="easyzoom-wrap">
<a class="expanded b-close" href="javascript:void(0)" onclick="collapseImages();"><i class="fa fa-times"></i></a>
<div class="easyzoom collapsed"><a href="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-874/Flex-Tip-Anti-Fatigue-Mat.jpg"><img src="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-874/Flex-Tip-Anti-Fatigue-Mat.jpg" alt="Andersen Flex-Tip Outdoor Scraper Entrance Floor Mat" title="Flex-Tip Outdoor Scraper Entrance Mat" /></a></div>
<div class="nozoom expanded"><img src="" alt="" /></a></div>
<div class="controls">
<div class="row">
<div class="large-12 columns">
<div class="row easyzoom-thumbnails"><div class="large-2 small-3 columns"><a href="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-874/Flex-Tip-Anti-Fatigue-Mat.jpg" data-standard="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-874/Flex-Tip-Anti-Fatigue-Mat.jpg"><img src="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-874/thumbs/Flex-Tip-Anti-Fatigue-Mat_65.jpg" alt="Andersen Flex-Tip Outdoor Scraper Entrance Floor Mat" title="Flex-Tip Outdoor Scraper Entrance Mat" /></a></div><div class="large-2 small-3 columns"><a href="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-874/Flex-Tip-Anti-Fatigue-Mat3.jpg" data-standard="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-874/Flex-Tip-Anti-Fatigue-Mat3.jpg"><img src="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-874/thumbs/Flex-Tip-Anti-Fatigue-Mat3_65.jpg" alt="OSHA-compliant beveled edges and deep wells hold heavy soil and debris." title="" /></a></div><div class="large-2 small-3 columns"><a href="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-874/Flex-Tip-Anti-Fatigue-Mat2.jpg" data-standard="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-874/Flex-Tip-Anti-Fatigue-Mat2.jpg"><img src="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-874/thumbs/Flex-Tip-Anti-Fatigue-Mat2_65.jpg" alt="With two thousand finger-like tips, the Flex-Tip Scraper Entrance Mat aggressively scrapes soil from shoes and provides excellent anti-fatigue capabilities and is great for outdoor use." title="" /></a></div></div>
</div>
</div>
<div class="row expanded">
<div class="large-4 columns" style="white-space:nowrap;">
<input name="ctl00$MainContentHolder$ImageView$QuantityField" type="text" value="1" maxlength="4" id="ctl00_MainContentHolder_ImageView_QuantityField" tabindex="5000" style="width:40px;display: inline-block;" />
<span id="Anthem_ctl00_MainContentHolder_ImageView_valQty__"><span id="ctl00_MainContentHolder_ImageView_valQty" style="color:Red;display:none;">*</span></span>
<span id="Anthem_ctl00_MainContentHolder_ImageView_val2Qty__"><span id="ctl00_MainContentHolder_ImageView_val2Qty" style="color:Red;display:none;">*</span></span>
</div>
<div class="large-8 columns" style="padding-left:0;">
<span id="Anthem_ctl00_MainContentHolder_ImageView_AddToCartButton1_btnAdd__"><a onclick="if(typeof(checkSizeGridQty) != 'undefined') return checkSizeGridQty();javascript:Anthem_FireCallBackEvent(this,event,'ctl00$MainContentHolder$ImageView$AddToCartButton1$btnAdd','',true,'','','',false,null,null,null,true,true);return false;" id="ctl00_MainContentHolder_ImageView_AddToCartButton1_btnAdd" class="fa fa-shopping-cart button radius expand success" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$MainContentHolder$ImageView$AddToCartButton1$btnAdd", "", true, "", "", false, true))">Add to Cart</a></span>
</div>
</div>
</div>
</div></div>
<script>
function loadImages() {
if ($('#ctl00_MainContentHolder_ImageView_pnlImages .easyzoom').length > 0) {
var $easyzoom = $('#ctl00_MainContentHolder_ImageView_pnlImages .easyzoom').easyZoom();
var api1 = $easyzoom.data('easyZoom');
$('#ctl00_MainContentHolder_ImageView_pnlImages .easyzoom-thumbnails').on('click', 'a', function (e) {
var $this = $(this);
e.preventDefault();
if ($this.hasClass('video')) {
$(this).closest('.easyzoom-wrap').find('.easyzoom,.nozoom').hide();
//$(this).closest('.easyzoom-wrap').find('.video-wrap').show();
$(this).closest('.easyzoom-wrap').find('.video-wrap').hide();
stopAllVideos();
var player = $(this).closest('.easyzoom-wrap').find('#video-wrap-' + $this.attr('video') + ' iframe');
if (player.length > 0) {
var src = player.attr('src');
if (src.indexOf('?') >= 0)
src += '&autoplay=1';
else
src += '?autoplay=1';
player.attr('src', src);
}
$(this).closest('.easyzoom-wrap').find('#video-wrap-' + $this.attr('video')).show();
}
else {
$(this).closest('.easyzoom-wrap').find('.video-wrap').hide();
stopAllVideos();
$(this).closest('.easyzoom-wrap').find('.easyzoom,.nozoom').css('display', '');
api1.swap($this.data('standard'), $this.attr('href'));
if ($(this).closest('.easyzoom-wrap.expanded').length > 0) {
$(this).closest('.easyzoom-wrap.expanded').find('.nozoom img').attr('src', $this.closest('a').attr('href'));
}
}
});
$('#ctl00_MainContentHolder_ImageView_pnlImages .easyzoom img,#ctl00_MainContentHolder_ImageView_pnlImages .nozoom img').click(function () {
if ($(this).closest('.easyzoom-wrap.expanded').length > 0)
collapseImages();
});
if ($('#ctl00_MainContentHolder_ImageView_pnlImages .video-wrap iframe').length > 0) {
//var $video = $('#ctl00_MainContentHolder_ImageView_pnlImages .video-wrap iframe');
//$video.closest('.video-wrap').css('padding-top', ($video.attr('height') / $video.attr('width') * 100) + '%');
//$video.removeAttr('height').removeAttr('width');
$.each($('#ctl00_MainContentHolder_ImageView_pnlImages .video-wrap iframe'), function (index, value) {
var $video = $(value);
$video.closest('.video-wrap').css('padding-top', ($video.attr('height') / $video.attr('width') * 100) + '%');
$video.removeAttr('height').removeAttr('width');
});
}
}
}
function stopAllVideos() {
$.each($('.easyzoom-wrap .video-wrap iframe'), function () {
var src = $(this).attr('src');
if (src.indexOf('autoplay=1') >= 0) {
src = src.replace('&autoplay=1', '');
src = src.replace('?autoplay=1', '');
$(this).attr('src', src);
}
});
}
function expandImages(e) {
var $this = $(e);
$this.closest('.easyzoom-wrap').find('.nozoom img').attr('src', $this.find('img').attr('src')).attr('alt', $this.find('img').attr('alt')).attr('title', $this.find('img').attr('title'));
$this.closest('.easyzoom-wrap').addClass('expanded');
}
function collapseImages() {
$('.easyzoom-wrap').removeClass('expanded');
}
</script>
</div>
<div id="viewcolors" class="text-right">
<script type="text/javascript">
function showColors() {
$('#pagetabber .hiddencontent').hide();
$('#pagetabber #nav>a').removeClass();
$('#pagetabber #divname').slideDown('fast');
$('#pagetabber #nav>a:first-child').addClass('selected');
$('.fms-custommat').show();
if ($(window).width() >= 768)
$('html, body').animate({ scrollTop: $('#matproductadditional').offset().top }, 500);
else
$('html, body').animate({ scrollTop: $('#ctl00_MainContentHolder_pnlSecondaryDescription').offset().top }, 500);
}
function initColors() {
$('.matcolorpic>a,.matcolorpic>img')
.tooltip({
track: true,
delay: 0,
showURL: false,
//show: false,
content: function () {
var $this = $(this);
if ($this.is("img") && $(this).closest('a').length > 0)
return '<img style="margin:0 auto;width:300px;height:300px;" src="' + $(this).closest('a').attr('href') + '" />';
else if ($this.is("img"))
return '<img style="margin:0 auto;width:300px;height:300px;" src="' + $(this).attr('src') + '" />';
else
return '<img style="margin:0 auto;width:300px;height:300px;" src="' + $(this).attr('href') + '" />';
}
})
.click(function (e) {
e.preventDefault();
return false;
})
.on('mousedown', function () {
//$('.matcolorpic>a').tooltip("close");
$('.ui-tooltip').remove();
});
$('.ui-tooltip').remove();
}
</script>
</div>
</div>
<div class="large-6 column product-column">
<div id="Anthem_ctl00_MainContentHolder_pnlPrices__"><div id="ctl00_MainContentHolder_pnlPrices" class="pricebox hideforlowres" itemprop="offers" itemscope="" itemtype="http://schema.org/Offer">
<meta id="ctl00_MainContentHolder_metaPriceCurrency" itemprop="priceCurrency" content="USD"></meta>
<meta id="ctl00_MainContentHolder_metaAvailability" itemprop="availability" content="InStock"></meta>
<meta id="ctl00_MainContentHolder_metaPrice" itemprop="price" content="38.11"></meta>
<meta itemprop="itemCondition" content="http://schema.org/NewCondition" />
<div class="row">
<div class="large-7 columns">
<div class="yourPrice SitePrice">
<span class="labelCell">
<b>
<span id="ctl00_MainContentHolder_lblSitePriceName" class="ProductPropertyLabel">Your Price</span></b></span>
<span>
<span id="Anthem_ctl00_MainContentHolder_lblSitePrice__"><span id="ctl00_MainContentHolder_lblSitePrice" class="SitePrice-"><span class="hideforlowres">Starting At </span>$38.11</span></span></span>
<span id="Anthem_ctl00_MainContentHolder_lblSale__"></span>
<span id="Anthem_ctl00_MainContentHolder_lblSalePrice__"></span>
</div>
</div>
<div id="matbuttons" class="large-5 columns">
<div id="ctl00_MainContentHolder_viewsizes" style="display: inline-block;">
<a href="#pricing">
<img src="BVModules/Themes/Foundation4 Responsive/images/buttons/ViewSizes.png" alt="View Sizes & Pricing" /></a>
</div>
</div>
</div>
</div></div>
<div id="Anthem_ctl00_MainContentHolder_OutOfStockDisplay1_InStockPanel__"><div id="ctl00_MainContentHolder_OutOfStockDisplay1_InStockPanel" class="in-stock" data-alert="">
<span id="ctl00_MainContentHolder_OutOfStockDisplay1_ltrInStock">In Stock</span>
</div></div>
<div id="Anthem_ctl00_MainContentHolder_OutOfStockDisplay1_OutOfStockPanel__"></div>
<div id="Anthem_ctl00_MainContentHolder_valSummary__"><div id="ctl00_MainContentHolder_valSummary" class="alert-box alert" data-alert="" style="color:White;display:none;">
</div></div>
<div id="ctl00_MainContentHolder_VariantsDisplay_VariantsPanel" class="variantsdisplay">
<table>
<tr class="dropdownlist t2 pm-d88b2f4d-23cb-4282-a84d-e0f69267724e">
<td class="choicelabel">
<span id="ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputLabel">Size</span></td>
<td class="choicefield">
<span id="Anthem_ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList__"><select name="ctl00$MainContentHolder$VariantsDisplay$modifierTemplate1$ModifierList" id="ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList" onchange="javascript:Anthem_FireCallBackEvent(this,event,'ctl00$MainContentHolder$VariantsDisplay$modifierTemplate1$ModifierList','',false,'','','',true,null,null,null,true,true);return false;">
<option selected="selected" value="04d3c160-ff1d-4f91-858e-c030950ad5f1">Choose Size</option>
<option value="ac7685b0-3f2e-475f-b725-95f4fe243f44">24" x 32"</option>
<option value="fd73933e-0128-4e2f-994c-7c18472965e8">32" x 39"</option>
<option value="c7cce5bb-a18f-42da-8468-e1f1fbd143aa">36" x 72"</option>
</select></span>
<div id="Anthem_ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_pnlCustomLength__"></div>
<script type="text/javascript">
function loadControl_ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList() {
$('#ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList').change(function () { $('.ui-tooltip').remove(); }).msDropDown();
var a = $('#ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList').attr('onchange');
if (typeof a !== typeof undefined && a !== false) {
$('#ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList_child a').click(function () { $('#ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList').change(); $('.ui-tooltip').remove(); });
}
$(document).tooltip({
items: '.ddChild a.image-item,.ddTitle.image-item>span',
track: true,
delay: 0,
showURL: false,
content: function () {
return '<img style="margin:0 auto;width:300px;height:300px;" src="' + $(this).find('img').attr('src') + '" />';
}
});
$('.ui-tooltip').remove();
$('#ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList_child').children().wrapAll('<div class="scrollbar-inner"></div>');
$('#ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList_child .scrollbar-inner').scrollbar();
}
function validateSize_ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList(source, arguments) {
if ($('tr.custom-size input[type=checkbox]').length && $('tr.custom-size input[type=checkbox]').prop('checked'))
arguments.IsValid = true;
else
if ($('#ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList').val() != '' && $('#ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList').val() != '04d3c160-ff1d-4f91-858e-c030950ad5f1')
arguments.IsValid = true;
else
arguments.IsValid = false;
}
</script>
</td>
<td class="choiceerror">
<span id="Anthem_ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputRequiredFieldValidator__"><span id="ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputRequiredFieldValidator" class="errormessage" style="visibility:hidden;">*</span></span>
<span id="Anthem_ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputCustomValidator__"><span id="ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputCustomValidator" class="errormessage" style="visibility:hidden;">*</span></span>
</td>
</tr>
</table>
</div>
<div id="Anthem_ctl00_MainContentHolder_InvalidChoiceCombinationPanel__"></div>
<div id="Anthem_ctl00_MainContentHolder_ProductControlsPanel__"><div id="ctl00_MainContentHolder_ProductControlsPanel" class="productcontrolspanel highlight" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_MainContentHolder_AddToCartButton1_btnAdd')">
<div class="row">
<div class="small-4 columns hideforhighres">
<div id="Anthem_ctl00_MainContentHolder_pnlPrices1__"><div id="ctl00_MainContentHolder_pnlPrices1" class="pricebox" style="border: none;">
<div class="yourPrice SitePrice">
<span class="labelCell">
<b>
<span id="ctl00_MainContentHolder_lblSitePriceName1" class="ProductPropertyLabel">Your Price</span></b></span>
<span>
<span id="Anthem_ctl00_MainContentHolder_lblSitePrice1__"><span id="ctl00_MainContentHolder_lblSitePrice1" class="SitePrice-"><span class="hideforlowres">Starting At </span>$38.11</span></span></span>
<span id="Anthem_ctl00_MainContentHolder_lblSale1__"></span>
<span id="Anthem_ctl00_MainContentHolder_lblSalePrice1__"></span>
</div>
</div></div>
</div>
<div id="ctl00_MainContentHolder_trQuantity" class="large-4 small-3 columns qty-block">
<label for="ctl00_MainContentHolder_QuantityField" id="ctl00_MainContentHolder_lblQuantity">QTY:</label>
<input name="ctl00$MainContentHolder$QuantityField" value="1" maxlength="4" id="ctl00_MainContentHolder_QuantityField" onkeypress="return filterKey(event);" onkeyup="loadPrices(event);" type="tel" style="width:40px;" />
<input type="hidden" name="ctl00$MainContentHolder$hidQuantityField" id="ctl00_MainContentHolder_hidQuantityField" />
<span id="Anthem_ctl00_MainContentHolder_valQty__"><span id="ctl00_MainContentHolder_valQty" style="color:Red;display:none;">*</span></span>
<span id="Anthem_ctl00_MainContentHolder_val2Qty__"><span id="ctl00_MainContentHolder_val2Qty" style="color:Red;display:none;">*</span></span>
</div>
<script type="text/javascript">
function filterKey(e) {
var code = e.keyCode || e.which;
if (code == 32) {
e.returnValue = false;
return false;
}
}
function loadPrices(e) {
var code = e.keyCode || e.which;
if (code != 32) {
Anthem_FireCallBackEvent(document.getElementById('ctl00_MainContentHolder_QuantityField'), 'change', 'ctl00$MainContentHolder$QuantityField', '', false, '', '', '', true, null, null, null, true, true);
}
}
</script>
<div class="large-8 small-5 columns cart-buttons">
<span id="Anthem_ctl00_MainContentHolder_AddToCartButton1_btnAdd__"><a onclick="if(typeof(checkSizeGridQty) != 'undefined') return checkSizeGridQty();javascript:Anthem_FireCallBackEvent(this,event,'ctl00$MainContentHolder$AddToCartButton1$btnAdd','',true,'','','',false,null,null,null,true,true);return false;" id="ctl00_MainContentHolder_AddToCartButton1_btnAdd" class="fa fa-shopping-cart button radius expand success" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$MainContentHolder$AddToCartButton1$btnAdd", "", true, "", "", false, true))">Add to Cart</a></span>
</div>
</div>
<div class="row">
<div class="large-8 push-4 small-12 columns">
<div class="small-6 columns" style="padding: 0; width: 55%;">
<div id="EmailThisPage">
<a onclick="JavaScript:window.open('EmailFriend.aspx?productID=85d73f14-519c-4805-98a2-5b8de3016530','Images','width=400, height=200, menubar=no, scrollbars=yes, resizable=yes, status=no, toolbar=no');javascript:Anthem_FireCallBackEvent(this,event,'ctl00$MainContentHolder$EmailThisPage1$EmailLink','',true,'','','',true,null,null,null,true,true);return false;" id="ctl00_MainContentHolder_EmailThisPage1_EmailLink" class="fa fa-envelope button radius expand secondary" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$MainContentHolder$EmailThisPage1$EmailLink", "", true, "", "", false, true))" style="CURSOR:pointer;">Share With A Friend</a>
</div>
</div>
<div class="small-6 columns" style="padding: 0; width: 45%;">
<div id="wishlist">
<a onclick="javascript:Anthem_FireCallBackEvent(this,event,'ctl00$MainContentHolder$AddToWishlist1$AddToWishlist','',true,'','','',true,null,null,null,true,true);return false;" id="ctl00_MainContentHolder_AddToWishlist1_AddToWishlist" class="fa fa-heart button radius expand secondary" href="javascript:WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions("ctl00$MainContentHolder$AddToWishlist1$AddToWishlist", "", true, "", "", false, true))">Add To Wishlist</a>
</div>
</div>
</div>
<div class="large-4 pull-8 columns">
</div>
</div>
<div class="row">
<div class="large-12 columns">
<span id="Anthem_ctl00_MainContentHolder_ItemAddedToCartLabel__"></span>
</div>
</div>
<br />
<div class="row">
<div class="large-12 columns">
<div id="productproperties">
<ul class="typedisplay">
<li class="alt" style="border-bottom: none;">
<span class="productpropertylabel">
<span id="ctl00_MainContentHolder_lblSKUTitle">SKU</span></span>
<span class="productpropertyvalue">
<span id="Anthem_ctl00_MainContentHolder_lblSku__"><span id="ctl00_MainContentHolder_lblSku" itemprop="productID">AM-874</span></span></span>
</li>
</ul>
<div id="ProductTypes">
<div id="Anthem_ctl00_MainContentHolder_ProductTypeDisplay1_ProductTypePanel__"><div id="ctl00_MainContentHolder_ProductTypeDisplay1_ProductTypePanel" class="producttypepanel">
<ul class="typedisplay"><li><span class="productpropertylabel">Product Type:</span><span class="productpropertyvalue">Scraper Entrance Mat</span></li><li class="alt"><span class="productpropertylabel">Thickness:</span><span class="productpropertyvalue">5/8”</span></li></ul>
</div></div>
</div>
</div>
</div>
</div>
</div></div>
<div id="Anthem_ctl00_MainContentHolder_BackInStockNotification_pnlProductUnavailable__"></div>
<div id="matpricingoptionbuttons">
<div id="matvolumepricing"><a id="ctl00_MainContentHolder_VolumeRequestForm1_QuoteLink" onclick="JavaScript:window.open('RequestAQuote.aspx?productID=85d73f14-519c-4805-98a2-5b8de3016530','Images','width=600, height=550, menubar=no, scrollbars=yes, resizable=yes, status=no, toolbar=no')" style="CURSOR:pointer;"><img id="ctl00_MainContentHolder_VolumeRequestForm1_imgQuote" src="BVModules/Themes/Foundation4%20Responsive/images/buttons/Request-Quote.png" alt="Request A Quote" style="border-width:0px;cursor: hand" /></a></div>
</div>
</div>
</div>
<div id="matproductdescription" style="position: relative;" class="clearfix">
<div id="longdescription" class="hideforlowres">
<h2>
<span>Mat Description: <span id="ctl00_MainContentHolder_MoreDetails"><a href="#fullspecs">View More Info</a></span></span>
</h2>
<span id="Anthem_ctl00_MainContentHolder_lblDescription__"><span id="ctl00_MainContentHolder_lblDescription"><strong>Entrance-Scraper - Indoor/Outdoor</strong>
<ul>
<li>Two thousand finger-like tips/sq. ft (21,000/m2) aggressively scrape soil from shoes</li>
<li>Perfect outside of building entrances</li>
<li>OSHA-compliant beveled edges and deep wells hold heavy soil and debris</li>
<li>Solid, 5/8" (16mm) thick construction</li>
<li>Offers excellent anti-fatigue capabilities</li>
<li>Easily cleaned by hosing off or shaking</li>
</ul>
<div>
<img src="Business-Industrial/eco-friendly-icon.png" title="Eco Friendly" style="vertical-align: middle;"> <span class="greentext" style="vertical-align: middle;">Recycled Content of Mat: 37%</span> <span class="redtext" style="vertical-align: middle;">Made</span> <span style="vertical-align: middle;">in</span> <span class="bluetext" style="vertical-align: middle;">USA</span>
</div></span></span>
</div>
<div id="SocialSharing">
<a id="share" name="share"></a>
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_pinterest_pinit"></a>
<a class="addthis_counter addthis_pill_style"></a>
</div>
<!-- AddThis Button END -->
</div>
</div>
<br />
<div id="matpricing">
<!-- MAT PRICING -->
<div id="ctl00_MainContentHolder_pnlPricing">
<a name="pricing" id="pricing"></a>
<span style="color: red; font-style: italic; font-weight: bold;">Note:</span> <strong>Sizes are approximate:</strong> <i>Floor mats will measure slightly smaller in size due to the natural curing process after manufacturing.</i>
<hr>
<div id="matpricetableheader">
<ul>
<li id="matpricetableheaderleft">Available Sizes (Approximate)</li>
<li id="matpricetableheaderright">
Your Quantity Discounted Prices</li>
</ul>
</div>
<div id="matpricetable">
<div>
<table cellspacing="0" cellpadding="0" DataKeyField="bvin" border="0" id="ctl00_MainContentHolder_SizesGridView" style="border-width:0px;width:100%;border-collapse:collapse;">
<tr>
<th scope="col">SIZE - Click To Select</th><th scope="col"><span class="hideforlowres">Qty. 1 - 6</span><span class="hideforhighres">Price</span></th><th class="matvolumeprice" scope="col"><span>Qty. 7 - 30</span></th><th class="matvolumeprice" scope="col">Qty. 31+</th><th class="matlistprice" scope="col">Normally:</th>
</tr><tr>
<td class="sizecolumn">
<span id="Anthem_ctl00_MainContentHolder_SizesGridView_ctl02_btnSelectSize__"><a onclick="$('html, body').animate({ scrollTop: $('h1.product-name').offset().top }, 500);javascript:Anthem_FireCallBackEvent(this,event,'ctl00$MainContentHolder$SizesGridView$ctl02$btnSelectSize','',false,'','','',true,null,null,null,true,true);return false;" id="ctl00_MainContentHolder_SizesGridView_ctl02_btnSelectSize" href="javascript:__doPostBack('ctl00$MainContentHolder$SizesGridView$ctl02$btnSelectSize','')"><span id="ctl00_MainContentHolder_SizesGridView_ctl02_lblSizeName">24" x 32"</span></a></span>
</td><td><span>$38.11</span></td><td class="matvolumeprice"><span>$37.43</span></td><td class="matvolumeprice"><span>$35.57</span></td><td class="matlistprice"><span id="ctl00_MainContentHolder_SizesGridView_ctl02_lblWas" class="matlistprice">$43.16</span></td>
</tr><tr>
<td class="sizecolumn">
<span id="Anthem_ctl00_MainContentHolder_SizesGridView_ctl03_btnSelectSize__"><a onclick="$('html, body').animate({ scrollTop: $('h1.product-name').offset().top }, 500);javascript:Anthem_FireCallBackEvent(this,event,'ctl00$MainContentHolder$SizesGridView$ctl03$btnSelectSize','',false,'','','',true,null,null,null,true,true);return false;" id="ctl00_MainContentHolder_SizesGridView_ctl03_btnSelectSize" href="javascript:__doPostBack('ctl00$MainContentHolder$SizesGridView$ctl03$btnSelectSize','')"><span id="ctl00_MainContentHolder_SizesGridView_ctl03_lblSizeName">32" x 39"</span></a></span>
</td><td><span>$61.43</span></td><td class="matvolumeprice"><span>$62.88</span></td><td class="matvolumeprice"><span>$59.73</span></td><td class="matlistprice"><span id="ctl00_MainContentHolder_SizesGridView_ctl03_lblWas" class="matlistprice">$72.53</span></td>
</tr><tr>
<td class="sizecolumn">
<span id="Anthem_ctl00_MainContentHolder_SizesGridView_ctl04_btnSelectSize__"><a onclick="$('html, body').animate({ scrollTop: $('h1.product-name').offset().top }, 500);javascript:Anthem_FireCallBackEvent(this,event,'ctl00$MainContentHolder$SizesGridView$ctl04$btnSelectSize','',false,'','','',true,null,null,null,true,true);return false;" id="ctl00_MainContentHolder_SizesGridView_ctl04_btnSelectSize" href="javascript:__doPostBack('ctl00$MainContentHolder$SizesGridView$ctl04$btnSelectSize','')"><span id="ctl00_MainContentHolder_SizesGridView_ctl04_lblSizeName">36" x 72"</span></a></span>
</td><td><span>$118.67</span></td><td class="matvolumeprice"><span>$128.36</span></td><td class="matvolumeprice"><span>$121.94</span></td><td class="matlistprice"><span id="ctl00_MainContentHolder_SizesGridView_ctl04_lblWas" class="matlistprice">$148.04</span></td>
</tr>
</table>
</div>
</div>
</div>
<p class="toplink"><a href="#top">↑ Back To Top</a></p>
</div>
<div id="matproductadditional" class="fms-custommat hideforlowres">
<a id="fullspecs" name="fullspecs"></a>
<span id="Anthem_ctl00_MainContentHolder_lblSecondaryDescription__"><span id="ctl00_MainContentHolder_lblSecondaryDescription"><div id="pagetabber">
<div id="nav">
<a href="#" title="divname"><span>Full Specifications</span></a>
<a href="#" title="divname2"><span>Certifications & Warranty</span></a>
<a href="#" title="divname3"><span>Maintenance</span></a>
</div>
<div id="divname" class="hiddencontent">
<div class="hiddencontentpad">
<div id="matfullspecs">
<p class="title"><span>Full Specifications</span></p>
<h5>Features:</h5>
<ul>
<li>Two thousand finger-like tips/sq. ft (21,000/m^2 aggressively scrape soil from shoes</li>
<li>Excellent for outdoor use</li>
<li>OSHA-compliant beveld edges and deep wells hold heavy soil and debris</li>
<li>Solid, 5/8" (16mm) thick construction</li>
<li>Has excellent anti-fatigue capabilities</li>
<li>Easily cleaned by hosing off or shaking</li>
<li>Sizes: 22" x 32", 32" x 39", 36" x 72"</li>
<li>Recommended for outside entrances</li>
</ul>
<h5>Physical Specifications:</h5>
<ul>
<li><strong>RUBBER TYPE:</strong> Natural Rubber</li>
<li><strong>THICKNESS:</strong> 5/8"</li>
<li><strong>COLOR:</strong> Black</li>
<li><strong>DUROMETER:</strong> 55</li>
</ul>
<h5>Product Testing:</h5>
<ul>
<li>Passes Flammability Standard DOC-FF-1-70</li>
<li>UV Stable</li>
</ul>
<p class="toplink"><a href="#top">↑ Back To Top</a></p>
</div>
</div>
</div>
<div id="divname2" class="hiddencontent">
<div class="hiddencontentpad">
<div id="matcerts">
<p class="title"><span>Certifications & Warranty Information</span></p>
<h5>NFSI Certified Slip Resistant</h5>
<div><img src="Business-Industrial/Carpeting-Matting-Flooring/NFSI-National-Floor-Safety-Institution-Slip-Resistant-Certified.png" alt="NFSI Certified Slip Resistant" title="NFSI Certified Slip Resistant" width="53" height="90"></div>
<p>In the marketplace, architects, designers, and specifiers are being educated to select products that are NFSI certified in high-risk areas. It is their assurance that the products have been clinically tested and meet the highest performance standards.</p>
<p>This is just another indication that Andersen is leading the industry with the highest performing, most innovative, and now the safest mats available.</p>
<h5>100% CUSTOMER SATISFACTION GUARANTEE</h5>
<div><img src="Business-Industrial/Carpeting-Matting-Flooring/Andersen-Floor-Mat-Guarantee.png" alt="100% Customer Satisfaction Guarantee" title="100% Customer Satisfaction Guarantee" width="110" height="70"></div>
<p>Our 100% Customer Satisfaction Guarantee means that you can partner with FloorMatShop.com and the M + A Matting Company knowing that we will always stand behind our products and services.</p>
<p>In the mat industry, M + A mats are where design and function come together, where quality isn't compromised to meet a price point, and where solutions to your maintenance and decor problems come first.</p>
<p><strong>All M + A mats feature a 100% customer satisfaction warranty for the life of the product!</strong></p>
<p class="toplink"><a href="#top">↑ Back To Top</a></p>
</div>
</div>
</div>
<div id="divname3" class="hiddencontent">
<div class="hiddencontentpad">
<div id="matcleaning">
<p class="title"><span>Maintenance & Cleaning Recommendations</span></p>
<p><strong>1. Sweep/Brush Daily</strong></p>
<ul>
<li>Exterior mats should have dirt and debris removed daily by either sweeping or simply emptying the mat.</li>
</ul>
<p><strong>2. Routine Maintenance</strong></p>
<ul>
<li>Periodically exterior mats may be cleaned by pressure washing or with a water hose. Use of harsh chemicals or solvents should be avoided.</li>
</ul>
<p class="toplink"><a href="#top">↑ Back To Top</a></p>
</div>
</div>
</div>
</div>
</span></span>
</div>
<!-- Additional Info -->
<div class="expander-mobile hideforhighres">
<div class="content-header">
<h2>Additional Info</h2>
</div>
<div class="content">
<span id="Anthem_ctl00_MainContentHolder_lblDescription1__"><span id="ctl00_MainContentHolder_lblDescription1"><strong>Entrance-Scraper - Indoor/Outdoor</strong>
<ul>
<li>Two thousand finger-like tips/sq. ft (21,000/m2) aggressively scrape soil from shoes</li>
<li>Perfect outside of building entrances</li>
<li>OSHA-compliant beveled edges and deep wells hold heavy soil and debris</li>
<li>Solid, 5/8" (16mm) thick construction</li>
<li>Offers excellent anti-fatigue capabilities</li>
<li>Easily cleaned by hosing off or shaking</li>
</ul>
<div>
<img src="Business-Industrial/eco-friendly-icon.png" title="Eco Friendly" style="vertical-align: middle;"> <span class="greentext" style="vertical-align: middle;">Recycled Content of Mat: 37%</span> <span class="redtext" style="vertical-align: middle;">Made</span> <span style="vertical-align: middle;">in</span> <span class="bluetext" style="vertical-align: middle;">USA</span>
</div></span></span>
</div>
</div>
<a id="related" name="related"></a>
<div id="ctl00_MainContentHolder_pnlCrossSells" class="expander-mobile">
<div class="content-header">
<h2>You May Also Like</h2>
</div>
<div class="cross-sell-grid content">
<h2><span id="ctl00_MainContentHolder_CrossSellDisplay_TitleLabel">Frequently Purchased Together</span></h2>
<div id="ctl00_MainContentHolder_CrossSellDisplay_CrossSellsPanel">
<div class="productcarousel" id="productcarousel-ctl00_MainContentHolder_CrossSellDisplay_CrossSellsPanel">
<div class="carousel">
<ul class="row productgrid">
<li id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_holder" class="large-4 columns">
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_SingleProductDisplayPanel" class="SingleProductDisplayPanel" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_AddToCartImageButton')">
<div class="record wide smallText">
<style type="text/css">
dlg-addons .record .product-info .recordAddToCart, .dlg-addons .record .product-info .recordqty { display: inline-block !important; }
</style>
<div class="row">
<div class="small-4 columns">
<div class="SingleProductDisplayImage recordimage">
<a href="/395-Brush-Hog-Outdoor-Scraper-Entrance-Mat.aspx" id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_productimagelink">
<img id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_ProductImage" src="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-395/Brush-Hog-Outdoor-Entrance-Mat-395-sm.png" alt="Andersen Brush Hog Outdoor Scraper Entrance Floor Mat" style="height:150px;width:200px;border-width:0px;" />
</a>
</div>
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_recordqty" class="SingleProductDisplayQuantity recordqty">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRequiredFieldValidator__"></span>
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRegularExpressionValidator__"></span>
</div>
<div class="SingleProductDisplayAddToCart recordAddToCart">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_AddToCartImageButton__"></span>
<a id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_DetailsLink" class="button success" href="/395-Brush-Hog-Outdoor-Scraper-Entrance-Mat.aspx">Choose Options</a>
</div>
</div>
<div class="small-8 columns">
<div class="SingleProductDisplaySku recordsku">
</div>
<div class="SingleProductSale recordsale">
</div>
<div class="SingleProductDisplayName recordname">
<a id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_NameHyperLink" href="/395-Brush-Hog-Outdoor-Scraper-Entrance-Mat.aspx">Brush Hog Outdoor Scraper Entrance Mat</a>
</div>
<div class="SingleProductDisplayDescription recorddesc">
</div>
<div class="SingleProductDisplayRating recordrating">
<div class="tp-stars tp-stars--0">
<div>
<svg viewBox="0 0 251 46">
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M0 46.330002h46.375586V0H0z"></path>
<path class="tp-star__shape" d="M39.533936 19.711433L13.230239 38.80065l3.838216-11.797827L7.02115 19.711433h12.418975l3.837417-11.798624 3.837418 11.798624h12.418975zM23.2785 31.510075l7.183595-1.509576 2.862114 8.800152L23.2785 31.510075z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M51.24816 46.330002h46.375587V0H51.248161z"></path>
<path class="tp-star__shape" d="M74.990978 31.32991L81.150908 30 84 39l-9.660206-7.202786L64.30279 39l3.895636-11.840666L58 19.841466h12.605577L74.499595 8l3.895637 11.841466H91L74.990978 31.329909z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M102.532209 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M142.066994 19.711433L115.763298 38.80065l3.838215-11.797827-10.047304-7.291391h12.418975l3.837418-11.798624 3.837417 11.798624h12.418975zM125.81156 31.510075l7.183595-1.509576 2.862113 8.800152-10.045708-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M153.815458 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M193.348355 19.711433L167.045457 38.80065l3.837417-11.797827-10.047303-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418974zM177.09292 31.510075l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M205.064416 46.330002h46.375587V0h-46.375587z"></path>
<path class="tp-star__shape" d="M244.597022 19.711433l-26.3029 19.089218 3.837419-11.797827-10.047304-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418975zm-16.255436 11.798642l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
</svg>
</div>
</div>
<div class="tp-widget-readmore"></div>
</div>
<div class="SingleProductDisplayPrice recordprice">
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_listPricePanel" class="SingleProductDisplayListPrice recordlistprice">
<span id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_ListPriceLabel" class="ListPriceLabel"></span>
</div>
<span id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_PriceLabel" class="PriceLabel">Starting At: $52.95</span>
</div>
</div>
<div class="column">
<div class="SingleProductDisplayAddedToCart recordadded">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_AddedToCartLabel__"></span>
</div>
</div>
</div>
</div>
</div>
</li>
<li id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_holder" class="large-4 columns">
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_SingleProductDisplayPanel" class="SingleProductDisplayPanel" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_AddToCartImageButton')">
<div class="record wide smallText">
<style type="text/css">
dlg-addons .record .product-info .recordAddToCart, .dlg-addons .record .product-info .recordqty { display: inline-block !important; }
</style>
<div class="row">
<div class="small-4 columns">
<div class="SingleProductDisplayImage recordimage">
<a href="/Superscrape-Slip-Resistant-Scraper-Entrance-Mat.aspx" id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_productimagelink">
<img id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_ProductImage" src="/Business-Industrial/Commercial-Scraper-Entrance-Mats/AM-450/Clean-Step-Super-Scrape-sm.jpg" alt="Super Scrape Indoor/Outdoor Scraper Entrance Mat" style="height:150px;width:200px;border-width:0px;" />
</a>
</div>
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_recordqty" class="SingleProductDisplayQuantity recordqty">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRequiredFieldValidator__"></span>
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRegularExpressionValidator__"></span>
</div>
<div class="SingleProductDisplayAddToCart recordAddToCart">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_AddToCartImageButton__"></span>
<a id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_DetailsLink" class="button success" href="/Superscrape-Slip-Resistant-Scraper-Entrance-Mat.aspx">Choose Options</a>
</div>
</div>
<div class="small-8 columns">
<div class="SingleProductDisplaySku recordsku">
</div>
<div class="SingleProductSale recordsale">
</div>
<div class="SingleProductDisplayName recordname">
<a id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_NameHyperLink" href="/Superscrape-Slip-Resistant-Scraper-Entrance-Mat.aspx">Clean Step Super Scrape Slip-Resistant Entrance Mat</a>
</div>
<div class="SingleProductDisplayDescription recorddesc">
</div>
<div class="SingleProductDisplayRating recordrating">
<div class="tp-stars tp-stars--4">
<div>
<svg viewBox="0 0 251 46">
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M0 46.330002h46.375586V0H0z"></path>
<path class="tp-star__shape" d="M39.533936 19.711433L13.230239 38.80065l3.838216-11.797827L7.02115 19.711433h12.418975l3.837417-11.798624 3.837418 11.798624h12.418975zM23.2785 31.510075l7.183595-1.509576 2.862114 8.800152L23.2785 31.510075z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M51.24816 46.330002h46.375587V0H51.248161z"></path>
<path class="tp-star__shape" d="M74.990978 31.32991L81.150908 30 84 39l-9.660206-7.202786L64.30279 39l3.895636-11.840666L58 19.841466h12.605577L74.499595 8l3.895637 11.841466H91L74.990978 31.329909z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M102.532209 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M142.066994 19.711433L115.763298 38.80065l3.838215-11.797827-10.047304-7.291391h12.418975l3.837418-11.798624 3.837417 11.798624h12.418975zM125.81156 31.510075l7.183595-1.509576 2.862113 8.800152-10.045708-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M153.815458 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M193.348355 19.711433L167.045457 38.80065l3.837417-11.797827-10.047303-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418974zM177.09292 31.510075l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M205.064416 46.330002h46.375587V0h-46.375587z"></path>
<path class="tp-star__shape" d="M244.597022 19.711433l-26.3029 19.089218 3.837419-11.797827-10.047304-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418975zm-16.255436 11.798642l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
</svg>
</div>
<div class="tp-review-popup tp-widget-wrapper" style="display:none;">
<div class="tp-widget-productinfo">4.2 out of 5</div>
<div class="tp-widget-businessinfo">
<div class="score">
<div class="score__stars">5 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--5" style="width: 50%;"></div>
</div>
<div class="score__number">(3)</div>
</div>
<div class="score">
<div class="score__stars">4 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--4" style="width: 17%;"></div>
</div>
<div class="score__number">(1)</div>
</div>
<div class="score">
<div class="score__stars">3 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--3" style="width: 33%;"></div>
</div>
<div class="score__number">(2)</div>
</div>
<div class="score">
<div class="score__stars">2 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--2" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">1 star</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--1" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
</div>
</div>
</div>
<div class="tp-widget-readmore">6 reviews</div>
</div>
<div class="SingleProductDisplayPrice recordprice">
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_listPricePanel" class="SingleProductDisplayListPrice recordlistprice">
<span id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_ListPriceLabel" class="ListPriceLabel"></span>
</div>
<span id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_PriceLabel" class="PriceLabel">Starting At: $79.14</span>
</div>
</div>
<div class="column">
<div class="SingleProductDisplayAddedToCart recordadded">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_AddedToCartLabel__"></span>
</div>
</div>
</div>
</div>
</div>
</li>
<li id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_holder" class="large-4 columns">
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_SingleProductDisplayPanel" class="SingleProductDisplayPanel" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_AddToCartImageButton')">
<div class="record wide smallText">
<style type="text/css">
dlg-addons .record .product-info .recordAddToCart, .dlg-addons .record .product-info .recordqty { display: inline-block !important; }
</style>
<div class="row">
<div class="small-4 columns">
<div class="SingleProductDisplayImage recordimage">
<a href="/NT-599-Oct-O-Flex-Outdoor-Entrance-Mat.aspx" id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_productimagelink">
<img id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_ProductImage" src="/Business-Industrial/Commercial-Scraper-Entrance-Mats/NT-599/NT-599-Oct-O-Flex-Outdoor-Entrance-Mat-sm.jpg" alt="Oct-O-Flex Outdoor Entrance Mat" style="height:150px;width:200px;border-width:0px;" />
</a>
</div>
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_recordqty" class="SingleProductDisplayQuantity recordqty">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRequiredFieldValidator__"></span>
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRegularExpressionValidator__"></span>
</div>
<div class="SingleProductDisplayAddToCart recordAddToCart">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_AddToCartImageButton__"></span>
<a id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_DetailsLink" class="button success" href="/NT-599-Oct-O-Flex-Outdoor-Entrance-Mat.aspx">Choose Options</a>
</div>
</div>
<div class="small-8 columns">
<div class="SingleProductDisplaySku recordsku">
</div>
<div class="SingleProductSale recordsale">
</div>
<div class="SingleProductDisplayName recordname">
<a id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_NameHyperLink" href="/NT-599-Oct-O-Flex-Outdoor-Entrance-Mat.aspx">Oct-O-Flex Rubber Outdoor Entrance Mat</a>
</div>
<div class="SingleProductDisplayDescription recorddesc">
</div>
<div class="SingleProductDisplayRating recordrating">
<div class="tp-stars tp-stars--5">
<div>
<svg viewBox="0 0 251 46">
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M0 46.330002h46.375586V0H0z"></path>
<path class="tp-star__shape" d="M39.533936 19.711433L13.230239 38.80065l3.838216-11.797827L7.02115 19.711433h12.418975l3.837417-11.798624 3.837418 11.798624h12.418975zM23.2785 31.510075l7.183595-1.509576 2.862114 8.800152L23.2785 31.510075z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M51.24816 46.330002h46.375587V0H51.248161z"></path>
<path class="tp-star__shape" d="M74.990978 31.32991L81.150908 30 84 39l-9.660206-7.202786L64.30279 39l3.895636-11.840666L58 19.841466h12.605577L74.499595 8l3.895637 11.841466H91L74.990978 31.329909z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M102.532209 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M142.066994 19.711433L115.763298 38.80065l3.838215-11.797827-10.047304-7.291391h12.418975l3.837418-11.798624 3.837417 11.798624h12.418975zM125.81156 31.510075l7.183595-1.509576 2.862113 8.800152-10.045708-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M153.815458 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M193.348355 19.711433L167.045457 38.80065l3.837417-11.797827-10.047303-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418974zM177.09292 31.510075l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M205.064416 46.330002h46.375587V0h-46.375587z"></path>
<path class="tp-star__shape" d="M244.597022 19.711433l-26.3029 19.089218 3.837419-11.797827-10.047304-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418975zm-16.255436 11.798642l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
</svg>
</div>
<div class="tp-review-popup tp-widget-wrapper" style="display:none;">
<div class="tp-widget-productinfo">5.0 out of 5</div>
<div class="tp-widget-businessinfo">
<div class="score">
<div class="score__stars">5 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--5" style="width: 100%;"></div>
</div>
<div class="score__number">(2)</div>
</div>
<div class="score">
<div class="score__stars">4 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--4" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">3 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--3" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">2 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--2" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">1 star</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--1" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
</div>
</div>
</div>
<div class="tp-widget-readmore">2 reviews</div>
</div>
<div class="SingleProductDisplayPrice recordprice">
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_listPricePanel" class="SingleProductDisplayListPrice recordlistprice">
<span id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_ListPriceLabel" class="ListPriceLabel"></span>
</div>
<span id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_PriceLabel" class="PriceLabel">Starting At: $73.17</span>
</div>
</div>
<div class="column">
<div class="SingleProductDisplayAddedToCart recordadded">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_AddedToCartLabel__"></span>
</div>
</div>
</div>
</div>
</div>
</li>
<li id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_holder" class="large-4 columns">
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_SingleProductDisplayPanel" class="SingleProductDisplayPanel" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_AddToCartImageButton')">
<div class="record wide smallText">
<style type="text/css">
dlg-addons .record .product-info .recordAddToCart, .dlg-addons .record .product-info .recordqty { display: inline-block !important; }
</style>
<div class="row">
<div class="small-4 columns">
<div class="SingleProductDisplayImage recordimage">
<a href="/NT-531-Safety-Grid-Slip-Resistant-Specialty-Floor-Mat.aspx" id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_productimagelink">
<img id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_ProductImage" src="/Business-Industrial/Commercial-Specialty-Mats/NT-531/NT-531-Safety-Grid-Slip-Resistant-Specialty-Mat-sm.jpg" alt="Safety Grid Slip-Resistant Specialty Mat" style="height:150px;width:200px;border-width:0px;" />
</a>
</div>
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_recordqty" class="SingleProductDisplayQuantity recordqty">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_QuantityRequiredFieldValidator__"></span>
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_QuantityRegularExpressionValidator__"></span>
</div>
<div class="SingleProductDisplayAddToCart recordAddToCart">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_AddToCartImageButton__"></span>
<a id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_DetailsLink" class="button success" href="/NT-531-Safety-Grid-Slip-Resistant-Specialty-Floor-Mat.aspx">Choose Options</a>
</div>
</div>
<div class="small-8 columns">
<div class="SingleProductDisplaySku recordsku">
</div>
<div class="SingleProductSale recordsale">
</div>
<div class="SingleProductDisplayName recordname">
<a id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_NameHyperLink" href="/NT-531-Safety-Grid-Slip-Resistant-Specialty-Floor-Mat.aspx">Safety Grid Slip-Resistant Anti-Fatigue Mat - Drainable</a>
</div>
<div class="SingleProductDisplayDescription recorddesc">
</div>
<div class="SingleProductDisplayRating recordrating">
<div class="tp-stars tp-stars--0">
<div>
<svg viewBox="0 0 251 46">
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M0 46.330002h46.375586V0H0z"></path>
<path class="tp-star__shape" d="M39.533936 19.711433L13.230239 38.80065l3.838216-11.797827L7.02115 19.711433h12.418975l3.837417-11.798624 3.837418 11.798624h12.418975zM23.2785 31.510075l7.183595-1.509576 2.862114 8.800152L23.2785 31.510075z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M51.24816 46.330002h46.375587V0H51.248161z"></path>
<path class="tp-star__shape" d="M74.990978 31.32991L81.150908 30 84 39l-9.660206-7.202786L64.30279 39l3.895636-11.840666L58 19.841466h12.605577L74.499595 8l3.895637 11.841466H91L74.990978 31.329909z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M102.532209 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M142.066994 19.711433L115.763298 38.80065l3.838215-11.797827-10.047304-7.291391h12.418975l3.837418-11.798624 3.837417 11.798624h12.418975zM125.81156 31.510075l7.183595-1.509576 2.862113 8.800152-10.045708-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M153.815458 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M193.348355 19.711433L167.045457 38.80065l3.837417-11.797827-10.047303-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418974zM177.09292 31.510075l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M205.064416 46.330002h46.375587V0h-46.375587z"></path>
<path class="tp-star__shape" d="M244.597022 19.711433l-26.3029 19.089218 3.837419-11.797827-10.047304-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418975zm-16.255436 11.798642l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
</svg>
</div>
</div>
<div class="tp-widget-readmore"></div>
</div>
<div class="SingleProductDisplayPrice recordprice">
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_listPricePanel" class="SingleProductDisplayListPrice recordlistprice">
<span id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_ListPriceLabel" class="ListPriceLabel"></span>
</div>
<span id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_PriceLabel" class="PriceLabel">Starting At: $1,198.26</span>
</div>
</div>
<div class="column">
<div class="SingleProductDisplayAddedToCart recordadded">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl04_SingleProductDisplay_AddedToCartLabel__"></span>
</div>
</div>
</div>
</div>
</div>
</li>
<li id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_holder" class="large-4 columns">
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_SingleProductDisplayPanel" class="SingleProductDisplayPanel" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_AddToCartImageButton')">
<div class="record wide smallText">
<style type="text/css">
dlg-addons .record .product-info .recordAddToCart, .dlg-addons .record .product-info .recordqty { display: inline-block !important; }
</style>
<div class="row">
<div class="small-4 columns">
<div class="SingleProductDisplayImage recordimage">
<a href="/266-Wayfarer-Custom-Outdoor-Entrance-Floor-Mat.aspx" id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_productimagelink">
<img id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_ProductImage" src="/Business-Industrial/Commercial-Scraper-Entrance-Mats/NT-265/266-Wayfarer-Outdoor-Entrance-Mat-sm.jpg" alt="Wayfarer Custom Outdoor Entrance Mat" style="height:150px;width:200px;border-width:0px;" />
</a>
</div>
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_recordqty" class="SingleProductDisplayQuantity recordqty">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_QuantityRequiredFieldValidator__"></span>
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_QuantityRegularExpressionValidator__"></span>
</div>
<div class="SingleProductDisplayAddToCart recordAddToCart">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_AddToCartImageButton__"></span>
<a id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_DetailsLink" class="button success" href="/266-Wayfarer-Custom-Outdoor-Entrance-Floor-Mat.aspx">Choose Options</a>
</div>
</div>
<div class="small-8 columns">
<div class="SingleProductDisplaySku recordsku">
</div>
<div class="SingleProductSale recordsale">
</div>
<div class="SingleProductDisplayName recordname">
<a id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_NameHyperLink" href="/266-Wayfarer-Custom-Outdoor-Entrance-Floor-Mat.aspx">Wayfarer Custom Outdoor Entrance Mat</a>
</div>
<div class="SingleProductDisplayDescription recorddesc">
</div>
<div class="SingleProductDisplayRating recordrating">
<div class="tp-stars tp-stars--0">
<div>
<svg viewBox="0 0 251 46">
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M0 46.330002h46.375586V0H0z"></path>
<path class="tp-star__shape" d="M39.533936 19.711433L13.230239 38.80065l3.838216-11.797827L7.02115 19.711433h12.418975l3.837417-11.798624 3.837418 11.798624h12.418975zM23.2785 31.510075l7.183595-1.509576 2.862114 8.800152L23.2785 31.510075z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M51.24816 46.330002h46.375587V0H51.248161z"></path>
<path class="tp-star__shape" d="M74.990978 31.32991L81.150908 30 84 39l-9.660206-7.202786L64.30279 39l3.895636-11.840666L58 19.841466h12.605577L74.499595 8l3.895637 11.841466H91L74.990978 31.329909z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M102.532209 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M142.066994 19.711433L115.763298 38.80065l3.838215-11.797827-10.047304-7.291391h12.418975l3.837418-11.798624 3.837417 11.798624h12.418975zM125.81156 31.510075l7.183595-1.509576 2.862113 8.800152-10.045708-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M153.815458 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M193.348355 19.711433L167.045457 38.80065l3.837417-11.797827-10.047303-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418974zM177.09292 31.510075l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M205.064416 46.330002h46.375587V0h-46.375587z"></path>
<path class="tp-star__shape" d="M244.597022 19.711433l-26.3029 19.089218 3.837419-11.797827-10.047304-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418975zm-16.255436 11.798642l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
</svg>
</div>
</div>
<div class="tp-widget-readmore"></div>
</div>
<div class="SingleProductDisplayPrice recordprice">
<div id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_listPricePanel" class="SingleProductDisplayListPrice recordlistprice">
<span id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_ListPriceLabel" class="ListPriceLabel"></span>
</div>
<span id="ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_PriceLabel" class="PriceLabel">Starting At: $474.73</span>
</div>
</div>
<div class="column">
<div class="SingleProductDisplayAddedToCart recordadded">
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_rpProductGrid_ctl05_SingleProductDisplay_AddedToCartLabel__"></span>
</div>
</div>
</div>
</div>
</div>
</li>
</ul>
<span id="Anthem_ctl00_MainContentHolder_CrossSellDisplay_ProductGridDisplay_AddItemsToCartImageButton__"></span>
</div>
<div style="clear: both"></div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
var carousel = $("#ctl00_MainContentHolder_CrossSellDisplay_CrossSellsPanel ul.productgrid");
carousel.owlCarousel({
navigation: true,
pagination: false,
items: 5,
itemsCustom: [[0, 1], [321, 1], [479, 1], [768, 2], [1024, 3]],
navigationText: [
"<a class='slider-prev'></a>",
"<a class='slider-next'></a>"
],
});
});
</script>
</div>
</div>
<div id="ctl00_MainContentHolder_pnlSuggested" class="expander-mobile hideforhighres">
<div class="content-header">
<h2>Customer Recommends</h2>
</div>
<div class="suggested-grid content">
<h2><span id="ctl00_MainContentHolder_SuggestedItems1_TitleLabel">These items were also purchased by other customers</span></h2>
<div id="ctl00_MainContentHolder_SuggestedItems1_SuggestedItemsPanel" class="suggested-grid">
<div class="productcarousel" id="productcarousel-ctl00_MainContentHolder_SuggestedItems1_SuggestedItemsPanel">
<div class="carousel">
<ul class="row productgrid">
<li id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_holder" class="large-4 columns">
<div id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_SingleProductDisplayPanel" class="SingleProductDisplayPanel" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_AddToCartImageButton')">
<div class="record wide smallText">
<style type="text/css">
dlg-addons .record .product-info .recordAddToCart, .dlg-addons .record .product-info .recordqty { display: inline-block !important; }
</style>
<div class="row">
<div class="small-4 columns">
<div class="SingleProductDisplayImage recordimage">
<a href="/Prestige-Custom-Logo-Wiper-Mat.aspx" id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_productimagelink">
<img id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_ProductImage" src="/Custom-Logo-Floor-Matting/Prestige/Prestige-Impressions-Indoor-Logo-Wiper-Mat-sm.jpg" alt="Prestige Custom Logo Wiper Mat" style="height:150px;width:200px;border-width:0px;" />
</a>
</div>
<div id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_recordqty" class="SingleProductDisplayQuantity recordqty">
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRequiredFieldValidator__"><span id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRequiredFieldValidator" class="errormessage" style="display:none;">*</span></span>
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRegularExpressionValidator__"><span id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRegularExpressionValidator" class="errormessage" style="display:none;">*</span></span>
</div>
<div class="SingleProductDisplayAddToCart recordAddToCart">
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_AddToCartImageButton__"></span>
<a id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_DetailsLink" class="button success" href="/Prestige-Custom-Logo-Wiper-Mat.aspx">Choose Options</a>
</div>
</div>
<div class="small-8 columns">
<div class="SingleProductDisplaySku recordsku">
</div>
<div class="SingleProductSale recordsale">
</div>
<div class="SingleProductDisplayName recordname">
<a id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_NameHyperLink" href="/Prestige-Custom-Logo-Wiper-Mat.aspx">Custom Logo Mat - Traditional Personalized Entrance Wiper</a>
</div>
<div class="SingleProductDisplayDescription recorddesc">
</div>
<div class="SingleProductDisplayRating recordrating">
<div class="tp-stars tp-stars--5">
<div>
<svg viewBox="0 0 251 46">
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M0 46.330002h46.375586V0H0z"></path>
<path class="tp-star__shape" d="M39.533936 19.711433L13.230239 38.80065l3.838216-11.797827L7.02115 19.711433h12.418975l3.837417-11.798624 3.837418 11.798624h12.418975zM23.2785 31.510075l7.183595-1.509576 2.862114 8.800152L23.2785 31.510075z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M51.24816 46.330002h46.375587V0H51.248161z"></path>
<path class="tp-star__shape" d="M74.990978 31.32991L81.150908 30 84 39l-9.660206-7.202786L64.30279 39l3.895636-11.840666L58 19.841466h12.605577L74.499595 8l3.895637 11.841466H91L74.990978 31.329909z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M102.532209 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M142.066994 19.711433L115.763298 38.80065l3.838215-11.797827-10.047304-7.291391h12.418975l3.837418-11.798624 3.837417 11.798624h12.418975zM125.81156 31.510075l7.183595-1.509576 2.862113 8.800152-10.045708-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M153.815458 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M193.348355 19.711433L167.045457 38.80065l3.837417-11.797827-10.047303-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418974zM177.09292 31.510075l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M205.064416 46.330002h46.375587V0h-46.375587z"></path>
<path class="tp-star__shape" d="M244.597022 19.711433l-26.3029 19.089218 3.837419-11.797827-10.047304-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418975zm-16.255436 11.798642l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
</svg>
</div>
<div class="tp-review-popup tp-widget-wrapper" style="display:none;">
<div class="tp-widget-productinfo">4.7 out of 5</div>
<div class="tp-widget-businessinfo">
<div class="score">
<div class="score__stars">5 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--5" style="width: 89%;"></div>
</div>
<div class="score__number">(491)</div>
</div>
<div class="score">
<div class="score__stars">4 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--4" style="width: 4%;"></div>
</div>
<div class="score__number">(24)</div>
</div>
<div class="score">
<div class="score__stars">3 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--3" style="width: 2%;"></div>
</div>
<div class="score__number">(11)</div>
</div>
<div class="score">
<div class="score__stars">2 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--2" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">1 star</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--1" style="width: 4%;"></div>
</div>
<div class="score__number">(24)</div>
</div>
</div>
</div>
</div>
<div class="tp-widget-readmore">550 reviews</div>
</div>
<div class="SingleProductDisplayPrice recordprice">
<div id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_listPricePanel" class="SingleProductDisplayListPrice recordlistprice">
<span id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_ListPriceLabel" class="ListPriceLabel"></span>
</div>
<span id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_PriceLabel" class="PriceLabel">Starting At: $95.48</span>
</div>
</div>
<div class="column">
<div class="SingleProductDisplayAddedToCart recordadded">
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_AddedToCartLabel__"></span>
</div>
</div>
</div>
</div>
</div>
</li>
<li id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_holder" class="large-4 columns">
<div id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_SingleProductDisplayPanel" class="SingleProductDisplayPanel" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_AddToCartImageButton')">
<div class="record wide smallText">
<style type="text/css">
dlg-addons .record .product-info .recordAddToCart, .dlg-addons .record .product-info .recordqty { display: inline-block !important; }
</style>
<div class="row">
<div class="small-4 columns">
<div class="SingleProductDisplayImage recordimage">
<a href="/WaterHog-Classic-Scraper-Wiper-Entrance-Mat.aspx" id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_productimagelink">
<img id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_ProductImage" src="/Business-Industrial/Commercial-Scraper-Wiper-Entrance-Mats/AM-200/Waterhog-Classic-Scraper-Wiper-Entrance-Mat-sm.jpg" alt="Waterhog Classic Office Entrance Mat" style="height:150px;width:200px;border-width:0px;" />
</a>
</div>
<div id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_recordqty" class="SingleProductDisplayQuantity recordqty">
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRequiredFieldValidator__"><span id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRequiredFieldValidator" class="errormessage" style="display:none;">*</span></span>
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRegularExpressionValidator__"><span id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRegularExpressionValidator" class="errormessage" style="display:none;">*</span></span>
</div>
<div class="SingleProductDisplayAddToCart recordAddToCart">
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_AddToCartImageButton__"></span>
<a id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_DetailsLink" class="button success" href="/WaterHog-Classic-Scraper-Wiper-Entrance-Mat.aspx">Choose Options</a>
</div>
</div>
<div class="small-8 columns">
<div class="SingleProductDisplaySku recordsku">
</div>
<div class="SingleProductSale recordsale">
</div>
<div class="SingleProductDisplayName recordname">
<a id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_NameHyperLink" href="/WaterHog-Classic-Scraper-Wiper-Entrance-Mat.aspx">Classic Waffle Style Scraper/Wiper Entrance Mat</a>
</div>
<div class="SingleProductDisplayDescription recorddesc">
</div>
<div class="SingleProductDisplayRating recordrating">
<div class="tp-stars tp-stars--5">
<div>
<svg viewBox="0 0 251 46">
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M0 46.330002h46.375586V0H0z"></path>
<path class="tp-star__shape" d="M39.533936 19.711433L13.230239 38.80065l3.838216-11.797827L7.02115 19.711433h12.418975l3.837417-11.798624 3.837418 11.798624h12.418975zM23.2785 31.510075l7.183595-1.509576 2.862114 8.800152L23.2785 31.510075z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M51.24816 46.330002h46.375587V0H51.248161z"></path>
<path class="tp-star__shape" d="M74.990978 31.32991L81.150908 30 84 39l-9.660206-7.202786L64.30279 39l3.895636-11.840666L58 19.841466h12.605577L74.499595 8l3.895637 11.841466H91L74.990978 31.329909z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M102.532209 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M142.066994 19.711433L115.763298 38.80065l3.838215-11.797827-10.047304-7.291391h12.418975l3.837418-11.798624 3.837417 11.798624h12.418975zM125.81156 31.510075l7.183595-1.509576 2.862113 8.800152-10.045708-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M153.815458 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M193.348355 19.711433L167.045457 38.80065l3.837417-11.797827-10.047303-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418974zM177.09292 31.510075l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M205.064416 46.330002h46.375587V0h-46.375587z"></path>
<path class="tp-star__shape" d="M244.597022 19.711433l-26.3029 19.089218 3.837419-11.797827-10.047304-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418975zm-16.255436 11.798642l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
</svg>
</div>
<div class="tp-review-popup tp-widget-wrapper" style="display:none;">
<div class="tp-widget-productinfo">4.9 out of 5</div>
<div class="tp-widget-businessinfo">
<div class="score">
<div class="score__stars">5 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--5" style="width: 92%;"></div>
</div>
<div class="score__number">(12)</div>
</div>
<div class="score">
<div class="score__stars">4 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--4" style="width: 8%;"></div>
</div>
<div class="score__number">(1)</div>
</div>
<div class="score">
<div class="score__stars">3 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--3" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">2 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--2" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">1 star</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--1" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
</div>
</div>
</div>
<div class="tp-widget-readmore">13 reviews</div>
</div>
<div class="SingleProductDisplayPrice recordprice">
<div id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_listPricePanel" class="SingleProductDisplayListPrice recordlistprice">
<span id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_ListPriceLabel" class="ListPriceLabel"></span>
</div>
<span id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_PriceLabel" class="PriceLabel">#1 Selling Entrance Mat</span>
</div>
</div>
<div class="column">
<div class="SingleProductDisplayAddedToCart recordadded">
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_AddedToCartLabel__"></span>
</div>
</div>
</div>
</div>
</div>
</li>
<li id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_holder" class="large-4 columns">
<div id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_SingleProductDisplayPanel" class="SingleProductDisplayPanel" onkeypress="javascript:return WebForm_FireDefaultButton(event, 'ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_AddToCartImageButton')">
<div class="record wide smallText">
<style type="text/css">
dlg-addons .record .product-info .recordAddToCart, .dlg-addons .record .product-info .recordqty { display: inline-block !important; }
</style>
<div class="row">
<div class="small-4 columns">
<div class="SingleProductDisplayImage recordimage">
<a href="/Andersen-Waterhog-Classic-Diamond-Entrance-Mat.aspx" id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_productimagelink">
<img id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_ProductImage" src="/Business-Industrial/Commercial-Scraper-Wiper-Entrance-Mats/AM-208/Waterhog-Classic-Diamond-Floor-Mat-208-sm.png" alt="WaterHog Classic Diamond Scraper Floor Mat" style="height:150px;width:200px;border-width:0px;" />
</a>
</div>
<div id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_recordqty" class="SingleProductDisplayQuantity recordqty">
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRequiredFieldValidator__"><span id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRequiredFieldValidator" class="errormessage" style="display:none;">*</span></span>
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRegularExpressionValidator__"><span id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRegularExpressionValidator" class="errormessage" style="display:none;">*</span></span>
</div>
<div class="SingleProductDisplayAddToCart recordAddToCart">
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_AddToCartImageButton__"></span>
<a id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_DetailsLink" class="button success" href="/Andersen-Waterhog-Classic-Diamond-Entrance-Mat.aspx">Choose Options</a>
</div>
</div>
<div class="small-8 columns">
<div class="SingleProductDisplaySku recordsku">
</div>
<div class="SingleProductSale recordsale">
</div>
<div class="SingleProductDisplayName recordname">
<a id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_NameHyperLink" href="/Andersen-Waterhog-Classic-Diamond-Entrance-Mat.aspx">Waterhog Classic Diamond Scraper Wiper Entrance Mat</a>
</div>
<div class="SingleProductDisplayDescription recorddesc">
</div>
<div class="SingleProductDisplayRating recordrating">
<div class="tp-stars tp-stars--5">
<div>
<svg viewBox="0 0 251 46">
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M0 46.330002h46.375586V0H0z"></path>
<path class="tp-star__shape" d="M39.533936 19.711433L13.230239 38.80065l3.838216-11.797827L7.02115 19.711433h12.418975l3.837417-11.798624 3.837418 11.798624h12.418975zM23.2785 31.510075l7.183595-1.509576 2.862114 8.800152L23.2785 31.510075z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M51.24816 46.330002h46.375587V0H51.248161z"></path>
<path class="tp-star__shape" d="M74.990978 31.32991L81.150908 30 84 39l-9.660206-7.202786L64.30279 39l3.895636-11.840666L58 19.841466h12.605577L74.499595 8l3.895637 11.841466H91L74.990978 31.329909z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M102.532209 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M142.066994 19.711433L115.763298 38.80065l3.838215-11.797827-10.047304-7.291391h12.418975l3.837418-11.798624 3.837417 11.798624h12.418975zM125.81156 31.510075l7.183595-1.509576 2.862113 8.800152-10.045708-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M153.815458 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M193.348355 19.711433L167.045457 38.80065l3.837417-11.797827-10.047303-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418974zM177.09292 31.510075l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M205.064416 46.330002h46.375587V0h-46.375587z"></path>
<path class="tp-star__shape" d="M244.597022 19.711433l-26.3029 19.089218 3.837419-11.797827-10.047304-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418975zm-16.255436 11.798642l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
</svg>
</div>
<div class="tp-review-popup tp-widget-wrapper" style="display:none;">
<div class="tp-widget-productinfo">5.0 out of 5</div>
<div class="tp-widget-businessinfo">
<div class="score">
<div class="score__stars">5 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--5" style="width: 100%;"></div>
</div>
<div class="score__number">(2)</div>
</div>
<div class="score">
<div class="score__stars">4 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--4" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">3 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--3" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">2 stars</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--2" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
<div class="score">
<div class="score__stars">1 star</div>
<div class="score__bar">
<div class="score__bar__fill score__bar__fill--1" style="width: 0%;"></div>
</div>
<div class="score__number">(0)</div>
</div>
</div>
</div>
</div>
<div class="tp-widget-readmore">2 reviews</div>
</div>
<div class="SingleProductDisplayPrice recordprice">
<div id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_listPricePanel" class="SingleProductDisplayListPrice recordlistprice">
<span id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_ListPriceLabel" class="ListPriceLabel"></span>
</div>
<span id="ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_PriceLabel" class="PriceLabel">Starting At: $33.36</span>
</div>
</div>
<div class="column">
<div class="SingleProductDisplayAddedToCart recordadded">
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_AddedToCartLabel__"></span>
</div>
</div>
</div>
</div>
</div>
</li>
</ul>
<span id="Anthem_ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_AddItemsToCartImageButton__"></span>
</div>
<div style="clear: both"></div>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
var carousel = $("#ctl00_MainContentHolder_SuggestedItems1_SuggestedItemsPanel ul.productgrid");
carousel.owlCarousel({
navigation: true,
pagination: false,
items: 5,
itemsCustom: [[0, 1], [321, 1], [479, 1], [768, 2], [1024, 3]],
navigationText: [
"<a class='slider-prev'></a>",
"<a class='slider-next'></a>"
],
});
});
</script>
</div>
</div>
<!-- Customer Review -->
<div class="expander-mobile">
<div class="content-header">
<h2>Customer Review</h2>
</div>
<div class="content">
<div class="row" style="margin-top:2em;">
<div id="ctl00_MainContentHolder_ProductReviewDisplayInline2_pnlTrustPilot" class="large-12 columns">
<a name="Write"></a>
<div class="row">
<div class="column">
<div id="Anthem_ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_pnlReviewDisplay__"><div id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_pnlReviewDisplay" class="ProductReviews">
<div class="row">
<div class="large-6 columns">
<h3 id="ProductReviews">
<span id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_lblTitle">Customer Reviews:</span></h3>
</div>
<div class="large-6 columns">
<div class="tp-collector"><a href="/login.aspx?ReturnURL=%2f874-Flex-Tip-Outdoor-Scraper-Entrance-Mat.aspx">Please Sign In to Write Review</a></div>
</div>
</div>
<div id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_aggregateRating" class="ProductReviewRating" itemprop="aggregateRating" itemtype="http://schema.org/AggregateRating" itemscope="">
<meta id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_metaRatingValue" itemprop="ratingValue" content="5"></meta>
<meta id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_metaReviewCount" itemprop="reviewCount" content="1"></meta>
<div id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_pnlRating" class="tp-stars tp-stars--5" style="display: inline-block;">
<div>
<svg viewBox="0 0 251 46">
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M0 46.330002h46.375586V0H0z"></path>
<path class="tp-star__shape" d="M39.533936 19.711433L13.230239 38.80065l3.838216-11.797827L7.02115 19.711433h12.418975l3.837417-11.798624 3.837418 11.798624h12.418975zM23.2785 31.510075l7.183595-1.509576 2.862114 8.800152L23.2785 31.510075z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M51.24816 46.330002h46.375587V0H51.248161z"></path>
<path class="tp-star__shape" d="M74.990978 31.32991L81.150908 30 84 39l-9.660206-7.202786L64.30279 39l3.895636-11.840666L58 19.841466h12.605577L74.499595 8l3.895637 11.841466H91L74.990978 31.329909z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M102.532209 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M142.066994 19.711433L115.763298 38.80065l3.838215-11.797827-10.047304-7.291391h12.418975l3.837418-11.798624 3.837417 11.798624h12.418975zM125.81156 31.510075l7.183595-1.509576 2.862113 8.800152-10.045708-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M153.815458 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M193.348355 19.711433L167.045457 38.80065l3.837417-11.797827-10.047303-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418974zM177.09292 31.510075l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M205.064416 46.330002h46.375587V0h-46.375587z"></path>
<path class="tp-star__shape" d="M244.597022 19.711433l-26.3029 19.089218 3.837419-11.797827-10.047304-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418975zm-16.255436 11.798642l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
</svg>
</div>
</div>
<span class="rating">5.0</span> / 5 • <b>1</b> reviews
</div>
<br />
<div class="trustpilot-reviews">
<table id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_dlReviews" cellspacing="0" border="0" style="border-collapse:collapse;">
<tr>
<td>
<a id="ProductReviewList"></a>
</td>
</tr><tr>
<td>
<a id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_dlReviews_ctl01_lnkNamedAnchor" name="62e13c923f4f5c000189b2d2"></a>
<div class="ProductReview " itemprop="review" itemscope itemtype="http://schema.org/Review">
<p itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<meta itemprop="worstRating" content="1">
<meta itemprop="bestRating" content="5">
<meta id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_dlReviews_ctl01_metaRatingValue" itemprop="ratingValue" content="5"></meta>
<div class="tp-stars tp-stars--5" style="display: inline-block;">
<div>
<svg viewBox="0 0 251 46">
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M0 46.330002h46.375586V0H0z"></path>
<path class="tp-star__shape" d="M39.533936 19.711433L13.230239 38.80065l3.838216-11.797827L7.02115 19.711433h12.418975l3.837417-11.798624 3.837418 11.798624h12.418975zM23.2785 31.510075l7.183595-1.509576 2.862114 8.800152L23.2785 31.510075z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M51.24816 46.330002h46.375587V0H51.248161z"></path>
<path class="tp-star__shape" d="M74.990978 31.32991L81.150908 30 84 39l-9.660206-7.202786L64.30279 39l3.895636-11.840666L58 19.841466h12.605577L74.499595 8l3.895637 11.841466H91L74.990978 31.329909z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M102.532209 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M142.066994 19.711433L115.763298 38.80065l3.838215-11.797827-10.047304-7.291391h12.418975l3.837418-11.798624 3.837417 11.798624h12.418975zM125.81156 31.510075l7.183595-1.509576 2.862113 8.800152-10.045708-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M153.815458 46.330002h46.375586V0h-46.375586z"></path>
<path class="tp-star__shape" d="M193.348355 19.711433L167.045457 38.80065l3.837417-11.797827-10.047303-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418974zM177.09292 31.510075l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
<g class="tp-star">
<path class="tp-star__canvas" fill="#000" d="M205.064416 46.330002h46.375587V0h-46.375587z"></path>
<path class="tp-star__shape" d="M244.597022 19.711433l-26.3029 19.089218 3.837419-11.797827-10.047304-7.291391h12.418974l3.837418-11.798624 3.837418 11.798624h12.418975zm-16.255436 11.798642l7.183595-1.509576 2.862114 8.800152-10.045709-7.290576z" fill="#FFF"></path>
</g>
</svg>
</div>
</div>
<br />
by
<span id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_dlReviews_ctl01_lblName" itemprop="author">Tim</span>
on
<span id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_dlReviews_ctl01_lblReviewDate">July 27, 2022</span>
</p>
<p class="productreviewdescription" itemprop="description">
<span id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_dlReviews_ctl01_lblReviewDescription">Great product. Very heavy duty</span>
</p>
</div>
</td>
</tr>
</table>
</div>
<input type="hidden" name="ctl00$MainContentHolder$ProductReviewDisplayInline2$TrustPilotReviews1$bvinField" id="ctl00_MainContentHolder_ProductReviewDisplayInline2_TrustPilotReviews1_bvinField" value="85d73f14-519c-4805-98a2-5b8de3016530" />
</div></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- View Available Colors -->
<a id="details" name="details"></a>
<div id="ctl00_MainContentHolder_pnlSecondaryDescription" class="expander-mobile hideforhighres">
<div class="content-header">
<h2>View Available Colors</h2>
</div>
<div class="content fms-custommat">
<span id="Anthem_ctl00_MainContentHolder_lblSecondaryDescription1__"><span id="ctl00_MainContentHolder_lblSecondaryDescription1"><div id="pagetabber">
<div id="nav">
<a href="#" title="divname"><span>Full Specifications</span></a>
<a href="#" title="divname2"><span>Certifications & Warranty</span></a>
<a href="#" title="divname3"><span>Maintenance</span></a>
</div>
<div id="divname" class="hiddencontent">
<div class="hiddencontentpad">
<div id="matfullspecs">
<p class="title"><span>Full Specifications</span></p>
<h5>Features:</h5>
<ul>
<li>Two thousand finger-like tips/sq. ft (21,000/m^2 aggressively scrape soil from shoes</li>
<li>Excellent for outdoor use</li>
<li>OSHA-compliant beveld edges and deep wells hold heavy soil and debris</li>
<li>Solid, 5/8" (16mm) thick construction</li>
<li>Has excellent anti-fatigue capabilities</li>
<li>Easily cleaned by hosing off or shaking</li>
<li>Sizes: 22" x 32", 32" x 39", 36" x 72"</li>
<li>Recommended for outside entrances</li>
</ul>
<h5>Physical Specifications:</h5>
<ul>
<li><strong>RUBBER TYPE:</strong> Natural Rubber</li>
<li><strong>THICKNESS:</strong> 5/8"</li>
<li><strong>COLOR:</strong> Black</li>
<li><strong>DUROMETER:</strong> 55</li>
</ul>
<h5>Product Testing:</h5>
<ul>
<li>Passes Flammability Standard DOC-FF-1-70</li>
<li>UV Stable</li>
</ul>
<p class="toplink"><a href="#top">↑ Back To Top</a></p>
</div>
</div>
</div>
<div id="divname2" class="hiddencontent">
<div class="hiddencontentpad">
<div id="matcerts">
<p class="title"><span>Certifications & Warranty Information</span></p>
<h5>NFSI Certified Slip Resistant</h5>
<div><img src="Business-Industrial/Carpeting-Matting-Flooring/NFSI-National-Floor-Safety-Institution-Slip-Resistant-Certified.png" alt="NFSI Certified Slip Resistant" title="NFSI Certified Slip Resistant" width="53" height="90"></div>
<p>In the marketplace, architects, designers, and specifiers are being educated to select products that are NFSI certified in high-risk areas. It is their assurance that the products have been clinically tested and meet the highest performance standards.</p>
<p>This is just another indication that Andersen is leading the industry with the highest performing, most innovative, and now the safest mats available.</p>
<h5>100% CUSTOMER SATISFACTION GUARANTEE</h5>
<div><img src="Business-Industrial/Carpeting-Matting-Flooring/Andersen-Floor-Mat-Guarantee.png" alt="100% Customer Satisfaction Guarantee" title="100% Customer Satisfaction Guarantee" width="110" height="70"></div>
<p>Our 100% Customer Satisfaction Guarantee means that you can partner with FloorMatShop.com and the M + A Matting Company knowing that we will always stand behind our products and services.</p>
<p>In the mat industry, M + A mats are where design and function come together, where quality isn't compromised to meet a price point, and where solutions to your maintenance and decor problems come first.</p>
<p><strong>All M + A mats feature a 100% customer satisfaction warranty for the life of the product!</strong></p>
<p class="toplink"><a href="#top">↑ Back To Top</a></p>
</div>
</div>
</div>
<div id="divname3" class="hiddencontent">
<div class="hiddencontentpad">
<div id="matcleaning">
<p class="title"><span>Maintenance & Cleaning Recommendations</span></p>
<p><strong>1. Sweep/Brush Daily</strong></p>
<ul>
<li>Exterior mats should have dirt and debris removed daily by either sweeping or simply emptying the mat.</li>
</ul>
<p><strong>2. Routine Maintenance</strong></p>
<ul>
<li>Periodically exterior mats may be cleaned by pressure washing or with a water hose. Use of harsh chemicals or solvents should be avoided.</li>
</ul>
<p class="toplink"><a href="#top">↑ Back To Top</a></p>
</div>
</div>
</div>
</div>
</span></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="prefooter">
<div class="row">
<div id="footernavmenu" class="large-12 columns">
<div id="copyright">© FloorMatShop.com</div>
<div id="footerlinks">
<!-- -->
</div>
</div>
</div>
</div>
<div class="footer">
<div class="row">
<div class="large-9 columns">
<div class="row">
<div class="large-4 small-6 columns">
<div class="clearfix">
<div id="columnone">
<label>CUSTOMER SERVICE</label>
<ul>
<li><a rel="nofollow" href="MyAccount_Orders.aspx" title="Your Order History">Order History</a></li>
<li><a rel="nofollow" href="/MyAccount_WishList.aspx">Your Wishlist</a></li>
<li><a rel="nofollow" href="/MyAccount_ChangePassword.aspx">Change Password</a></li>
<li><a rel="nofollow" href="/MyAccount_MailingLists.aspx">Newsletter Subscription</a></li>
<li><a rel="nofollow" href="/ReturnForm.aspx">Returns/Exchanges</a></li>
</ul>
</div>
</div>
</div>
<div class="large-4 small-6 columns">
<div class="clearfix">
<div id="columntwo">
<label>SHOPPING HELP</label>
<ul>
<li><a href="/Search.aspx" rel="nofollow">Search</a></li>
<li><a href="Floor-Mats-By-Brand.aspx" title="Floor Mats By Brand">Shop By Brand</a></li>
</ul>
</div>
</div>
</div>
<div class="large-4 small-6 columns">
<div class="clearfix">
<div id="columnthree">
<label>FloorMatShop.com</label>
<ul>
<li><a rel="nofollow" href="ContactUs.aspx" title="Contact Floor Mat Shop">Contact Information</a></li>
<li><a rel="nofollow" href="Privacy.aspx" title="Floor Mat Shop Privacy Policy">Privacy Policy</a></li>
<li><a rel="nofollow" href="Floor-Mat-Shop-Shipping-Information.aspx" title="Floor Mat Shop Shipping & Order Fulfillment Information">Shipping</a></li>
<li><a rel="nofollow" href="Floor-Mat-Shop-SSL-Secure-Ordering.aspx" title="SLL Secure Ordering Information">SSL Secure Ordering</a></li>
<li><a rel="nofollow" href="Floor-Mat-Shop-Catalog-Index-Site-Map.aspx" title="FloorMatShop Catalog Index & Site Map">Site Map</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="large-3 columns">
<div class="row">
<div class="column">
<div class="clearfix">
<div id="columnfour" style="background-image: none; min-height: 0; text-align: center;">
<img src="/BVModules/Themes/Foundation4 Responsive/images/footer-bottom-menu.gif" alt="" />
</div>
<div style="text-align: center;">
<style type="text/css">
.b-chat-btn { right: 0; }
.b-chat-btn > button { /*position:relative;top:-50px;*/ padding: 0 0 10px 6px; }
.b-chat-btn > button > span { margin: 13px 1px auto auto; }
a.scroll-button { display: none !important; }
div#___ratingbadge_0 { position: static !important; margin: 0 auto; width: 150px !important; margin: 0 auto; }
div#___ratingbadge_0 > iframe { position: static !important; width: 150px !important; height: 50px !important; }
.qs-det { display: none !important; }
.footer .trustpilot-widget iframe { max-height: 115px !important; }
.footer .badges > div { text-align: center !important; margin-top: 1em; }
@media only screen and (min-width: 768px) {
.footer .badges { display: table; table-layout: fixed; width: 100%; margin:0; }
.footer .badges > div { display: table-cell; vertical-align: middle; float: none !important; margin-top: 0; }
}
</style>
<script type="text/javascript">
function checkGoogleReviews() {
if ($('div#___ratingbadge_0').length > 0) {
$('div#___ratingbadge_0').appendTo('.footer .badges div.google-reviews');
}
else
window.setTimeout(checkGoogleReviews, 500);
}
$(document).ready(function () {
checkGoogleReviews();
})
</script>
<script type="text/javascript" src="https://chat.unoclean.com:444/chatbeacon/UnoClean/3/scripts/chatbeacon.js?accountId=1&siteId=3&queueId=3&m=1&i=1&b=1&c=1&theme=frame" defer></script>
</div>
</div>
</div>
</div>
</div>
<div class="column">
<div class="row badges">
<div class="large-3 columns text-center trustpilot">
<div class="clearfix">
<div id="columnfive">
<div class="trustpilot-widget" data-locale="en-US" data-template-id="5613c9cde69ddc09340c6beb" data-businessunit-id="5209725b0000640005766174" data-style-height="100px" data-style-width="100%" data-theme="light">
<a href="https://www.trustpilot.com/review/floormatshop.com" target="_blank">Trustpilot</a>
</div>
</div>
</div>
</div>
<div class="large-3 columns text-center google-reviews">
</div>
<div class="large-3 columns text-center">
<a href="https://www.bbb.org/chicago/business-reviews/industrial-equipment-and-supplies/march-industries-inc-in-hampshire-il-88096982/#sealclick" target="_blank" rel="nofollow">
<img src="https://seal-chicago.bbb.org/seals/blue-seal-200-65-bbb-88096982.png" style="border: 0;" alt="March Industries, Inc. BBB Business Review" /></a>
</div>
<div class="large-3 columns text-center social">
<table style="width:100%;table-layout:fixed;" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>
<a target="_blank" href="https://www.facebook.com/floormatshop/" title="Facebook">
<img src="/images/social/facebook.png" alt="Facebook" />
</a>
</td>
<td>
<a target="_blank" href="https://twitter.com/FloorMatShop" title="Twitter">
<img src="/images/social/Twitter.png" alt="Twitter" />
</a>
</td>
<td>
<a target="_blank" href="https://www.instagram.com/floormatshop/" title="Instagram">
<img src="/images/social/Instagram.png" alt="Instagram" />
</a>
</td>
<td>
<a target="_blank" href="https://www.youtube.com/channel/UC_u6hfR3yxjdal3sEN2E41w" title="YouTube">
<img src="/images/social/YouTube.png" alt="YouTube" />
</a>
</td>
<td>
<a target="_blank" href="https://www.pinterest.com/floormatshop/" title="Pinterest">
<img src="/images/social/Pinterest.png" alt="Pinterest" />
</a>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="subfooter">
<div class="row">
<div id="subfooterlinks"><strong>A March Industries, Inc. Company</strong> - <a href="http://www.unoclean.com/" title="Janitorial Equipment, Carpet & Floor Cleaning Machines, Cleaning Chemicals & Maintenance Products">UnoClean.com</a> | <a href="http://www.oogalights.com/" title="Party Lights, Party String Lights, Holiday Light, LED String Lights & Novelty Party String Lights">OogaLights.com</a> | <a href="http://www.marchinc.com/" title="National Supplier of Innovative Maintenance and Industrial Products">MarchInc.com</a></div>
<div id="subfooterthefind">
</div>
</div>
</div>
<div id="to-top" class="scroll-button" style="display: block;">
<a class="scroll-button" title="Back to Top" href="javascript:void(0)"></a>
</div>
<div id="wait">
<div>
<span>
Please Wait...
</span>
<img src="images/system/ajax-loader.gif" alt="processing" />
</div>
</div>
<script>(function(w,d,t,r,u){var f,n,i;w[u]=w[u]||[],f=function(){var o={ti:"42000023"};o.q=w[u],w[u]=new UET(o),w[u].push("pageLoad")},n=d.createElement(t),n.src=r,n.async=1,n.onload=n.onreadystatechange=function(){var s=this.readyState;s&&s!=="loaded"&&s!=="complete"||(f(),n.onload=n.onreadystatechange=null)},i=d.getElementsByTagName(t)[0],i.parentNode.insertBefore(n,i)})(window,document,"script","//bat.bing.com/bat.js","uetq");</script><noscript><img src="//bat.bing.com/action/0?ti=42000023&Ver=2" height="0" width="0" style="display:none; visibility: hidden;" /></noscript>
<script type="text/javascript">
//<![CDATA[
var Page_ValidationSummaries = new Array(document.getElementById("ctl00_MainContentHolder_valSummary"));
var Page_Validators = new Array(document.getElementById("ctl00_MainContentHolder_ImageView_valQty"), document.getElementById("ctl00_MainContentHolder_ImageView_val2Qty"), document.getElementById("ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputRequiredFieldValidator"), document.getElementById("ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputCustomValidator"), document.getElementById("ctl00_MainContentHolder_valQty"), document.getElementById("ctl00_MainContentHolder_val2Qty"), document.getElementById("ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRequiredFieldValidator"), document.getElementById("ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRegularExpressionValidator"), document.getElementById("ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRequiredFieldValidator"), document.getElementById("ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRegularExpressionValidator"), document.getElementById("ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRequiredFieldValidator"), document.getElementById("ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRegularExpressionValidator"));
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
var ctl00_MainContentHolder_ImageView_valQty = document.all ? document.all["ctl00_MainContentHolder_ImageView_valQty"] : document.getElementById("ctl00_MainContentHolder_ImageView_valQty");
ctl00_MainContentHolder_ImageView_valQty.controltovalidate = "ctl00_MainContentHolder_ImageView_QuantityField";
ctl00_MainContentHolder_ImageView_valQty.errormessage = "<i class=\'fa fa-exclamation-triangle\'></i> Please Enter A Quantity";
ctl00_MainContentHolder_ImageView_valQty.display = "Dynamic";
ctl00_MainContentHolder_ImageView_valQty.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
ctl00_MainContentHolder_ImageView_valQty.initialvalue = "";
var ctl00_MainContentHolder_ImageView_val2Qty = document.all ? document.all["ctl00_MainContentHolder_ImageView_val2Qty"] : document.getElementById("ctl00_MainContentHolder_ImageView_val2Qty");
ctl00_MainContentHolder_ImageView_val2Qty.controltovalidate = "ctl00_MainContentHolder_ImageView_QuantityField";
ctl00_MainContentHolder_ImageView_val2Qty.errormessage = "<i class=\'fa fa-exclamation-triangle\'></i> Quantity Must be between 1 and 9999";
ctl00_MainContentHolder_ImageView_val2Qty.display = "Dynamic";
ctl00_MainContentHolder_ImageView_val2Qty.evaluationfunction = "RegularExpressionValidatorEvaluateIsValid";
ctl00_MainContentHolder_ImageView_val2Qty.validationexpression = "\\d+|\\d+\\d+|\\d+\\d+\\d+|\\d+\\d+\\d+\\d+";
var ctl00_MainContentHolder_valSummary = document.all ? document.all["ctl00_MainContentHolder_valSummary"] : document.getElementById("ctl00_MainContentHolder_valSummary");
ctl00_MainContentHolder_valSummary.headertext = "<a href=\"#\" class=\"close\">×</a>";
var ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputRequiredFieldValidator = document.all ? document.all["ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputRequiredFieldValidator"] : document.getElementById("ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputRequiredFieldValidator");
ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputRequiredFieldValidator.controltovalidate = "ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList";
ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputRequiredFieldValidator.errormessage = "Please Choose Size";
ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputRequiredFieldValidator.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputRequiredFieldValidator.initialvalue = "04d3c160-ff1d-4f91-858e-c030950ad5f1";
var ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputCustomValidator = document.all ? document.all["ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputCustomValidator"] : document.getElementById("ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputCustomValidator");
ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputCustomValidator.controltovalidate = "ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList";
ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputCustomValidator.errormessage = "Please Choose Size";
ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputCustomValidator.enabled = "False";
ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputCustomValidator.evaluationfunction = "CustomValidatorEvaluateIsValid";
ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_InputCustomValidator.clientvalidationfunction = "validateSize_ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList";
var ctl00_MainContentHolder_valQty = document.all ? document.all["ctl00_MainContentHolder_valQty"] : document.getElementById("ctl00_MainContentHolder_valQty");
ctl00_MainContentHolder_valQty.controltovalidate = "ctl00_MainContentHolder_QuantityField";
ctl00_MainContentHolder_valQty.errormessage = "<i class=\'fa fa-exclamation-triangle\'></i> Please Enter A Quantity";
ctl00_MainContentHolder_valQty.display = "Dynamic";
ctl00_MainContentHolder_valQty.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
ctl00_MainContentHolder_valQty.initialvalue = "";
var ctl00_MainContentHolder_val2Qty = document.all ? document.all["ctl00_MainContentHolder_val2Qty"] : document.getElementById("ctl00_MainContentHolder_val2Qty");
ctl00_MainContentHolder_val2Qty.controltovalidate = "ctl00_MainContentHolder_QuantityField";
ctl00_MainContentHolder_val2Qty.errormessage = "<i class=\'fa fa-exclamation-triangle\'></i> Quantity Must be between 1 and 9999";
ctl00_MainContentHolder_val2Qty.display = "Dynamic";
ctl00_MainContentHolder_val2Qty.evaluationfunction = "RegularExpressionValidatorEvaluateIsValid";
ctl00_MainContentHolder_val2Qty.validationexpression = "\\d+|\\d+\\d+|\\d+\\d+\\d+|\\d+\\d+\\d+\\d+";
var ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRequiredFieldValidator = document.all ? document.all["ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRequiredFieldValidator"] : document.getElementById("ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRequiredFieldValidator");
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRequiredFieldValidator.controltovalidate = "ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityTextBox";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRequiredFieldValidator.errormessage = "Quantity is required";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRequiredFieldValidator.display = "Dynamic";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRequiredFieldValidator.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRequiredFieldValidator.initialvalue = "";
var ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRegularExpressionValidator = document.all ? document.all["ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRegularExpressionValidator"] : document.getElementById("ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRegularExpressionValidator");
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRegularExpressionValidator.controltovalidate = "ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityTextBox";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRegularExpressionValidator.errormessage = "Quantity must be a number.";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRegularExpressionValidator.display = "Dynamic";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRegularExpressionValidator.evaluationfunction = "RegularExpressionValidatorEvaluateIsValid";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl01_SingleProductDisplay_QuantityRegularExpressionValidator.validationexpression = "\\d*";
var ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRequiredFieldValidator = document.all ? document.all["ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRequiredFieldValidator"] : document.getElementById("ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRequiredFieldValidator");
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRequiredFieldValidator.controltovalidate = "ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityTextBox";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRequiredFieldValidator.errormessage = "Quantity is required";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRequiredFieldValidator.display = "Dynamic";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRequiredFieldValidator.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRequiredFieldValidator.initialvalue = "";
var ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRegularExpressionValidator = document.all ? document.all["ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRegularExpressionValidator"] : document.getElementById("ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRegularExpressionValidator");
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRegularExpressionValidator.controltovalidate = "ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityTextBox";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRegularExpressionValidator.errormessage = "Quantity must be a number.";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRegularExpressionValidator.display = "Dynamic";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRegularExpressionValidator.evaluationfunction = "RegularExpressionValidatorEvaluateIsValid";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl02_SingleProductDisplay_QuantityRegularExpressionValidator.validationexpression = "\\d*";
var ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRequiredFieldValidator = document.all ? document.all["ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRequiredFieldValidator"] : document.getElementById("ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRequiredFieldValidator");
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRequiredFieldValidator.controltovalidate = "ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityTextBox";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRequiredFieldValidator.errormessage = "Quantity is required";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRequiredFieldValidator.display = "Dynamic";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRequiredFieldValidator.evaluationfunction = "RequiredFieldValidatorEvaluateIsValid";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRequiredFieldValidator.initialvalue = "";
var ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRegularExpressionValidator = document.all ? document.all["ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRegularExpressionValidator"] : document.getElementById("ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRegularExpressionValidator");
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRegularExpressionValidator.controltovalidate = "ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityTextBox";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRegularExpressionValidator.errormessage = "Quantity must be a number.";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRegularExpressionValidator.display = "Dynamic";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRegularExpressionValidator.evaluationfunction = "RegularExpressionValidatorEvaluateIsValid";
ctl00_MainContentHolder_SuggestedItems1_ProductGridDisplay_rpProductGrid_ctl03_SingleProductDisplay_QuantityRegularExpressionValidator.validationexpression = "\\d*";
//]]>
</script>
<script type="text/javascript">
//<![CDATA[
$(document).ready(function () { initColors(); });
var Page_ValidationActive = false;
if (typeof(ValidatorOnLoad) == "function") {
ValidatorOnLoad();
}
function ValidatorOnSubmit() {
if (Page_ValidationActive) {
return ValidatorCommonOnSubmit();
}
else {
return true;
}
}
if(typeof(loadControl_ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList) != typeof undefined) loadControl_ctl00_MainContentHolder_VariantsDisplay_modifierTemplate1_ModifierList();//]]>
</script>
</form>
<script type="text/javascript" src="////cdn.callrail.com/companies/428178183/6e8b24cb38818a5c5477/12/swap.js"></script>
<!-- TrustBox script -->
<script type="text/javascript" src="//widget.trustpilot.com/bootstrap/v5/tp.widget.bootstrap.min.js" async></script>
<!-- End Trustbox script -->
</body>
</html>
| https://www.facebook.com/theking/ | 2022-09-02T05:39:58.000Z |
(?i)(?:\w+\W+){0,9}?(?=.*(?:plot).*|.*(?:over).*)(?:\w+\W+){0,9}?(?=Charlie|Muir|Charlie Muir)\K(?:(?:Charlie|Muir|Charlie Muir)\s+)+ | POSITIVE TESTING
1.
Charlie Muir was over the moon.
next next next next next next next next next next next next next next
Charlie Muir was in the plot .
next next next next next next next next next next next next next next
2.
Charlie was over the moon.
next next next next next next next next next next next next next next
Charlie was in the plot .
next next next next next next next next next next next next next next
3.
Mr. Charlie was over the moon.
next next next next next next next next next next next next next next
Mr.Muir was in the plot.
next next next next next next next next next next next next next next
4.
When Charlie saw the letter , Charlie was over the moon.
next next next next next next next next next next next next next next
When Charlie saw the letter, ChaRLIE was walking in the plot.
next next next next next next next next next next next next next next
5.
When Charlie Muir saw letter , Charlie Muir was over the moon.
next next next next next next next next next next next next next next
When Charlie Muir saw letter, ChaRLIE MUIR was walking in plot.
next next next next next next next next next next next next next next
6.
When Muir saw letter , Mr.Muir was over the moon.
next next next next next next next next next next next next next next
When Mr.MUIR saw letter, Mr.CharliE was walking in plot.
next next next next next next next next next next next next next next
7.
When Muir saw letter , Mr.Charlie Muir was over the moon.
next next next next next next next next next next next next next next
When Mr.Charlie saw letter, Mr.MUIR was walking in plot.
next next next next next next next next next next next next next next
8.
Charlie Muir was Over the moon.
next next next next next next next next next next next next next next
Charlie Muir was in the PLOT .
next next next next next next next next next next next next next next
9.
He,Charlie and Muir were OVEr the moon.
next next next next next next next next next next next next next next
Charlie and MR.MUIR were in the ploT .
next next next next next next next next next next next next next next
10.
Over the moon was Charlie.
next next next next next next next next next next next next next next
Plot was far away from Charlie.
next next next next next next next next next next next next next next
11.
OVER the moon was Charlie Muir.
next next next next next next next next next next next next next next
Plot was far away from CHARLIE MUIR.
next next next next next next next next next next next next next next
12.
over the moon were Charlie and Muir.
next next next next next next next next next next next next next next
Plot was far away from Charlie and Muir.
next next next next next next next next next next next next next next
13.
Over the moon was Mr.Muir whose first name is Charlie.
next next next next next next next next next next next next next next
PLOT was far away from Charlie whose last name is MUIR.
next next next next next next next next next next next next next next
14.
OVER the moon was MUIR who is also charlie Muir.
next next next next next next next next next next next next next next
plot was far away from MUIR who is also CHarlie Muir.
next next next next next next next next next next next next next next
---------------------------------------------------------------------
POSITVE / NEGATIVE TESTING
15.
Charlie knew when CHARLIE saw the letter that he would be over the moon after reading it.
next next next next next next next next next next next next next next
Charlie knew what the letter would contain when Charlie was reading it while walking in the plot.
next next next next next next next next next next next next next next
16.
Charlie knew when Charlie and muir saw the letter that they would be over the moon
next next next next next next next next next next next next next next
Charlie knew when Charlie and Muir saw the letter that they would be in the plot
next next next next next next next next next next next next next next
17.
Charlie knew when Charlie Muir saw the letter that they would be over the moon
next next next next next next next next next next next next next next
Charlie knew when Charlie Muir saw the letter that they would be in the plot
next next next next next next next next next next next next next next
18.
over the moon was Charlie Muir who is also known simply as CHARLIE.
next next next next next next next next next next next next next next
The plot was far away from Charlie Muir who is also known simply as CHARLIE.
next next next next next next next next next next next next next next
19.
OVER the moon was Mr.ChaRlie and Muir who are together known as the MuIr Brothers.
next next next next next next next next next next next next next next
The plot was far away from Charlie and Muir who are together known as the MUIR Brothers.
next next next next next next next next next next next next next next
-----------------------------------------------------------------------
NEGATIVE TESTING
20.
Charlie Muir , after receiving and reading letter was addressed to him , was over the moon.
next next next next next next next next next next next next next next
Charlie Muir received and read the letter was addressed to him in plot.
next next next next next next next next next next next next next next
| regex for - near plot / over | 2018-08-20T09:40:54.000Z |
|
Replaces one style of markdown image with another | !\[\[(.*_image[0-9]\.png)\]\] | # Abracadabra
![[Abracadabra/Abracadabra_image1.png]]
![[Abracadabra/Abracadabra_image2.png]]
See also [[abracadabra2]] and /some other stuff./ [[End of line See image elsewhere.]] | S/O 73225392 | 2022-08-03T17:28:29.000Z |
Can handle complex bracket expressions. | ^\{((?:(?:(?!\}).)+)(?:(?:\}\})?(?:(?:(?!\}).)+))+)\}(?!\}) | {class: name}
{ class : name }
{ 'class' : 'name' }
{ 'key' : 'value', 'key': 'value' }
{'key': 'value'}
{' key ': ' value ' , 'this': 'guy' }
{' class ': ' in session ' , 'this': 'guy' } string
{' class ': ' in session ' , 'this': 'guy' } string with {{ brackets }}
{' class ': '{{ parse me }}' }
{'key': 'value', checked: true}
{'key': 'value', checked: {{ bool }} }
{'asdf': 'fda', checked: {{ bool }}, strange: {{ bool }} } stuff {{ more }} #{interpolate}
| Regex to detect HAML attribute expression whilst ignoring following text. | 2014-07-25T23:45:41.000Z |
This will match a word that is not wrapper by the a specified HTML element (with a class). | (?<!<span>)highlighted(?!<\/span>) | highlighted <span>highlighted</span> highlighted some <something>highlighted</something> | Matches only word without specific HTML tag around it. | 2015-12-07T03:24:38.000Z |
([a-z]+)(?:="([\s\S]+?)"(?:\/>|\s))? | <link dfdfdf rel="imp"""""..../-----
ort" ewrwerwe href="r/paper-to
d">
olbar.html"/> | get html tag attributes (name/value) | 2016-08-08T01:42:57.000Z |
|
A regex for the brazilian document named of CNPJ (Cadastro Nacional de Pessoa Jurídica) | ^[0-9]{2}[\.]?[0-9]{3}[\.]?[0-9]{3}[\/]?[0-9]{4}[-]?[0-9]{2}$ | Regex for the brazilian CNPJ | 2015-12-04T21:12:19.000Z |
|
Matches vimeo links with and without #t=xxs at the end | ERROR: type should be string, got "https:\\/\\/(?:www.)?vimeo.com\\/([0-9]{9})(?:\\#t=(\\d+)s)?" | https://vimeo.com/192837465
https://vimeo.com/192837465#t=130s
https://www.vimeo.com/192832789
| Vimeo video links | 2016-08-04T16:57:09.000Z |
(?:[0-2])?[0-9]:[0-5][0-9](?::[0-5][0-9])?(?:(?:\\s)?[AP]M)? | Nos dois sistemas.
Em 22 de maio de 2018 10:23, Sistema Delta <[email protected]>
escreveu:
> ##- Não escreva abaixo desta linha -##
>
> *Comentário adicionado por FERNANDO TEIXEIRA BARROS em 22/05/2018 10:23*
> *Usuário:* FERNANDO TEIXEIRA BARROS* Data:* 22/05/2018 10:23:25
>
> *COMENTÁRIO:*
> Bom dia Mayla,
> Apenas sistema Montafarma?
> ------------------------------
>
> *ID Reporte: * #1468
> *Situação: * *ABERTO*
> *Módulo:* Produção
> *Tela:* ordem de pedido
> *Nome: * mayla.capana - MAYLA CAPANA
> *Emissão: * 22/05/2018 12:00:00
> *Fechamento: * -
> *Responsável: * DELTA SI
> *Prioridade: * Urgente
> *Tipo: * Ajuda
>
> *MENSAGEM: *
> Bom dia,
>
> Por favor liberar o meu acesso, Izac e Priscila, para a tela de Produção -
> Ordem de Pedido. (igual a tela que a Iza tem acesso).
>
> Aguardo retorno.
>
> Até,
>
> | timePattern | 2018-05-22T13:41:08.000Z |
|
to share with IRC helpers | ( {1}.{1,})([\n]{2,}) | regex101-4269 | 2014-12-16T09:54:30.000Z |
|
^[\d\w\W]{5}$ | test | 2018-05-29T15:55:38.000Z |
||
git-stuff commit template pattern | ((?<=Description\:[\r\n|\r|\n])(\d+\.|\-)\ (?P<desc>(.+)\.))|((?<=\.[\r\n|\r|\n])((\d+\.|\-)\ (?P<desc2>(.+)\.))(?=[\r\n|\r|\n](\d+\.|\-)|[\r\n|\r|\n]*Reference)) | [FIX]: Fix bad wiring on plane 334, 335,
and 336. Remove decorator for 446.
Description:
1. sadsadad.
2. kjadhkahsdkahdjakdskashdkasjdsahdkhadhkasdhjkhaskd.
3. djasdasdasdadkajdsjaskldjalkdjalsjdlajsdlkjasdlas.
Reference: #232
([\d]+\. )(.*?)(?=([\d]+\.)|($))
((?<=Description\:[\r\n|\r|\n])(\d+\.|\-)\ (?P<desc>(.+)\.))|((?<=\.[\r\n|\r|\n])((\d+\.|\-)\ (?P<desc2>(.+)\.))(?=[\r\n|\r|\n](\d+\.|\-)|[\r\n|\r|\n]*Reference)) | Commit Message - Description Pattern | 2018-07-02T12:27:52.000Z |
Simple regex to find the Namespace line in a C# class. | (^namespace{1}.*\W\n?{) | namespace HP.Core.Extensions.ExtensionMethods
{
public static partial class FileInfoExtension
{
public static System.String GetDirectoryName(this FileInfo @this)
{
return @this.Directory.Name;
}
}
}
| Find C# Namespace | 2015-10-21T16:29:57.000Z |
idk | Jessip Daggerheart is attempting to sneak up on (?<Player>\w+) | \#FFFF00Jessip Daggerheart is attempting to sneak up on Aditu, but they haven't noticed... You should warn them!
| <Trigger R="(?<attacker>[\w\S]+)\ feel inspired by the Jester\." | 2015-11-10T18:16:08.000Z |
(\.\.\/)(?=fonts\/bootstrap) | ../fonts/bootstrap/glyphicons-halflings-regular.eot
../fonts/bootstrap/glyphicons-halflings-regular.eot
../dave
| davekeane select certain and ignore certain characters or words | 2018-05-11T20:56:21.000Z |
|
The.+Knick.+1x.+720p.+ | /The.+Knick.+1x.+720p.+/i | 2014-11-29T19:39:18.000Z |
||
^([^0-9,\-]+\s*)(\-{2}?\s+|\d{0,5}\.?\d{0,3}?\s+)(\-{1,2}?\s+|\d{0,5}\.?\d{0,3}?\s+)(\-{1,2}?\s+|\d{0,5}\.?\d{0,3}?\s+)(\-{1,2}?\s+|\d{0,5}\.?\d{0,3}?\s+)(\-{1,2}?\s+|\d{0,5}\.?\d{0,3}?\s+)(\-{1,2}?\s+|\d{0,5}\.?\d{0,3}?\s+)(\-{1,2}?\s+|\d{0,5}\.?\d{0,3}?\s+)(\-{1,2}?\s+|\d{0,5}\.?\d{0,3}?\s+)(\-{1,2}?\s+|\d{0,5}\.?\d{0,3}?\s+)(\-{1,2}?\s+|\d{0,5}\.?\d{0,3}?\s+) | Median 44.9 55.3 64.5 66.3 70.0 43.9 54.5 61.0 65.0 67.5
| Polls General | 2016-08-01T15:47:57.000Z |
|
Almost ready!!! | (?#############
### AS PHP ###
##############)
(?#####################################################
### DECLEAR GROUPS CAPTURE NAME WITHOUT USING THEM ###
#######################################################)
(?(DEFINE)
(?<_VAR_NAME>[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*) (?# Valid variable name)
(?<_BOOLEAN>(?i:false|true)) (?# Valid boolean value)
(?<_STRING>(?:"(?:[\\\\]+.|[^"])*")|(?:\'(?:[\\\\]+.|[^\'])*\')) (?# Valid string value)
(?<_INT>[0-9]+) (?# Valid integer value)
(?<__INT>(?:(?:-|\+)\s*)?(?P>_INT)) (?# Valid positive or negative interger value)
(?<_KEY>(?P>_STRING)|(?P>_INT)|(?P>_CALL)) (?# Valid key name)
(?<__KEY>(?:\[(?P>_KEY)\])+) (?# Valid multiple keys)
(?<_CALL>\$(?P>_VAR_NAME)(?P>__KEY)?) (?# Valid variable calls)
(?<_VALUE>(?i:null)|(?P>_BOOLEAN)|(?P>_STRING)|(?P>__INT)|(?P>_CALL)) (?# Valid value without array value)
(?<_ARRAY>\[\s*(?:(?:(?:(?P>_VALUE)|(?P>_ARRAY))\s*,\s*)*(?:(?:(?P>_VALUE)|(?P>_ARRAY))\s*))?\])(?# Valid array)
(?<__VALUE>(?:(?P>_VALUE)|(?P>_ARRAY))) (?# Valid value with array value)
(?<_OPERATORS>={2,3}|!={1,2}|>=?|<=?) (?# Valid operators signs)
(?<_SHORT_OPR>AND|OR|and|or|&{2}|\|{2}) (?# Valid short-handed opreators signs)
)
(?#####################
### START CAPTURE ###
#######################)
(?# Get the full match capture text)
(?:<!--(?s:.)+?-->|<!--(?s:.)*)(*SKIP)(*FAIL)| (?# SKIP ON COMMENTS FOUND)
(?#[^\\\\](?:[\\\\]{2})(?#*[\\\\](?P>text)(?#(*SKIP)(?#(*FAIL)(?#| (?# SKIP ESCAPED MATCHES)
(?<text>
(?# Find new variables declare with multiple keys - mark as SET)
(*:SET)
(?<target>\$(?<name>(?P>_VAR_NAME))(?<key>(?P>__KEY))?)
(?:(?<A>)|(?<B>\s*))
(?<operator>
(?(B)
(?:(?<C>\+=|-=)|(?<D>\.=|=\.))
|(?(A)
(?<E>\+{2}|\-{2}))
)
)
(?(E)|(?:\s*(?<value>
(?(B)(?P>__VALUE)|
(?(C)(?:(?P>__INT)|(?P>_CALL))|
(?(D)(?:(?P>_STRING)|(?P>_CALL)))
)
)
)));
(?########## OR ##########)|
(?# Find new variables declare with multiple keys - mark as SET)
(*:SET)
(?<target>\$(?<name>(?P>_VAR_NAME))(?<key>(?P>__KEY))?)\s*=\s*(?<value>(?P>__VALUE));
(?########## OR ##########)|
(?# Find variable calls with multiple keys - mark as CALL)
(*:CALL)
(?<target>\$(?<name>(?P>_VAR_NAME))(?<key>(?P>__KEY))?)
(?########## OR ##########)|
(?# Find conditional statements - mark as IF)
(*:IF)
(?i)(?:if)(?-i)\s*
\((?<statements>(?P>_VALUE)(?:\s*(?P>_OPERATORS)\s*(?P>_VALUE)(?!(?P>_OPERATORS))|(?:\s+(?P>_SHORT_OPR)\s+(?P>_VALUE))*)+)\)\s*{
(?<content>(?:|(?R)|.|\s)*)
}
(?########## OR ##########)|
(?# Find while loops - mark as WHILE)
(*:WHILE)
(?i)(?:while)(?-i)\s*
\((?<statements>(?P>_VALUE)(?:\s*(?P>_OPERATORS)\s*(?P>_VALUE)(?!(?P>_OPERATORS))|(?:\s+(?P>_SHORT_OPR)\s+(?P>_VALUE))*)+)\)\s*{
(?<content>(?:|(?R)|.|\s)*)
}
) | $boom[0][$key[1][0] = null;
<!-- $boom -->
1 -> 01110110010 $boom[$a[34]]
2 -> 01110111110 $boom[$key]
3 -> 01110101010 $boom[$key[1234]]
4 -> 01110100110 $boom[$abc]
5 -> 11100000000 $boom
6 -> 01000000000 $abc
7 -> 11010110110 $boom[1234]
8 -> 01110110110 $a[134]
9 -> 01110111001 $boom[0][$key[1][0]]
| 13/11/2019 | 2019-11-13T07:46:00.000Z |
This will match valid IP addresses which are listed in RFC1918.
* 127.0.0.0 - 127.255.255.255
* 10.0.0.0 - 10.255.255.255
* 192.168.0.0 - 192.168.255.255
* 172.16.0.0 - 172.31.255.255
| ^(127(?:\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$)|(10(?:\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$)|(192\.168(?:\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){2}$)|(172\.(?:1[6-9]|2\d|3[0-1])(?:\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){2}$) | 127.0.0.0
127.255.255.255
127.256.255.255
127.255.256.255
127.255.255.256
10.0.0.0
10.255.255.255
10.256.255.255
10.255.256.255
10.255.255.256
192.168.0.0
192.168.255.255
192.168.256.255
192.168.255.256
172.15.255.255
172.16.0.0
172.31.255.255
172.31.256.255
172.31.255.256
172.32.255.255
| IPv4 Valid RFC1918 Addresses | 2020-10-19T15:35:07.000Z |
Subsets and Splits