ETH Price: $3,308.61 (-4.08%)

Contract

0x738d3CEC4E685A2546Ab6C3B055fd6B8C1198093
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer Ownersh...125705402021-06-04 21:51:191271 days ago1622843479IN
0x738d3CEC...8C1198093
0 ETH0.0007441726
Burn118598082021-02-15 6:49:221380 days ago1613371762IN
0x738d3CEC...8C1198093
0 ETH0.0040342100
Update Liquidity...118320232021-02-11 0:23:041385 days ago1613002984IN
0x738d3CEC...8C1198093
0 ETH0.00234558166
Liquidity Reward...118319842021-02-11 0:14:151385 days ago1613002455IN
0x738d3CEC...8C1198093
0 ETH0.00828315150
Update Liquidity...118319772021-02-11 0:12:131385 days ago1613002333IN
0x738d3CEC...8C1198093
0 ETH0.006525150
Transfer Ownersh...114666882020-12-16 21:46:081441 days ago1608155168IN
0x738d3CEC...8C1198093
0 ETH0.0010787735
Transfer Ownersh...114666752020-12-16 21:43:241441 days ago1608155004IN
0x738d3CEC...8C1198093
0 ETH0.0010814335.08631572
Transfer Ownersh...114665702020-12-16 21:20:591441 days ago1608153659IN
0x738d3CEC...8C1198093
0 ETH0.0012328840
Transfer Ownersh...114664792020-12-16 21:02:031441 days ago1608152523IN
0x738d3CEC...8C1198093
0 ETH0.0012945242
Update Enable Un...113497872020-11-28 22:31:341459 days ago1606602694IN
0x738d3CEC...8C1198093
0 ETH0.0005309412.3
Transfer Ownersh...113496072020-11-28 21:49:331459 days ago1606600173IN
0x738d3CEC...8C1198093
0 ETH0.0004006813
Update Liquidity...113495622020-11-28 21:40:071459 days ago1606599607IN
0x738d3CEC...8C1198093
0 ETH0.0001836913
Transfer Ownersh...113495442020-11-28 21:36:581459 days ago1606599418IN
0x738d3CEC...8C1198093
0 ETH0.0004006813
Liquidity Reward...113495062020-11-28 21:30:271459 days ago1606599027IN
0x738d3CEC...8C1198093
0 ETH0.0005230213
Burn112678702020-11-16 8:37:121471 days ago1605515832IN
0x738d3CEC...8C1198093
0 ETH0.0007867131
Burn112678652020-11-16 8:36:361471 days ago1605515796IN
0x738d3CEC...8C1198093
0 ETH0.0007867131
Burn112678592020-11-16 8:34:291471 days ago1605515669IN
0x738d3CEC...8C1198093
0 ETH0.0007867131
Burn112678542020-11-16 8:33:391471 days ago1605515619IN
0x738d3CEC...8C1198093
0 ETH0.0008882335
Burn112678522020-11-16 8:33:121471 days ago1605515592IN
0x738d3CEC...8C1198093
0 ETH0.0008882335
Burn112678422020-11-16 8:31:201471 days ago1605515480IN
0x738d3CEC...8C1198093
0 ETH0.0014119735
Burn112678422020-11-16 8:31:201471 days ago1605515480IN
0x738d3CEC...8C1198093
0 ETH0.0008882335
Burn112678322020-11-16 8:28:551471 days ago1605515335IN
0x738d3CEC...8C1198093
0 ETH0.0008882335
Update Liquidity...112678302020-11-16 8:28:111471 days ago1605515291IN
0x738d3CEC...8C1198093
0 ETH0.000997535
Update State112473322020-11-13 5:01:071474 days ago1605243667IN
0x738d3CEC...8C1198093
0 ETH0.003696120
Update State112408132020-11-12 5:06:311475 days ago1605157591IN
0x738d3CEC...8C1198093
0 ETH0.014709585
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
PampStaking

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-11
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.6.12;

//Note that assert() is now used because the try/catch mechanism in the Pamp.sol contract does not revert on failure with require();

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        assert(c >= a/*, "SafeMath: addition overflow"*/);

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        assert(b <= a/*, errorMessage*/);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        assert(c / a == b/*, "SafeMath: multiplication overflow"*/);

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        assert(b > 0/*, errorMessage*/);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        assert(b != 0/*, errorMessage*/);
        return a % b;
    }
}

// Contract used to calculate stakes. Unused currently.

abstract contract CalculatorInterface {
    function calculateNumTokens(uint numerator, uint denominator, uint price, uint volume, uint _streak, uint256 balance, uint256 daysStaked, address stakerAddress, uint256 totalSupply) public view virtual returns (uint256);
    function negativeDayCallback(int numerator, uint denominator, uint256 price, uint256 volume) public virtual;
    function iterativelyCalculateOwedRewards(uint stakerLastTimestamp, uint stakerStartTimestamp, uint balance, address stakerAddress, uint totalSupply) public virtual view returns (uint256);
}


// Parent token contract, see Pamp.sol
abstract contract PampToken {
    function balanceOf(address account) public view virtual returns (uint256);
    function _burn(address account, uint256 amount) external virtual;
    function mint(address account, uint256 amount) public virtual;
}

abstract contract PreviousContract {
    function resetStakeTimeMigrateState(address addr) external virtual returns (uint256 startTimestamp, uint256 lastTimestamp);
    function getWhitelist(address addr) external virtual view returns (string memory);
}



/**
 * @dev Implementation of the Pamp Network: https://pamp.network
 * Pamp Network (PAMP) is the world's first price-reactive cryptocurrency.
 * The inflation rate of the token is wholly dependent on its market activity.
 * Minting does not happen when the price is less than the day prior.
 * When the price is greater than the day prior, the inflation for that day is
 * a function of its price, percent increase, volume, any positive price streaks,
 * and the amount of time a given holder has been holding.
 * In the first iteration, the dev team acts as the price oracle, but in the future, we plan to integrate a Chainlink price oracle.
 * This contract is the staking contract for the project and is upgradeable by the owner.
 * This is the staking contract V2, deployed at 0x738d3cec4e685a2546ab6c3b055fd6b8c1198093
 */
contract PampStaking {
    using SafeMath for uint256;
    
    address public owner;
    
    // A 'staker' is an individual who holds the minimum staking amount in his address.
    
    struct staker {
        uint startTimestamp;    // When the staking started in unix time (block.timesamp)
        uint lastTimestamp;     // When the last staking reward was claimed in unix time (block.timestamp)
        bool hasMigrated;       // Has the staker migrated from the previous contract?
    }
    
    struct update {             // Price updateState
        uint timestamp;         // Last update timestamp, unix time
        uint numerator;         // Numerator of percent change (1% increase = 1/100)
        uint denominator;       // Denominator of percent change
        uint price;         // In USD. 0001 is $0.001, 1000 is $1.000, 1001 is $1.001, etc
        uint volume;        // In whole USD (100 = $100)
        uint streak;        // We save the current streak to use later
    }
    
    PampToken public token;     // ERC20 token contract that uses this upgradeable contract for staking and burning
    
    modifier onlyToken() {
        assert(msg.sender == address(token)/*, "Caller must be PAMP token contract."*/);
        _;
    }
    
    modifier onlyNextStakingContract() {    // Caller must be the next staking contract
        assert(msg.sender == nextStakingContract);
        _;
    }
    
    modifier onlyOracle() {
        assert(msg.sender == oracle);
        _;
    }
    
    modifier onlyOwner() {
        assert(msg.sender == owner);
        _;
    }

    
    mapping (address => staker) public stakers;        // Mapping of all individuals staking/holding tokens greater than minStake
    
    mapping (address => string) public whitelist;      // Mapping of all addresses that do not burn tokens on receive and send (generally other smart contracts). Mapping of address to reason (string)
    
    mapping (address => uint256) public blacklist;     // Mapping of all addresses that receive a specific token burn when receiving. Mapping of address to percent burn (uint256)
    
    mapping (address => string) public uniwhitelist; // Mapping of all addresses that do not burn tokens when sending to or selling on Uniswap. Mapping of address to reason (string)
    

    bool public enableBurns; // Enable burning on transfer or fee on transfer
    
    bool public priceTarget1Hit;  // Price targets, defined in updateState()
    
    bool public priceTarget2Hit;
    
    address public uniswapV2Pair;      // Uniswap pair address, done for fees on Uniswap sells
    
    uint public uniswapSellerBurnPercent;        // Uniswap sells pay a fee. Should be based on negative streaks
    
    uint public transferBurnPercent;
    
    bool public enableUniswapDirectBurns;         // Enable seller fees on Uniswap
    
    uint256 public minStake;                      // Minimum amount to stake
        
    uint8 public minStakeDurationDays;            // Minimum amount of time to claim staking rewards
    
    uint8 public minPercentIncrease;              // Minimum percent increase to enable rewards for the day. 10 = 1.0%, 100 = 10.0%
    
    uint256 public inflationAdjustmentFactor;     // Factor to adjust the amount of rewards (inflation) to be given out in a single day
    
    uint256 public streak;                        // Number of days in a row that the price has increased
    
    uint public maxStreak;                          // Max number of days in a row we consider streak bonuses
        
    uint public negativeStreak;                     // Number of days in a row that the price has decreased
    
    update public lastUpdate;                      // latest price update

    uint public lastNegativeUpdate;                 // last time the price was negative (unix timestamp)
    
    CalculatorInterface public externalCalculator;    // external calculator to calculate the number of tokens given several variables (defined above). Currently unused
    
    address public nextStakingContract;                // Next staking contract deployed. Used for migrating staker state.
    
    bool public useExternalCalc;                      // self-explanatory
    
    bool public useExternalCalcIterative;
    
    bool public freeze;                               // freeze all transfers in an emergency
    
    bool public enableHoldersDay;                     // once a month, holders receive a nice bump. This is true for 24 hours, once a month only.
    
    mapping (bytes32 => bool) public holdersDayRewarded; // Mapping to test whether an individual received his Holder's Day reward
    
    event StakerRemoved(address StakerAddress);     // Staker was removed due to balance dropping below minStake
    
    event StakerAdded(address StakerAddress);       // Staker was added due to balance increasing abolve minStake
    
    event StakesUpdated(uint Amount);               // Staking rewards were claimed
    
    event HoldersDayEnabled();
    
    event HoldersDayRewarded(uint Amount);
    
    event Migration(address StakerAddress);
    
    event MassiveCelebration();                     // Happens when price targets are hit
    
    event Transfer(address indexed from, address indexed to, uint256 value);        // self-explanatory
    
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    
    uint public maxStakingDays;
    
    uint public holdersDayRewardDenominator;
    
    update[] public updates;
    
    address public liquidityStakingContract;
    
    address public oracle;
    
    PreviousContract public previousStakingContract;
    
    uint public numStakers;
    
    bool public increaseTransferFees;

    bool public checkPreviousStakingContractWhitelist;
    
    constructor () public {
        owner = msg.sender;
        token = PampToken(0xF0FAC7104aAC544e4a7CE1A55ADF2B5a25c65bD1);
        minStake = 200E18;
        inflationAdjustmentFactor = 800;
        streak = 0;
        minStakeDurationDays = 1;
        useExternalCalc = false; 
        useExternalCalcIterative = false;
        uniswapSellerBurnPercent = 8;
        enableBurns = true;
        freeze = false;
        minPercentIncrease = 10; // 1.0% min increase
        enableUniswapDirectBurns = true;
        transferBurnPercent = 8;
        priceTarget1Hit = true;
        oracle = msg.sender;
        maxStreak = 7;
        holdersDayRewardDenominator = 600;
        maxStakingDays = 100;
        increaseTransferFees = false;
        checkPreviousStakingContractWhitelist = true;
        previousStakingContract = PreviousContract(0x1d2121Efe25535850d1FDB65F930FeAB093416E0);
        uniswapV2Pair = 0x1C608235E6A946403F2a048a38550BefE41e1B85;
        liquidityStakingContract = 0x5CECDbdfB96463045b07d07aAa4fc2F1316F7e47;
    }
    
    // The owner (or price oracle) will call this function to update the price on days the coin is positive. On negative days, no update is made.
    
    function updateState(uint numerator, uint denominator, uint256 price, uint256 volume) external onlyOracle {  // when Chainlink is integrated a separate contract will call this function (oracle address will be changed as well)
    
        require(numerator > 0 && denominator > 0 && price > 0 && volume > 0, "Parameters cannot be negative or zero");
        
        if ((numerator < 2 && denominator == 100) || (numerator < 20 && denominator == 1000)) {
            require(mulDiv(1000, numerator, denominator) >= minPercentIncrease, "Increase must be at least minPercentIncrease to count");
        }
        
        uint secondsSinceLastUpdate = (block.timestamp - lastUpdate.timestamp);       // We calculate time since last price update in days.
        
        if (secondsSinceLastUpdate < 129600) { // We should only update once per day, but block timestamps can vary
            streak++;
        } else {
            streak = 1;
        }
        
        if (streak > maxStreak) {
            streak = maxStreak;
        }
        
        if (price >= 1000 && priceTarget1Hit == false) { // 1000 = $1.00
            priceTarget1Hit = true;
            streak = 50;
            emit MassiveCelebration();
            
        } else if (price >= 10000 && priceTarget2Hit == false) {   // It is written, so it shall be done
            priceTarget2Hit = true;
            streak = maxStreak;
            minStake = 100E18;        // Need $1000 to stake
            emit MassiveCelebration();
        }
        
        if(negativeStreak > 0) {
            uniswapSellerBurnPercent = uniswapSellerBurnPercent - (negativeStreak * 2);
            if(increaseTransferFees) {
                transferBurnPercent = transferBurnPercent - (negativeStreak * 2);
            }
            negativeStreak = 0;
        }
        
        
        lastUpdate = update(block.timestamp, numerator, denominator, price, volume, streak);
        
        updates.push(lastUpdate);

    }
    
    // We now update the smart contract on negative days. Currently this is only used to increase the Uniswap burn percent, but we may perform other functionality in the future.
    function updateStateNegative(int numerator, uint denominator, uint256 price, uint256 volume) external onlyOracle { 
        require(numerator < minPercentIncrease);
        
        uint secondsSinceLastUpdate = (block.timestamp - lastNegativeUpdate);       // We calculate time since last negative price update in days.
        
        if (secondsSinceLastUpdate < 129600) { // We should only update once per day, but block timestamps can vary
            negativeStreak++;
        } else {
            negativeStreak = 0;
        }
        
        streak = 1;
        
        uniswapSellerBurnPercent = uniswapSellerBurnPercent + (negativeStreak * 2);     // Negative day streaks increase burn fees
        
        if(increaseTransferFees) {
            transferBurnPercent = transferBurnPercent + (negativeStreak * 2);       // May have to contact exchanges about this
        }
        
        lastNegativeUpdate = block.timestamp;

        if(useExternalCalc) {
            externalCalculator.negativeDayCallback(numerator, denominator, price, volume);
        }
        
    }
    
    // This is used by the next staking contract to migrate staker state
    function resetStakeTimeMigrateState(address addr) external onlyNextStakingContract returns (uint256 startTimestamp, uint256 lastTimestamp) {
        startTimestamp = stakers[addr].startTimestamp;
        lastTimestamp = stakers[addr].lastTimestamp;
        stakers[addr].lastTimestamp = block.timestamp;
        stakers[addr].startTimestamp = block.timestamp;
    }
    
    function migratePreviousState() external {      // Migrate state to new contract and reset state from old contract. Also reset current state to block.timestamp if it is zero otherwise
        
        require(stakers[msg.sender].lastTimestamp == 0, "Last timestamp must be zero");
        require(stakers[msg.sender].startTimestamp == 0, "Start timestamp must be zero");
        require(!stakers[msg.sender].hasMigrated);
        
        (uint startTimestamp, uint lastTimestamp) = previousStakingContract.resetStakeTimeMigrateState(msg.sender);
        
        if(startTimestamp == 0) {
            stakers[msg.sender].startTimestamp = block.timestamp;
        } else {
            stakers[msg.sender].startTimestamp = startTimestamp;
        }
        if(lastTimestamp == 0) {
            stakers[msg.sender].lastTimestamp = block.timestamp;
        } else {
            stakers[msg.sender].lastTimestamp = lastTimestamp;
        }
        
        if(stakers[msg.sender].startTimestamp > stakers[msg.sender].lastTimestamp) {
            stakers[msg.sender].lastTimestamp = block.timestamp;
        }
        
        stakers[msg.sender].hasMigrated = true;
        
        numStakers++;
        
        emit Migration(msg.sender);
    }
    
    function updateMyStakes(address stakerAddress, uint256 balance, uint256 totalSupply) external onlyToken returns (uint256) {     // This function is called by the token contract. Holders call the function on the token contract to claim rewards.
        
        assert(balance > 0);
        
        staker memory thisStaker = stakers[stakerAddress];
        
        assert(thisStaker.lastTimestamp > 0/*,"Error: your last timestamp cannot be zero."*/); // We use asserts now so that we fail on errors due to try/catch in token contract.
        
        assert(thisStaker.startTimestamp > 0/*,"Error: your start timestamp cannot be zero."*/);
        
        assert(thisStaker.hasMigrated);     // If you didn't migrate or reset your state, you can't claim
        
        assert(block.timestamp > thisStaker.lastTimestamp/*, "Error: block timestamp is not greater than your last timestamp!"*/);
        assert(lastUpdate.timestamp > thisStaker.lastTimestamp/*, "Error: you can only update stakes once per day. You also cannot update stakes on the same day that you purchased them."*/);
        
        uint daysStaked = block.timestamp.sub(thisStaker.startTimestamp) / 86400;  // Calculate time staked in days
        
        assert(daysStaked >= minStakeDurationDays/*, "You must stake for at least minStakeDurationDays to claim rewards"*/);
        assert(balance >= minStake/*, "You must have a balance of at least minStake to claim rewards"*/);
        
        assert(thisStaker.lastTimestamp >= thisStaker.startTimestamp); // last timestamp should be greater than or equal to start timestamp
        
        uint numTokens = iterativelyCalculateOwedRewards(thisStaker.lastTimestamp, thisStaker.startTimestamp, balance, stakerAddress, totalSupply);
        
        stakers[stakerAddress].lastTimestamp = block.timestamp;        // Again, this can be gamed to some extent, but *cannot be before the last block*
        emit StakesUpdated(numTokens);
        
        return numTokens;       // Token contract will add these tokens to the balance of stakerAddress
    }
    
    struct iterativeCalculationVariables {
        uint index;
        uint bound;
        uint numTokens;
        uint calculatedTokens;
    }
    
    
    // Calculate owed rewards for several days, iterating back through the updates array. This is public so that the frontend can calculate expected rewards.
    function iterativelyCalculateOwedRewards(uint stakerLastTimestamp, uint stakerStartTimestamp, uint balance, address stakerAddress, uint totalSupply) public view returns (uint256) {
        
        if(useExternalCalcIterative) {
            return externalCalculator.iterativelyCalculateOwedRewards(stakerLastTimestamp, stakerStartTimestamp, balance, stakerAddress, totalSupply);
        }
        
        iterativeCalculationVariables memory vars;    // Necessary to fix stack too deep error
         
        vars.index = updates.length.sub(1); // Start from the latest update and work our way back
        
        if(vars.index > 60) {
            vars.bound = vars.index.sub(60);        // We bound the loop to 60 iterations (60 positive days)
        } else {
            vars.bound = vars.index.add(1);                    // No bound on the loop because the number of elements is less than 60
        }

        vars.numTokens = 0;
        
        for(bool end = false; end == false;) {
            
            update memory nextUpdate = updates[vars.index];      // Grab the last update from the array
            if(stakerLastTimestamp > nextUpdate.timestamp || stakerStartTimestamp > nextUpdate.timestamp || vars.index == vars.bound) { // If the staker's last timestamp or start timestamp is ahead of the next update, the staker is not owed the rewards from that update, and the updates array is in chronological order, so we end here, we also check for the bound
                end = true;
            } else {
                uint estimatedDaysStaked = nextUpdate.timestamp.sub(stakerStartTimestamp) / 86400; // We estimate the staker's holding time from the point of view of this current update
                
                vars.calculatedTokens = calculateNumTokens(nextUpdate.numerator, nextUpdate.denominator, nextUpdate.price, nextUpdate.volume, nextUpdate.streak, balance, estimatedDaysStaked, stakerAddress, totalSupply); // calculate the owed tokens from this update
                
                vars.numTokens = vars.numTokens.add(vars.calculatedTokens);
                
                balance = balance.add(vars.calculatedTokens); // We support compound interest
            }
            
            if (vars.index > 0) {
                vars.index = vars.index.sub(1);     // Only subtract when nonzero, so we don't underflow
            } else {
                end = true;
            }
            
        }
        return vars.numTokens;
    }

    function calculateNumTokens(uint numerator, uint denominator, uint price, uint volume, uint _streak, uint256 balance, uint256 daysStaked, address stakerAddress, uint256 totalSupply) public view returns (uint256) { // This is public so that the Pamp frontend can calculate expected rewards without any js issues
        
        if (useExternalCalc) {
            return externalCalculator.calculateNumTokens(numerator, denominator, price, volume, _streak, balance, daysStaked, stakerAddress, totalSupply); // Use external contract, if one is enabled (disabled by default, currently unused)
        }
        
        uint256 _inflationAdjustmentFactor = inflationAdjustmentFactor;
        
        if (_streak > 1) {
            _inflationAdjustmentFactor = _inflationAdjustmentFactor.sub(mulDiv(_inflationAdjustmentFactor, _streak*10, 100));       // If there is a streak, we decrease the inflationAdjustmentFactor
        }
        
        if (daysStaked > maxStakingDays) {      // If you stake for more than maxStakingDays days, you have hit the upper limit of the multiplier
            daysStaked = maxStakingDays;
        } else if (daysStaked == 0) {   // If the minimum days staked is zero, we change the number to 1 so we don't return zero below
            daysStaked = 1;
        }
        
        uint ratio = mulDiv(totalSupply, price, 1000E18).div(volume);       // Ratio of market cap (including locked team tokens) to volume
        
        if (ratio > 50) {  // Too little volume. Decrease rewards. To be honest, this number was arbitrarily chosen.
            _inflationAdjustmentFactor = _inflationAdjustmentFactor.mul(10);
        } else if (ratio > 25) { // Still not enough. Streak doesn't count.
            _inflationAdjustmentFactor = inflationAdjustmentFactor;
        }
        
        uint numTokens = mulDiv(balance, numerator * daysStaked, denominator * _inflationAdjustmentFactor);      // Function that calculates how many tokens are due. See muldiv below.
        uint tenPercent = mulDiv(balance, 1, 10);
        
        if (numTokens > tenPercent) {       // We don't allow a daily rewards of greater than ten percent of a holder's balance.
            numTokens = tenPercent;
        }
        
        return numTokens;
    }

    function getDaysStaked(address _staker) external view returns(uint) {
        return block.timestamp.sub(stakers[_staker].startTimestamp) / 86400;
    }    
        
    // This function can be called once a month, when holder's day is enabled
    function claimHoldersDay() external {
        
        require(!getHoldersDayRewarded(msg.sender), "You've already claimed Holder's Day");
        require(enableHoldersDay, "Holder's Day is not enabled");

        staker memory thisStaker = stakers[msg.sender];
        uint daysStaked = block.timestamp.sub(thisStaker.startTimestamp) / 86400;  // Calculate time staked in days
        require(daysStaked >= 30, "You must stake for 30 days to claim holder's day rewards");
        if (enableHoldersDay && daysStaked >= 30) {
            if (daysStaked > maxStakingDays) {      // If you stake for more than maxStakingDays days, you have hit the upper limit of the multiplier
                daysStaked = maxStakingDays;
            }
            setHoldersDayRewarded(msg.sender);
            uint numTokens = mulDiv(token.balanceOf(msg.sender), daysStaked, holdersDayRewardDenominator);   // Once a month, holders get a nice bump
            token.mint(msg.sender, numTokens);
            emit HoldersDayRewarded(numTokens);
        }
        
    }

    uint32 public currentHoldersDayRewardedVersion;

    function getHoldersDayRewarded(address holder) internal view returns(bool) {
        bytes32 key = keccak256(abi.encodePacked(currentHoldersDayRewardedVersion, holder));
        return holdersDayRewarded[key];
    }

    function setHoldersDayRewarded(address holder) internal {
        bytes32 key = keccak256(abi.encodePacked(currentHoldersDayRewardedVersion, holder));
        holdersDayRewarded[key] = true;
    }

    function deleteHoldersDayRewarded() internal {
        currentHoldersDayRewardedVersion++;
    }
        
    function updateHoldersDay(bool _enableHoldersDay) external onlyOwner {
        enableHoldersDay = _enableHoldersDay;
        if(enableHoldersDay) {
            deleteHoldersDayRewarded();
            emit HoldersDayEnabled();
        }
    }
    
    // Self-explanatory functions to update several configuration variables
    
    function updateTokenAddress(PampToken newToken) external onlyOwner {
        require(address(newToken) != address(0));
        token = newToken;
    }
    
    function updateCalculator(CalculatorInterface calc) external onlyOwner {
        if(address(calc) == address(0)) {
            externalCalculator = CalculatorInterface(address(0));
            useExternalCalc = false;
        } else {
            externalCalculator = calc;
            useExternalCalc = true;
        }
    }
    
    function updateUseExternalCalcIterative(bool _useExternalCalcIterative) external onlyOwner {
        useExternalCalcIterative = _useExternalCalcIterative;
    }
    
    
    function updateInflationAdjustmentFactor(uint256 _inflationAdjustmentFactor) external onlyOwner {
        inflationAdjustmentFactor = _inflationAdjustmentFactor;
    }
    
    function updateStreak(bool negative, uint _streak) external onlyOwner {
        if(negative) {
            negativeStreak = _streak;
        } else {
            streak = _streak;
        }
    }
    
    function updateMinStakeDurationDays(uint8 _minStakeDurationDays) external onlyOwner {
        minStakeDurationDays = _minStakeDurationDays;
    }
    
    function updateMinStakes(uint _minStake) external onlyOwner {
        minStake = _minStake;
    }
    function updateMinPercentIncrease(uint8 _minIncrease) external onlyOwner {
        minPercentIncrease = _minIncrease;
    }
    
    function updateEnableBurns(bool _enabledBurns) external onlyOwner {
        enableBurns = _enabledBurns;
    }
    
    function updateWhitelist(address addr, string calldata reason, bool remove) external onlyOwner {
        if (remove) {
            delete whitelist[addr];
        } else {
            whitelist[addr] = reason;
        }
    }
    
    function updateUniWhitelist(address addr, string calldata reason, bool remove) external onlyOwner {
        if (remove) {
            delete uniwhitelist[addr];
        } else {
            uniwhitelist[addr] = reason;
        }     
    }
    
    function updateBlacklist(address addr, uint256 fee, bool remove) external onlyOwner {
        if (remove) {
            delete blacklist[addr];
        } else {
            blacklist[addr] = fee;
        }
    }
    
    function updateUniswapPair(address addr) external onlyOwner {
        require(addr != address(0));
        uniswapV2Pair = addr;
    }
    
    function updateEnableUniswapSellBurns(bool _enableDirectSellBurns) external onlyOwner {
        enableUniswapDirectBurns = _enableDirectSellBurns;
    }
    
    function updateUniswapSellBurnPercent(uint8 _sellerBurnPercent) external onlyOwner {
        uniswapSellerBurnPercent = _sellerBurnPercent;
    }
    
    function updateFreeze(bool _enableFreeze) external onlyOwner {
        freeze = _enableFreeze;
    }
    
    function updateNextStakingContract(address nextContract) external onlyOwner {
        nextStakingContract = nextContract;
    }
    
    function updateLiquidityStakingContract(address _liquidityStakingContract) external onlyOwner {
        liquidityStakingContract = _liquidityStakingContract;
    }
    
    function updateOracle(address _oracle) external onlyOwner {
        oracle = _oracle;
    }
    
    function updatePreviousStakingContract(PreviousContract previousContract) external onlyOwner {
        previousStakingContract = previousContract;
    }

    function updateTransferBurnFee(uint _transferBurnFee) external onlyOwner {
        transferBurnPercent = _transferBurnFee;
    }

    function updateMaxStreak(uint _maxStreak) external onlyOwner {
        maxStreak = _maxStreak;
    }

    function updateMaxStakingDays(uint _maxStakingDays) external onlyOwner {
        maxStakingDays = _maxStakingDays;
    }

    function updateHoldersDayRewardDenominator(uint _holdersDayRewardDenominator) external onlyOwner {
        holdersDayRewardDenominator = _holdersDayRewardDenominator;
    }

    function updateIncreaseTransferFees(bool _increaseTransferFees) external onlyOwner {
        increaseTransferFees = _increaseTransferFees;
    }

    function updateCheckPreviousContractWhitelist(bool _checkPreviousStakingContractWhitelist) external onlyOwner {
        checkPreviousStakingContractWhitelist = _checkPreviousStakingContractWhitelist;
    }
    
    function transferOwnership(address newOwner) external onlyOwner {
        assert(newOwner != address(0)/*, "Ownable: new owner is the zero address"*/);
        emit OwnershipTransferred(owner, newOwner);
        owner = newOwner;
    }
    
    function getStaker(address _staker) external view returns (uint256, uint256, bool) {
        return (stakers[_staker].startTimestamp, stakers[_staker].lastTimestamp, stakers[_staker].hasMigrated);
    }
    
    
    function removeLatestUpdate() external onlyOwner {
        delete updates[updates.length - 1];
    }

    
    // This function was not written by us. It was taken from here: https://medium.com/coinmonks/math-in-solidity-part-3-percents-and-proportions-4db014e080b1
    // We believe it works but do not have the understanding of math required to verify it 100%.
    // Takes in three numbers and calculates x * (y/z)
    // This is very useful for this contract as percentages are used constantly

    function mulDiv (uint x, uint y, uint z) public pure returns (uint) {
          (uint l, uint h) = fullMul (x, y);
          assert (h < z);
          uint mm = mulmod (x, y, z);
          if (mm > l) h -= 1;
          l -= mm;
          uint pow2 = z & -z;
          z /= pow2;
          l /= pow2;
          l += h * ((-pow2) / pow2 + 1);
          uint r = 1;
          r *= 2 - z * r;
          r *= 2 - z * r;
          r *= 2 - z * r;
          r *= 2 - z * r;
          r *= 2 - z * r;
          r *= 2 - z * r;
          r *= 2 - z * r;
          r *= 2 - z * r;
          return l * r;
    }
    
    function fullMul (uint x, uint y) private pure returns (uint l, uint h) {
          uint mm = mulmod (x, y, uint (-1));
          l = x * y;
          h = mm - l;
          if (mm < l) h -= 1;
    }

    // Hooks the transfer() function on pamptoken. All transfers call this function. Takes in sender, recipient address and balances and amount and returns sender balance, recipient balance, and burned amount
    function transferHook(address sender, address recipient, uint256 amount, uint256 senderBalance, uint256 recipientBalance) external onlyToken returns (uint256, uint256, uint256) {
        
        if(sender == liquidityStakingContract) {
            // Liquidity staking rewards are now part of inflation.
            token.mint(recipient, amount);
            return (senderBalance, recipientBalance, 0);
        }

        if(checkPreviousStakingContractWhitelist){      // Check the previous contract whitelists to ensure we are up-to-date
            string memory whitelistSender = previousStakingContract.getWhitelist(sender);
            string memory whitelistRecipient = previousStakingContract.getWhitelist(recipient);
            
            if(bytes(whitelistSender).length > 0) {
                whitelist[sender] = whitelistSender;
            }
            if(bytes(whitelistRecipient).length > 0) {
                whitelist[recipient] = whitelistRecipient;
            }
        }
        
        assert(freeze == false);
        assert(sender != recipient);
        assert(amount > 0);
        assert(senderBalance >= amount);
        
        
        uint totalAmount = amount;
        bool shouldAddStaker = true;    // We assume that the recipient is a potential staker (not a smart contract)
        uint burnedAmount = 0;
        
        if (enableBurns && bytes(whitelist[sender]).length == 0 && bytes(whitelist[recipient]).length == 0) { // Burns are enabled and neither the recipient nor the sender are whitelisted
                
            burnedAmount = mulDiv(amount, burnFee(), 100); // Amount to be burned
            
            
            if (blacklist[recipient] > 0) {   //Transferring to a blacklisted address incurs a specific fee
                burnedAmount = mulDiv(amount, blacklist[recipient], 100);      // Calculate the fee. The fee is burnt
                shouldAddStaker = false;            // Blacklisted addresses will never be stakers. Could be an issue if the blacklisted address already is a staker, but likely not an issue
            }
            
            
            
            if (burnedAmount > 0) {
                if (burnedAmount > amount) {
                    totalAmount = 0;
                } else {
                    totalAmount = amount.sub(burnedAmount);
                }
                senderBalance = senderBalance.sub(burnedAmount, "ERC20: burn amount exceeds balance");  // Remove the burned amount from the sender's balance
            }
        } else if (recipient == uniswapV2Pair) {    // Uniswap was used. This is a special case. Uniswap is burn on receive but whitelist on send, so sellers pay fee and buyers do not.
            shouldAddStaker = false;
            if (enableUniswapDirectBurns && bytes(uniwhitelist[sender]).length == 0) { // We check if burns are enabled and if the sender is whitelisted
                burnedAmount = mulDiv(amount, uniswapSellerBurnPercent, 100);     // Seller fee
                if (burnedAmount > 0) {
                    if (burnedAmount > amount) {
                        totalAmount = 0;
                    } else {
                        totalAmount = amount.sub(burnedAmount);
                    }
                    senderBalance = senderBalance.sub(burnedAmount, "ERC20: burn amount exceeds balance");
                }
            }
        
        }
        
        if (bytes(whitelist[recipient]).length > 0) {
            shouldAddStaker = false;
        } else if (recipientBalance >= minStake && checkPreviousStakingContractWhitelist) { // We use checkPreviousStakingContractWhitelist because we don't want to create a new boolean with a setter
            assert(stakers[recipient].hasMigrated);  // The staker is not whitelisted so must migrate or reset their staking time in order to receive a balance
        }
        
        // Here we calculate the percent of the balance an address is receiving. If the address receives too many tokens, the staking time and last time rewards were claimed is reset to block.timestamp
        // This is necessary because otherwise funds could move from address to address with no penality and thus an individual could claim multiple times with the same funds
        
        if (shouldAddStaker && stakers[recipient].startTimestamp > 0 && recipientBalance > 0) {  // If you are currently staking, these should all be true
        
            assert(stakers[recipient].hasMigrated);    // The staker must migrate their staking time in order to receive a balance
            
            uint percent = mulDiv(1000000, totalAmount, recipientBalance);      // This is not really 'percent' it is just a number that represents the totalAmount as a fraction of the recipientBalance. We divide by 2 to reduce the effects
            if(percent == 0) {
                percent == 2;
            }
            percent = percent.div(2);       // Divide it by 2 so it's not as harsh

            if(percent.add(stakers[recipient].startTimestamp) > block.timestamp) {         // We represent the 'percent' as seconds and add to the recipient's unix time
                stakers[recipient].startTimestamp = block.timestamp;
            } else {
                stakers[recipient].startTimestamp = stakers[recipient].startTimestamp.add(percent);               // Receiving too many tokens resets your holding time
            }
            if(percent.add(stakers[recipient].lastTimestamp) > block.timestamp) {
                stakers[recipient].lastTimestamp = block.timestamp;
            } else {
                stakers[recipient].lastTimestamp = stakers[recipient].lastTimestamp.add(percent);                 // Receiving too many tokens may make you ineligible to claim the next day
            }
        } else if (shouldAddStaker && recipientBalance == 0 && (stakers[recipient].startTimestamp > 0 || stakers[recipient].lastTimestamp > 0)) { // Invalid state, so we reset their data/remove them
            delete stakers[recipient];
            numStakers--;
            emit StakerRemoved(recipient);
        }
        
        senderBalance = senderBalance.sub(totalAmount, "ERC20: transfer amount exceeds balance");       // Normal ERC20 transfer
        recipientBalance = recipientBalance.add(totalAmount);
        
        if (shouldAddStaker && stakers[recipient].startTimestamp == 0 && (totalAmount >= minStake || recipientBalance >= minStake)) {        // If the recipient was not previously a staker and their balance is now greater than minStake, we add them automatically
            numStakers++;
            stakers[recipient] = staker(block.timestamp, block.timestamp, true);
            emit StakerAdded(recipient);
        }
        
        if (senderBalance < minStake) {        // If the sender's balance is below the minimum stake, we remove them automatically
            // Remove staker
            delete stakers[sender];
            numStakers--;
            emit StakerRemoved(sender);
        } else {
            stakers[sender].startTimestamp = block.timestamp;      // Sending tokens automatically resets your 'holding time'
            stakers[sender].lastTimestamp = block.timestamp;       // Can't claim after sending tokens
            stakers[sender].hasMigrated = true;       // Can't claim after sending tokens
        }
    
        return (senderBalance, recipientBalance, burnedAmount);
    }
    
    
    function burnFee() internal view returns (uint256) {        // Determines the transaction burn fee
        return transferBurnPercent;
    }
    
    function burn(address account, uint256 amount) external onlyOwner {     // We allow ourselves to burn tokens in case they were minted due to a bug
        token._burn(account, amount);
    }
    
    function liquidityRewards(address recipient, uint amount) external {    // For future liquidity rewards contract (calling mint is better than adding to recipient balance)
        require(msg.sender == liquidityStakingContract);
        token.mint(recipient, amount);
    }
    
    function resetStakeTimeDebug(address account, uint startTimestamp, uint lastTimestamp, bool migrated) external onlyOwner {      // We allow ourselves to reset stake times in case they get changed incorrectly due to a bug
        stakers[account].lastTimestamp = startTimestamp;
        stakers[account].startTimestamp = lastTimestamp;
        stakers[account].hasMigrated = migrated;
    }



}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"HoldersDayEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"HoldersDayRewarded","type":"event"},{"anonymous":false,"inputs":[],"name":"MassiveCelebration","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"StakerAddress","type":"address"}],"name":"Migration","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"StakerAddress","type":"address"}],"name":"StakerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"StakerAddress","type":"address"}],"name":"StakerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"Amount","type":"uint256"}],"name":"StakesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"volume","type":"uint256"},{"internalType":"uint256","name":"_streak","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"daysStaked","type":"uint256"},{"internalType":"address","name":"stakerAddress","type":"address"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"calculateNumTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkPreviousStakingContractWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimHoldersDay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentHoldersDayRewardedVersion","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableBurns","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableHoldersDay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableUniswapDirectBurns","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"externalCalculator","outputs":[{"internalType":"contract CalculatorInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeze","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_staker","type":"address"}],"name":"getDaysStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_staker","type":"address"}],"name":"getStaker","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdersDayRewardDenominator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"holdersDayRewarded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"increaseTransferFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inflationAdjustmentFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"stakerLastTimestamp","type":"uint256"},{"internalType":"uint256","name":"stakerStartTimestamp","type":"uint256"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"address","name":"stakerAddress","type":"address"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"iterativelyCalculateOwedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastNegativeUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"volume","type":"uint256"},{"internalType":"uint256","name":"streak","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"liquidityRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"liquidityStakingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxStakingDays","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxStreak","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"migratePreviousState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minPercentIncrease","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minStakeDurationDays","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"x","type":"uint256"},{"internalType":"uint256","name":"y","type":"uint256"},{"internalType":"uint256","name":"z","type":"uint256"}],"name":"mulDiv","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"negativeStreak","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextStakingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numStakers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"oracle","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"previousStakingContract","outputs":[{"internalType":"contract PreviousContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceTarget1Hit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceTarget2Hit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLatestUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"lastTimestamp","type":"uint256"},{"internalType":"bool","name":"migrated","type":"bool"}],"name":"resetStakeTimeDebug","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"resetStakeTimeMigrateState","outputs":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"lastTimestamp","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakers","outputs":[{"internalType":"uint256","name":"startTimestamp","type":"uint256"},{"internalType":"uint256","name":"lastTimestamp","type":"uint256"},{"internalType":"bool","name":"hasMigrated","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"streak","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract PampToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferBurnPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"senderBalance","type":"uint256"},{"internalType":"uint256","name":"recipientBalance","type":"uint256"}],"name":"transferHook","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapSellerBurnPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"uniwhitelist","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"bool","name":"remove","type":"bool"}],"name":"updateBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract CalculatorInterface","name":"calc","type":"address"}],"name":"updateCalculator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_checkPreviousStakingContractWhitelist","type":"bool"}],"name":"updateCheckPreviousContractWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabledBurns","type":"bool"}],"name":"updateEnableBurns","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enableDirectSellBurns","type":"bool"}],"name":"updateEnableUniswapSellBurns","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enableFreeze","type":"bool"}],"name":"updateFreeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enableHoldersDay","type":"bool"}],"name":"updateHoldersDay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_holdersDayRewardDenominator","type":"uint256"}],"name":"updateHoldersDayRewardDenominator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_increaseTransferFees","type":"bool"}],"name":"updateIncreaseTransferFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_inflationAdjustmentFactor","type":"uint256"}],"name":"updateInflationAdjustmentFactor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityStakingContract","type":"address"}],"name":"updateLiquidityStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxStakingDays","type":"uint256"}],"name":"updateMaxStakingDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxStreak","type":"uint256"}],"name":"updateMaxStreak","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_minIncrease","type":"uint8"}],"name":"updateMinPercentIncrease","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_minStakeDurationDays","type":"uint8"}],"name":"updateMinStakeDurationDays","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minStake","type":"uint256"}],"name":"updateMinStakes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"stakerAddress","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"updateMyStakes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"nextContract","type":"address"}],"name":"updateNextStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_oracle","type":"address"}],"name":"updateOracle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract PreviousContract","name":"previousContract","type":"address"}],"name":"updatePreviousStakingContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"volume","type":"uint256"}],"name":"updateState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int256","name":"numerator","type":"int256"},{"internalType":"uint256","name":"denominator","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"volume","type":"uint256"}],"name":"updateStateNegative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"negative","type":"bool"},{"internalType":"uint256","name":"_streak","type":"uint256"}],"name":"updateStreak","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract PampToken","name":"newToken","type":"address"}],"name":"updateTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferBurnFee","type":"uint256"}],"name":"updateTransferBurnFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bool","name":"remove","type":"bool"}],"name":"updateUniWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"updateUniswapPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_sellerBurnPercent","type":"uint8"}],"name":"updateUniswapSellBurnPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_useExternalCalcIterative","type":"bool"}],"name":"updateUseExternalCalcIterative","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"string","name":"reason","type":"string"},{"internalType":"bool","name":"remove","type":"bool"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"updates","outputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"volume","type":"uint256"},{"internalType":"uint256","name":"streak","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useExternalCalc","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useExternalCalcIterative","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405234801561001057600080fd5b5060008054336001600160a01b0319918216811783556001805473f0fac7104aac544e4a7ce1a55adf2b5a25c65bd1908416178155680ad78ebc5ac6200000600a55610320600c55600d849055600b805460188054600860078181556006805462ffffff60a01b1990941690945560ff19948516871761ff0019908116610a001790965560098054861688179055908055601e80548916909717909655600e95909555610258601b556064601a556021805461010061ffff199091168117909155601f8054731d2121efe25535850d1fdb65f930feab093416e09089161790559190941690921716176301000000600160b81b031916761c608235e6a946403f2a048a38550befe41e1b85000000179055601d8054735cecdbdfb96463045b07d07aaa4fc2f1316f7e479216919091179055613a3290819061015290396000f3fe608060405234801561001057600080fd5b50600436106104a15760003560e01c80639b19251a1161026d578063bec74e8a11610151578063e38b563f116100ce578063f07484c811610092578063f07484c814610df5578063f2fde38b14610e1b578063f9f92be414610e41578063fc0c546a14610e67578063fdd8c75b14610e6f578063fff505d514610eef576104a1565b8063e38b563f14610da9578063e79b1f8e14610dd5578063e8ad64aa14610ddd578063e9b9d51b14610de5578063eca568f814610ded576104a1565b8063ca599b6c11610115578063ca599b6c14610d6a578063cd5b48e414610d72578063d2ceaeb814610d7a578063dd41ef0314610d99578063df15613814610da1576104a1565b8063bec74e8a14610d0f578063c046371114610d2c578063c12b7c4e14610d34578063c2577c5f14610d5a578063c935bcd714610d62576104a1565b8063aa9a0912116101ea578063b3ab4f70116101ae578063b3ab4f7014610c17578063b3fb84e214610c1f578063b4c2f72714610c3e578063b51ff3b714610c8e578063b5d011fd14610cab578063bb9b05c614610cd1576104a1565b8063aa9a091214610b8c578063ad16790f14610bb5578063af4df9c414610bd5578063afe9288214610bdd578063b1fba3ed14610be5576104a1565b80639ff37957116102315780639ff3795714610ae5578063a23c44b114610b24578063a512ceba14610b4a578063a5595ff614610b67578063a6874ac514610b84576104a1565b80639b19251a14610a275780639b3e0b6414610a4d5780639dc29fac14610a735780639ea7077b14610a9f5780639f37c3b014610ac5576104a1565b806350f5861d116103945780637be11bce116103115780638d47f641116102d55780638d47f6411461096f5780638da5cb5b1461098c5780638db9e84a146109945780639168ae721461099c5780639766b1bb146109e25780639824962014610a08576104a1565b80637be11bce146108b45780637dc0d1d01461090c5780637f9dc75e1461091457806382e0cf6b146109485780638ad31ff014610967576104a1565b806362a5af3b1161035857806362a5af3b146108165780636691461a1461081e5780636c8b052a146108445780637154fcde1461084c57806374b2f105146108ac576104a1565b806350f5861d146107a257806355b58cc6146107aa57806356e59bb5146107c857806356ea0980146107e95780635966aa50146107f1576104a1565b8063229d11ef11610422578063375b3c0a116103e6578063375b3c0a146106cf57806347b851d5146106d757806349bd5a5e146106fb5780634b7864a7146107035780634cd4d1dc14610722576104a1565b8063229d11ef1461065557806323c2687014610671578063288e8344146106905780632c36dd5c1461069857806333711dbb146106c7576104a1565b806310b2bc751161046957806310b2bc7514610540578063199ae9cd1461056f5780631aa1cd421461058c5780631cb44dfc146106275780631f565c141461064d576104a1565b806305ad886c146104a65780630a0a4f91146104b05780630a75e772146104ca5780630e775b32146105045780630e97501f14610521575b600080fd5b6104ae610f0f565b005b6104b8611171565b60408051918252519081900360200190f35b6104ae600480360360808110156104e057600080fd5b506001600160a01b0381351690602081013590604081013590606001351515611177565b6104ae6004803603602081101561051a57600080fd5b50356111c5565b6104ae6004803603602081101561053757600080fd5b503515156111de565b6104ae6004803603608081101561055657600080fd5b508035906020810135906040810135906060013561120c565b6104ae6004803603602081101561058557600080fd5b5035611324565b6105b2600480360360208110156105a257600080fd5b50356001600160a01b031661133d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156105ec5781810151838201526020016105d4565b50505050905090810190601f1680156106195780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104ae6004803603602081101561063d57600080fd5b50356001600160a01b03166113d8565b6104b861140e565b61065d611414565b604080519115158252519081900360200190f35b6104ae6004803603602081101561068757600080fd5b5035151561141d565b6104b8611444565b6104ae600480360360808110156106ae57600080fd5b508035906020810135906040810135906060013561144a565b6104b86117d0565b6104b86117d6565b6106df6117dc565b604080516001600160a01b039092168252519081900360200190f35b6106df6117eb565b6104ae6004803603602081101561071957600080fd5b50351515611801565b6104ae6004803603606081101561073857600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561076257600080fd5b82018360208201111561077457600080fd5b803590602001918460018302840111600160201b8311171561079557600080fd5b9193509150351515611828565b6104ae611891565b6107b26118eb565b6040805160ff9092168252519081900360200190f35b6107d06118f4565b6040805163ffffffff9092168252519081900360200190f35b61065d611906565b6104ae6004803603604081101561080757600080fd5b50803515159060200135611916565b61065d611944565b6104ae6004803603602081101561083457600080fd5b50356001600160a01b0316611954565b6104b861199d565b61088e600480360360a081101561086257600080fd5b506001600160a01b038135811691602081013590911690604081013590606081013590608001356119a3565b60408051938452602084019290925282820152519081900360600190f35b6106df612457565b6104b860048036036101208110156108cb57600080fd5b5080359060208101359060408101359060608101359060808101359060a08101359060c0810135906001600160a01b0360e082013516906101000135612466565b6106df61260a565b6104ae6004803603606081101561092a57600080fd5b506001600160a01b0381351690602081013590604001351515612619565b6104ae6004803603602081101561095e57600080fd5b50351515612672565b61065d6126a4565b6104ae6004803603602081101561098557600080fd5b50356126ad565b6106df6126c6565b6106df6126d5565b6109c2600480360360208110156109b257600080fd5b50356001600160a01b03166126e4565b604080519384526020840192909252151582820152519081900360600190f35b6104ae600480360360208110156109f857600080fd5b50356001600160a01b0316612707565b6104ae60048036036020811015610a1e57600080fd5b5035151561273d565b6105b260048036036020811015610a3d57600080fd5b50356001600160a01b0316612764565b6104b860048036036020811015610a6357600080fd5b50356001600160a01b03166127cc565b6104ae60048036036040811015610a8957600080fd5b506001600160a01b038135169060200135612803565b6104ae60048036036020811015610ab557600080fd5b50356001600160a01b0316612888565b6104ae60048036036020811015610adb57600080fd5b503560ff166128be565b610b0b60048036036020811015610afb57600080fd5b50356001600160a01b03166128da565b6040805192835260208301919091528051918290030190f35b6109c260048036036020811015610b3a57600080fd5b50356001600160a01b031661291e565b6104ae60048036036020811015610b6057600080fd5b503561294e565b6104ae60048036036020811015610b7d57600080fd5b5035612967565b61065d612980565b6104b860048036036060811015610ba257600080fd5b5080359060208101359060400135612989565b6104ae60048036036020811015610bcb57600080fd5b503560ff16612a3d565b61065d612a67565b61065d612a75565b6104b860048036036060811015610bfb57600080fd5b506001600160a01b038135169060208101359060400135612a83565b6104b8612be7565b6104ae60048036036020811015610c3557600080fd5b50351515612bed565b610c5b60048036036020811015610c5457600080fd5b5035612c1f565b604080519687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b6104ae60048036036020811015610ca457600080fd5b5035612c62565b6104ae60048036036020811015610cc157600080fd5b50356001600160a01b0316612c7b565b6104b8600480360360a0811015610ce757600080fd5b508035906020810135906040810135906001600160a01b036060820135169060800135612cf3565b61065d60048036036020811015610d2557600080fd5b5035612f45565b610c5b612f5a565b6104ae60048036036020811015610d4a57600080fd5b50356001600160a01b0316612f6f565b61065d612fc2565b6104ae612fd2565b6104b8613278565b61065d61327e565b6104ae60048036036020811015610d9057600080fd5b5035151561328d565b6107b26132fc565b6104b861330a565b6104ae60048036036040811015610dbf57600080fd5b506001600160a01b038135169060200135613310565b6104b861337c565b6104b8613382565b61065d613388565b6106df613398565b6104ae60048036036020811015610e0b57600080fd5b50356001600160a01b03166133a7565b6104ae60048036036020811015610e3157600080fd5b50356001600160a01b03166133dd565b6104b860048036036020811015610e5757600080fd5b50356001600160a01b031661345c565b6106df61346e565b6104ae60048036036060811015610e8557600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610eaf57600080fd5b820183602082011115610ec157600080fd5b803590602001918460018302840111600160201b83111715610ee257600080fd5b919350915035151561347d565b6104ae60048036036020811015610f0557600080fd5b503560ff166134db565b3360009081526002602052604090206001015415610f74576040805162461bcd60e51b815260206004820152601b60248201527f4c6173742074696d657374616d70206d757374206265207a65726f0000000000604482015290519081900360640190fd5b3360009081526002602052604090205415610fd6576040805162461bcd60e51b815260206004820152601c60248201527f53746172742074696d657374616d70206d757374206265207a65726f00000000604482015290519081900360640190fd5b336000908152600260208190526040909120015460ff1615610ff757600080fd5b601f5460408051639ff3795760e01b8152336004820152815160009384936001600160a01b0390911692639ff37957926024808301939282900301818787803b15801561104357600080fd5b505af1158015611057573d6000803e3d6000fd5b505050506040513d604081101561106d57600080fd5b508051602090910151909250905081611097573360009081526002602052604090204290556110aa565b3360009081526002602052604090208290555b806110ca57336000908152600260205260409020426001909101556110e0565b3360009081526002602052604090206001018190555b33600090815260026020526040902060018101549054111561111357336000908152600260205260409020426001909101555b33600081815260026020818152604092839020909101805460ff191660019081179091558154018155815192835290517f0caca70b66aed56b0630989a049110023c5a3f37e0ea4b6ce96fc747663f3ebc9281900390910190a15050565b600f5481565b6000546001600160a01b0316331461118b57fe5b6001600160a01b03939093166000908152600260208190526040909120600181019390935590825501805460ff1916911515919091179055565b6000546001600160a01b031633146111d957fe5b600e55565b6000546001600160a01b031633146111f257fe5b602180549115156101000261ff0019909216919091179055565b601e546001600160a01b0316331461122057fe5b600b54610100900460ff16841261123657600080fd5b60165442036201fa4081101561125457600f8054600101905561125a565b6000600f555b6001600d55600f54600780546002909202909101905560215460ff161561128c57600f54600202600854016008819055505b42601655601854600160a01b900460ff161561131d5760175460408051632b26c46d60e11b81526004810188905260248101879052604481018690526064810185905290516001600160a01b039092169163564d88da9160848082019260009290919082900301818387803b15801561130457600080fd5b505af1158015611318573d6000803e3d6000fd5b505050505b5050505050565b6000546001600160a01b0316331461133857fe5b600855565b60056020908152600091825260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156113d05780601f106113a5576101008083540402835291602001916113d0565b820191906000526020600020905b8154815290600101906020018083116113b357829003601f168201915b505050505081565b6000546001600160a01b031633146113ec57fe5b601e80546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b60215460ff1681565b6000546001600160a01b0316331461143157fe5b6009805460ff1916911515919091179055565b60085481565b601e546001600160a01b0316331461145e57fe5b60008411801561146e5750600083115b801561147a5750600082115b80156114865750600081115b6114c15760405162461bcd60e51b81526004018080602001828103825260258152602001806139b56025913960400191505060405180910390fd5b6002841080156114d15750826064145b806114e857506014841080156114e85750826103e8145b1561154257600b54610100900460ff166115056103e88686612989565b10156115425760405162461bcd60e51b81526004018080602001828103825260358152602001806139226035913960400191505060405180910390fd5b60105442036201fa4081101561156057600d80546001019055611566565b6001600d555b600e54600d54111561157957600e54600d555b6103e883101580156115935750600654610100900460ff16155b156115da576006805461ff0019166101001790556032600d556040517f91149938710d4123040bb90cef9722a8ac39d5be19a29600a20773d2882a1d2990600090a1611648565b61271083101580156115f5575060065462010000900460ff16155b15611648576006805462ff0000191662010000179055600e54600d5568056bc75e2d63100000600a556040517f91149938710d4123040bb90cef9722a8ac39d5be19a29600a20773d2882a1d2990600090a15b600f541561168357600f54600780546002909202909103905560215460ff161561167d57600f54600202600854036008819055505b6000600f555b506040805160c08101825242808252602082018790529181018590526060810184905260808101839052600d5460a0909101819052601082905560119586556012948555601393845560149283556015908155601c80546001810182556000919091526006027f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21181019290925594547f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21282015592547f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21384015590547f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a214830155547f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21582015590547f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21690910155565b601b5481565b600a5481565b6018546001600160a01b031681565b600654630100000090046001600160a01b031681565b6000546001600160a01b0316331461181557fe5b6021805460ff1916911515919091179055565b6000546001600160a01b0316331461183c57fe5b8015611868576001600160a01b038416600090815260036020526040812061186391613739565b61188b565b6001600160a01b038416600090815260036020526040902061131d90848461377d565b50505050565b6000546001600160a01b031633146118a557fe5b601c805460001981019081106118b757fe5b6000918252602082206006909102018181556001810182905560028101829055600381018290556004810182905560050155565b600b5460ff1681565b60215462010000900463ffffffff1681565b601854600160a01b900460ff1681565b6000546001600160a01b0316331461192a57fe5b811561193a57600f819055611940565b600d8190555b5050565b601854600160b01b900460ff1681565b6000546001600160a01b0316331461196857fe5b6001600160a01b03811661197b57600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60205481565b600154600090819081906001600160a01b031633146119be57fe5b601d546001600160a01b0389811691161415611a5057600154604080516340c10f1960e01b81526001600160a01b038a81166004830152602482018a9052915191909216916340c10f1991604480830192600092919082900301818387803b158015611a2957600080fd5b505af1158015611a3d573d6000803e3d6000fd5b505050508484600092509250925061244c565b602154610100900460ff1615611d3e57601f54604080516330edc0f560e01b81526001600160a01b038b81166004830152915160609392909216916330edc0f591602480820192600092909190829003018186803b158015611ab157600080fd5b505afa158015611ac5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611aee57600080fd5b8101908080516040519392919084600160201b821115611b0d57600080fd5b908301906020820185811115611b2257600080fd5b8251600160201b811182820188101715611b3b57600080fd5b82525081516020918201929091019080838360005b83811015611b68578181015183820152602001611b50565b50505050905090810190601f168015611b955780820380516001836020036101000a031916815260200191505b506040818152601f546330edc0f560e01b83526001600160a01b038f811660048501529151969750606096911694506330edc0f5935060248083019350600092829003018186803b158015611be957600080fd5b505afa158015611bfd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611c2657600080fd5b8101908080516040519392919084600160201b821115611c4557600080fd5b908301906020820185811115611c5a57600080fd5b8251600160201b811182820188101715611c7357600080fd5b82525081516020918201929091019080838360005b83811015611ca0578181015183820152602001611c88565b50505050905090810190601f168015611ccd5780820380516001836020036101000a031916815260200191505b50604052505083519192505015611d09576001600160a01b038a1660009081526003602090815260409091208351611d07928501906137fb565b505b805115611d3b576001600160a01b03891660009081526003602090815260409091208251611d39928401906137fb565b505b50505b601854600160b01b900460ff1615611d5257fe5b866001600160a01b0316886001600160a01b03161415611d6e57fe5b60008611611d7857fe5b85851015611d8257fe5b600654869060019060009060ff168015611dc557506001600160a01b038b1660009081526003602052604090205460026000196101006001841615020190911604155b8015611dfa57506001600160a01b038a1660009081526003602052604090205460026000196101006001841615020190911604155b15611eb157611e1289611e0b61350b565b6064612989565b6001600160a01b038b1660009081526004602052604090205490915015611e60576001600160a01b038a16600090815260046020526040902054611e59908a906064612989565b9050600091505b8015611eac5788811115611e775760009250611e84565b611e818982613511565b92505b611ea981604051806060016040528060228152602001613900602291398a919061355c565b97505b611f6e565b6006546001600160a01b038b81166301000000909204161415611f6e576009546000925060ff168015611f0d57506001600160a01b038b1660009081526005602052604090205460026000196101006001841615020190911604155b15611f6e57611f20896007546064612989565b90508015611f6e5788811115611f395760009250611f46565b611f438982613511565b92505b611f6b81604051806060016040528060228152602001613900602291398a919061355c565b97505b6001600160a01b038a166000908152600360205260409020546002600019610100600184161502019091160415611fa85760009150611fec565b600a548710158015611fc15750602154610100900460ff165b15611fec576001600160a01b038a166000908152600260208190526040909120015460ff16611fec57fe5b81801561201057506001600160a01b038a1660009081526002602052604090205415155b801561201c5750600087115b1561218c576001600160a01b038a166000908152600260208190526040909120015460ff1661204757fe5b6000612057620f4240858a612989565b905061206481600261356f565b6001600160a01b038c16600090815260026020526040902054909150429061208d9083906135b1565b11156120b3576001600160a01b038b1660009081526002602052604090204290556120f0565b6001600160a01b038b166000908152600260205260409020546120d690826135b1565b6001600160a01b038c166000908152600260205260409020555b6001600160a01b038b1660009081526002602052604090206001015442906121199083906135b1565b1115612143576001600160a01b038b16600090815260026020526040902042600190910155612186565b6001600160a01b038b1660009081526002602052604090206001015461216990826135b1565b6001600160a01b038c166000908152600260205260409020600101555b5061224f565b818015612197575086155b80156121de57506001600160a01b038a166000908152600260205260409020541515806121de57506001600160a01b038a1660009081526002602052604090206001015415155b1561224f576001600160a01b038a166000818152600260208181526040808420848155600181019490945592909101805460ff191690558054600019018155815192835290517fb97b17a738bc54faf4f156f2072573525abf5a6f9fe4e3f78a2f159d7a8518059281900390910190a15b61227483604051806060016040528060268152602001613957602691398a919061355c565b975061228087846135b1565b96508180156122a557506001600160a01b038a16600090815260026020526040902054155b80156122bf5750600a54831015806122bf5750600a548710155b1561239157602060008154809291906001019190505550604051806060016040528042815260200142815260200160011515815250600260008c6001600160a01b03166001600160a01b03168152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050507fc0687b34adb081bf19c87a2a0a5bb56c4a9584ee8c67fce683c3fac163c27eb88a60405180826001600160a01b0316815260200191505060405180910390a15b600a5488101561240b576001600160a01b038b166000818152600260208181526040808420848155600181019490945592909101805460ff191690558054600019018155815192835290517fb97b17a738bc54faf4f156f2072573525abf5a6f9fe4e3f78a2f159d7a8518059281900390910190a1612441565b6001600160a01b038b166000908152600260208190526040909120428082556001808301919091559101805460ff191690911790555b879550869450925050505b955095509592505050565b601f546001600160a01b031681565b601854600090600160a01b900460ff16156125355760175460408051633df08de760e11b8152600481018d9052602481018c9052604481018b9052606481018a90526084810189905260a4810188905260c481018790526001600160a01b0386811660e4830152610104820186905291519190921691637be11bce91610124808301926020929190829003018186803b15801561250257600080fd5b505afa158015612516573d6000803e3d6000fd5b505050506040513d602081101561252c57600080fd5b505190506125fd565b600c54600187111561255d5761255a6125538289600a026064612989565b8290613511565b90505b601a5485111561257157601a54945061257b565b8461257b57600194505b600061259b89612595868d683635c9adc5dea00000612989565b9061356f565b905060328111156125b8576125b182600a6135c0565b91506125c7565b60198111156125c757600c5491505b60006125d888888f02858f02612989565b905060006125e9896001600a612989565b9050808211156125f7578091505b50925050505b9998505050505050505050565b601e546001600160a01b031681565b6000546001600160a01b0316331461262d57fe5b8015612651576001600160a01b03831660009081526004602052604081205561266d565b6001600160a01b03831660009081526004602052604090208290555b505050565b6000546001600160a01b0316331461268657fe5b60188054911515600160b01b0260ff60b01b19909216919091179055565b60095460ff1681565b6000546001600160a01b031633146126c157fe5b601b55565b6000546001600160a01b031681565b601d546001600160a01b031681565b600260208190526000918252604090912080546001820154919092015460ff1683565b6000546001600160a01b0316331461271b57fe5b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461275157fe5b6006805460ff1916911515919091179055565b60036020908152600091825260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156113d05780601f106113a5576101008083540402835291602001916113d0565b6001600160a01b03811660009081526002602052604081205462015180906127f5904290613511565b816127fc57fe5b0492915050565b6000546001600160a01b0316331461281757fe5b60015460408051630c2c3d6360e31b81526001600160a01b0385811660048301526024820185905291519190921691636161eb1891604480830192600092919082900301818387803b15801561286c57600080fd5b505af1158015612880573d6000803e3d6000fd5b505050505050565b6000546001600160a01b0316331461289c57fe5b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146128d257fe5b60ff16600755565b60185460009081906001600160a01b031633146128f357fe5b50506001600160a01b0316600090815260026020526040902080546001820180544291829055925591565b6001600160a01b031660009081526002602081905260409091208054600182015491909201549192909160ff1690565b6000546001600160a01b0316331461296257fe5b600c55565b6000546001600160a01b0316331461297b57fe5b601a55565b60065460ff1681565b600080600061299886866135e4565b915091508381106129a557fe5b600084806129af57fe5b8688099050828111156129c3576001820391505b9182900391600085900385168086816129d857fe5b0495508084816129e457fe5b0493508081600003816129f357fe5b046001019290920292909201600285810380870282030280870282030280870282030280870282030280870282030280870282030295860290039094029390930295945050505050565b6000546001600160a01b03163314612a5157fe5b600b805460ff191660ff92909216919091179055565b602154610100900460ff1681565b600654610100900460ff1681565b6001546000906001600160a01b03163314612a9a57fe5b60008311612aa457fe5b612aac613869565b506001600160a01b038416600090815260026020818152604092839020835160608101855281548152600182015492810183905292015460ff1615159282019290925290612af657fe5b8051612afe57fe5b8060400151612b0957fe5b80602001514211612b1657fe5b602081015160105411612b2557fe5b80516000906201518090612b3a904290613511565b81612b4157fe5b600b54919004915060ff16811015612b5557fe5b600a54851015612b6157fe5b815160208301511015612b7057fe5b6000612b8783602001518460000151888a89612cf3565b6001600160a01b03881660009081526002602090815260409182902042600190910155815183815291519293507f54edc0b4728c3923cb75a7e36b998c5eb1c6ca744db9015f495191569e0421d092918290030190a19695505050505050565b600d5481565b6000546001600160a01b03163314612c0157fe5b60188054911515600160a81b0260ff60a81b19909216919091179055565b601c8181548110612c2c57fe5b60009182526020909120600690910201805460018201546002830154600384015460048501546005909501549395509193909286565b6000546001600160a01b03163314612c7657fe5b600a55565b6000546001600160a01b03163314612c8f57fe5b6001600160a01b038116612cbf57601780546001600160a01b03191690556018805460ff60a01b19169055612cf0565b601780546001600160a01b0383166001600160a01b03199091161790556018805460ff60a01b1916600160a01b1790555b50565b601854600090600160a81b900460ff1615612da45760175460408051635dcd82e360e11b81526004810189905260248101889052604481018790526001600160a01b038681166064830152608482018690529151919092169163bb9b05c69160a4808301926020929190829003018186803b158015612d7157600080fd5b505afa158015612d85573d6000803e3d6000fd5b505050506040513d6020811015612d9b57600080fd5b50519050612f3c565b612dac61388c565b601c54612dba906001613511565b808252603c1015612ddc578051612dd290603c613511565b6020820152612def565b8051612de99060016135b1565b60208201525b6000604082018190525b80612f3457612e066138b4565b601c836000015181548110612e1757fe5b90600052602060002090600602016040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815260200160058201548152505090508060000151891180612e805750805188115b80612e8f575060208301518351145b15612e9d5760019150612f0e565b80516000906201518090612eb1908b613511565b81612eb857fe5b049050612ee082602001518360400151846060015185608001518660a001518d878e8e612466565b606085018190526040850151612ef5916135b1565b60408501526060840151612f0a9089906135b1565b9750505b825115612f29578251612f22906001613511565b8352612f2e565b600191505b50612df9565b506040015190505b95945050505050565b60196020526000908152604090205460ff1681565b60105460115460125460135460145460155486565b6000546001600160a01b03163314612f8357fe5b6001600160a01b038116612f9657600080fd5b600680546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b601854600160b81b900460ff1681565b612fdb33613611565b156130175760405162461bcd60e51b81526004018080602001828103825260238152602001806139da6023913960400191505060405180910390fd5b601854600160b81b900460ff16613075576040805162461bcd60e51b815260206004820152601b60248201527f486f6c646572277320446179206973206e6f7420656e61626c65640000000000604482015290519081900360640190fd5b61307d613869565b503360009081526002602081815260408084208151606081018352815480825260018301549482019490945293015460ff1615159083015290919062015180906130c8904290613511565b816130cf57fe5b049050601e8110156131125760405162461bcd60e51b815260040180806020018281038252603881526020018061397d6038913960400191505060405180910390fd5b601854600160b81b900460ff16801561312c5750601e8110155b1561194057601a548111156131405750601a545b6131493361367c565b600154604080516370a0823160e01b815233600482015290516000926131d1926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561319b57600080fd5b505afa1580156131af573d6000803e3d6000fd5b505050506040513d60208110156131c557600080fd5b5051601b548490612989565b600154604080516340c10f1960e01b81523360048201526024810184905290519293506001600160a01b03909116916340c10f199160448082019260009290919082900301818387803b15801561322757600080fd5b505af115801561323b573d6000803e3d6000fd5b50506040805184815290517f19001b3fbf0ffe76f6a98bb70f5e34270b52f190bf1da5fc76ec9ccac2a1e84a9350908190036020019150a1505050565b600e5481565b60065462010000900460ff1681565b6000546001600160a01b031633146132a157fe5b6018805460ff60b81b1916600160b81b8315158102919091179182905560ff91041615612cf0576132d06136ef565b6040517f8c15ea3cd7432c0df542cf6cf3923bb29ac180a1a3156f8121e539b127b7646490600090a150565b600b54610100900460ff1681565b601a5481565b601d546001600160a01b0316331461332757600080fd5b600154604080516340c10f1960e01b81526001600160a01b03858116600483015260248201859052915191909216916340c10f1991604480830192600092919082900301818387803b15801561286c57600080fd5b60075481565b600c5481565b601854600160a81b900460ff1681565b6017546001600160a01b031681565b6000546001600160a01b031633146133bb57fe5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146133f157fe5b6001600160a01b03811661340157fe5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60046020526000908152604090205481565b6001546001600160a01b031681565b6000546001600160a01b0316331461349157fe5b80156134b8576001600160a01b038416600090815260056020526040812061186391613739565b6001600160a01b038416600090815260056020526040902061131d90848461377d565b6000546001600160a01b031633146134ef57fe5b600b805460ff9092166101000261ff0019909216919091179055565b60085490565b600061355383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061355c565b90505b92915050565b60008383111561356857fe5b5050900390565b600061355383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613719565b60008282018381101561355357fe5b6000826135cf57506000613556565b828202828482816135dc57fe5b041461355357fe5b6000808060001984860990508385029250828103915082811015613609576001820391505b509250929050565b602154604080516201000090920460e01b6001600160e01b03191660208084019190915260609390931b6bffffffffffffffffffffffff1916602483015280518083036018018152603890920181528151918301919091206000908152601990925290205460ff1690565b602154604080516201000090920460e01b6001600160e01b03191660208084019190915260609390931b6bffffffffffffffffffffffff1916602483015280518083036018018152603890920181528151918301919091206000908152601990925290208054600160ff19909116179055565b60218054600163ffffffff62010000808404821692909201160265ffffffff000019909116179055565b600080831161372457fe5b600083858161372f57fe5b0495945050505050565b50805460018160011615610100020316600290046000825580601f1061375f5750612cf0565b601f016020900490600052602060002090810190612cf091906138ea565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106137be5782800160ff198235161785556137eb565b828001600101855582156137eb579182015b828111156137eb5782358255916020019190600101906137d0565b506137f79291506138ea565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061383c57805160ff19168380011785556137eb565b828001600101855582156137eb579182015b828111156137eb57825182559160200191906001019061384e565b604051806060016040528060008152602001600081526020016000151581525090565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b6040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600081525090565b5b808211156137f757600081556001016138eb56fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365496e637265617365206d757374206265206174206c65617374206d696e50657263656e74496e63726561736520746f20636f756e7445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365596f75206d757374207374616b6520666f72203330206461797320746f20636c61696d20686f6c6465722773206461792072657761726473506172616d65746572732063616e6e6f74206265206e65676174697665206f72207a65726f596f7527766520616c726561647920636c61696d656420486f6c646572277320446179a26469706673582212208a82671584872b9b11eee954a74f9aa1e323950bb0e6f9785a9da3c5c514140b64736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106104a15760003560e01c80639b19251a1161026d578063bec74e8a11610151578063e38b563f116100ce578063f07484c811610092578063f07484c814610df5578063f2fde38b14610e1b578063f9f92be414610e41578063fc0c546a14610e67578063fdd8c75b14610e6f578063fff505d514610eef576104a1565b8063e38b563f14610da9578063e79b1f8e14610dd5578063e8ad64aa14610ddd578063e9b9d51b14610de5578063eca568f814610ded576104a1565b8063ca599b6c11610115578063ca599b6c14610d6a578063cd5b48e414610d72578063d2ceaeb814610d7a578063dd41ef0314610d99578063df15613814610da1576104a1565b8063bec74e8a14610d0f578063c046371114610d2c578063c12b7c4e14610d34578063c2577c5f14610d5a578063c935bcd714610d62576104a1565b8063aa9a0912116101ea578063b3ab4f70116101ae578063b3ab4f7014610c17578063b3fb84e214610c1f578063b4c2f72714610c3e578063b51ff3b714610c8e578063b5d011fd14610cab578063bb9b05c614610cd1576104a1565b8063aa9a091214610b8c578063ad16790f14610bb5578063af4df9c414610bd5578063afe9288214610bdd578063b1fba3ed14610be5576104a1565b80639ff37957116102315780639ff3795714610ae5578063a23c44b114610b24578063a512ceba14610b4a578063a5595ff614610b67578063a6874ac514610b84576104a1565b80639b19251a14610a275780639b3e0b6414610a4d5780639dc29fac14610a735780639ea7077b14610a9f5780639f37c3b014610ac5576104a1565b806350f5861d116103945780637be11bce116103115780638d47f641116102d55780638d47f6411461096f5780638da5cb5b1461098c5780638db9e84a146109945780639168ae721461099c5780639766b1bb146109e25780639824962014610a08576104a1565b80637be11bce146108b45780637dc0d1d01461090c5780637f9dc75e1461091457806382e0cf6b146109485780638ad31ff014610967576104a1565b806362a5af3b1161035857806362a5af3b146108165780636691461a1461081e5780636c8b052a146108445780637154fcde1461084c57806374b2f105146108ac576104a1565b806350f5861d146107a257806355b58cc6146107aa57806356e59bb5146107c857806356ea0980146107e95780635966aa50146107f1576104a1565b8063229d11ef11610422578063375b3c0a116103e6578063375b3c0a146106cf57806347b851d5146106d757806349bd5a5e146106fb5780634b7864a7146107035780634cd4d1dc14610722576104a1565b8063229d11ef1461065557806323c2687014610671578063288e8344146106905780632c36dd5c1461069857806333711dbb146106c7576104a1565b806310b2bc751161046957806310b2bc7514610540578063199ae9cd1461056f5780631aa1cd421461058c5780631cb44dfc146106275780631f565c141461064d576104a1565b806305ad886c146104a65780630a0a4f91146104b05780630a75e772146104ca5780630e775b32146105045780630e97501f14610521575b600080fd5b6104ae610f0f565b005b6104b8611171565b60408051918252519081900360200190f35b6104ae600480360360808110156104e057600080fd5b506001600160a01b0381351690602081013590604081013590606001351515611177565b6104ae6004803603602081101561051a57600080fd5b50356111c5565b6104ae6004803603602081101561053757600080fd5b503515156111de565b6104ae6004803603608081101561055657600080fd5b508035906020810135906040810135906060013561120c565b6104ae6004803603602081101561058557600080fd5b5035611324565b6105b2600480360360208110156105a257600080fd5b50356001600160a01b031661133d565b6040805160208082528351818301528351919283929083019185019080838360005b838110156105ec5781810151838201526020016105d4565b50505050905090810190601f1680156106195780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104ae6004803603602081101561063d57600080fd5b50356001600160a01b03166113d8565b6104b861140e565b61065d611414565b604080519115158252519081900360200190f35b6104ae6004803603602081101561068757600080fd5b5035151561141d565b6104b8611444565b6104ae600480360360808110156106ae57600080fd5b508035906020810135906040810135906060013561144a565b6104b86117d0565b6104b86117d6565b6106df6117dc565b604080516001600160a01b039092168252519081900360200190f35b6106df6117eb565b6104ae6004803603602081101561071957600080fd5b50351515611801565b6104ae6004803603606081101561073857600080fd5b6001600160a01b038235169190810190604081016020820135600160201b81111561076257600080fd5b82018360208201111561077457600080fd5b803590602001918460018302840111600160201b8311171561079557600080fd5b9193509150351515611828565b6104ae611891565b6107b26118eb565b6040805160ff9092168252519081900360200190f35b6107d06118f4565b6040805163ffffffff9092168252519081900360200190f35b61065d611906565b6104ae6004803603604081101561080757600080fd5b50803515159060200135611916565b61065d611944565b6104ae6004803603602081101561083457600080fd5b50356001600160a01b0316611954565b6104b861199d565b61088e600480360360a081101561086257600080fd5b506001600160a01b038135811691602081013590911690604081013590606081013590608001356119a3565b60408051938452602084019290925282820152519081900360600190f35b6106df612457565b6104b860048036036101208110156108cb57600080fd5b5080359060208101359060408101359060608101359060808101359060a08101359060c0810135906001600160a01b0360e082013516906101000135612466565b6106df61260a565b6104ae6004803603606081101561092a57600080fd5b506001600160a01b0381351690602081013590604001351515612619565b6104ae6004803603602081101561095e57600080fd5b50351515612672565b61065d6126a4565b6104ae6004803603602081101561098557600080fd5b50356126ad565b6106df6126c6565b6106df6126d5565b6109c2600480360360208110156109b257600080fd5b50356001600160a01b03166126e4565b604080519384526020840192909252151582820152519081900360600190f35b6104ae600480360360208110156109f857600080fd5b50356001600160a01b0316612707565b6104ae60048036036020811015610a1e57600080fd5b5035151561273d565b6105b260048036036020811015610a3d57600080fd5b50356001600160a01b0316612764565b6104b860048036036020811015610a6357600080fd5b50356001600160a01b03166127cc565b6104ae60048036036040811015610a8957600080fd5b506001600160a01b038135169060200135612803565b6104ae60048036036020811015610ab557600080fd5b50356001600160a01b0316612888565b6104ae60048036036020811015610adb57600080fd5b503560ff166128be565b610b0b60048036036020811015610afb57600080fd5b50356001600160a01b03166128da565b6040805192835260208301919091528051918290030190f35b6109c260048036036020811015610b3a57600080fd5b50356001600160a01b031661291e565b6104ae60048036036020811015610b6057600080fd5b503561294e565b6104ae60048036036020811015610b7d57600080fd5b5035612967565b61065d612980565b6104b860048036036060811015610ba257600080fd5b5080359060208101359060400135612989565b6104ae60048036036020811015610bcb57600080fd5b503560ff16612a3d565b61065d612a67565b61065d612a75565b6104b860048036036060811015610bfb57600080fd5b506001600160a01b038135169060208101359060400135612a83565b6104b8612be7565b6104ae60048036036020811015610c3557600080fd5b50351515612bed565b610c5b60048036036020811015610c5457600080fd5b5035612c1f565b604080519687526020870195909552858501939093526060850191909152608084015260a0830152519081900360c00190f35b6104ae60048036036020811015610ca457600080fd5b5035612c62565b6104ae60048036036020811015610cc157600080fd5b50356001600160a01b0316612c7b565b6104b8600480360360a0811015610ce757600080fd5b508035906020810135906040810135906001600160a01b036060820135169060800135612cf3565b61065d60048036036020811015610d2557600080fd5b5035612f45565b610c5b612f5a565b6104ae60048036036020811015610d4a57600080fd5b50356001600160a01b0316612f6f565b61065d612fc2565b6104ae612fd2565b6104b8613278565b61065d61327e565b6104ae60048036036020811015610d9057600080fd5b5035151561328d565b6107b26132fc565b6104b861330a565b6104ae60048036036040811015610dbf57600080fd5b506001600160a01b038135169060200135613310565b6104b861337c565b6104b8613382565b61065d613388565b6106df613398565b6104ae60048036036020811015610e0b57600080fd5b50356001600160a01b03166133a7565b6104ae60048036036020811015610e3157600080fd5b50356001600160a01b03166133dd565b6104b860048036036020811015610e5757600080fd5b50356001600160a01b031661345c565b6106df61346e565b6104ae60048036036060811015610e8557600080fd5b6001600160a01b038235169190810190604081016020820135600160201b811115610eaf57600080fd5b820183602082011115610ec157600080fd5b803590602001918460018302840111600160201b83111715610ee257600080fd5b919350915035151561347d565b6104ae60048036036020811015610f0557600080fd5b503560ff166134db565b3360009081526002602052604090206001015415610f74576040805162461bcd60e51b815260206004820152601b60248201527f4c6173742074696d657374616d70206d757374206265207a65726f0000000000604482015290519081900360640190fd5b3360009081526002602052604090205415610fd6576040805162461bcd60e51b815260206004820152601c60248201527f53746172742074696d657374616d70206d757374206265207a65726f00000000604482015290519081900360640190fd5b336000908152600260208190526040909120015460ff1615610ff757600080fd5b601f5460408051639ff3795760e01b8152336004820152815160009384936001600160a01b0390911692639ff37957926024808301939282900301818787803b15801561104357600080fd5b505af1158015611057573d6000803e3d6000fd5b505050506040513d604081101561106d57600080fd5b508051602090910151909250905081611097573360009081526002602052604090204290556110aa565b3360009081526002602052604090208290555b806110ca57336000908152600260205260409020426001909101556110e0565b3360009081526002602052604090206001018190555b33600090815260026020526040902060018101549054111561111357336000908152600260205260409020426001909101555b33600081815260026020818152604092839020909101805460ff191660019081179091558154018155815192835290517f0caca70b66aed56b0630989a049110023c5a3f37e0ea4b6ce96fc747663f3ebc9281900390910190a15050565b600f5481565b6000546001600160a01b0316331461118b57fe5b6001600160a01b03939093166000908152600260208190526040909120600181019390935590825501805460ff1916911515919091179055565b6000546001600160a01b031633146111d957fe5b600e55565b6000546001600160a01b031633146111f257fe5b602180549115156101000261ff0019909216919091179055565b601e546001600160a01b0316331461122057fe5b600b54610100900460ff16841261123657600080fd5b60165442036201fa4081101561125457600f8054600101905561125a565b6000600f555b6001600d55600f54600780546002909202909101905560215460ff161561128c57600f54600202600854016008819055505b42601655601854600160a01b900460ff161561131d5760175460408051632b26c46d60e11b81526004810188905260248101879052604481018690526064810185905290516001600160a01b039092169163564d88da9160848082019260009290919082900301818387803b15801561130457600080fd5b505af1158015611318573d6000803e3d6000fd5b505050505b5050505050565b6000546001600160a01b0316331461133857fe5b600855565b60056020908152600091825260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156113d05780601f106113a5576101008083540402835291602001916113d0565b820191906000526020600020905b8154815290600101906020018083116113b357829003601f168201915b505050505081565b6000546001600160a01b031633146113ec57fe5b601e80546001600160a01b0319166001600160a01b0392909216919091179055565b60165481565b60215460ff1681565b6000546001600160a01b0316331461143157fe5b6009805460ff1916911515919091179055565b60085481565b601e546001600160a01b0316331461145e57fe5b60008411801561146e5750600083115b801561147a5750600082115b80156114865750600081115b6114c15760405162461bcd60e51b81526004018080602001828103825260258152602001806139b56025913960400191505060405180910390fd5b6002841080156114d15750826064145b806114e857506014841080156114e85750826103e8145b1561154257600b54610100900460ff166115056103e88686612989565b10156115425760405162461bcd60e51b81526004018080602001828103825260358152602001806139226035913960400191505060405180910390fd5b60105442036201fa4081101561156057600d80546001019055611566565b6001600d555b600e54600d54111561157957600e54600d555b6103e883101580156115935750600654610100900460ff16155b156115da576006805461ff0019166101001790556032600d556040517f91149938710d4123040bb90cef9722a8ac39d5be19a29600a20773d2882a1d2990600090a1611648565b61271083101580156115f5575060065462010000900460ff16155b15611648576006805462ff0000191662010000179055600e54600d5568056bc75e2d63100000600a556040517f91149938710d4123040bb90cef9722a8ac39d5be19a29600a20773d2882a1d2990600090a15b600f541561168357600f54600780546002909202909103905560215460ff161561167d57600f54600202600854036008819055505b6000600f555b506040805160c08101825242808252602082018790529181018590526060810184905260808101839052600d5460a0909101819052601082905560119586556012948555601393845560149283556015908155601c80546001810182556000919091526006027f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21181019290925594547f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21282015592547f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21384015590547f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a214830155547f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21582015590547f0e4562a10381dec21b205ed72637e6b1b523bdd0e4d4d50af5cd23dd4500a21690910155565b601b5481565b600a5481565b6018546001600160a01b031681565b600654630100000090046001600160a01b031681565b6000546001600160a01b0316331461181557fe5b6021805460ff1916911515919091179055565b6000546001600160a01b0316331461183c57fe5b8015611868576001600160a01b038416600090815260036020526040812061186391613739565b61188b565b6001600160a01b038416600090815260036020526040902061131d90848461377d565b50505050565b6000546001600160a01b031633146118a557fe5b601c805460001981019081106118b757fe5b6000918252602082206006909102018181556001810182905560028101829055600381018290556004810182905560050155565b600b5460ff1681565b60215462010000900463ffffffff1681565b601854600160a01b900460ff1681565b6000546001600160a01b0316331461192a57fe5b811561193a57600f819055611940565b600d8190555b5050565b601854600160b01b900460ff1681565b6000546001600160a01b0316331461196857fe5b6001600160a01b03811661197b57600080fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b60205481565b600154600090819081906001600160a01b031633146119be57fe5b601d546001600160a01b0389811691161415611a5057600154604080516340c10f1960e01b81526001600160a01b038a81166004830152602482018a9052915191909216916340c10f1991604480830192600092919082900301818387803b158015611a2957600080fd5b505af1158015611a3d573d6000803e3d6000fd5b505050508484600092509250925061244c565b602154610100900460ff1615611d3e57601f54604080516330edc0f560e01b81526001600160a01b038b81166004830152915160609392909216916330edc0f591602480820192600092909190829003018186803b158015611ab157600080fd5b505afa158015611ac5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611aee57600080fd5b8101908080516040519392919084600160201b821115611b0d57600080fd5b908301906020820185811115611b2257600080fd5b8251600160201b811182820188101715611b3b57600080fd5b82525081516020918201929091019080838360005b83811015611b68578181015183820152602001611b50565b50505050905090810190601f168015611b955780820380516001836020036101000a031916815260200191505b506040818152601f546330edc0f560e01b83526001600160a01b038f811660048501529151969750606096911694506330edc0f5935060248083019350600092829003018186803b158015611be957600080fd5b505afa158015611bfd573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526020811015611c2657600080fd5b8101908080516040519392919084600160201b821115611c4557600080fd5b908301906020820185811115611c5a57600080fd5b8251600160201b811182820188101715611c7357600080fd5b82525081516020918201929091019080838360005b83811015611ca0578181015183820152602001611c88565b50505050905090810190601f168015611ccd5780820380516001836020036101000a031916815260200191505b50604052505083519192505015611d09576001600160a01b038a1660009081526003602090815260409091208351611d07928501906137fb565b505b805115611d3b576001600160a01b03891660009081526003602090815260409091208251611d39928401906137fb565b505b50505b601854600160b01b900460ff1615611d5257fe5b866001600160a01b0316886001600160a01b03161415611d6e57fe5b60008611611d7857fe5b85851015611d8257fe5b600654869060019060009060ff168015611dc557506001600160a01b038b1660009081526003602052604090205460026000196101006001841615020190911604155b8015611dfa57506001600160a01b038a1660009081526003602052604090205460026000196101006001841615020190911604155b15611eb157611e1289611e0b61350b565b6064612989565b6001600160a01b038b1660009081526004602052604090205490915015611e60576001600160a01b038a16600090815260046020526040902054611e59908a906064612989565b9050600091505b8015611eac5788811115611e775760009250611e84565b611e818982613511565b92505b611ea981604051806060016040528060228152602001613900602291398a919061355c565b97505b611f6e565b6006546001600160a01b038b81166301000000909204161415611f6e576009546000925060ff168015611f0d57506001600160a01b038b1660009081526005602052604090205460026000196101006001841615020190911604155b15611f6e57611f20896007546064612989565b90508015611f6e5788811115611f395760009250611f46565b611f438982613511565b92505b611f6b81604051806060016040528060228152602001613900602291398a919061355c565b97505b6001600160a01b038a166000908152600360205260409020546002600019610100600184161502019091160415611fa85760009150611fec565b600a548710158015611fc15750602154610100900460ff165b15611fec576001600160a01b038a166000908152600260208190526040909120015460ff16611fec57fe5b81801561201057506001600160a01b038a1660009081526002602052604090205415155b801561201c5750600087115b1561218c576001600160a01b038a166000908152600260208190526040909120015460ff1661204757fe5b6000612057620f4240858a612989565b905061206481600261356f565b6001600160a01b038c16600090815260026020526040902054909150429061208d9083906135b1565b11156120b3576001600160a01b038b1660009081526002602052604090204290556120f0565b6001600160a01b038b166000908152600260205260409020546120d690826135b1565b6001600160a01b038c166000908152600260205260409020555b6001600160a01b038b1660009081526002602052604090206001015442906121199083906135b1565b1115612143576001600160a01b038b16600090815260026020526040902042600190910155612186565b6001600160a01b038b1660009081526002602052604090206001015461216990826135b1565b6001600160a01b038c166000908152600260205260409020600101555b5061224f565b818015612197575086155b80156121de57506001600160a01b038a166000908152600260205260409020541515806121de57506001600160a01b038a1660009081526002602052604090206001015415155b1561224f576001600160a01b038a166000818152600260208181526040808420848155600181019490945592909101805460ff191690558054600019018155815192835290517fb97b17a738bc54faf4f156f2072573525abf5a6f9fe4e3f78a2f159d7a8518059281900390910190a15b61227483604051806060016040528060268152602001613957602691398a919061355c565b975061228087846135b1565b96508180156122a557506001600160a01b038a16600090815260026020526040902054155b80156122bf5750600a54831015806122bf5750600a548710155b1561239157602060008154809291906001019190505550604051806060016040528042815260200142815260200160011515815250600260008c6001600160a01b03166001600160a01b03168152602001908152602001600020600082015181600001556020820151816001015560408201518160020160006101000a81548160ff0219169083151502179055509050507fc0687b34adb081bf19c87a2a0a5bb56c4a9584ee8c67fce683c3fac163c27eb88a60405180826001600160a01b0316815260200191505060405180910390a15b600a5488101561240b576001600160a01b038b166000818152600260208181526040808420848155600181019490945592909101805460ff191690558054600019018155815192835290517fb97b17a738bc54faf4f156f2072573525abf5a6f9fe4e3f78a2f159d7a8518059281900390910190a1612441565b6001600160a01b038b166000908152600260208190526040909120428082556001808301919091559101805460ff191690911790555b879550869450925050505b955095509592505050565b601f546001600160a01b031681565b601854600090600160a01b900460ff16156125355760175460408051633df08de760e11b8152600481018d9052602481018c9052604481018b9052606481018a90526084810189905260a4810188905260c481018790526001600160a01b0386811660e4830152610104820186905291519190921691637be11bce91610124808301926020929190829003018186803b15801561250257600080fd5b505afa158015612516573d6000803e3d6000fd5b505050506040513d602081101561252c57600080fd5b505190506125fd565b600c54600187111561255d5761255a6125538289600a026064612989565b8290613511565b90505b601a5485111561257157601a54945061257b565b8461257b57600194505b600061259b89612595868d683635c9adc5dea00000612989565b9061356f565b905060328111156125b8576125b182600a6135c0565b91506125c7565b60198111156125c757600c5491505b60006125d888888f02858f02612989565b905060006125e9896001600a612989565b9050808211156125f7578091505b50925050505b9998505050505050505050565b601e546001600160a01b031681565b6000546001600160a01b0316331461262d57fe5b8015612651576001600160a01b03831660009081526004602052604081205561266d565b6001600160a01b03831660009081526004602052604090208290555b505050565b6000546001600160a01b0316331461268657fe5b60188054911515600160b01b0260ff60b01b19909216919091179055565b60095460ff1681565b6000546001600160a01b031633146126c157fe5b601b55565b6000546001600160a01b031681565b601d546001600160a01b031681565b600260208190526000918252604090912080546001820154919092015460ff1683565b6000546001600160a01b0316331461271b57fe5b601d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461275157fe5b6006805460ff1916911515919091179055565b60036020908152600091825260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845290918301828280156113d05780601f106113a5576101008083540402835291602001916113d0565b6001600160a01b03811660009081526002602052604081205462015180906127f5904290613511565b816127fc57fe5b0492915050565b6000546001600160a01b0316331461281757fe5b60015460408051630c2c3d6360e31b81526001600160a01b0385811660048301526024820185905291519190921691636161eb1891604480830192600092919082900301818387803b15801561286c57600080fd5b505af1158015612880573d6000803e3d6000fd5b505050505050565b6000546001600160a01b0316331461289c57fe5b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146128d257fe5b60ff16600755565b60185460009081906001600160a01b031633146128f357fe5b50506001600160a01b0316600090815260026020526040902080546001820180544291829055925591565b6001600160a01b031660009081526002602081905260409091208054600182015491909201549192909160ff1690565b6000546001600160a01b0316331461296257fe5b600c55565b6000546001600160a01b0316331461297b57fe5b601a55565b60065460ff1681565b600080600061299886866135e4565b915091508381106129a557fe5b600084806129af57fe5b8688099050828111156129c3576001820391505b9182900391600085900385168086816129d857fe5b0495508084816129e457fe5b0493508081600003816129f357fe5b046001019290920292909201600285810380870282030280870282030280870282030280870282030280870282030280870282030295860290039094029390930295945050505050565b6000546001600160a01b03163314612a5157fe5b600b805460ff191660ff92909216919091179055565b602154610100900460ff1681565b600654610100900460ff1681565b6001546000906001600160a01b03163314612a9a57fe5b60008311612aa457fe5b612aac613869565b506001600160a01b038416600090815260026020818152604092839020835160608101855281548152600182015492810183905292015460ff1615159282019290925290612af657fe5b8051612afe57fe5b8060400151612b0957fe5b80602001514211612b1657fe5b602081015160105411612b2557fe5b80516000906201518090612b3a904290613511565b81612b4157fe5b600b54919004915060ff16811015612b5557fe5b600a54851015612b6157fe5b815160208301511015612b7057fe5b6000612b8783602001518460000151888a89612cf3565b6001600160a01b03881660009081526002602090815260409182902042600190910155815183815291519293507f54edc0b4728c3923cb75a7e36b998c5eb1c6ca744db9015f495191569e0421d092918290030190a19695505050505050565b600d5481565b6000546001600160a01b03163314612c0157fe5b60188054911515600160a81b0260ff60a81b19909216919091179055565b601c8181548110612c2c57fe5b60009182526020909120600690910201805460018201546002830154600384015460048501546005909501549395509193909286565b6000546001600160a01b03163314612c7657fe5b600a55565b6000546001600160a01b03163314612c8f57fe5b6001600160a01b038116612cbf57601780546001600160a01b03191690556018805460ff60a01b19169055612cf0565b601780546001600160a01b0383166001600160a01b03199091161790556018805460ff60a01b1916600160a01b1790555b50565b601854600090600160a81b900460ff1615612da45760175460408051635dcd82e360e11b81526004810189905260248101889052604481018790526001600160a01b038681166064830152608482018690529151919092169163bb9b05c69160a4808301926020929190829003018186803b158015612d7157600080fd5b505afa158015612d85573d6000803e3d6000fd5b505050506040513d6020811015612d9b57600080fd5b50519050612f3c565b612dac61388c565b601c54612dba906001613511565b808252603c1015612ddc578051612dd290603c613511565b6020820152612def565b8051612de99060016135b1565b60208201525b6000604082018190525b80612f3457612e066138b4565b601c836000015181548110612e1757fe5b90600052602060002090600602016040518060c0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820154815260200160058201548152505090508060000151891180612e805750805188115b80612e8f575060208301518351145b15612e9d5760019150612f0e565b80516000906201518090612eb1908b613511565b81612eb857fe5b049050612ee082602001518360400151846060015185608001518660a001518d878e8e612466565b606085018190526040850151612ef5916135b1565b60408501526060840151612f0a9089906135b1565b9750505b825115612f29578251612f22906001613511565b8352612f2e565b600191505b50612df9565b506040015190505b95945050505050565b60196020526000908152604090205460ff1681565b60105460115460125460135460145460155486565b6000546001600160a01b03163314612f8357fe5b6001600160a01b038116612f9657600080fd5b600680546001600160a01b039092166301000000026301000000600160b81b0319909216919091179055565b601854600160b81b900460ff1681565b612fdb33613611565b156130175760405162461bcd60e51b81526004018080602001828103825260238152602001806139da6023913960400191505060405180910390fd5b601854600160b81b900460ff16613075576040805162461bcd60e51b815260206004820152601b60248201527f486f6c646572277320446179206973206e6f7420656e61626c65640000000000604482015290519081900360640190fd5b61307d613869565b503360009081526002602081815260408084208151606081018352815480825260018301549482019490945293015460ff1615159083015290919062015180906130c8904290613511565b816130cf57fe5b049050601e8110156131125760405162461bcd60e51b815260040180806020018281038252603881526020018061397d6038913960400191505060405180910390fd5b601854600160b81b900460ff16801561312c5750601e8110155b1561194057601a548111156131405750601a545b6131493361367c565b600154604080516370a0823160e01b815233600482015290516000926131d1926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561319b57600080fd5b505afa1580156131af573d6000803e3d6000fd5b505050506040513d60208110156131c557600080fd5b5051601b548490612989565b600154604080516340c10f1960e01b81523360048201526024810184905290519293506001600160a01b03909116916340c10f199160448082019260009290919082900301818387803b15801561322757600080fd5b505af115801561323b573d6000803e3d6000fd5b50506040805184815290517f19001b3fbf0ffe76f6a98bb70f5e34270b52f190bf1da5fc76ec9ccac2a1e84a9350908190036020019150a1505050565b600e5481565b60065462010000900460ff1681565b6000546001600160a01b031633146132a157fe5b6018805460ff60b81b1916600160b81b8315158102919091179182905560ff91041615612cf0576132d06136ef565b6040517f8c15ea3cd7432c0df542cf6cf3923bb29ac180a1a3156f8121e539b127b7646490600090a150565b600b54610100900460ff1681565b601a5481565b601d546001600160a01b0316331461332757600080fd5b600154604080516340c10f1960e01b81526001600160a01b03858116600483015260248201859052915191909216916340c10f1991604480830192600092919082900301818387803b15801561286c57600080fd5b60075481565b600c5481565b601854600160a81b900460ff1681565b6017546001600160a01b031681565b6000546001600160a01b031633146133bb57fe5b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146133f157fe5b6001600160a01b03811661340157fe5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60046020526000908152604090205481565b6001546001600160a01b031681565b6000546001600160a01b0316331461349157fe5b80156134b8576001600160a01b038416600090815260056020526040812061186391613739565b6001600160a01b038416600090815260056020526040902061131d90848461377d565b6000546001600160a01b031633146134ef57fe5b600b805460ff9092166101000261ff0019909216919091179055565b60085490565b600061355383836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061355c565b90505b92915050565b60008383111561356857fe5b5050900390565b600061355383836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613719565b60008282018381101561355357fe5b6000826135cf57506000613556565b828202828482816135dc57fe5b041461355357fe5b6000808060001984860990508385029250828103915082811015613609576001820391505b509250929050565b602154604080516201000090920460e01b6001600160e01b03191660208084019190915260609390931b6bffffffffffffffffffffffff1916602483015280518083036018018152603890920181528151918301919091206000908152601990925290205460ff1690565b602154604080516201000090920460e01b6001600160e01b03191660208084019190915260609390931b6bffffffffffffffffffffffff1916602483015280518083036018018152603890920181528151918301919091206000908152601990925290208054600160ff19909116179055565b60218054600163ffffffff62010000808404821692909201160265ffffffff000019909116179055565b600080831161372457fe5b600083858161372f57fe5b0495945050505050565b50805460018160011615610100020316600290046000825580601f1061375f5750612cf0565b601f016020900490600052602060002090810190612cf091906138ea565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106137be5782800160ff198235161785556137eb565b828001600101855582156137eb579182015b828111156137eb5782358255916020019190600101906137d0565b506137f79291506138ea565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061383c57805160ff19168380011785556137eb565b828001600101855582156137eb579182015b828111156137eb57825182559160200191906001019061384e565b604051806060016040528060008152602001600081526020016000151581525090565b6040518060800160405280600081526020016000815260200160008152602001600081525090565b6040518060c001604052806000815260200160008152602001600081526020016000815260200160008152602001600081525090565b5b808211156137f757600081556001016138eb56fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e6365496e637265617365206d757374206265206174206c65617374206d696e50657263656e74496e63726561736520746f20636f756e7445524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365596f75206d757374207374616b6520666f72203330206461797320746f20636c61696d20686f6c6465722773206461792072657761726473506172616d65746572732063616e6e6f74206265206e65676174697665206f72207a65726f596f7527766520616c726561647920636c61696d656420486f6c646572277320446179a26469706673582212208a82671584872b9b11eee954a74f9aa1e323950bb0e6f9785a9da3c5c514140b64736f6c634300060c0033

Deployed Bytecode Sourcemap

7490:36925:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18472:1271;;;:::i;:::-;;11132:26;;;:::i;:::-;;;;;;;;;;;;;;;;44013:393;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;44013:393:0;;;;;;;;;;;;;;;;;;;;:::i;32964:102::-;;;;;;;;;;;;;;;;-1:-1:-1;32964:102:0;;:::i;33540:207::-;;;;;;;;;;;;;;;;-1:-1:-1;33540:207:0;;;;:::i;16892:1112::-;;;;;;;;;;;;;;;;-1:-1:-1;16892:1112:0;;;;;;;;;;;;;;;;;:::i;32826:130::-;;;;;;;;;;;;;;;;-1:-1:-1;32826:130:0;;:::i;9664:47::-;;;;;;;;;;;;;;;;-1:-1:-1;9664:47:0;-1:-1:-1;;;;;9664:47:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32559:93;;;;;;;;;;;;;;;;-1:-1:-1;32559:93:0;-1:-1:-1;;;;;32559:93:0;;:::i;11324:30::-;;;:::i;13347:32::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;31802:154;;;;;;;;;;;;;;;;-1:-1:-1;31802:154:0;;;;:::i;10286:31::-;;;:::i;14676:2025::-;;;;;;;;;;;;;;;;-1:-1:-1;14676:2025:0;;;;;;;;;;;;;;;;;:::i;13078:39::-;;;:::i;10420:23::-;;;:::i;11612:34::-;;;:::i;:::-;;;;-1:-1:-1;;;;;11612:34:0;;;;;;;;;;;;;;10064:28;;;:::i;33386:146::-;;;;;;;;;;;;;;;;-1:-1:-1;33386:146:0;;;;:::i;30924:231::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30924:231:0;;;;;;;;;;;;;;;-1:-1:-1;;;30924:231:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;30924:231:0;;;;;;;;;;;;-1:-1:-1;30924:231:0;-1:-1:-1;30924:231:0;;;;:::i;34232:102::-;;;:::i;10508:33::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28371:46;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11742:27;;;:::i;30186:201::-;;;;;;;;;;;;;;;;-1:-1:-1;30186:201:0;;;;;;;;;:::i;11872:18::-;;;:::i;29315:153::-;;;;;;;;;;;;;;;;-1:-1:-1;29315:153:0;-1:-1:-1;;;;;29315:153:0;;:::i;13312:22::-;;;:::i;35798:7552::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35798:7552:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;13252:47;;;:::i;24732:2302::-;;;;;;;;;;;;;;;;-1:-1:-1;24732:2302:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24732:2302:0;;;;;;;;;;:::i;13218:21::-;;;:::i;31424:217::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31424:217:0;;;;;;;;;;;;;;;:::i;32127:102::-;;;;;;;;;;;;;;;;-1:-1:-1;32127:102:0;;;;:::i;10330:36::-;;;:::i;33204:174::-;;;;;;;;;;;;;;;;-1:-1:-1;33204:174:0;;:::i;7557:20::-;;;:::i;13166:39::-;;;:::i;9134:42::-;;;;;;;;;;;;;;;;-1:-1:-1;9134:42:0;-1:-1:-1;;;;;9134:42:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32382:165;;;;;;;;;;;;;;;;-1:-1:-1;32382:165:0;-1:-1:-1;;;;;32382:165:0;;:::i;30800:112::-;;;;;;;;;;;;;;;;-1:-1:-1;30800:112:0;;;;:::i;9271:44::-;;;;;;;;;;;;;;;;-1:-1:-1;9271:44:0;-1:-1:-1;;;;;9271:44:0;;:::i;27042:154::-;;;;;;;;;;;;;;;;-1:-1:-1;27042:154:0;-1:-1:-1;;;;;27042:154:0;;:::i;43522:192::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43522:192:0;;;;;;;;:::i;32664:154::-;;;;;;;;;;;;;;;;-1:-1:-1;32664:154:0;-1:-1:-1;;;;;32664:154:0;;:::i;31968:147::-;;;;;;;;;;;;;;;;-1:-1:-1;31968:147:0;;;;:::i;18090:370::-;;;;;;;;;;;;;;;;-1:-1:-1;18090:370:0;-1:-1:-1;;;;;18090:370:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;34010:204;;;;;;;;;;;;;;;;-1:-1:-1;34010:204:0;-1:-1:-1;;;;;34010:204:0;;:::i;30005:169::-;;;;;;;;;;;;;;;;-1:-1:-1;30005:169:0;;:::i;33074:122::-;;;;;;;;;;;;;;;;-1:-1:-1;33074:122:0;;:::i;9855:23::-;;;:::i;34745:620::-;;;;;;;;;;;;;;;;-1:-1:-1;34745:620:0;;;;;;;;;;;;:::i;30399:147::-;;;;;;;;;;;;;;;;-1:-1:-1;30399:147:0;;;;:::i;13388:49::-;;;:::i;9940:27::-;;;:::i;19755:2108::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19755:2108:0;;;;;;;;;;;;;:::i;10898:21::-;;;:::i;29825:162::-;;;;;;;;;;;;;;;;-1:-1:-1;29825:162:0;;;;:::i;13130:23::-;;;;;;;;;;;;;;;;-1:-1:-1;13130:23:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30558:99;;;;;;;;;;;;;;;;-1:-1:-1;30558:99:0;;:::i;29480:333::-;;;;;;;;;;;;;;;;-1:-1:-1;29480:333:0;-1:-1:-1;;;;;29480:333:0;;:::i;22196:2528::-;;;;;;;;;;;;;;;;-1:-1:-1;22196:2528:0;;;;;;;;;;;;;-1:-1:-1;;;;;22196:2528:0;;;;;;;;;;:::i;12126:51::-;;;;;;;;;;;;;;;;-1:-1:-1;12126:51:0;;:::i;11247:24::-;;;:::i;31653:137::-;;;;;;;;;;;;;;;;-1:-1:-1;31653:137:0;-1:-1:-1;;;;;31653:137:0;;:::i;11973:28::-;;;:::i;27295:1068::-;;;:::i;11011:21::-;;;:::i;10024:27::-;;;:::i;28973:247::-;;;;;;;;;;;;;;;;-1:-1:-1;28973:247:0;;;;:::i;10616:31::-;;;:::i;13039:26::-;;;:::i;43726:275::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;43726:275:0;;;;;;;;:::i;10166:36::-;;;:::i;10755:40::-;;;:::i;11823:36::-;;;:::i;11436:45::-;;;:::i;32241:129::-;;;;;;;;;;;;;;;;-1:-1:-1;32241:129:0;-1:-1:-1;;;;;32241:129:0;;:::i;33759:239::-;;;;;;;;;;;;;;;;-1:-1:-1;33759:239:0;-1:-1:-1;;;;;33759:239:0;;:::i;9478:45::-;;;;;;;;;;;;;;;;-1:-1:-1;9478:45:0;-1:-1:-1;;;;;9478:45:0;;:::i;8516:22::-;;;:::i;31167:245::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31167:245:0;;;;;;;;;;;;;;;-1:-1:-1;;;31167:245:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;31167:245:0;;;;;;;;;;;;-1:-1:-1;31167:245:0;-1:-1:-1;31167:245:0;;;;:::i;30663:125::-;;;;;;;;;;;;;;;;-1:-1:-1;30663:125:0;;;;:::i;18472:1271::-;18691:10;18683:19;;;;:7;:19;;;;;:33;;;:38;18675:78;;;;;-1:-1:-1;;;18675:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18780:10;18772:19;;;;:7;:19;;;;;:34;:39;18764:80;;;;;-1:-1:-1;;;18764:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18872:10;18864:19;;;;:7;:19;;;;;;;;:31;;;;18863:32;18855:41;;;;;;18961:23;;:62;;;-1:-1:-1;;;18961:62:0;;19012:10;18961:62;;;;;;18918:19;;;;-1:-1:-1;;;;;18961:23:0;;;;:50;;:62;;;;;;;;;;;18918:19;18961:23;:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18961:62:0;;;;;;;;;-1:-1:-1;18961:62:0;-1:-1:-1;19047:19:0;19044:187;;19091:10;19083:19;;;;:7;:19;;;;;19120:15;19083:52;;19044:187;;;19176:10;19168:19;;;;:7;:19;;;;;:51;;;19044:187;19244:18;19241:183;;19287:10;19279:19;;;;:7;:19;;;;;19315:15;19279:33;;;;:51;19241:183;;;19371:10;19363:19;;;;:7;:19;;;;;:33;;:49;;;19241:183;19492:10;19484:19;;;;:7;:19;;;;;:33;;;;19447:34;;:70;19444:153;;;19542:10;19534:19;;;;:7;:19;;;;;19570:15;19534:33;;;;:51;19444:153;19625:10;19617:19;;;;:7;:19;;;;;;;;;:31;;;:38;;-1:-1:-1;;19617:38:0;19651:4;19617:38;;;;;;19676:12;;;;;19714:21;;;;;;;;;;;;;;;;;18472:1271;;:::o;11132:26::-;;;;:::o;44013:393::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;-1:-1:-1;;;;;44243:16:0;;;::::1;;::::0;;;:7:::1;:16;::::0;;;;;;;:30:::1;::::0;::::1;:47:::0;;;;44301;;;44359:28:::1;:39:::0;;-1:-1:-1;;44359:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44013:393::o;32964:102::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;33036:9:::1;:22:::0;32964:102::o;33540:207::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;33661:37:::1;:78:::0;;;::::1;;;;-1:-1:-1::0;;33661:78:0;;::::1;::::0;;;::::1;::::0;;33540:207::o;16892:1112::-;9002:6;;-1:-1:-1;;;;;9002:6:0;8988:10;:20;8981:28;;;;17037:18:::1;::::0;::::1;::::0;::::1;;;17025:30:::0;::::1;17017:39;;;::::0;::::1;;17126:18;::::0;17108:15:::1;:36;17264:6;17239:31:::0;::::1;17235:200;;;17356:14;:16:::0;;::::1;;::::0;;17235:200:::1;;;17422:1;17405:14;:18:::0;17235:200:::1;17464:1;17455:6;:10:::0;17541:14:::1;::::0;17513:24:::1;::::0;;17558:1:::1;17541:18:::0;;::::1;17513:47:::0;;::::1;17486:74:::0;;17631:20:::1;::::0;::::1;;17628:166;;;17713:14;;17730:1;17713:18;17690:19;;:42;17668:19;:64;;;;17628:166;17835:15;17814:18;:36:::0;17866:15:::1;::::0;-1:-1:-1;;;17866:15:0;::::1;;;17863:124;;;17898:18;::::0;:77:::1;::::0;;-1:-1:-1;;;17898:77:0;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17898:18:0;;::::1;::::0;:38:::1;::::0;:77;;;;;:18:::1;::::0;:77;;;;;;;;:18;;:77;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;17863:124;9020:1;16892:1112:::0;;;;:::o;32826:130::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;32910:19:::1;:38:::0;32826:130::o;9664:47::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9664:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32559:93::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;32628:6:::1;:16:::0;;-1:-1:-1;;;;;;32628:16:0::1;-1:-1:-1::0;;;;;32628:16:0;;;::::1;::::0;;;::::1;::::0;;32559:93::o;11324:30::-;;;;:::o;13347:32::-;;;;;;:::o;31802:154::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;31899:24:::1;:49:::0;;-1:-1:-1;;31899:49:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31802:154::o;10286:31::-;;;;:::o;14676:2025::-;9002:6;;-1:-1:-1;;;;;9002:6:0;8988:10;:20;8981:28;;;;14937:1:::1;14925:9;:13;:32;;;;;14956:1;14942:11;:15;14925:32;:45;;;;;14969:1;14961:5;:9;14925:45;:59;;;;;14983:1;14974:6;:10;14925:59;14917:109;;;;-1:-1:-1::0;;;14917:109:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15064:1;15052:9;:13;:35;;;;;15069:11;15084:3;15069:18;15052:35;15051:80;;;;15105:2;15093:9;:14;:37;;;;;15111:11;15126:4;15111:19;15093:37;15047:237;;;15196:18;::::0;::::1;::::0;::::1;;;15156:36;15163:4;15169:9:::0;15180:11;15156:6:::1;:36::i;:::-;:58;;15148:124;;;;-1:-1:-1::0;;;15148:124:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15353:10;:20:::0;15335:15:::1;:38;15484:6;15459:31:::0;::::1;15455:184;;;15576:6;:8:::0;;::::1;;::::0;;15455:184:::1;;;15626:1;15617:6;:10:::0;15455:184:::1;15672:9;;15663:6;;:18;15659:69;;;15707:9;::::0;15698:6:::1;:18:::0;15659:69:::1;15761:4;15752:5;:13;;:41;;;;-1:-1:-1::0;15769:15:0::1;::::0;::::1;::::0;::::1;;;:24;15752:41;15748:470;;;15826:15;:22:::0;;-1:-1:-1;;15826:22:0::1;;;::::0;;15872:2:::1;15863:6;:11:::0;15894:20:::1;::::0;::::1;::::0;15826:22;;15894:20:::1;15748:470;;;15959:5;15950;:14;;:42;;;;-1:-1:-1::0;15968:15:0::1;::::0;;;::::1;;;:24;15950:42;15946:272;;;16049:15;:22:::0;;-1:-1:-1;;16049:22:0::1;::::0;::::1;::::0;;16095:9:::1;::::0;16086:6:::1;:18:::0;16130:6:::1;16119:8;:17:::0;16186:20:::1;::::0;::::1;::::0;16049:22;;16186:20:::1;15946:272;16241:14;::::0;:18;16238:295:::1;;16331:14;::::0;16303:24:::1;::::0;;16348:1:::1;16331:18:::0;;::::1;16303:47:::0;;::::1;16276:74:::0;;16368:20:::1;::::0;::::1;;16365:124;;;16454:14;;16471:1;16454:18;16431:19;;:42;16409:19;:64;;;;16365:124;16520:1;16503:14;:18:::0;16238:295:::1;-1:-1:-1::0;16576:70:0::1;::::0;;::::1;::::0;::::1;::::0;;16583:15:::1;16576:70:::0;;;::::1;::::0;::::1;::::0;;;;;;;;;;;;;;;;;;;;;16639:6:::1;::::0;16576:70;;;;;;;16563:10:::1;:83:::0;;;;;;;;;;;;;;;;;;;;;;;16667:7:::1;:24:::0;;16563:83:::1;16667:24:::0;::::1;::::0;;-1:-1:-1;16667:24:0;;;;::::1;;::::0;;::::1;::::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14676:2025::o;13078:39::-;;;;:::o;10420:23::-;;;;:::o;11612:34::-;;;-1:-1:-1;;;;;11612:34:0;;:::o;10064:28::-;;;;;;-1:-1:-1;;;;;10064:28:0;;:::o;33386:146::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;33480:20:::1;:44:::0;;-1:-1:-1;;33480:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33386:146::o;30924:231::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;31034:6:::1;31030:118;;;-1:-1:-1::0;;;;;31064:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;31057:22:::1;::::0;::::1;:::i;:::-;31030:118;;;-1:-1:-1::0;;;;;31112:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:24:::1;::::0;31130:6;;31112:24:::1;:::i;31030:118::-;30924:231:::0;;;;:::o;34232:102::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;34299:7:::1;34307:14:::0;;-1:-1:-1;;34307:18:0;;;34299:27;::::1;;;;;;::::0;;;::::1;::::0;;::::1;::::0;;::::1;;34292:34:::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;::::0;::::1;::::0;;;::::1;;::::0;34232:102::o;10508:33::-;;;;;;:::o;28371:46::-;;;;;;;;;:::o;11742:27::-;;;-1:-1:-1;;;11742:27:0;;;;;:::o;30186:201::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;30270:8:::1;30267:113;;;30295:14;:24:::0;;;30267:113:::1;;;30352:6;:16:::0;;;30267:113:::1;30186:201:::0;;:::o;11872:18::-;;;-1:-1:-1;;;11872:18:0;;;;;:::o;29315:153::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;-1:-1:-1;;;;;29401:31:0;::::1;29393:40;;;::::0;::::1;;29444:5;:16:::0;;-1:-1:-1;;;;;;29444:16:0::1;-1:-1:-1::0;;;;;29444:16:0;;;::::1;::::0;;;::::1;::::0;;29315:153::o;13312:22::-;;;;:::o;35798:7552::-;8700:5;;35948:7;;;;;;-1:-1:-1;;;;;8700:5:0;8678:10;:28;8671:79;;;;36009:24:::1;::::0;-1:-1:-1;;;;;35999:34:0;;::::1;36009:24:::0;::::1;35999:34;35996:222;;;36119:5;::::0;:29:::1;::::0;;-1:-1:-1;;;36119:29:0;;-1:-1:-1;;;;;36119:29:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;:10:::1;::::0;:29;;;;;:5:::1;::::0;:29;;;;;;;:5;;:29;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;36171:13;36186:16;36204:1;36163:43;;;;;;;;35996:222;36233:37;::::0;::::1;::::0;::::1;;;36230:583;;;36393:23;::::0;:44:::1;::::0;;-1:-1:-1;;;36393:44:0;;-1:-1:-1;;;;;36393:44:0;;::::1;;::::0;::::1;::::0;;;36361:29:::1;::::0;36393:23;;;::::1;::::0;:36:::1;::::0;:44;;;;;:23:::1;::::0;:44;;;;;;;;:23;:44;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;36393:44:0::1;::::0;::::1;;::::0;::::1;::::0;::::1;;;;;::::0;::::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;36393:44:0::1;;;;;;::::0;::::1;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;;;;;::::0;::::1;;::::0;;-1:-1:-1;;;36393:44:0;::::1;::::0;;::::1;::::0;-1:-1:-1;36393:44:0::1;;;;;::::0;::::1;;::::0;;-1:-1:-1;36393:44:0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;;::::1;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;36393:44:0::1;::::0;;;36487:23:::1;::::0;-1:-1:-1;;;36487:47:0;;-1:-1:-1;;;;;36487:47:0;;::::1;;::::0;::::1;::::0;;;36361:76;;-1:-1:-1;36452:32:0::1;::::0;36487:23;::::1;::::0;-1:-1:-1;36487:36:0::1;::::0;-1:-1:-1;36487:47:0;;;;;-1:-1:-1;36487:23:0::1;::::0;:47;;;;;:23;:47;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;36487:47:0::1;::::0;::::1;;::::0;::::1;::::0;::::1;;;;;::::0;::::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;36487:47:0::1;;;;;;::::0;::::1;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;;;;;::::0;::::1;;::::0;;-1:-1:-1;;;36487:47:0;::::1;::::0;;::::1;::::0;-1:-1:-1;36487:47:0::1;;;;;::::0;::::1;;::::0;;-1:-1:-1;36487:47:0;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;;::::1;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;36487:47:0::1;::::0;-1:-1:-1;;36566:29:0;;36452:82;;-1:-1:-1;;36566:33:0;36563:108:::1;;-1:-1:-1::0;;;;;36620:17:0;::::1;;::::0;;;:9:::1;:17;::::0;;;;;;;:35;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;36563:108;36688:32:::0;;:36;36685:117:::1;;-1:-1:-1::0;;;;;36745:20:0;::::1;;::::0;;;:9:::1;:20;::::0;;;;;;;:41;;::::1;::::0;;::::1;::::0;::::1;:::i;:::-;;36685:117;36230:583;;;36840:6;::::0;-1:-1:-1;;;36840:6:0;::::1;;;:15;36833:23;;;;36884:9;-1:-1:-1::0;;;;;36874:19:0::1;:6;-1:-1:-1::0;;;;;36874:19:0::1;;;36867:27;;;;36921:1;36912:6;:10;36905:18;;;;36958:6;36941:13;:23;;36934:31;;;;37196:11;::::0;37015:6;;37055:4:::1;::::0;36996:16:::1;::::0;37196:11:::1;;:51:::0;::::1;;;-1:-1:-1::0;;;;;;37217:17:0;::::1;;::::0;;;:9:::1;:17;::::0;;;;37211:31;::::1;-1:-1:-1::0;;37211:31:0::1;;::::0;::::1;;;::::0;;;::::1;;:36:::0;37196:51:::1;:94;;;;-1:-1:-1::0;;;;;;37257:20:0;::::1;;::::0;;;:9:::1;:20;::::0;;;;37251:34;::::1;-1:-1:-1::0;;37251:34:0::1;;::::0;::::1;;;::::0;;;::::1;;:39:::0;37196:94:::1;37192:2074;;;37418:30;37425:6;37433:9;:7;:9::i;:::-;37444:3;37418:6;:30::i;:::-;-1:-1:-1::0;;;;;37518:20:0;::::1;37541:1;37518:20:::0;;;:9:::1;:20;::::0;;;;;37403:45;;-1:-1:-1;37518:24:0;37514:420:::1;;-1:-1:-1::0;;;;;37657:20:0;::::1;;::::0;;;:9:::1;:20;::::0;;;;;37642:41:::1;::::0;37649:6;;37679:3:::1;37642:6;:41::i;:::-;37627:56;;37764:5;37746:23;;37514:420;37994:16:::0;;37990:387:::1;;38050:6;38035:12;:21;38031:172;;;38095:1;38081:15;;38031:172;;;38159:24;:6:::0;38170:12;38159:10:::1;:24::i;:::-;38145:38;;38031:172;38237:69;38255:12;38237:69;;;;;;;;;;;;;;;;;:13:::0;;:69;:17:::1;:69::i;:::-;38221:85;;37990:387;37192:2074;;;38411:13;::::0;-1:-1:-1;;;;;38398:26:0;;::::1;38411:13:::0;;;::::1;;38398:26;38394:872;;;38619:24;::::0;38595:5:::1;::::0;-1:-1:-1;38619:24:0::1;;:67:::0;::::1;;;-1:-1:-1::0;;;;;;38653:20:0;::::1;;::::0;;;:12:::1;:20;::::0;;;;38647:34;::::1;-1:-1:-1::0;;38647:34:0::1;;::::0;::::1;;;::::0;;;::::1;;:39:::0;38619:67:::1;38615:630;;;38788:45;38795:6;38803:24;;38829:3;38788:6;:45::i;:::-;38773:60:::0;-1:-1:-1;38874:16:0;;38870:360:::1;;38934:6;38919:12;:21;38915:188;;;38983:1;38969:15;;38915:188;;;39055:24;:6:::0;39066:12;39055:10:::1;:24::i;:::-;39041:38;;38915:188;39141:69;39159:12;39141:69;;;;;;;;;;;;;;;;;:13:::0;;:69;:17:::1;:69::i;:::-;39125:85;;38870:360;-1:-1:-1::0;;;;;39296:20:0;::::1;39327:1;39296:20:::0;;;:9:::1;:20;::::0;;;;39290:34;::::1;-1:-1:-1::0;;39290:34:0::1;;::::0;::::1;;;::::0;;;::::1;;:38:::0;39286:456:::1;;39363:5;39345:23;;39286:456;;;39410:8;;39390:16;:28;;:69;;;;-1:-1:-1::0;39422:37:0::1;::::0;::::1;::::0;::::1;;;39390:69;39386:356;;;-1:-1:-1::0;;;;;39591:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;;;;:30:::1;::::0;::::1;;39584:38;;;;40155:15;:56;;;;-1:-1:-1::0;;;;;;40174:18:0;::::1;40210:1;40174:18:::0;;;:7:::1;:18;::::0;;;;:33;:37;;40155:56:::1;:80;;;;;40234:1;40215:16;:20;40155:80;40151:1854;;;-1:-1:-1::0;;;;;40328:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;;;;:30:::1;::::0;::::1;;40321:38;;;;40467:12;40482:46;40489:7;40498:11;40511:16;40482:6;:46::i;:::-;40467:61;;40796:14;:7:::0;40808:1:::1;40796:11;:14::i;:::-;-1:-1:-1::0;;;;;40887:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;:33;40786:24;;-1:-1:-1;40924:15:0::1;::::0;40875:46:::1;::::0;40786:24;;40875:11:::1;:46::i;:::-;:64;40872:432;;;-1:-1:-1::0;;;;;41046:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;41082:15:::1;41046:51:::0;;40872:432:::1;;;-1:-1:-1::0;;;;;41174:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;:33;:46:::1;::::0;41212:7;41174:37:::1;:46::i;:::-;-1:-1:-1::0;;;;;41138:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;:82;40872:432:::1;-1:-1:-1::0;;;;;41333:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;:32:::1;;::::0;41369:15:::1;::::0;41321:45:::1;::::0;:7;;:11:::1;:45::i;:::-;:63;41318:365;;;-1:-1:-1::0;;;;;41405:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;41440:15:::1;41405:32;::::0;;::::1;:50:::0;41318:365:::1;;;-1:-1:-1::0;;;;;41531:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;:32:::1;;::::0;:45:::1;::::0;41568:7;41531:36:::1;:45::i;:::-;-1:-1:-1::0;;;;;41496:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;:32:::1;;:80:::0;41318:365:::1;40151:1854;;;;41704:15;:40;;;;-1:-1:-1::0;41723:21:0;;41704:40:::1;:123;;;;-1:-1:-1::0;;;;;;41749:18:0;::::1;41785:1;41749:18:::0;;;:7:::1;:18;::::0;;;;:33;:37;;;:77:::1;;-1:-1:-1::0;;;;;;41790:18:0;::::1;41825:1;41790:18:::0;;;:7:::1;:18;::::0;;;;:32:::1;;::::0;:36;;41749:77:::1;41700:305;;;-1:-1:-1::0;;;;;41904:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;;;;41897:25;;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;-1:-1:-1;;41897:25:0::1;::::0;;41937:12;;-1:-1:-1;;41937:12:0;;;41969:24;;;;;;;::::1;::::0;;;;;;;;::::1;41700:305;42041:72;42059:11;42041:72;;;;;;;;;;;;;;;;;:13:::0;;:72;:17:::1;:72::i;:::-;42025:88:::0;-1:-1:-1;42174:33:0::1;:16:::0;42195:11;42174:20:::1;:33::i;:::-;42155:52;;42232:15;:57;;;;-1:-1:-1::0;;;;;;42251:18:0;::::1;;::::0;;;:7:::1;:18;::::0;;;;:33;:38;42232:57:::1;:118;;;;;42309:8;;42294:11;:23;;:55;;;;42341:8;;42321:16;:28;;42294:55;42228:416;;;42496:10;;:12;;;;;;;;;;;;;42544:46;;;;;;;;42551:15;42544:46;;;;42568:15;42544:46;;;;42585:4;42544:46;;;;::::0;42523:7:::1;:18;42531:9;-1:-1:-1::0;;;;;42523:18:0::1;-1:-1:-1::0;;;;;42523:18:0::1;;;;;;;;;;;;:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42610:22;42622:9;42610:22;;;;-1:-1:-1::0;;;;;42610:22:0::1;;;;;;;;;;;;;;;42228:416;42684:8;;42668:13;:24;42664:608;;;-1:-1:-1::0;;;;;42837:15:0;::::1;;::::0;;;:7:::1;:15;::::0;;;;;;;42830:22;;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;-1:-1:-1;;42830:22:0::1;::::0;;42867:12;;-1:-1:-1;;42867:12:0;;;42899:21;;;;;;;::::1;::::0;;;;;;;;::::1;42664:608;;;-1:-1:-1::0;;;;;42953:15:0;::::1;;::::0;;;:7:::1;:15;::::0;;;;;;;42986::::1;42953:48:::0;;;43080:29:::1;::::0;;::::1;:47:::0;;;;43184:27;::::1;:34:::0;;-1:-1:-1;;43184:34:0::1;::::0;;::::1;::::0;;42664:608:::1;43296:13:::0;;-1:-1:-1;43311:16:0;;-1:-1:-1;43329:12:0;-1:-1:-1;;;8761:1:0::1;35798:7552:::0;;;;;;;;;:::o;13252:47::-;;;-1:-1:-1;;;;;13252:47:0;;:::o;24732:2302::-;25066:15;;24935:7;;-1:-1:-1;;;25066:15:0;;;;25062:273;;;25105:18;;:134;;;-1:-1:-1;;;25105:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25105:134:0;;;;;;;;;;;;;;;:18;;;;;:37;;:134;;;;;;;;;;;;;;:18;:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25105:134:0;;-1:-1:-1;25098:141:0;;25062:273;25392:25;;25452:1;25442:11;;25438:229;;;25499:83;25530:51;25537:26;25565:7;25573:2;25565:10;25577:3;25530:6;:51::i;:::-;25499:26;;:30;:83::i;:::-;25470:112;;25438:229;25704:14;;25691:10;:27;25687:355;;;25851:14;;25838:27;;25687:355;;;25887:15;25883:159;;26029:1;26016:14;;25883:159;26062:10;26075:47;26115:6;26075:35;26082:11;26095:5;26102:7;26075:6;:35::i;:::-;:39;;:47::i;:::-;26062:60;;26225:2;26217:5;:10;26213:343;;;26364:34;:26;26395:2;26364:30;:34::i;:::-;26335:63;;26213:343;;;26428:2;26420:5;:10;26416:140;;;26519:25;;26490:54;;26416:140;26576:14;26593:81;26600:7;26621:10;26609:9;:22;26647:26;26633:11;:40;26593:6;:81::i;:::-;26576:98;;26761:15;26779:22;26786:7;26795:1;26798:2;26779:6;:22::i;:::-;26761:40;;26838:10;26826:9;:22;26822:168;;;26968:10;26956:22;;26822:168;-1:-1:-1;27017:9:0;-1:-1:-1;;;24732:2302:0;;;;;;;;;;;;:::o;13218:21::-;;;-1:-1:-1;;;;;13218:21:0;;:::o;31424:217::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;31523:6:::1;31519:115;;;-1:-1:-1::0;;;;;31553:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;31546:22;31519:115:::1;;;-1:-1:-1::0;;;;;31601:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:21;;;31519:115:::1;31424:217:::0;;;:::o;32127:102::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;32199:6:::1;:22:::0;;;::::1;;-1:-1:-1::0;;;32199:22:0::1;-1:-1:-1::0;;;;32199:22:0;;::::1;::::0;;;::::1;::::0;;32127:102::o;10330:36::-;;;;;;:::o;33204:174::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;33312::::1;:58:::0;33204:174::o;7557:20::-;;;-1:-1:-1;;;;;7557:20:0;;:::o;13166:39::-;;;-1:-1:-1;;;;;13166:39:0;;:::o;9134:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32382:165::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;32487:24:::1;:52:::0;;-1:-1:-1;;;;;;32487:52:0::1;-1:-1:-1::0;;;;;32487:52:0;;;::::1;::::0;;;::::1;::::0;;32382:165::o;30800:112::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;30877:11:::1;:27:::0;;-1:-1:-1;;30877:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30800:112::o;9271:44::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;9271:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27042:154;-1:-1:-1;;;;;27148:16:0;;27104:4;27148:16;;;:7;:16;;;;;:31;27183:5;;27128:52;;:15;;:19;:52::i;:::-;:60;;;;;;;27042:154;-1:-1:-1;;27042:154:0:o;43522:192::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;43678:5:::1;::::0;:28:::1;::::0;;-1:-1:-1;;;43678:28:0;;-1:-1:-1;;;;;43678:28:0;;::::1;;::::0;::::1;::::0;;;;;;;;;:5;;;::::1;::::0;:11:::1;::::0;:28;;;;;:5:::1;::::0;:28;;;;;;;:5;;:28;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;43522:192:::0;;:::o;32664:154::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;32768:23:::1;:42:::0;;-1:-1:-1;;;;;;32768:42:0::1;-1:-1:-1::0;;;;;32768:42:0;;;::::1;::::0;;;::::1;::::0;;32664:154::o;31968:147::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;32062:45:::1;;:24;:45:::0;31968:147::o;18090:370::-;8896:19;;18182:22;;;;-1:-1:-1;;;;;8896:19:0;8882:10;:33;8875:41;;;;-1:-1:-1;;;;;;;18257:13:0::1;;::::0;;;:7:::1;:13;::::0;;;;:28;;18312:27:::1;::::0;::::1;::::0;;18380:15:::1;18350:45:::0;;;;18406:46;;18257:28;18090:370::o;34010:204::-;-1:-1:-1;;;;;34112:16:0;34069:7;34112:16;;;:7;:16;;;;;;;;:31;;34145:30;;;;34177:28;;;;;34112:31;;34145:30;;34177:28;;;34010:204::o;30005:169::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;30112:25:::1;:54:::0;30005:169::o;33074:122::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;33156:14:::1;:32:::0;33074:122::o;9855:23::-;;;;;;:::o;34745:620::-;34807:4;34827:6;34835;34845:14;34854:1;34857;34845:7;:14::i;:::-;34826:33;;;;34884:1;34880;:5;34872:14;;;;34899:7;34923:1;34909:16;;;;;34920:1;34917;34909:16;34899:26;;34947:1;34942:2;:6;34938:18;;;34955:1;34950:6;;;;34938:18;34969:7;;;;;34989:9;35005:2;;;35001:6;;;35006:1;35001:6;35020:9;;;;;;;35047:4;35042:9;;;;;;;;;35084:4;35076;35075:5;;35074:14;;;;;;35091:1;35074:18;35069:24;;;;35064:29;;;;35134:1;:9;;;35165:5;;;35161:9;;35156:14;35192:5;;;35188:9;;35183:14;35219:5;;;35215:9;;35210:14;35246:5;;;35242:9;;35237:14;35273:5;;;35269:9;;35264:14;35300:5;;;35296:9;;35291:14;35327:5;;;35323:9;;35318:14;;;35352:5;;;;;34745:620;-1:-1:-1;;;;;34745:620:0:o;30399:147::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;30494:20:::1;:44:::0;;-1:-1:-1;;30494:44:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;30399:147::o;13388:49::-;;;;;;;;;:::o;9940:27::-;;;;;;;;;:::o;19755:2108::-;8700:5;;19868:7;;-1:-1:-1;;;;;8700:5:0;8678:10;:28;8671:79;;;;20035:1:::1;20025:7;:11;20018:19;;;;20058:24;;:::i;:::-;-1:-1:-1::0;;;;;;20085:22:0;::::1;;::::0;;;:7:::1;:22;::::0;;;;;;;;20058:49;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;;;;::::0;;;;;;;;20128:85:::1;;;;20325:25:::0;;20318:87:::1;;;;20433:10;:22;;;20426:30;;;;20568:10;:24;;;20550:15;:42;20543:121;;;;20705:24;::::0;::::1;::::0;20682:10:::1;:20:::0;:47:::1;20675:181;;;;20915:25:::0;;20877:15:::1;::::0;20944:5:::1;::::0;20895:46:::1;::::0;:15:::1;::::0;:19:::1;:46::i;:::-;:54;;;;;21025:20;::::0;20895:54;;::::1;::::0;-1:-1:-1;21025:20:0::1;;21011:34:::0;::::1;;21004:115;;;;21148:8;;21137:7;:19;;21130:96;;;;21282:25:::0;;21254:24:::1;::::0;::::1;::::0;:53:::1;;21247:61;;;;21398:14;21415:121;21447:10;:24;;;21473:10;:25;;;21500:7;21509:13;21524:11;21415:31;:121::i;:::-;-1:-1:-1::0;;;;;21557:22:0;::::1;;::::0;;;:7:::1;:22;::::0;;;;;;;;21596:15:::1;21557:36;::::0;;::::1;:54:::0;21716:24;;;;;;;21398:138;;-1:-1:-1;21716:24:0::1;::::0;;;;;;;::::1;21768:9:::0;19755:2108;-1:-1:-1;;;;;;19755:2108:0:o;10898:21::-;;;;:::o;29825:162::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;29927:24:::1;:52:::0;;;::::1;;-1:-1:-1::0;;;29927:52:0::1;-1:-1:-1::0;;;;29927:52:0;;::::1;::::0;;;::::1;::::0;;29825:162::o;13130:23::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13130:23:0;;;;;:::o;30558:99::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;30629:8:::1;:20:::0;30558:99::o;29480:333::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;-1:-1:-1;;;;;29565:27:0;::::1;29562:244;;29609:18;:52:::0;;-1:-1:-1;;;;;;29609:52:0::1;::::0;;29676:15:::1;:23:::0;;-1:-1:-1;;;;29676:23:0::1;::::0;;29562:244:::1;;;29732:18;:25:::0;;-1:-1:-1;;;;;29732:25:0;::::1;-1:-1:-1::0;;;;;;29732:25:0;;::::1;;::::0;;29772:15:::1;:22:::0;;-1:-1:-1;;;;29772:22:0::1;-1:-1:-1::0;;;29772:22:0::1;::::0;;29562:244:::1;29480:333:::0;:::o;22196:2528::-;22399:24;;22366:7;;-1:-1:-1;;;22399:24:0;;;;22396:193;;;22447:18;;:130;;;-1:-1:-1;;;22447:130:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22447:130:0;;;;;;;;;;;;;;;:18;;;;;:50;;:130;;;;;;;;;;;;;;:18;:130;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22447:130:0;;-1:-1:-1;22440:137:0;;22396:193;22609:41;;:::i;:::-;22729:7;:14;:21;;22748:1;22729:18;:21::i;:::-;22716:34;;;22841:2;-1:-1:-1;22825:295:0;;;22873:10;;:18;;22888:2;22873:14;:18::i;:::-;22860:10;;;:31;22825:295;;;23001:10;;:17;;23016:1;23001:14;:17::i;:::-;22988:10;;;:30;22825:295;23149:1;23132:14;;;:18;;;23171:1514;23193:12;23171:1514;;23237:24;;:::i;:::-;23264:7;23272:4;:10;;;23264:19;;;;;;;;;;;;;;;;;;23237:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23367:10;:20;;;23345:19;:42;:89;;;-1:-1:-1;23414:20:0;;23391:43;;23345:89;:117;;;-1:-1:-1;23452:10:0;;;;23438;;:24;23345:117;23342:1097;;;23717:4;23711:10;;23342:1097;;;23789:20;;23762:24;;23838:5;;23789:46;;23814:20;23789:24;:46::i;:::-;:54;;;;;;23762:81;;23991:178;24010:10;:20;;;24032:10;:22;;;24056:10;:16;;;24074:10;:17;;;24093:10;:17;;;24112:7;24121:19;24142:13;24157:11;23991:18;:178::i;:::-;23967:21;;;:202;;;24269:14;;;;:41;;:18;:41::i;:::-;24252:14;;;:58;24369:21;;;;24357:34;;:7;;:11;:34::i;:::-;24347:44;;23342:1097;;24471:10;;:14;24467:193;;24519:10;;:17;;24534:1;24519:14;:17::i;:::-;24506:30;;24467:193;;;24640:4;24634:10;;24467:193;23171:1514;;;;-1:-1:-1;24702:14:0;;;;-1:-1:-1;22196:2528:0;;;;;;;;:::o;12126:51::-;;;;;;;;;;;;;;;:::o;11247:24::-;;;;;;;;;;;;;;:::o;31653:137::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;-1:-1:-1;;;;;31732:18:0;::::1;31724:27;;;::::0;::::1;;31762:13;:20:::0;;-1:-1:-1;;;;;31762:20:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;31762:20:0;;::::1;::::0;;;::::1;::::0;;31653:137::o;11973:28::-;;;-1:-1:-1;;;11973:28:0;;;;;:::o;27295:1068::-;27361:33;27383:10;27361:21;:33::i;:::-;27360:34;27352:82;;;;-1:-1:-1;;;27352:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27453:16;;-1:-1:-1;;;27453:16:0;;;;27445:56;;;;;-1:-1:-1;;;27445:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27514:24;;:::i;:::-;-1:-1:-1;27549:10:0;27541:19;;;;:7;:19;;;;;;;;27514:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27541:19;27638:5;;27589:46;;:15;;:19;:46::i;:::-;:54;;;;;;27571:72;;27710:2;27696:10;:16;;27688:85;;;;-1:-1:-1;;;27688:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27788:16;;-1:-1:-1;;;27788:16:0;;;;:36;;;;;27822:2;27808:10;:16;;27788:36;27784:562;;;27858:14;;27845:10;:27;27841:198;;;-1:-1:-1;28009:14:0;;27841:198;28053:33;28075:10;28053:21;:33::i;:::-;28125:5;;:27;;;-1:-1:-1;;;28125:27:0;;28141:10;28125:27;;;;;;28101:14;;28118:76;;-1:-1:-1;;;;;28125:5:0;;;;:15;;:27;;;;;;;;;;;;;;;:5;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28125:27:0;28166;;28154:10;;28118:6;:76::i;:::-;28252:5;;:33;;;-1:-1:-1;;;28252:33:0;;28263:10;28252:33;;;;;;;;;;;;28101:93;;-1:-1:-1;;;;;;28252:5:0;;;;:10;;:33;;;;;:5;;:33;;;;;;;;:5;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;28305:29:0;;;;;;;;;;-1:-1:-1;28305:29:0;;;;;;;-1:-1:-1;28305:29:0;27784:562;27295:1068;;:::o;11011:21::-;;;;:::o;10024:27::-;;;;;;;;;:::o;28973:247::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;29053:16:::1;:36:::0;;-1:-1:-1;;;;29053:36:0::1;-1:-1:-1::0;;;29053:36:0;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;;::::1;29103:16:::0;::::1;;29100:113;;;29136:26;:24;:26::i;:::-;29182:19;::::0;::::1;::::0;;;::::1;28973:247:::0;:::o;10616:31::-;;;;;;;;;:::o;13039:26::-;;;;:::o;43726:275::-;43928:24;;-1:-1:-1;;;;;43928:24:0;43914:10;:38;43906:47;;;;;;43964:5;;:29;;;-1:-1:-1;;;43964:29:0;;-1:-1:-1;;;;;43964:29:0;;;;;;;;;;;;;;;:5;;;;;:10;;:29;;;;;:5;;:29;;;;;;;:5;;:29;;;;;;;;;;10166:36;;;;:::o;10755:40::-;;;;:::o;11823:36::-;;;-1:-1:-1;;;11823:36:0;;;;;:::o;11436:45::-;;;-1:-1:-1;;;;;11436:45:0;;:::o;32241:129::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;32328:19:::1;:34:::0;;-1:-1:-1;;;;;;32328:34:0::1;-1:-1:-1::0;;;;;32328:34:0;;;::::1;::::0;;;::::1;::::0;;32241:129::o;33759:239::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;-1:-1:-1;;;;;33841:22:0;::::1;33834:76;;;;33947:5;::::0;;33926:37:::1;::::0;-1:-1:-1;;;;;33926:37:0;;::::1;::::0;33947:5;::::1;::::0;33926:37:::1;::::0;::::1;33974:5;:16:::0;;-1:-1:-1;;;;;;33974:16:0::1;-1:-1:-1::0;;;;;33974:16:0;;;::::1;::::0;;;::::1;::::0;;33759:239::o;9478:45::-;;;;;;;;;;;;;:::o;8516:22::-;;;-1:-1:-1;;;;;8516:22:0;;:::o;31167:245::-;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;31280:6:::1;31276:124;;;-1:-1:-1::0;;;;;31310:18:0;::::1;;::::0;;;:12:::1;:18;::::0;;;;31303:25:::1;::::0;::::1;:::i;31276:124::-;-1:-1:-1::0;;;;;31361:18:0;::::1;;::::0;;;:12:::1;:18;::::0;;;;:27:::1;::::0;31382:6;;31361:27:::1;:::i;30663:125::-:0;9094:5;;-1:-1:-1;;;;;9094:5:0;9080:10;:19;9073:27;;;;30747:18:::1;:33:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;30747:33:0;;::::1;::::0;;;::::1;::::0;;30663:125::o;43368:142::-;43483:19;;43368:142;:::o;1489:136::-;1547:7;1574:43;1578:1;1581;1574:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1567:50;;1489:136;;;;;:::o;1920:195::-;2006:7;2038:1;2033;:6;;2026:32;;;;-1:-1:-1;;2081:5:0;;;1920:195::o;3308:132::-;3366:7;3393:39;3397:1;3400;3393:39;;;;;;;;;;;;;;;;;:3;:39::i;1030:184::-;1088:7;1120:5;;;1143:6;;;;1136:49;;;2366:474;2424:7;2669:6;2665:47;;-1:-1:-1;2699:1:0;2692:8;;2665:47;2736:5;;;2740:1;2736;:5;:1;2759:5;;;;;:10;2752:59;;;35377:203;35433:6;;;-1:-1:-1;;35483:1:0;35480;35472:24;35462:34;;35517:1;35513;:5;35509:9;;35540:1;35535:2;:6;35531:10;;35563:1;35558:2;:6;35554:18;;;35571:1;35566:6;;;;35554:18;35377:203;;;;;;:::o;28426:218::-;28553:32;;28536:58;;;28553:32;;;;28536:58;;-1:-1:-1;;;;;;28536:58:0;;;;;;;;;;;;;;-1:-1:-1;;28536:58:0;;;;;;;;;;;;;;;;;;;;28526:69;;;;;;;;;-1:-1:-1;28613:23:0;;;:18;:23;;;;;;;;;28426:218::o;28652:199::-;28760:32;;28743:58;;;28760:32;;;;28743:58;;-1:-1:-1;;;;;;28743:58:0;;;;;;;;;;;;;;-1:-1:-1;;28743:58:0;;;;;;;;;;;;;;;;;;;;28733:69;;;;;;;;;-1:-1:-1;28813:23:0;;;:18;:23;;;;;:30;;28839:4;-1:-1:-1;;28813:30:0;;;;;;28652:199::o;28859:98::-;28915:32;:34;;;;;;;;;;;;;;;;-1:-1:-1;;28915:34:0;;;;;;28859:98::o;3928:281::-;4014:7;4045:1;4041;:5;4034:31;;;;4076:9;4092:1;4088;:5;;;;;;;3928:281;-1:-1:-1;;;;;3928:281:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;

Swarm Source

ipfs://8a82671584872b9b11eee954a74f9aa1e323950bb0e6f9785a9da3c5c514140b

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.