es6-tween
Advanced tools
Comparing version 3.8.12 to 3.8.13
@@ -682,4 +682,5 @@ (function (global, factory) { | ||
for (var property in _valuesEnd) loop( property ); | ||
this._isPlaying = true; | ||
this._onStartCallbackFired = false; | ||
add(this); | ||
this._isPlaying = true; | ||
return this; | ||
@@ -686,0 +687,0 @@ }; |
@@ -1,3 +0,3 @@ | ||
!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n(t.TWEEN={})}(this,function(t){"use strict";var n,i="undefined"!=typeof window?window:"undefined"!=typeof global?global:this,e=[],r=!1,o=!1,u=i.requestAnimationFrame||function(t){return i.setTimeout(t,16)},a=i.cancelAnimationFrame||function(t){return i.clearTimeout(t)},s=function(t){e.push(t),o&&!r&&(n=u(y),r=!0)},f=function(t){for(var n=0;n<e.length;n++)if(t===e[n])return e[n];return null},c=function(t){var n=e.indexOf(t);-1!==n&&e.splice(n,1)},h=function(){if("undefined"!=typeof process&&void 0!==process.hrtime)return function(){var t=process.hrtime();return 1e3*t[0]+t[1]/1e6};if(void 0!==i.performance&&void 0!==i.performance.now)return i.performance.now.bind(i.performance);var t=i.performance&&i.performance.timing&&i.performance.timing.navigationStart?i.performance.timing.navigationStart:Date.now();return function(){return Date.now()-t}}(),l=h(),p=0,_=0,y=function(t,i){if(t=void 0!==t?t:h(),(p=t-l)>150&&(_+=p-50/3),l=t,o&&r&&(n=u(y)),0===e.length)return a(n),r=!1,!1;for(var s=0;s<e.length;)e[s].update(t-_,i),s++;return!0},d=function(){return _},v={},m={Linear:{None:function(t){return t}},Quadratic:{In:function(t){return t*t},Out:function(t){return t*(2-t)},InOut:function(t){return(t*=2)<1?.5*t*t:-.5*(--t*(t-2)-1)}},Cubic:{In:function(t){return t*t*t},Out:function(t){return--t*t*t+1},InOut:function(t){return(t*=2)<1?.5*t*t*t:.5*((t-=2)*t*t+2)}},Quartic:{In:function(t){return t*t*t*t},Out:function(t){return 1- --t*t*t*t},InOut:function(t){return(t*=2)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2)}},Quintic:{In:function(t){return t*t*t*t*t},Out:function(t){return--t*t*t*t*t+1},InOut:function(t){return(t*=2)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)}},Sinusoidal:{In:function(t){return 1-Math.cos(t*Math.PI/2)},Out:function(t){return Math.sin(t*Math.PI/2)},InOut:function(t){return.5*(1-Math.cos(Math.PI*t))}},Exponential:{In:function(t){return 0===t?0:Math.pow(1024,t-1)},Out:function(t){return 1===t?1:1-Math.pow(2,-10*t)},InOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?.5*Math.pow(1024,t-1):.5*(2-Math.pow(2,-10*(t-1)))}},Circular:{In:function(t){return 1-Math.sqrt(1-t*t)},Out:function(t){return Math.sqrt(1- --t*t)},InOut:function(t){return(t*=2)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)}},Elastic:{In:function(t){return 0===t?0:1===t?1:-Math.pow(2,10*(t-1))*Math.sin(5*(t-1.1)*Math.PI)},Out:function(t){return 0===t?0:1===t?1:Math.pow(2,-10*t)*Math.sin(5*(t-.1)*Math.PI)+1},InOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?-.5*Math.pow(2,10*(t-1))*Math.sin(5*(t-1.1)*Math.PI):.5*Math.pow(2,-10*(t-1))*Math.sin(5*(t-1.1)*Math.PI)+1}},Back:{In:function(t){var n=1.70158;return t*t*((n+1)*t-n)},Out:function(t){var n=1.70158;return--t*t*((n+1)*t+n)+1},InOut:function(t){var n=2.5949095;return(t*=2)<1?t*t*((n+1)*t-n)*.5:.5*((t-=2)*t*((n+1)*t+n)+2)}},Bounce:{In:function(t){return 1-m.Bounce.Out(1-t)},Out:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},InOut:function(t){return t<.5?.5*m.Bounce.In(2*t):.5*m.Bounce.Out(2*t-1)+.5}}},g={Linear:function(t,n){var i=t.length-1,e=i*n,r=Math.floor(e),o=g.Utils.Linear;return n<0?o(t[0],t[1],e):n>1?o(t[i],t[i-1],i-e):o(t[r],t[r+1>i?i:r+1],e-r)},Bezier:function(t,n){for(var i=0,e=t.length-1,r=Math.pow,o=g.Utils.Bernstein,u=0;u<=e;u++)i+=r(1-n,e-u)*r(n,u)*t[u]*o(e,u);return i},CatmullRom:function(t,n){var i=t.length-1,e=i*n,r=Math.floor(e),o=g.Utils.CatmullRom;return t[0]===t[i]?(n<0&&(r=Math.floor(e=i*(1+n))),o(t[(r-1+i)%i],t[r],t[(r+1)%i],t[(r+2)%i],e-r)):n<0?t[0]-(o(t[0],t[0],t[1],t[1],-e)-t[0]):n>1?t[i]-(o(t[i],t[i],t[i-1],t[i-1],e-i)-t[i]):o(t[r?r-1:0],t[r],t[i<r+1?i:r+1],t[i<r+2?i:r+2],e-r)},Utils:{Linear:function(t,n,i){return"function"==typeof t?t(i):(n-t)*i+t},Bernstein:function(t,n){var i=g.Utils.Factorial;return i(t)/i(n)/i(t-n)},Factorial:function(){var t=[1];return function(n){var i=1;if(t[n])return t[n];for(var e=n;e>1;e--)i*=e;return t[n]=i,i}}(),CatmullRom:function(t,n,i,e,r){var o=.5*(i-t),u=.5*(e-n),a=r*r;return(2*n-2*i+o+u)*(r*a)+(-3*n+3*i-2*o-u)*a+o*r+n}}},M=0,b=function(t){return this.id=M++,this.object=t,this._valuesStart={},this._valuesEnd=null,this._valuesStartRepeat={},this._duration=1e3,this._easingFunction=m.Linear.None,this._interpolationFunction=g.Linear,this._startTime=0,this._delayTime=0,this._repeat=0,this._r=0,this._isPlaying=!1,this._yoyo=!1,this._reversed=!1,this._onStartCallbackFired=!1,this._pausedTime=null,this._isFinite=!0,this._onStartCallback=null,this._onUpdateCallback=null,this._onCompleteCallback=null,this};b.prototype.onStart=function(t){return this._onStartCallback=t,this},b.prototype.onUpdate=function(t){return this._onUpdateCallback=t,this},b.prototype.onComplete=function(t){return this._onCompleteCallback=t,this},b.prototype.isPlaying=function(){return this._isPlaying},b.prototype.isStarted=function(){return this._onStartCallbackFired},b.prototype.pause=function(){return this._isPlaying?(this._isPlaying=!1,c(this),this._pausedTime=h()-d(),this):this},b.prototype.play=function(){return this._isPlaying?this:(this._isPlaying=!0,this._startTime+=h()-d()-this._pausedTime,s(this),this._pausedTime=h()-d(),this)},b.prototype.duration=function(t){return this._duration="function"==typeof t?t(this._duration):t,this},b.prototype.to=function(t,n){return void 0===n&&(n=1e3),this._valuesEnd=t,this._duration=n,this},b.prototype.start=function(t){this._startTime=void 0!==t?t:h()-d(),this._startTime+=this._delayTime;var n=this,i=n._valuesEnd,e=n._valuesStartRepeat,r=n._valuesStart,o=n._interpolationFunction,u=n.object;for(var a in i)!function(t){var n=u[t],a=i[t];if(u&&void 0!==u[t]){var s=u[t];if("number"==typeof n){if("string"==typeof a)e[t]=a,a=n+parseFloat(a);else if(Array.isArray(a)){a.unshift(n);var f=a;a=function(t){return o(f,t)}}}else if("object"==typeof a)if(Array.isArray(a)){var c=a,h=n.map(function(t){return t}),l=void 0,p=a.length;a=function(t){for(l=0;l<p;l++)s[l]="number"==typeof h[l]?h[l]+(c[l]-h[l])*t:c[l];return s}}else{var _=a,y={};for(var d in n)y[d]=n[d];a=function(t){for(var n in a)s[n]="number"==typeof y[n]?y[n]+(_[n]-y[n])*t:_[n];return s}}r[t]=n,i[t]=a}}(a);return s(this),this._isPlaying=!0,this},b.prototype.stop=function(){var t=this,n=t._isPlaying,i=t._startTime,e=t._duration;return n?(this.update(i+e),c(this),this._isPlaying=!1,this):this},b.prototype.delay=function(t){return this._delayTime="function"==typeof t?t(this._delayTime):t,this},b.prototype.repeat=function(t){return this._repeat="function"==typeof t?t(this._repeat):t,this._r=this._repeat,this._isFinite=isFinite(t),this},b.prototype.repeatDelay=function(t){return this._repeatDelayTime="function"==typeof t?t(this._repeatDelayTime):t,this},b.prototype.reverseDelay=function(t){return this._reverseDelayTime="function"==typeof t?t(this._reverseDelayTime):t,this},b.prototype.yoyo=function(t){return this._yoyo="function"==typeof t?t(this._yoyo):t,this},b.prototype.easing=function(t){return"function"==typeof t&&(this._easingFunction=t),this},b.prototype.interpolation=function(t){return"function"==typeof t&&(this._interpolationFunction=t),this},b.prototype.reassignValues=function(){var t=this,n=t._valuesStart,i=t._valuesEnd,e=t.object;for(var r in i){var o=n[r];e[r]=o}return this},b.prototype.update=function(t,n){var i,e,r,o=this,u=o._onStartCallbackFired,a=o._easingFunction,s=o._repeat,f=o._repeatDelayTime,l=o._reverseDelayTime,p=o._yoyo,_=o._reversed,y=o._startTime,v=o._duration,m=o._valuesStart,g=o._valuesEnd,b=o._valuesStartRepeat,I=o.object,T=o._isFinite,O=o._isPlaying,C=o._onStartCallback,P=o._onUpdateCallback,F=o._onCompleteCallback;if(t=void 0!==t?t:h()-d(),!O||t<y)return!0;u||(C&&C(I),this._onStartCallbackFired=!0),i=(i=(t-y)/v)>1?1:i,e=a(i=_?1-i:i);for(r in g){var w=m[r],S=g[r];void 0!==w&&("function"==typeof S?I[r]=S(e):"number"==typeof S&&(I[r]=w+(S-w)*e))}if(P&&P(I,i),1===i||_&&0===i){if(s){if(T&&this._repeat--,!_)for(r in b)m[r]=g[r],g[r]+=parseFloat(b[r]);return p&&(this._reversed=!_),this._startTime=!_&&f?t+f:_&&l?t+l:t,!0}return n||c(this),this._isPlaying=!1,F&&F(),this._repeat=this._r,M--,!1}return!0},t.Plugins=v,t.onTick=function(t){return e.push({update:t})},t.has=function(t){return null!==f(t)},t.get=f,t.getAll=function(){return e},t.removeAll=function(){e.length=0},t.remove=c,t.add=s,t.now=h,t.update=y,t.autoPlay=function(t){o=t},t.isRunning=function(){return r},t.Tween=b,t.Easing=m,Object.defineProperty(t,"__esModule",{value:!0})}); | ||
!function(t,n){"object"==typeof exports&&"undefined"!=typeof module?n(exports):"function"==typeof define&&define.amd?define(["exports"],n):n(t.TWEEN={})}(this,function(t){"use strict";var n,i="undefined"!=typeof window?window:"undefined"!=typeof global?global:this,e=[],r=!1,o=!1,u=i.requestAnimationFrame||function(t){return i.setTimeout(t,16)},a=i.cancelAnimationFrame||function(t){return i.clearTimeout(t)},s=function(t){e.push(t),o&&!r&&(n=u(y),r=!0)},f=function(t){for(var n=0;n<e.length;n++)if(t===e[n])return e[n];return null},c=function(t){var n=e.indexOf(t);-1!==n&&e.splice(n,1)},h=function(){if("undefined"!=typeof process&&void 0!==process.hrtime)return function(){var t=process.hrtime();return 1e3*t[0]+t[1]/1e6};if(void 0!==i.performance&&void 0!==i.performance.now)return i.performance.now.bind(i.performance);var t=i.performance&&i.performance.timing&&i.performance.timing.navigationStart?i.performance.timing.navigationStart:Date.now();return function(){return Date.now()-t}}(),l=h(),p=0,_=0,y=function(t,i){if(t=void 0!==t?t:h(),(p=t-l)>150&&(_+=p-50/3),l=t,o&&r&&(n=u(y)),0===e.length)return a(n),r=!1,!1;for(var s=0;s<e.length;)e[s].update(t-_,i),s++;return!0},d=function(){return _},v={},m={Linear:{None:function(t){return t}},Quadratic:{In:function(t){return t*t},Out:function(t){return t*(2-t)},InOut:function(t){return(t*=2)<1?.5*t*t:-.5*(--t*(t-2)-1)}},Cubic:{In:function(t){return t*t*t},Out:function(t){return--t*t*t+1},InOut:function(t){return(t*=2)<1?.5*t*t*t:.5*((t-=2)*t*t+2)}},Quartic:{In:function(t){return t*t*t*t},Out:function(t){return 1- --t*t*t*t},InOut:function(t){return(t*=2)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2)}},Quintic:{In:function(t){return t*t*t*t*t},Out:function(t){return--t*t*t*t*t+1},InOut:function(t){return(t*=2)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)}},Sinusoidal:{In:function(t){return 1-Math.cos(t*Math.PI/2)},Out:function(t){return Math.sin(t*Math.PI/2)},InOut:function(t){return.5*(1-Math.cos(Math.PI*t))}},Exponential:{In:function(t){return 0===t?0:Math.pow(1024,t-1)},Out:function(t){return 1===t?1:1-Math.pow(2,-10*t)},InOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?.5*Math.pow(1024,t-1):.5*(2-Math.pow(2,-10*(t-1)))}},Circular:{In:function(t){return 1-Math.sqrt(1-t*t)},Out:function(t){return Math.sqrt(1- --t*t)},InOut:function(t){return(t*=2)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)}},Elastic:{In:function(t){return 0===t?0:1===t?1:-Math.pow(2,10*(t-1))*Math.sin(5*(t-1.1)*Math.PI)},Out:function(t){return 0===t?0:1===t?1:Math.pow(2,-10*t)*Math.sin(5*(t-.1)*Math.PI)+1},InOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?-.5*Math.pow(2,10*(t-1))*Math.sin(5*(t-1.1)*Math.PI):.5*Math.pow(2,-10*(t-1))*Math.sin(5*(t-1.1)*Math.PI)+1}},Back:{In:function(t){var n=1.70158;return t*t*((n+1)*t-n)},Out:function(t){var n=1.70158;return--t*t*((n+1)*t+n)+1},InOut:function(t){var n=2.5949095;return(t*=2)<1?t*t*((n+1)*t-n)*.5:.5*((t-=2)*t*((n+1)*t+n)+2)}},Bounce:{In:function(t){return 1-m.Bounce.Out(1-t)},Out:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},InOut:function(t){return t<.5?.5*m.Bounce.In(2*t):.5*m.Bounce.Out(2*t-1)+.5}}},g={Linear:function(t,n){var i=t.length-1,e=i*n,r=Math.floor(e),o=g.Utils.Linear;return n<0?o(t[0],t[1],e):n>1?o(t[i],t[i-1],i-e):o(t[r],t[r+1>i?i:r+1],e-r)},Bezier:function(t,n){for(var i=0,e=t.length-1,r=Math.pow,o=g.Utils.Bernstein,u=0;u<=e;u++)i+=r(1-n,e-u)*r(n,u)*t[u]*o(e,u);return i},CatmullRom:function(t,n){var i=t.length-1,e=i*n,r=Math.floor(e),o=g.Utils.CatmullRom;return t[0]===t[i]?(n<0&&(r=Math.floor(e=i*(1+n))),o(t[(r-1+i)%i],t[r],t[(r+1)%i],t[(r+2)%i],e-r)):n<0?t[0]-(o(t[0],t[0],t[1],t[1],-e)-t[0]):n>1?t[i]-(o(t[i],t[i],t[i-1],t[i-1],e-i)-t[i]):o(t[r?r-1:0],t[r],t[i<r+1?i:r+1],t[i<r+2?i:r+2],e-r)},Utils:{Linear:function(t,n,i){return"function"==typeof t?t(i):(n-t)*i+t},Bernstein:function(t,n){var i=g.Utils.Factorial;return i(t)/i(n)/i(t-n)},Factorial:function(){var t=[1];return function(n){var i=1;if(t[n])return t[n];for(var e=n;e>1;e--)i*=e;return t[n]=i,i}}(),CatmullRom:function(t,n,i,e,r){var o=.5*(i-t),u=.5*(e-n),a=r*r;return(2*n-2*i+o+u)*(r*a)+(-3*n+3*i-2*o-u)*a+o*r+n}}},M=0,b=function(t){return this.id=M++,this.object=t,this._valuesStart={},this._valuesEnd=null,this._valuesStartRepeat={},this._duration=1e3,this._easingFunction=m.Linear.None,this._interpolationFunction=g.Linear,this._startTime=0,this._delayTime=0,this._repeat=0,this._r=0,this._isPlaying=!1,this._yoyo=!1,this._reversed=!1,this._onStartCallbackFired=!1,this._pausedTime=null,this._isFinite=!0,this._onStartCallback=null,this._onUpdateCallback=null,this._onCompleteCallback=null,this};b.prototype.onStart=function(t){return this._onStartCallback=t,this},b.prototype.onUpdate=function(t){return this._onUpdateCallback=t,this},b.prototype.onComplete=function(t){return this._onCompleteCallback=t,this},b.prototype.isPlaying=function(){return this._isPlaying},b.prototype.isStarted=function(){return this._onStartCallbackFired},b.prototype.pause=function(){return this._isPlaying?(this._isPlaying=!1,c(this),this._pausedTime=h()-d(),this):this},b.prototype.play=function(){return this._isPlaying?this:(this._isPlaying=!0,this._startTime+=h()-d()-this._pausedTime,s(this),this._pausedTime=h()-d(),this)},b.prototype.duration=function(t){return this._duration="function"==typeof t?t(this._duration):t,this},b.prototype.to=function(t,n){return void 0===n&&(n=1e3),this._valuesEnd=t,this._duration=n,this},b.prototype.start=function(t){this._startTime=void 0!==t?t:h()-d(),this._startTime+=this._delayTime;var n=this,i=n._valuesEnd,e=n._valuesStartRepeat,r=n._valuesStart,o=n._interpolationFunction,u=n.object;for(var a in i)!function(t){var n=u[t],a=i[t];if(u&&void 0!==u[t]){var s=u[t];if("number"==typeof n){if("string"==typeof a)e[t]=a,a=n+parseFloat(a);else if(Array.isArray(a)){a.unshift(n);var f=a;a=function(t){return o(f,t)}}}else if("object"==typeof a)if(Array.isArray(a)){var c=a,h=n.map(function(t){return t}),l=void 0,p=a.length;a=function(t){for(l=0;l<p;l++)s[l]="number"==typeof h[l]?h[l]+(c[l]-h[l])*t:c[l];return s}}else{var _=a,y={};for(var d in n)y[d]=n[d];a=function(t){for(var n in a)s[n]="number"==typeof y[n]?y[n]+(_[n]-y[n])*t:_[n];return s}}r[t]=n,i[t]=a}}(a);return this._isPlaying=!0,this._onStartCallbackFired=!1,s(this),this},b.prototype.stop=function(){var t=this,n=t._isPlaying,i=t._startTime,e=t._duration;return n?(this.update(i+e),c(this),this._isPlaying=!1,this):this},b.prototype.delay=function(t){return this._delayTime="function"==typeof t?t(this._delayTime):t,this},b.prototype.repeat=function(t){return this._repeat="function"==typeof t?t(this._repeat):t,this._r=this._repeat,this._isFinite=isFinite(t),this},b.prototype.repeatDelay=function(t){return this._repeatDelayTime="function"==typeof t?t(this._repeatDelayTime):t,this},b.prototype.reverseDelay=function(t){return this._reverseDelayTime="function"==typeof t?t(this._reverseDelayTime):t,this},b.prototype.yoyo=function(t){return this._yoyo="function"==typeof t?t(this._yoyo):t,this},b.prototype.easing=function(t){return"function"==typeof t&&(this._easingFunction=t),this},b.prototype.interpolation=function(t){return"function"==typeof t&&(this._interpolationFunction=t),this},b.prototype.reassignValues=function(){var t=this,n=t._valuesStart,i=t._valuesEnd,e=t.object;for(var r in i){var o=n[r];e[r]=o}return this},b.prototype.update=function(t,n){var i,e,r,o=this,u=o._onStartCallbackFired,a=o._easingFunction,s=o._repeat,f=o._repeatDelayTime,l=o._reverseDelayTime,p=o._yoyo,_=o._reversed,y=o._startTime,v=o._duration,m=o._valuesStart,g=o._valuesEnd,b=o._valuesStartRepeat,I=o.object,T=o._isFinite,O=o._isPlaying,C=o._onStartCallback,P=o._onUpdateCallback,F=o._onCompleteCallback;if(t=void 0!==t?t:h()-d(),!O||t<y)return!0;u||(C&&C(I),this._onStartCallbackFired=!0),i=(i=(t-y)/v)>1?1:i,e=a(i=_?1-i:i);for(r in g){var S=m[r],w=g[r];void 0!==S&&("function"==typeof w?I[r]=w(e):"number"==typeof w&&(I[r]=S+(w-S)*e))}if(P&&P(I,i),1===i||_&&0===i){if(s){if(T&&this._repeat--,!_)for(r in b)m[r]=g[r],g[r]+=parseFloat(b[r]);return p&&(this._reversed=!_),this._startTime=!_&&f?t+f:_&&l?t+l:t,!0}return n||c(this),this._isPlaying=!1,F&&F(),this._repeat=this._r,M--,!1}return!0},t.Plugins=v,t.onTick=function(t){return e.push({update:t})},t.has=function(t){return null!==f(t)},t.get=f,t.getAll=function(){return e},t.removeAll=function(){e.length=0},t.remove=c,t.add=s,t.now=h,t.update=y,t.autoPlay=function(t){o=t},t.isRunning=function(){return r},t.Tween=b,t.Easing=m,Object.defineProperty(t,"__esModule",{value:!0})}); | ||
//# sourceMappingURL=lite/Tween.min.js.map | ||
//# sourceMappingURL=Tween.min.js.map |
{ | ||
"name": "es6-tween", | ||
"version": "3.8.12", | ||
"version": "3.8.13", | ||
"description": "ES6 implementation of amazing tween.js", | ||
@@ -5,0 +5,0 @@ "browser": "full/Tween.min.js", |
@@ -197,4 +197,5 @@ import { add, now, remove, getTime } from './core' | ||
} | ||
this._isPlaying = true | ||
this._onStartCallbackFired = false | ||
add(this) | ||
this._isPlaying = true | ||
return this | ||
@@ -201,0 +202,0 @@ } |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
820904
9414