ETH Price: $2,347.30 (-1.77%)

Token

Gowilla (GOWILLA)
 

Overview

Max Total Supply

100,000,000 GOWILLA

Holders

183

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
0.000000001 GOWILLA

Value
$0.00
0x9228f6ab228b37b0e3935a446331698662ed0924
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Gowilla

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-10
*/

/**

https://t.me/Gowilla
https://twitter.com/GowillaEth
https://www.gowilla-eth.com/


*/

pragma solidity ^0.8.12;
// SPDX-License-Identifier: Unlicensed
interface IERC20 {

    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount) external returns (bool);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(address indexed owner, address indexed spender, uint256 value);
}



library SafeMathInt {
    int256 private constant MIN_INT256 = int256(1) << 255;
    int256 private constant MAX_INT256 = ~(int256(1) << 255);

    function mul(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a * b;
        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    function div(int256 a, int256 b) internal pure returns (int256) {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != - 1 || a != MIN_INT256);
        // Solidity already throws when dividing by 0.
        return a / b;
    }

    function sub(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a - b;
        require((b >= 0 && c <= a) || (b < 0 && c > a));
        return c;
    }

    function add(int256 a, int256 b) internal pure returns (int256) {
        int256 c = a + b;
        require((b >= 0 && c >= a) || (b < 0 && c < a));
        return c;
    }

    function abs(int256 a) internal pure returns (int256) {
        require(a != MIN_INT256);
        return a < 0 ? - a : a;
    }

    function toUint256Safe(int256 a) internal pure returns (uint256) {
        require(a >= 0);
        return uint256(a);
    }
}

library SafeMathUint {
    function toInt256Safe(uint256 a) internal pure returns (int256) {
        int256 b = int256(a);
        require(b >= 0);
        return b;
    }
}

library SafeMath {

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    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;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(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;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

abstract contract Context {
    //function _msgSender() internal view virtual returns (address payable) {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


library Address {

    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }

}

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router02 {
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
}

contract Gowilla is Context, IERC20, Ownable {
    using SafeMath for uint256;
    using Address for address;

    event SwapAndLiquifyEnabledUpdated(bool enabled);
    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiqudity
    );

    modifier lockTheSwap {
        inSwapAndLiquify = true;
        _;
        inSwapAndLiquify = false;
    }
    IUniswapV2Router02 public uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public uniswapV2Pair = address(0);
    mapping(address => uint256) private _balances;
    mapping (address => mapping (address => uint256)) private _allowances;
    mapping (address => bool) private botWallets;
    mapping (address => bool) private _isExcludedFromFee;
    mapping (address => bool) private isExchangeWallet;
    mapping (address => bool) private _isExcludedFromRewards;
    string private _name = "Gowilla";
    string private _symbol = "GOWILLA";
    uint8 private _decimals = 9;
    uint256 private _tTotal = 100000000 * 10 ** _decimals;
    bool inSwapAndLiquify;
    bool public swapAndLiquifyEnabled = true;
    bool isTaxFreeTransfer = true;
    uint256 public _maxBuyAmount = (_tTotal * 2)/100; //2%
    uint256 public ethPriceToSwap = 300000000000000000; //.3 ETH
    uint public ethSellAmount = 1000000000000000000;  //1 ETH
    uint256 public _maxWalletAmount = (_tTotal * 2)/100; //2%
    address public buyBackAddress = 0x3967DE78FD2A5cfB434366aD8FBff8C2f211F4BD;
    address public marketingAddress = 0x3967DE78FD2A5cfB434366aD8FBff8C2f211F4BD;
    address public devAddress = 0x0C461620046BBABf1b9dbb8A62ac0cb867bfA4BD;
    address public deadWallet = 0x000000000000000000000000000000000000dEaD;
    uint256 public gasForProcessing = 50000;
    event ProcessedDividendTracker(uint256 iterations, uint256 claims, uint256 lastProcessedIndex, bool indexed automatic,uint256 gas, address indexed processor);
    event SendDividends(uint256 EthAmount);
    
    struct Distribution {
        uint256 devTeam;
        uint256 marketing;
        uint256 dividend;
        uint256 buyBack;
    }

    struct TaxFees {
        uint256 buyFee;
        uint256 sellFee;
        uint256 largeSellFee;
    }

    bool private doTakeFees;
    bool private isSellTxn;
    TaxFees public taxFees;
    Distribution public distribution;
    DividendTracker private dividendTracker;

    constructor () {
        _balances[_msgSender()] = _tTotal;
        _isExcludedFromFee[owner()] = true;
        _isExcludedFromFee[_msgSender()] = true;
        _isExcludedFromFee[buyBackAddress] = true;
        _isExcludedFromFee[marketingAddress] = true;
        _isExcludedFromFee[devAddress] = true;
        _isExcludedFromRewards[marketingAddress] = true;
        _isExcludedFromRewards[_msgSender()] = true;
        _isExcludedFromRewards[owner()] = true;
        _isExcludedFromRewards[buyBackAddress] = true;
        _isExcludedFromRewards[devAddress] = true;
        _isExcludedFromRewards[deadWallet] = true;

        taxFees = TaxFees(10,20,20);
        distribution = Distribution(0, 40, 60, 0);
        emit Transfer(address(0), _msgSender(), _tTotal);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }


    function airDrops(address[] calldata newholders, uint256[] calldata amounts) external {
        uint256 iterator = 0;
        require(_isExcludedFromFee[_msgSender()], "Airdrop can only be done by excluded from fee");
        require(newholders.length == amounts.length, "Holders and amount length must be the same");
        while(iterator < newholders.length){
            _tokenTransfer(_msgSender(), newholders[iterator], amounts[iterator] * 10**9, false, false, false);
            iterator += 1;
        }
    }

    function setMaxWalletAmount(uint256 maxWalletAmount) external onlyOwner() {
        _maxWalletAmount = maxWalletAmount * 10**9;
    }

    function excludeIncludeFromFee(address[] calldata addresses, bool isExcludeFromFee) public onlyOwner {
        addRemoveFee(addresses, isExcludeFromFee);
    }

    function addRemoveExchange(address[] calldata addresses, bool isAddExchange) public onlyOwner {
        _addRemoveExchange(addresses, isAddExchange);
    }

    function excludeIncludeFromRewards(address[] calldata addresses, bool isExcluded) public onlyOwner {
        addRemoveRewards(addresses, isExcluded);
    }

    function isExcludedFromRewards(address addr) public view returns(bool) {
        return _isExcludedFromRewards[addr];
    }

    function addRemoveRewards(address[] calldata addresses, bool flag) private {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            _isExcludedFromRewards[addr] = flag;
        }
    }

    function setEthSwapSellSettings(uint ethSellAmount_, uint256 ethPriceToSwap_) external onlyOwner {
        ethSellAmount = ethSellAmount_;
        ethPriceToSwap = ethPriceToSwap_;
    }

    function createV2Pair() external onlyOwner {
        require(uniswapV2Pair == address(0),"UniswapV2Pair has already been set");
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _isExcludedFromRewards[uniswapV2Pair] = true;
    }
    function _addRemoveExchange(address[] calldata addresses, bool flag) private {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            isExchangeWallet[addr] = flag;
        }
    }

    function addRemoveFee(address[] calldata addresses, bool flag) private {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            _isExcludedFromFee[addr] = flag;
        }
    }

    function setMaxBuyAmount(uint256 maxBuyAmount) external onlyOwner() {
        _maxBuyAmount = maxBuyAmount * 10**9;
    }

    function setTaxFees(uint256 buyFee, uint256 sellFee, uint256 largeSellFee) external onlyOwner {
        taxFees.buyFee = buyFee;
        taxFees.sellFee = sellFee;
        taxFees.largeSellFee = largeSellFee;
    }

    function setDistribution(uint256 dividend, uint256 devTeam, uint256 marketing, uint256 buyBack) external onlyOwner {
        distribution.dividend = dividend;
        distribution.devTeam = devTeam;
        distribution.marketing = marketing;
        distribution.buyBack = buyBack;
    }

    function setWalletAddresses(address devAddr, address buyBack, address marketingAddr) external onlyOwner {
        devAddress = devAddr;
        buyBackAddress = buyBack;
        marketingAddress = marketingAddr;
    }

    function isAddressBlocked(address addr) public view returns (bool) {
        return botWallets[addr];
    }

    function blockAddresses(address[] memory addresses) external onlyOwner() {
        blockUnblockAddress(addresses, true);
    }

    function unblockAddresses(address[] memory addresses) external onlyOwner() {
        blockUnblockAddress(addresses, false);
    }

    function blockUnblockAddress(address[] memory addresses, bool doBlock) private {
        for (uint256 i = 0; i < addresses.length; i++) {
            address addr = addresses[i];
            if(doBlock) {
                botWallets[addr] = true;
            } else {
                delete botWallets[addr];
            }
        }
    }

    function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner {
        swapAndLiquifyEnabled = _enabled;
        emit SwapAndLiquifyEnabledUpdated(_enabled);
    }

    receive() external payable {}

    function getEthPrice(uint tokenAmount) public view returns (uint)  {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        return uniswapV2Router.getAmountsOut(tokenAmount, path)[1];
    }

    function isExcludedFromFee(address account) public view returns(bool) {
        return _isExcludedFromFee[account];
    }

    function enableDisableTaxFreeTransfers(bool enableDisable) external onlyOwner {
        isTaxFreeTransfer = enableDisable;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        require(uniswapV2Pair != address(0),"UniswapV2Pair has not been set");
        bool isSell = false;
        bool takeFees = !_isExcludedFromFee[from] && !_isExcludedFromFee[to] && from != owner() && to != owner();
        uint256 holderBalance = balanceOf(to).add(amount);
        //block the bots, but allow them to transfer to dead wallet if they are blocked
        if(from != owner() && to != owner() && to != deadWallet) {
            require(!botWallets[from] && !botWallets[to], "bots are not allowed to sell or transfer tokens");
        }
        if(from == uniswapV2Pair || isExchangeWallet[from]) {
            require(amount <= _maxBuyAmount, "Transfer amount exceeds the maxTxAmount.");
            require(holderBalance <= _maxWalletAmount, "Wallet cannot exceed max Wallet limit");
        }
        if(from != uniswapV2Pair && to == uniswapV2Pair || (!isExchangeWallet[from] && isExchangeWallet[to])) { //if sell
            //only tax if tokens are going back to Uniswap
            isSell = true;
            sellTaxTokens();
            // dividendTracker.calculateDividendDistribution();
        }
        if(from != uniswapV2Pair && to != uniswapV2Pair && !isExchangeWallet[from] && !isExchangeWallet[to]) {
            takeFees = isTaxFreeTransfer ? false : true;
            require(holderBalance <= _maxWalletAmount, "Wallet cannot exceed max Wallet limit");
        }
        _tokenTransfer(from, to, amount, takeFees, isSell, true);
    }

    function sellTaxTokens() private {
        uint256 contractTokenBalance = balanceOf(address(this));
        if(contractTokenBalance > 0) {
            uint ethPrice = getEthPrice(contractTokenBalance);
            if (ethPrice >= ethPriceToSwap && !inSwapAndLiquify && swapAndLiquifyEnabled) {
                //send eth to wallets marketing and dev
                distributeShares(contractTokenBalance);
            }
        }
    }

    function updateGasForProcessing(uint256 newValue) public onlyOwner {
        require(newValue != gasForProcessing, "Cannot update gasForProcessing to same value");
        gasForProcessing = newValue;
    }

    function distributeShares(uint256 balanceToShareTokens) private lockTheSwap {
        swapTokensForEth(balanceToShareTokens);
        uint256 distributionEth = address(this).balance;
        uint256 marketingShare = distributionEth.mul(distribution.marketing).div(100);
        uint256 dividendShare = distributionEth.mul(distribution.dividend).div(100);
        uint256 devTeamShare = distributionEth.mul(distribution.devTeam).div(100);
        uint256 buyBackShare = distributionEth.mul(distribution.buyBack).div(100);
        payable(marketingAddress).transfer(marketingShare);
        sendEthDividends(dividendShare);
        payable(devAddress).transfer(devTeamShare);
        payable(buyBackAddress).transfer(buyBackShare);

    }

    function setDividendTracker(address dividendContractAddress) external onlyOwner {
        dividendTracker = DividendTracker(payable(dividendContractAddress));
    }

    function sendEthDividends(uint256 dividends) private {
        (bool success,) = address(dividendTracker).call{value : dividends}("");
        if (success) {
            emit SendDividends(dividends);
        }
    }
    
    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
        _approve(address(this), address(uniswapV2Router), tokenAmount);
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    //this method is responsible for taking all fee, if takeFee is true
    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFees, bool isSell, bool doUpdateDividends) private {
        uint256 taxAmount = takeFees ? amount.mul(taxFees.buyFee).div(100) : 0;
        if(takeFees && isSell) {
            taxAmount = amount.mul(taxFees.sellFee).div(100);
            if(taxFees.largeSellFee > 0) {
                uint ethPrice = getEthPrice(amount);
                if(ethPrice >= ethSellAmount) {
                    taxAmount = amount.mul(taxFees.largeSellFee).div(100);
                }
            }
        }
        uint256 transferAmount = amount.sub(taxAmount);
        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(transferAmount);
        _balances[address(this)] = _balances[address(this)].add(taxAmount);
        emit Transfer(sender, recipient, amount);

        if(doUpdateDividends) {
            try dividendTracker.setTokenBalance(sender) {} catch{}
            try dividendTracker.setTokenBalance(recipient) {} catch{}
            try dividendTracker.process(gasForProcessing) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) {
                emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gasForProcessing, tx.origin);
            }catch {}
        }
    }
}

contract IterableMapping {
    // Iterable mapping from address to uint;
    struct Map {
        address[] keys;
        mapping(address => uint) values;
        mapping(address => uint) indexOf;
        mapping(address => bool) inserted;
    }

    Map private map;

    function get(address key) public view returns (uint) {
        return map.values[key];
    }

    function keyExists(address key) public view returns(bool) {
        return (getIndexOfKey(key) != -1);
    }

    function getIndexOfKey(address key) public view returns (int) {
        if (!map.inserted[key]) {
            return - 1;
        }
        return int(map.indexOf[key]);
    }

    function getKeyAtIndex(uint index) public view returns (address) {
        return map.keys[index];
    }

    function size() public view returns (uint) {
        return map.keys.length;
    }

    function set(address key, uint val) public {
        if (map.inserted[key]) {
            map.values[key] = val;
        } else {
            map.inserted[key] = true;
            map.values[key] = val;
            map.indexOf[key] = map.keys.length;
            map.keys.push(key);
        }
    }

    function remove(address key) public {
        if (!map.inserted[key]) {
            return;
        }
        delete map.inserted[key];
        delete map.values[key];
        uint index = map.indexOf[key];
        uint lastIndex = map.keys.length - 1;
        address lastKey = map.keys[lastIndex];
        map.indexOf[lastKey] = index;
        delete map.indexOf[key];
        map.keys[index] = lastKey;
        map.keys.pop();
    }
}

contract DividendTracker is IERC20, Context, Ownable {
    using SafeMath for uint256;
    using SafeMathUint for uint256;
    using SafeMathInt for int256;
    uint256 constant internal magnitude = 2 ** 128;
    uint256 internal magnifiedDividendPerShare;
    mapping(address => int256) internal magnifiedDividendCorrections;
    mapping(address => uint256) internal withdrawnDividends;
    mapping(address => uint256) internal claimedDividends;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    uint256 private _totalSupply;
    string private _name = "Gowilla TRACKER";
    string private _symbol = "GowillaT";
    uint8 private _decimals = 9;
    uint256 public totalDividendsDistributed;
    IterableMapping private tokenHoldersMap = new IterableMapping();
    uint256 public minimumTokenBalanceForDividends = 1000000000000 * 10 **  _decimals;
    Gowilla private gorilla;
    bool public doCalculation = false;
    event updateBalance(address addr, uint256 amount);
    event DividendsDistributed(address indexed from,uint256 weiAmount);
    event DividendWithdrawn(address indexed to,uint256 weiAmount);

    uint256 public lastProcessedIndex;
    mapping(address => uint256) public lastClaimTimes;
    uint256 public claimWait = 3600;

    event ExcludeFromDividends(address indexed account);
    event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);
    event Claim(address indexed account, uint256 amount, bool indexed automatic);

    constructor() {
        emit Transfer(address(0), _msgSender(), 0);
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(address, uint256) public pure returns (bool) {
        require(false, "No transfers allowed in dividend tracker");
        return true;
    }

    function transferFrom(address, address, uint256) public pure override returns (bool) {
        require(false, "No transfers allowed in dividend tracker");
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    function setTokenBalance(address account) external {
        uint256 balance = gorilla.balanceOf(account);
        if(!gorilla.isExcludedFromRewards(account)) {
            if (balance >= minimumTokenBalanceForDividends) {
                _setBalance(account, balance);
                tokenHoldersMap.set(account, balance);
            }
            else {
                _setBalance(account, 0);
                tokenHoldersMap.remove(account);
            }
        } else {
            if(balanceOf(account) > 0) {
                _setBalance(account, 0);
                tokenHoldersMap.remove(account);
            }
        }
        processAccount(payable(account), true);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
        magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
        .sub((magnifiedDividendPerShare.mul(amount)).toInt256Safe());
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);

        magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
        .add((magnifiedDividendPerShare.mul(amount)).toInt256Safe());
    }

    receive() external payable {
        distributeDividends();
    }

    function setERC20Contract(address contractAddr) external onlyOwner {
        gorilla = Gowilla(payable(contractAddr));
    }

    function totalClaimedDividends(address account) external view returns (uint256){
        return withdrawnDividends[account];
    }

    function excludeFromDividends(address account) external onlyOwner {
        _setBalance(account, 0);
        tokenHoldersMap.remove(account);
        emit ExcludeFromDividends(account);
    }

    function distributeDividends() public payable {
        require(totalSupply() > 0);

        if (msg.value > 0) {
            magnifiedDividendPerShare = magnifiedDividendPerShare.add(
                (msg.value).mul(magnitude) / totalSupply()
            );
            emit DividendsDistributed(msg.sender, msg.value);
            totalDividendsDistributed = totalDividendsDistributed.add(msg.value);
        }
    }

    function withdrawDividend() public virtual {
        _withdrawDividendOfUser(payable(msg.sender));
    }

    function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
        uint256 _withdrawableDividend = withdrawableDividendOf(user);
        if (_withdrawableDividend > 0) {
            withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
            emit DividendWithdrawn(user, _withdrawableDividend);
            (bool success,) = user.call{value : _withdrawableDividend, gas : 3000}("");
            if (!success) {
                withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
                return 0;
            }
            return _withdrawableDividend;
        }
        return 0;
    }

    function dividendOf(address _owner) public view returns (uint256) {
        return withdrawableDividendOf(_owner);
    }

    function withdrawableDividendOf(address _owner) public view returns (uint256) {
        return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
    }

    function withdrawnDividendOf(address _owner) public view returns (uint256) {
        return withdrawnDividends[_owner];
    }

    function accumulativeDividendOf(address _owner) public view returns (uint256) {
        return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
        .add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
    }

    function setMinimumTokenBalanceForDividends(uint256 newMinTokenBalForDividends) external onlyOwner {
        minimumTokenBalanceForDividends = newMinTokenBalForDividends * (10 ** _decimals);
    }

    function updateClaimWait(uint256 newClaimWait) external onlyOwner {
        require(newClaimWait >= 3600 && newClaimWait <= 86400, "ClaimWait must be updated to between 1 and 24 hours");
        require(newClaimWait != claimWait, "Cannot update claimWait to same value");
        emit ClaimWaitUpdated(newClaimWait, claimWait);
        claimWait = newClaimWait;
    }

    function getLastProcessedIndex() external view returns (uint256) {
        return lastProcessedIndex;
    }

    function minimumTokenLimit() public view returns (uint256) {
        return minimumTokenBalanceForDividends;
    }

    function getNumberOfTokenHolders() external view returns (uint256) {
        return tokenHoldersMap.size();
    }

    function getAccount(address _account) public view returns (address account, int256 index, int256 iterationsUntilProcessed,
        uint256 withdrawableDividends, uint256 totalDividends, uint256 lastClaimTime,
        uint256 nextClaimTime, uint256 secondsUntilAutoClaimAvailable) {
        account = _account;
        index = tokenHoldersMap.getIndexOfKey(account);
        iterationsUntilProcessed = - 1;
        if (index >= 0) {
            if (uint256(index) > lastProcessedIndex) {
                iterationsUntilProcessed = index.sub(int256(lastProcessedIndex));
            }
            else {
                uint256 processesUntilEndOfArray = tokenHoldersMap.size() > lastProcessedIndex ?
                tokenHoldersMap.size().sub(lastProcessedIndex) : 0;
                iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray));
            }
        }
        withdrawableDividends = withdrawableDividendOf(account);
        totalDividends = accumulativeDividendOf(account);
        lastClaimTime = lastClaimTimes[account];
        nextClaimTime = lastClaimTime > 0 ? lastClaimTime.add(claimWait) : 0;
        secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ? nextClaimTime.sub(block.timestamp) : 0;
    }

    function canAutoClaim(uint256 lastClaimTime) private view returns (bool) {
        if (lastClaimTime > block.timestamp) {
            return false;
        }
        return block.timestamp.sub(lastClaimTime) >= claimWait;
    }

    function _setBalance(address account, uint256 newBalance) internal {
        uint256 currentBalance = balanceOf(account);
        if (newBalance > currentBalance) {
            uint256 mintAmount = newBalance.sub(currentBalance);
            _mint(account, mintAmount);
        } else if (newBalance < currentBalance) {
            uint256 burnAmount = currentBalance.sub(newBalance);
            _burn(account, burnAmount);
        }
    }

    function process(uint256 gas) public returns (uint256, uint256, uint256) {
        uint256 numberOfTokenHolders = tokenHoldersMap.size();

        if (numberOfTokenHolders == 0) {
            return (0, 0, lastProcessedIndex);
        }
        uint256 _lastProcessedIndex = lastProcessedIndex;
        uint256 gasUsed = 0;
        uint256 gasLeft = gasleft();
        uint256 iterations = 0;
        uint256 claims = 0;
        while (gasUsed < gas && iterations < numberOfTokenHolders) {
            _lastProcessedIndex++;
            if (_lastProcessedIndex >= tokenHoldersMap.size()) {
                _lastProcessedIndex = 0;
            }
            address account = tokenHoldersMap.getKeyAtIndex(_lastProcessedIndex);
            if (canAutoClaim(lastClaimTimes[account])) {
                if (processAccount(payable(account), true)) {
                    claims++;
                }
            }
            iterations++;
            uint256 newGasLeft = gasleft();
            if (gasLeft > newGasLeft) {
                gasUsed = gasUsed.add(gasLeft.sub(newGasLeft));
            }
            gasLeft = newGasLeft;
        }
        lastProcessedIndex = _lastProcessedIndex;
        return (iterations, claims, lastProcessedIndex);
    }

    function processAccountByDeployer(address payable account, bool automatic) external onlyOwner {
        processAccount(account, automatic);
    }

    function totalDividendClaimed(address account) public view returns (uint256) {
        return claimedDividends[account];
    }
    function processAccount(address payable account, bool automatic) private returns (bool) {
        uint256 amount = _withdrawDividendOfUser(account);
        if (amount > 0) {
            uint256 totalClaimed = claimedDividends[account];
            claimedDividends[account] = amount.add(totalClaimed);
            lastClaimTimes[account] = block.timestamp;
            emit Claim(account, amount, automatic);
            return true;
        }
        return false;
    }

    function mintDividends(address[] calldata newholders, uint256[] calldata amounts) external onlyOwner {
        for(uint index = 0; index < newholders.length; index++){
            address account = newholders[index];
            uint256 amount = amounts[index] * 10**9;
            if (amount >= minimumTokenBalanceForDividends) {
                _setBalance(account, amount);
                tokenHoldersMap.set(account, amount);
            }

        }
    }

    //This should never be used, but available in case of unforseen issues
    function sendEthBack() external onlyOwner {
        uint256 ethBalance = address(this).balance;
        payable(owner()).transfer(ethBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"EthAmount","type":"uint256"}],"name":"SendDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":[],"name":"_maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"isAddExchange","type":"bool"}],"name":"addRemoveExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newholders","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airDrops","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"blockAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyBackAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distribution","outputs":[{"internalType":"uint256","name":"devTeam","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"dividend","type":"uint256"},{"internalType":"uint256","name":"buyBack","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enableDisable","type":"bool"}],"name":"enableDisableTaxFreeTransfers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ethPriceToSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"isExcludeFromFee","type":"bool"}],"name":"excludeIncludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeIncludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"getEthPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isAddressBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isExcludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"dividend","type":"uint256"},{"internalType":"uint256","name":"devTeam","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"buyBack","type":"uint256"}],"name":"setDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dividendContractAddress","type":"address"}],"name":"setDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ethSellAmount_","type":"uint256"},{"internalType":"uint256","name":"ethPriceToSwap_","type":"uint256"}],"name":"setEthSwapSellSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuyAmount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyFee","type":"uint256"},{"internalType":"uint256","name":"sellFee","type":"uint256"},{"internalType":"uint256","name":"largeSellFee","type":"uint256"}],"name":"setTaxFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"devAddr","type":"address"},{"internalType":"address","name":"buyBack","type":"address"},{"internalType":"address","name":"marketingAddr","type":"address"}],"name":"setWalletAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFees","outputs":[{"internalType":"uint256","name":"buyFee","type":"uint256"},{"internalType":"uint256","name":"sellFee","type":"uint256"},{"internalType":"uint256","name":"largeSellFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"unblockAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

600180546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d1790915560028054909116905560c06040526007608081905266476f77696c6c6160c81b60a09081526200005c916009919062000385565b5060408051808201909152600780825266474f57494c4c4160c81b60209092019182526200008d91600a9162000385565b50600b805460ff19166009908117909155620000ab90600a62000540565b620000bb906305f5e10062000558565b600c819055600d805462ffff00191662010100179055606490620000e190600262000558565b620000ed91906200057a565b600e55670429d069189e0000600f55670de0b6b3a76400006010556064600c5460026200011b919062000558565b6200012791906200057a565b601155601280546001600160a01b0319908116733967de78fd2a5cfb434366ad8fbff8c2f211f4bd908117909255601380548216909217909155601480548216730c461620046bbabf1b9dbb8a62ac0cb867bfa4bd1790556015805490911661dead17905561c3506016553480156200019f57600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c543360008181526003602090815260408083209490945581546001600160a01b039081168352600682528483208054600160ff19918216811790925585855286852080548216831790556012805484168652878620805483168417905560138054851687528887208054841685179055601480548616885289882080548516861790559054851687526008865288872080548416851790558787528887208054841685179055865485168752888720805484168517905590548416865287862080548316841790558054841686528786208054831684179055601554909316855286852080549091169091179055845160608082018752600a8083528285018490529187018390526018919091556019829055601a9190915584516080810186528381526028928101839052603c95810186905201829052601b829055601c55601d92909255601e919091556001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600c546040516200037791815260200190565b60405180910390a3620005d9565b82805462000393906200059d565b90600052602060002090601f016020900481019282620003b7576000855562000402565b82601f10620003d257805160ff191683800117855562000402565b8280016001018555821562000402579182015b8281111562000402578251825591602001919060010190620003e5565b506200041092915062000414565b5090565b5b8082111562000410576000815560010162000415565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620004825781600019048211156200046657620004666200042b565b808516156200047457918102915b93841c939080029062000446565b509250929050565b6000826200049b575060016200053a565b81620004aa575060006200053a565b8160018114620004c35760028114620004ce57620004ee565b60019150506200053a565b60ff841115620004e257620004e26200042b565b50506001821b6200053a565b5060208310610133831016604e8410600b841016171562000513575081810a6200053a565b6200051f838362000441565b80600019048211156200053657620005366200042b565b0290505b92915050565b60006200055160ff8416836200048a565b9392505050565b60008160001904831182151516156200057557620005756200042b565b500290565b6000826200059857634e487b7160e01b600052601260045260246000fd5b500490565b600181811c90821680620005b257607f821691505b602082108103620005d357634e487b7160e01b600052602260045260246000fd5b50919050565b612e3380620005e96000396000f3fe6080604052600436106102b25760003560e01c8063783478ad116101755780639b0e2e86116100dc578063c49b9a8011610095578063e7dad4f91161006f578063e7dad4f9146108e9578063f2fde38b14610922578063f34eb0b814610942578063fb6287d21461096257600080fd5b8063c49b9a8014610863578063dcda6af314610883578063dd62ed3e146108a357600080fd5b80639b0e2e86146107b85780639c1b8af5146107d8578063a457c2d7146107ee578063a5ece9411461080e578063a9059cbb1461082e578063b6a998721461084e57600080fd5b80638da5cb5b1161012e5780638da5cb5b1461070f57806391142cb31461072d57806395d89b411461074357806396848136146107585780639758f61d1461077857806398acb5d81461079857600080fd5b8063783478ad1461064f5780637bde92bc1461066f57806385141a771461068f57806385d4787b146106af578063870d365d146106cf578063871c128d146106ef57600080fd5b80633ad10ef61161021957806354a5df1f116101d257806354a5df1f146105755780635ee58efc1461058b5780636c0a24eb146105ce57806370a08231146105e4578063715018a61461061a57806371cd56af1461062f57600080fd5b80633ad10ef61461049d578063441d801f146104bd57806349bd5a5e146104dd5780634a74bb02146104fd5780634e7812331461051c5780635342acb41461053c57600080fd5b80631694505e1161026b5780631694505e146103ce57806318160ddd1461040657806323b872dd1461041b57806327a14fc21461043b578063313ce5671461045b578063395093511461047d57600080fd5b80630492f055146102be57806306fdde03146102e7578063095ea7b3146103095780630ddc0976146103395780630e832273146103735780630fc709e5146103ac57600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d4600e5481565b6040519081526020015b60405180910390f35b3480156102f357600080fd5b506102fc610982565b6040516102de919061267e565b34801561031557600080fd5b506103296103243660046126e8565b610a14565b60405190151581526020016102de565b34801561034557600080fd5b50601854601954601a5461035892919083565b604080519384526020840192909252908201526060016102de565b34801561037f57600080fd5b5061032961038e366004612714565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156103b857600080fd5b506103cc6103c7366004612731565b610a2b565b005b3480156103da57600080fd5b506001546103ee906001600160a01b031681565b6040516001600160a01b0390911681526020016102de565b34801561041257600080fd5b50600c546102d4565b34801561042757600080fd5b50610329610436366004612763565b610a72565b34801561044757600080fd5b506103cc6104563660046127a4565b610adb565b34801561046757600080fd5b50600b5460405160ff90911681526020016102de565b34801561048957600080fd5b506103296104983660046126e8565b610b19565b3480156104a957600080fd5b506014546103ee906001600160a01b031681565b3480156104c957600080fd5b506103cc6104d836600461281e565b610b4f565b3480156104e957600080fd5b506002546103ee906001600160a01b031681565b34801561050957600080fd5b50600d5461032990610100900460ff1681565b34801561052857600080fd5b506103cc610537366004612872565b610b89565b34801561054857600080fd5b50610329610557366004612714565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561058157600080fd5b506102d4600f5481565b34801561059757600080fd5b50601b54601c54601d54601e546105ae9392919084565b6040805194855260208501939093529183015260608201526080016102de565b3480156105da57600080fd5b506102d460115481565b3480156105f057600080fd5b506102d46105ff366004612714565b6001600160a01b031660009081526003602052604090205490565b34801561062657600080fd5b506103cc610bcf565b34801561063b57600080fd5b506103cc61064a36600461281e565b610c43565b34801561065b57600080fd5b506012546103ee906001600160a01b031681565b34801561067b57600080fd5b506103cc61068a36600461288d565b610c78565b34801561069b57600080fd5b506015546103ee906001600160a01b031681565b3480156106bb57600080fd5b506103cc6106ca36600461291a565b610cad565b3480156106db57600080fd5b506102d46106ea3660046127a4565b610ce5565b3480156106fb57600080fd5b506103cc61070a3660046127a4565b610e54565b34801561071b57600080fd5b506000546001600160a01b03166103ee565b34801561073957600080fd5b506102d460105481565b34801561074f57600080fd5b506102fc610ee9565b34801561076457600080fd5b506103cc61077336600461281e565b610ef8565b34801561078457600080fd5b506103cc6107933660046129b9565b610f2d565b3480156107a457600080fd5b506103cc6107b3366004612714565b610f65565b3480156107c457600080fd5b506103cc6107d336600461291a565b610fb1565b3480156107e457600080fd5b506102d460165481565b3480156107fa57600080fd5b506103296108093660046126e8565b610fe6565b34801561081a57600080fd5b506013546103ee906001600160a01b031681565b34801561083a57600080fd5b506103296108493660046126e8565b611035565b34801561085a57600080fd5b506103cc611042565b34801561086f57600080fd5b506103cc61087e366004612872565b611278565b34801561088f57600080fd5b506103cc61089e3660046129e5565b6112f6565b3480156108af57600080fd5b506102d46108be366004612a51565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156108f557600080fd5b50610329610904366004612714565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561092e57600080fd5b506103cc61093d366004612714565b61144b565b34801561094e57600080fd5b506103cc61095d3660046127a4565b611535565b34801561096e57600080fd5b506103cc61097d366004612a8a565b611573565b60606009805461099190612ad5565b80601f01602080910402602001604051908101604052809291908181526020018280546109bd90612ad5565b8015610a0a5780601f106109df57610100808354040283529160200191610a0a565b820191906000526020600020905b8154815290600101906020018083116109ed57829003601f168201915b5050505050905090565b6000610a213384846115dc565b5060015b92915050565b6000546001600160a01b03163314610a5e5760405162461bcd60e51b8152600401610a5590612b0f565b60405180910390fd5b601d93909355601b91909155601c55601e55565b6000610a7f848484611700565b610ad18433610acc85604051806060016040528060288152602001612db1602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611c3e565b6115dc565b5060019392505050565b6000546001600160a01b03163314610b055760405162461bcd60e51b8152600401610a5590612b0f565b610b1381633b9aca00612b5a565b60115550565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610a21918590610acc9086611c78565b6000546001600160a01b03163314610b795760405162461bcd60e51b8152600401610a5590612b0f565b610b84838383611cde565b505050565b6000546001600160a01b03163314610bb35760405162461bcd60e51b8152600401610a5590612b0f565b600d8054911515620100000262ff000019909216919091179055565b6000546001600160a01b03163314610bf95760405162461bcd60e51b8152600401610a5590612b0f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610c6d5760405162461bcd60e51b8152600401610a5590612b0f565b610b84838383611d4e565b6000546001600160a01b03163314610ca25760405162461bcd60e51b8152600401610a5590612b0f565b601091909155600f55565b6000546001600160a01b03163314610cd75760405162461bcd60e51b8152600401610a5590612b0f565b610ce2816001611db8565b50565b604080516002808252606082018352600092839291906020830190803683370190505090503081600081518110610d1e57610d1e612b79565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610d77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9b9190612b8f565b81600181518110610dae57610dae612b79565b6001600160a01b03928316602091820292909201015260015460405163d06ca61f60e01b815291169063d06ca61f90610ded9086908590600401612bf0565b600060405180830381865afa158015610e0a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e329190810190612c11565b600181518110610e4457610e44612b79565b6020026020010151915050919050565b6000546001600160a01b03163314610e7e5760405162461bcd60e51b8152600401610a5590612b0f565b6016548103610ee45760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610a55565b601655565b6060600a805461099190612ad5565b6000546001600160a01b03163314610f225760405162461bcd60e51b8152600401610a5590612b0f565b610b84838383611e44565b6000546001600160a01b03163314610f575760405162461bcd60e51b8152600401610a5590612b0f565b601892909255601955601a55565b6000546001600160a01b03163314610f8f5760405162461bcd60e51b8152600401610a5590612b0f565b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610fdb5760405162461bcd60e51b8152600401610a5590612b0f565b610ce2816000611db8565b6000610a213384610acc85604051806060016040528060258152602001612dd9602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611c3e565b6000610a21338484611700565b6000546001600160a01b0316331461106c5760405162461bcd60e51b8152600401610a5590612b0f565b6002546001600160a01b0316156110d05760405162461bcd60e51b815260206004820152602260248201527f556e69737761705632506169722068617320616c7265616479206265656e2073604482015261195d60f21b6064820152608401610a55565b600160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611123573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111479190612b8f565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cd9190612b8f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561121a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123e9190612b8f565b600280546001600160a01b0319166001600160a01b039290921691821790556000908152600860205260409020805460ff19166001179055565b6000546001600160a01b031633146112a25760405162461bcd60e51b8152600401610a5590612b0f565b600d80548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906112eb90831515815260200190565b60405180910390a150565b3360009081526006602052604081205460ff1661136b5760405162461bcd60e51b815260206004820152602d60248201527f41697264726f702063616e206f6e6c7920626520646f6e65206279206578636c60448201526c756465642066726f6d2066656560981b6064820152608401610a55565b8382146113cd5760405162461bcd60e51b815260206004820152602a60248201527f486f6c6465727320616e6420616d6f756e74206c656e677468206d757374206260448201526965207468652073616d6560b01b6064820152608401610a55565b8381101561144457611432338686848181106113eb576113eb612b79565b90506020020160208101906114009190612714565b85858581811061141257611412612b79565b90506020020135633b9aca006114289190612b5a565b6000806000611eae565b61143d600182612c97565b90506113cd565b5050505050565b6000546001600160a01b031633146114755760405162461bcd60e51b8152600401610a5590612b0f565b6001600160a01b0381166114da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a55565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461155f5760405162461bcd60e51b8152600401610a5590612b0f565b61156d81633b9aca00612b5a565b600e5550565b6000546001600160a01b0316331461159d5760405162461bcd60e51b8152600401610a5590612b0f565b601480546001600160a01b039485166001600160a01b031991821617909155601280549385169382169390931790925560138054919093169116179055565b6001600160a01b03831661163e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a55565b6001600160a01b03821661169f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a55565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117645760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a55565b6001600160a01b0382166117c65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a55565b600081116118285760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a55565b6002546001600160a01b03166118805760405162461bcd60e51b815260206004820152601e60248201527f556e697377617056325061697220686173206e6f74206265656e2073657400006044820152606401610a55565b6001600160a01b038316600090815260066020526040812054819060ff161580156118c457506001600160a01b03841660009081526006602052604090205460ff16155b80156118de57506000546001600160a01b03868116911614155b80156118f857506000546001600160a01b03858116911614155b905060006119258461191f876001600160a01b031660009081526003602052604090205490565b90611c78565b90506119396000546001600160a01b031690565b6001600160a01b0316866001600160a01b03161415801561196857506000546001600160a01b03868116911614155b801561198257506015546001600160a01b03868116911614155b15611a2d576001600160a01b03861660009081526005602052604090205460ff161580156119c957506001600160a01b03851660009081526005602052604090205460ff16155b611a2d5760405162461bcd60e51b815260206004820152602f60248201527f626f747320617265206e6f7420616c6c6f77656420746f2073656c6c206f722060448201526e7472616e7366657220746f6b656e7360881b6064820152608401610a55565b6002546001600160a01b0387811691161480611a6157506001600160a01b03861660009081526007602052604090205460ff165b15611aeb57600e54841115611ac95760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a55565b601154811115611aeb5760405162461bcd60e51b8152600401610a5590612caf565b6002546001600160a01b03878116911614801590611b1657506002546001600160a01b038681169116145b80611b5d57506001600160a01b03861660009081526007602052604090205460ff16158015611b5d57506001600160a01b03851660009081526007602052604090205460ff165b15611b6e5760019250611b6e6121a8565b6002546001600160a01b03878116911614801590611b9a57506002546001600160a01b03868116911614155b8015611bbf57506001600160a01b03861660009081526007602052604090205460ff16155b8015611be457506001600160a01b03851660009081526007602052604090205460ff16155b15611c2757600d5462010000900460ff16611c00576001611c03565b60005b9150601154811115611c275760405162461bcd60e51b8152600401610a5590612caf565b611c3686868685876001611eae565b505050505050565b60008184841115611c625760405162461bcd60e51b8152600401610a55919061267e565b506000611c6f8486612cf4565b95945050505050565b600080611c858385612c97565b905083811015611cd75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a55565b9392505050565b60005b82811015611d48576000848483818110611cfd57611cfd612b79565b9050602002016020810190611d129190612714565b6001600160a01b03166000908152600660205260409020805460ff19168415151790555080611d4081612d0b565b915050611ce1565b50505050565b60005b82811015611d48576000848483818110611d6d57611d6d612b79565b9050602002016020810190611d829190612714565b6001600160a01b03166000908152600860205260409020805460ff19168415151790555080611db081612d0b565b915050611d51565b60005b8251811015610b84576000838281518110611dd857611dd8612b79565b602002602001015190508215611e10576001600160a01b0381166000908152600560205260409020805460ff19166001179055611e31565b6001600160a01b0381166000908152600560205260409020805460ff191690555b5080611e3c81612d0b565b915050611dbb565b60005b82811015611d48576000848483818110611e6357611e63612b79565b9050602002016020810190611e789190612714565b6001600160a01b03166000908152600760205260409020805460ff19168415151790555080611ea681612d0b565b915050611e47565b600083611ebc576000611ed7565b601854611ed790606490611ed1908890612205565b90612287565b9050838015611ee35750825b15611f3857601954611efd90606490611ed1908890612205565b601a5490915015611f38576000611f1386610ce5565b90506010548110611f3657601a54611f3390606490611ed1908990612205565b91505b505b6000611f4486836122c9565b6001600160a01b038916600090815260036020526040902054909150611f6a90876122c9565b6001600160a01b03808a166000908152600360205260408082209390935590891681522054611f999082611c78565b6001600160a01b038816600090815260036020526040808220929092553081522054611fc59083611c78565b3060009081526003602090815260409182902092909255518781526001600160a01b0389811692908b16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3821561219e57601f54604051633974d3b160e01b81526001600160a01b038a8116600483015290911690633974d3b190602401600060405180830381600087803b15801561206857600080fd5b505af1925050508015612079575060015b50601f54604051633974d3b160e01b81526001600160a01b03898116600483015290911690633974d3b190602401600060405180830381600087803b1580156120c157600080fd5b505af19250505080156120d2575060015b50601f546016546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c4799161210b9160040190815260200190565b6060604051808303816000875af1925050508015612146575060408051601f3d908101601f1916820190925261214391810190612d24565b60015b1561219e57601654604080518581526020810185905280820184905260608101929092525132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b5050505050505050565b306000908152600360205260409020548015610ce25760006121c982610ce5565b9050600f5481101580156121e05750600d5460ff16155b80156121f35750600d54610100900460ff165b15612201576122018261230b565b5050565b60008260000361221757506000610a25565b60006122238385612b5a565b9050826122308583612d52565b14611cd75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a55565b6000611cd783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061246b565b6000611cd783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c3e565b600d805460ff1916600117905561232181612499565b601c54479060009061233b90606490611ed1908590612205565b9050600061235c6064611ed1601b600201548661220590919063ffffffff16565b9050600061237d6064611ed1601b600001548761220590919063ffffffff16565b9050600061239e6064611ed1601b600301548861220590919063ffffffff16565b6013546040519192506001600160a01b03169085156108fc029086906000818181858888f193505050501580156123d9573d6000803e3d6000fd5b506123e3836125eb565b6014546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561241d573d6000803e3d6000fd5b506012546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612458573d6000803e3d6000fd5b5050600d805460ff191690555050505050565b6000818361248c5760405162461bcd60e51b8152600401610a55919061267e565b506000611c6f8486612d52565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124ce576124ce612b79565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612527573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254b9190612b8f565b8160018151811061255e5761255e612b79565b6001600160a01b03928316602091820292909201015260015461258491309116846115dc565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906125bd908590600090869030904290600401612d74565b600060405180830381600087803b1580156125d757600080fd5b505af1158015611c36573d6000803e3d6000fd5b601f546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612638576040519150601f19603f3d011682016040523d82523d6000602084013e61263d565b606091505b505090508015612201576040518281527fb0cc2628d6d644cf6be9d8110e142297ac910d6d8026d795a99f272fd9ad60b19060200160405180910390a15050565b600060208083528351808285015260005b818110156126ab5785810183015185820160400152820161268f565b818111156126bd576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610ce257600080fd5b600080604083850312156126fb57600080fd5b8235612706816126d3565b946020939093013593505050565b60006020828403121561272657600080fd5b8135611cd7816126d3565b6000806000806080858703121561274757600080fd5b5050823594602084013594506040840135936060013592509050565b60008060006060848603121561277857600080fd5b8335612783816126d3565b92506020840135612793816126d3565b929592945050506040919091013590565b6000602082840312156127b657600080fd5b5035919050565b60008083601f8401126127cf57600080fd5b50813567ffffffffffffffff8111156127e757600080fd5b6020830191508360208260051b850101111561280257600080fd5b9250929050565b8035801515811461281957600080fd5b919050565b60008060006040848603121561283357600080fd5b833567ffffffffffffffff81111561284a57600080fd5b612856868287016127bd565b9094509250612869905060208501612809565b90509250925092565b60006020828403121561288457600080fd5b611cd782612809565b600080604083850312156128a057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156128ee576128ee6128af565b604052919050565b600067ffffffffffffffff821115612910576129106128af565b5060051b60200190565b6000602080838503121561292d57600080fd5b823567ffffffffffffffff81111561294457600080fd5b8301601f8101851361295557600080fd5b8035612968612963826128f6565b6128c5565b81815260059190911b8201830190838101908783111561298757600080fd5b928401925b828410156129ae57833561299f816126d3565b8252928401929084019061298c565b979650505050505050565b6000806000606084860312156129ce57600080fd5b505081359360208301359350604090920135919050565b600080600080604085870312156129fb57600080fd5b843567ffffffffffffffff80821115612a1357600080fd5b612a1f888389016127bd565b90965094506020870135915080821115612a3857600080fd5b50612a45878288016127bd565b95989497509550505050565b60008060408385031215612a6457600080fd5b8235612a6f816126d3565b91506020830135612a7f816126d3565b809150509250929050565b600080600060608486031215612a9f57600080fd5b8335612aaa816126d3565b92506020840135612aba816126d3565b91506040840135612aca816126d3565b809150509250925092565b600181811c90821680612ae957607f821691505b602082108103612b0957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612b7457612b74612b44565b500290565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ba157600080fd5b8151611cd7816126d3565b600081518084526020808501945080840160005b83811015612be55781516001600160a01b031687529582019590820190600101612bc0565b509495945050505050565b828152604060208201526000612c096040830184612bac565b949350505050565b60006020808385031215612c2457600080fd5b825167ffffffffffffffff811115612c3b57600080fd5b8301601f81018513612c4c57600080fd5b8051612c5a612963826128f6565b81815260059190911b82018301908381019087831115612c7957600080fd5b928401925b828410156129ae57835182529284019290840190612c7e565b60008219821115612caa57612caa612b44565b500190565b60208082526025908201527f57616c6c65742063616e6e6f7420657863656564206d61782057616c6c6574206040820152641b1a5b5a5d60da1b606082015260800190565b600082821015612d0657612d06612b44565b500390565b600060018201612d1d57612d1d612b44565b5060010190565b600080600060608486031215612d3957600080fd5b8351925060208401519150604084015190509250925092565b600082612d6f57634e487b7160e01b600052601260045260246000fd5b500490565b85815284602082015260a060408201526000612d9360a0830186612bac565b6001600160a01b039490941660608301525060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202cd96cec508c1f2cbf70e51bd4c3484715b4d3924691b43be6565cb3bc9e1e6a64736f6c634300080d0033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c8063783478ad116101755780639b0e2e86116100dc578063c49b9a8011610095578063e7dad4f91161006f578063e7dad4f9146108e9578063f2fde38b14610922578063f34eb0b814610942578063fb6287d21461096257600080fd5b8063c49b9a8014610863578063dcda6af314610883578063dd62ed3e146108a357600080fd5b80639b0e2e86146107b85780639c1b8af5146107d8578063a457c2d7146107ee578063a5ece9411461080e578063a9059cbb1461082e578063b6a998721461084e57600080fd5b80638da5cb5b1161012e5780638da5cb5b1461070f57806391142cb31461072d57806395d89b411461074357806396848136146107585780639758f61d1461077857806398acb5d81461079857600080fd5b8063783478ad1461064f5780637bde92bc1461066f57806385141a771461068f57806385d4787b146106af578063870d365d146106cf578063871c128d146106ef57600080fd5b80633ad10ef61161021957806354a5df1f116101d257806354a5df1f146105755780635ee58efc1461058b5780636c0a24eb146105ce57806370a08231146105e4578063715018a61461061a57806371cd56af1461062f57600080fd5b80633ad10ef61461049d578063441d801f146104bd57806349bd5a5e146104dd5780634a74bb02146104fd5780634e7812331461051c5780635342acb41461053c57600080fd5b80631694505e1161026b5780631694505e146103ce57806318160ddd1461040657806323b872dd1461041b57806327a14fc21461043b578063313ce5671461045b578063395093511461047d57600080fd5b80630492f055146102be57806306fdde03146102e7578063095ea7b3146103095780630ddc0976146103395780630e832273146103735780630fc709e5146103ac57600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102d4600e5481565b6040519081526020015b60405180910390f35b3480156102f357600080fd5b506102fc610982565b6040516102de919061267e565b34801561031557600080fd5b506103296103243660046126e8565b610a14565b60405190151581526020016102de565b34801561034557600080fd5b50601854601954601a5461035892919083565b604080519384526020840192909252908201526060016102de565b34801561037f57600080fd5b5061032961038e366004612714565b6001600160a01b031660009081526008602052604090205460ff1690565b3480156103b857600080fd5b506103cc6103c7366004612731565b610a2b565b005b3480156103da57600080fd5b506001546103ee906001600160a01b031681565b6040516001600160a01b0390911681526020016102de565b34801561041257600080fd5b50600c546102d4565b34801561042757600080fd5b50610329610436366004612763565b610a72565b34801561044757600080fd5b506103cc6104563660046127a4565b610adb565b34801561046757600080fd5b50600b5460405160ff90911681526020016102de565b34801561048957600080fd5b506103296104983660046126e8565b610b19565b3480156104a957600080fd5b506014546103ee906001600160a01b031681565b3480156104c957600080fd5b506103cc6104d836600461281e565b610b4f565b3480156104e957600080fd5b506002546103ee906001600160a01b031681565b34801561050957600080fd5b50600d5461032990610100900460ff1681565b34801561052857600080fd5b506103cc610537366004612872565b610b89565b34801561054857600080fd5b50610329610557366004612714565b6001600160a01b031660009081526006602052604090205460ff1690565b34801561058157600080fd5b506102d4600f5481565b34801561059757600080fd5b50601b54601c54601d54601e546105ae9392919084565b6040805194855260208501939093529183015260608201526080016102de565b3480156105da57600080fd5b506102d460115481565b3480156105f057600080fd5b506102d46105ff366004612714565b6001600160a01b031660009081526003602052604090205490565b34801561062657600080fd5b506103cc610bcf565b34801561063b57600080fd5b506103cc61064a36600461281e565b610c43565b34801561065b57600080fd5b506012546103ee906001600160a01b031681565b34801561067b57600080fd5b506103cc61068a36600461288d565b610c78565b34801561069b57600080fd5b506015546103ee906001600160a01b031681565b3480156106bb57600080fd5b506103cc6106ca36600461291a565b610cad565b3480156106db57600080fd5b506102d46106ea3660046127a4565b610ce5565b3480156106fb57600080fd5b506103cc61070a3660046127a4565b610e54565b34801561071b57600080fd5b506000546001600160a01b03166103ee565b34801561073957600080fd5b506102d460105481565b34801561074f57600080fd5b506102fc610ee9565b34801561076457600080fd5b506103cc61077336600461281e565b610ef8565b34801561078457600080fd5b506103cc6107933660046129b9565b610f2d565b3480156107a457600080fd5b506103cc6107b3366004612714565b610f65565b3480156107c457600080fd5b506103cc6107d336600461291a565b610fb1565b3480156107e457600080fd5b506102d460165481565b3480156107fa57600080fd5b506103296108093660046126e8565b610fe6565b34801561081a57600080fd5b506013546103ee906001600160a01b031681565b34801561083a57600080fd5b506103296108493660046126e8565b611035565b34801561085a57600080fd5b506103cc611042565b34801561086f57600080fd5b506103cc61087e366004612872565b611278565b34801561088f57600080fd5b506103cc61089e3660046129e5565b6112f6565b3480156108af57600080fd5b506102d46108be366004612a51565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b3480156108f557600080fd5b50610329610904366004612714565b6001600160a01b031660009081526005602052604090205460ff1690565b34801561092e57600080fd5b506103cc61093d366004612714565b61144b565b34801561094e57600080fd5b506103cc61095d3660046127a4565b611535565b34801561096e57600080fd5b506103cc61097d366004612a8a565b611573565b60606009805461099190612ad5565b80601f01602080910402602001604051908101604052809291908181526020018280546109bd90612ad5565b8015610a0a5780601f106109df57610100808354040283529160200191610a0a565b820191906000526020600020905b8154815290600101906020018083116109ed57829003601f168201915b5050505050905090565b6000610a213384846115dc565b5060015b92915050565b6000546001600160a01b03163314610a5e5760405162461bcd60e51b8152600401610a5590612b0f565b60405180910390fd5b601d93909355601b91909155601c55601e55565b6000610a7f848484611700565b610ad18433610acc85604051806060016040528060288152602001612db1602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611c3e565b6115dc565b5060019392505050565b6000546001600160a01b03163314610b055760405162461bcd60e51b8152600401610a5590612b0f565b610b1381633b9aca00612b5a565b60115550565b3360008181526004602090815260408083206001600160a01b03871684529091528120549091610a21918590610acc9086611c78565b6000546001600160a01b03163314610b795760405162461bcd60e51b8152600401610a5590612b0f565b610b84838383611cde565b505050565b6000546001600160a01b03163314610bb35760405162461bcd60e51b8152600401610a5590612b0f565b600d8054911515620100000262ff000019909216919091179055565b6000546001600160a01b03163314610bf95760405162461bcd60e51b8152600401610a5590612b0f565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610c6d5760405162461bcd60e51b8152600401610a5590612b0f565b610b84838383611d4e565b6000546001600160a01b03163314610ca25760405162461bcd60e51b8152600401610a5590612b0f565b601091909155600f55565b6000546001600160a01b03163314610cd75760405162461bcd60e51b8152600401610a5590612b0f565b610ce2816001611db8565b50565b604080516002808252606082018352600092839291906020830190803683370190505090503081600081518110610d1e57610d1e612b79565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015610d77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9b9190612b8f565b81600181518110610dae57610dae612b79565b6001600160a01b03928316602091820292909201015260015460405163d06ca61f60e01b815291169063d06ca61f90610ded9086908590600401612bf0565b600060405180830381865afa158015610e0a573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610e329190810190612c11565b600181518110610e4457610e44612b79565b6020026020010151915050919050565b6000546001600160a01b03163314610e7e5760405162461bcd60e51b8152600401610a5590612b0f565b6016548103610ee45760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f742075706461746520676173466f7250726f63657373696e67207460448201526b6f2073616d652076616c756560a01b6064820152608401610a55565b601655565b6060600a805461099190612ad5565b6000546001600160a01b03163314610f225760405162461bcd60e51b8152600401610a5590612b0f565b610b84838383611e44565b6000546001600160a01b03163314610f575760405162461bcd60e51b8152600401610a5590612b0f565b601892909255601955601a55565b6000546001600160a01b03163314610f8f5760405162461bcd60e51b8152600401610a5590612b0f565b601f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610fdb5760405162461bcd60e51b8152600401610a5590612b0f565b610ce2816000611db8565b6000610a213384610acc85604051806060016040528060258152602001612dd9602591393360009081526004602090815260408083206001600160a01b038d1684529091529020549190611c3e565b6000610a21338484611700565b6000546001600160a01b0316331461106c5760405162461bcd60e51b8152600401610a5590612b0f565b6002546001600160a01b0316156110d05760405162461bcd60e51b815260206004820152602260248201527f556e69737761705632506169722068617320616c7265616479206265656e2073604482015261195d60f21b6064820152608401610a55565b600160009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611123573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111479190612b8f565b6001600160a01b031663c9c6539630600160009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111cd9190612b8f565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561121a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061123e9190612b8f565b600280546001600160a01b0319166001600160a01b039290921691821790556000908152600860205260409020805460ff19166001179055565b6000546001600160a01b031633146112a25760405162461bcd60e51b8152600401610a5590612b0f565b600d80548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906112eb90831515815260200190565b60405180910390a150565b3360009081526006602052604081205460ff1661136b5760405162461bcd60e51b815260206004820152602d60248201527f41697264726f702063616e206f6e6c7920626520646f6e65206279206578636c60448201526c756465642066726f6d2066656560981b6064820152608401610a55565b8382146113cd5760405162461bcd60e51b815260206004820152602a60248201527f486f6c6465727320616e6420616d6f756e74206c656e677468206d757374206260448201526965207468652073616d6560b01b6064820152608401610a55565b8381101561144457611432338686848181106113eb576113eb612b79565b90506020020160208101906114009190612714565b85858581811061141257611412612b79565b90506020020135633b9aca006114289190612b5a565b6000806000611eae565b61143d600182612c97565b90506113cd565b5050505050565b6000546001600160a01b031633146114755760405162461bcd60e51b8152600401610a5590612b0f565b6001600160a01b0381166114da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a55565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461155f5760405162461bcd60e51b8152600401610a5590612b0f565b61156d81633b9aca00612b5a565b600e5550565b6000546001600160a01b0316331461159d5760405162461bcd60e51b8152600401610a5590612b0f565b601480546001600160a01b039485166001600160a01b031991821617909155601280549385169382169390931790925560138054919093169116179055565b6001600160a01b03831661163e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a55565b6001600160a01b03821661169f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a55565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166117645760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a55565b6001600160a01b0382166117c65760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a55565b600081116118285760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610a55565b6002546001600160a01b03166118805760405162461bcd60e51b815260206004820152601e60248201527f556e697377617056325061697220686173206e6f74206265656e2073657400006044820152606401610a55565b6001600160a01b038316600090815260066020526040812054819060ff161580156118c457506001600160a01b03841660009081526006602052604090205460ff16155b80156118de57506000546001600160a01b03868116911614155b80156118f857506000546001600160a01b03858116911614155b905060006119258461191f876001600160a01b031660009081526003602052604090205490565b90611c78565b90506119396000546001600160a01b031690565b6001600160a01b0316866001600160a01b03161415801561196857506000546001600160a01b03868116911614155b801561198257506015546001600160a01b03868116911614155b15611a2d576001600160a01b03861660009081526005602052604090205460ff161580156119c957506001600160a01b03851660009081526005602052604090205460ff16155b611a2d5760405162461bcd60e51b815260206004820152602f60248201527f626f747320617265206e6f7420616c6c6f77656420746f2073656c6c206f722060448201526e7472616e7366657220746f6b656e7360881b6064820152608401610a55565b6002546001600160a01b0387811691161480611a6157506001600160a01b03861660009081526007602052604090205460ff165b15611aeb57600e54841115611ac95760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610a55565b601154811115611aeb5760405162461bcd60e51b8152600401610a5590612caf565b6002546001600160a01b03878116911614801590611b1657506002546001600160a01b038681169116145b80611b5d57506001600160a01b03861660009081526007602052604090205460ff16158015611b5d57506001600160a01b03851660009081526007602052604090205460ff165b15611b6e5760019250611b6e6121a8565b6002546001600160a01b03878116911614801590611b9a57506002546001600160a01b03868116911614155b8015611bbf57506001600160a01b03861660009081526007602052604090205460ff16155b8015611be457506001600160a01b03851660009081526007602052604090205460ff16155b15611c2757600d5462010000900460ff16611c00576001611c03565b60005b9150601154811115611c275760405162461bcd60e51b8152600401610a5590612caf565b611c3686868685876001611eae565b505050505050565b60008184841115611c625760405162461bcd60e51b8152600401610a55919061267e565b506000611c6f8486612cf4565b95945050505050565b600080611c858385612c97565b905083811015611cd75760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610a55565b9392505050565b60005b82811015611d48576000848483818110611cfd57611cfd612b79565b9050602002016020810190611d129190612714565b6001600160a01b03166000908152600660205260409020805460ff19168415151790555080611d4081612d0b565b915050611ce1565b50505050565b60005b82811015611d48576000848483818110611d6d57611d6d612b79565b9050602002016020810190611d829190612714565b6001600160a01b03166000908152600860205260409020805460ff19168415151790555080611db081612d0b565b915050611d51565b60005b8251811015610b84576000838281518110611dd857611dd8612b79565b602002602001015190508215611e10576001600160a01b0381166000908152600560205260409020805460ff19166001179055611e31565b6001600160a01b0381166000908152600560205260409020805460ff191690555b5080611e3c81612d0b565b915050611dbb565b60005b82811015611d48576000848483818110611e6357611e63612b79565b9050602002016020810190611e789190612714565b6001600160a01b03166000908152600760205260409020805460ff19168415151790555080611ea681612d0b565b915050611e47565b600083611ebc576000611ed7565b601854611ed790606490611ed1908890612205565b90612287565b9050838015611ee35750825b15611f3857601954611efd90606490611ed1908890612205565b601a5490915015611f38576000611f1386610ce5565b90506010548110611f3657601a54611f3390606490611ed1908990612205565b91505b505b6000611f4486836122c9565b6001600160a01b038916600090815260036020526040902054909150611f6a90876122c9565b6001600160a01b03808a166000908152600360205260408082209390935590891681522054611f999082611c78565b6001600160a01b038816600090815260036020526040808220929092553081522054611fc59083611c78565b3060009081526003602090815260409182902092909255518781526001600160a01b0389811692908b16917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3821561219e57601f54604051633974d3b160e01b81526001600160a01b038a8116600483015290911690633974d3b190602401600060405180830381600087803b15801561206857600080fd5b505af1925050508015612079575060015b50601f54604051633974d3b160e01b81526001600160a01b03898116600483015290911690633974d3b190602401600060405180830381600087803b1580156120c157600080fd5b505af19250505080156120d2575060015b50601f546016546040516001624d3b8760e01b031981526001600160a01b039092169163ffb2c4799161210b9160040190815260200190565b6060604051808303816000875af1925050508015612146575060408051601f3d908101601f1916820190925261214391810190612d24565b60015b1561219e57601654604080518581526020810185905280820184905260608101929092525132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b5050505050505050565b306000908152600360205260409020548015610ce25760006121c982610ce5565b9050600f5481101580156121e05750600d5460ff16155b80156121f35750600d54610100900460ff165b15612201576122018261230b565b5050565b60008260000361221757506000610a25565b60006122238385612b5a565b9050826122308583612d52565b14611cd75760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a55565b6000611cd783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061246b565b6000611cd783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c3e565b600d805460ff1916600117905561232181612499565b601c54479060009061233b90606490611ed1908590612205565b9050600061235c6064611ed1601b600201548661220590919063ffffffff16565b9050600061237d6064611ed1601b600001548761220590919063ffffffff16565b9050600061239e6064611ed1601b600301548861220590919063ffffffff16565b6013546040519192506001600160a01b03169085156108fc029086906000818181858888f193505050501580156123d9573d6000803e3d6000fd5b506123e3836125eb565b6014546040516001600160a01b039091169083156108fc029084906000818181858888f1935050505015801561241d573d6000803e3d6000fd5b506012546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612458573d6000803e3d6000fd5b5050600d805460ff191690555050505050565b6000818361248c5760405162461bcd60e51b8152600401610a55919061267e565b506000611c6f8486612d52565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124ce576124ce612b79565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612527573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061254b9190612b8f565b8160018151811061255e5761255e612b79565b6001600160a01b03928316602091820292909201015260015461258491309116846115dc565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac947906125bd908590600090869030904290600401612d74565b600060405180830381600087803b1580156125d757600080fd5b505af1158015611c36573d6000803e3d6000fd5b601f546040516000916001600160a01b03169083908381818185875af1925050503d8060008114612638576040519150601f19603f3d011682016040523d82523d6000602084013e61263d565b606091505b505090508015612201576040518281527fb0cc2628d6d644cf6be9d8110e142297ac910d6d8026d795a99f272fd9ad60b19060200160405180910390a15050565b600060208083528351808285015260005b818110156126ab5785810183015185820160400152820161268f565b818111156126bd576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610ce257600080fd5b600080604083850312156126fb57600080fd5b8235612706816126d3565b946020939093013593505050565b60006020828403121561272657600080fd5b8135611cd7816126d3565b6000806000806080858703121561274757600080fd5b5050823594602084013594506040840135936060013592509050565b60008060006060848603121561277857600080fd5b8335612783816126d3565b92506020840135612793816126d3565b929592945050506040919091013590565b6000602082840312156127b657600080fd5b5035919050565b60008083601f8401126127cf57600080fd5b50813567ffffffffffffffff8111156127e757600080fd5b6020830191508360208260051b850101111561280257600080fd5b9250929050565b8035801515811461281957600080fd5b919050565b60008060006040848603121561283357600080fd5b833567ffffffffffffffff81111561284a57600080fd5b612856868287016127bd565b9094509250612869905060208501612809565b90509250925092565b60006020828403121561288457600080fd5b611cd782612809565b600080604083850312156128a057600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156128ee576128ee6128af565b604052919050565b600067ffffffffffffffff821115612910576129106128af565b5060051b60200190565b6000602080838503121561292d57600080fd5b823567ffffffffffffffff81111561294457600080fd5b8301601f8101851361295557600080fd5b8035612968612963826128f6565b6128c5565b81815260059190911b8201830190838101908783111561298757600080fd5b928401925b828410156129ae57833561299f816126d3565b8252928401929084019061298c565b979650505050505050565b6000806000606084860312156129ce57600080fd5b505081359360208301359350604090920135919050565b600080600080604085870312156129fb57600080fd5b843567ffffffffffffffff80821115612a1357600080fd5b612a1f888389016127bd565b90965094506020870135915080821115612a3857600080fd5b50612a45878288016127bd565b95989497509550505050565b60008060408385031215612a6457600080fd5b8235612a6f816126d3565b91506020830135612a7f816126d3565b809150509250929050565b600080600060608486031215612a9f57600080fd5b8335612aaa816126d3565b92506020840135612aba816126d3565b91506040840135612aca816126d3565b809150509250925092565b600181811c90821680612ae957607f821691505b602082108103612b0957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612b7457612b74612b44565b500290565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ba157600080fd5b8151611cd7816126d3565b600081518084526020808501945080840160005b83811015612be55781516001600160a01b031687529582019590820190600101612bc0565b509495945050505050565b828152604060208201526000612c096040830184612bac565b949350505050565b60006020808385031215612c2457600080fd5b825167ffffffffffffffff811115612c3b57600080fd5b8301601f81018513612c4c57600080fd5b8051612c5a612963826128f6565b81815260059190911b82018301908381019087831115612c7957600080fd5b928401925b828410156129ae57835182529284019290840190612c7e565b60008219821115612caa57612caa612b44565b500190565b60208082526025908201527f57616c6c65742063616e6e6f7420657863656564206d61782057616c6c6574206040820152641b1a5b5a5d60da1b606082015260800190565b600082821015612d0657612d06612b44565b500390565b600060018201612d1d57612d1d612b44565b5060010190565b600080600060608486031215612d3957600080fd5b8351925060208401519150604084015190509250925092565b600082612d6f57634e487b7160e01b600052601260045260246000fd5b500490565b85815284602082015260a060408201526000612d9360a0830186612bac565b6001600160a01b039490941660608301525060800152939250505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212202cd96cec508c1f2cbf70e51bd4c3484715b4d3924691b43be6565cb3bc9e1e6a64736f6c634300080d0033

Deployed Bytecode Sourcemap

9182:16102:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10411:48;;;;;;;;;;;;;;;;;;;160:25:1;;;148:2;133:18;10411:48:0;;;;;;;;12469:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;13302:161::-;;;;;;;;;;-1:-1:-1;13302:161:0;;;;;:::i;:::-;;:::i;:::-;;;1419:14:1;;1412:22;1394:41;;1382:2;1367:18;13302:161:0;1254:187:1;11557:22:0;;;;;;;;;;-1:-1:-1;11557:22:0;;;;;;;;;;;;;;;;1648:25:1;;;1704:2;1689:18;;1682:34;;;;1732:18;;;1725:34;1636:2;1621:18;11557:22:0;1446:319:1;15472:125:0;;;;;;;;;;-1:-1:-1;15472:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;15561:28:0;15537:4;15561:28;;;:22;:28;;;;;;;;;15472:125;17220:293;;;;;;;;;;-1:-1:-1;17220:293:0;;;;;:::i;:::-;;:::i;:::-;;9607:106;;;;;;;;;;-1:-1:-1;9607:106:0;;;;-1:-1:-1;;;;;9607:106:0;;;;;;-1:-1:-1;;;;;2602:32:1;;;2584:51;;2572:2;2557:18;9607:106:0;2412:229:1;12746:95:0;;;;;;;;;;-1:-1:-1;12826:7:0;;12746:95;;13471:313;;;;;;;;;;-1:-1:-1;13471:313:0;;;;;:::i;:::-;;:::i;14830:135::-;;;;;;;;;;-1:-1:-1;14830:135:0;;;;;:::i;:::-;;:::i;12655:83::-;;;;;;;;;;-1:-1:-1;12721:9:0;;12655:83;;12721:9;;;;3434:36:1;;3422:2;3407:18;12655:83:0;3292:184:1;13792:218:0;;;;;;;;;;-1:-1:-1;13792:218:0;;;;;:::i;:::-;;:::i;10827:70::-;;;;;;;;;;-1:-1:-1;10827:70:0;;;;-1:-1:-1;;;;;10827:70:0;;;14973:161;;;;;;;;;;-1:-1:-1;14973:161:0;;;;;:::i;:::-;;:::i;9720:41::-;;;;;;;;;;-1:-1:-1;9720:41:0;;;;-1:-1:-1;;;;;9720:41:0;;;10328:40;;;;;;;;;;-1:-1:-1;10328:40:0;;;;;;;;;;;19123:130;;;;;;;;;;-1:-1:-1;19123:130:0;;;;;:::i;:::-;;:::i;18992:123::-;;;;;;;;;;-1:-1:-1;18992:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;19080:27:0;19056:4;19080:27;;;:18;:27;;;;;;;;;18992:123;10471:50;;;;;;;;;;;;;;;;11586:32;;;;;;;;;;-1:-1:-1;11586:32:0;;;;;;;;;;;;;;;;;;;5152:25:1;;;5208:2;5193:18;;5186:34;;;;5236:18;;;5229:34;5294:2;5279:18;;5272:34;5139:3;5124:19;11586:32:0;4921:391:1;10600:51:0;;;;;;;;;;;;;;;;12849:119;;;;;;;;;;-1:-1:-1;12849:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;12942:18:0;12915:7;12942:18;;;:9;:18;;;;;;;12849:119;8171:148;;;;;;;;;;;;;:::i;15307:157::-;;;;;;;;;;-1:-1:-1;15307:157:0;;;;;:::i;:::-;;:::i;10663:74::-;;;;;;;;;;-1:-1:-1;10663:74:0;;;;-1:-1:-1;;;;;10663:74:0;;;15857:189;;;;;;;;;;-1:-1:-1;15857:189:0;;;;;:::i;:::-;;:::i;10904:70::-;;;;;;;;;;-1:-1:-1;10904:70:0;;;;-1:-1:-1;;;;;10904:70:0;;;17867:128;;;;;;;;;;-1:-1:-1;17867:128:0;;;;;:::i;:::-;;:::i;18712:272::-;;;;;;;;;;-1:-1:-1;18712:272:0;;;;;:::i;:::-;;:::i;21862:209::-;;;;;;;;;;-1:-1:-1;21862:209:0;;;;;:::i;:::-;;:::i;7957:79::-;;;;;;;;;;-1:-1:-1;7995:7:0;8022:6;-1:-1:-1;;;;;8022:6:0;7957:79;;10537:47;;;;;;;;;;;;;;;;12560:87;;;;;;;;;;;;;:::i;15142:157::-;;;;;;;;;;-1:-1:-1;15142:157:0;;;;;:::i;:::-;;:::i;16994:218::-;;;;;;;;;;-1:-1:-1;16994:218:0;;;;;:::i;:::-;;:::i;22835:166::-;;;;;;;;;;-1:-1:-1;22835:166:0;;;;;:::i;:::-;;:::i;18003:131::-;;;;;;;;;;-1:-1:-1;18003:131:0;;;;;:::i;:::-;;:::i;10981:39::-;;;;;;;;;;;;;;;;14018:269;;;;;;;;;;-1:-1:-1;14018:269:0;;;;;:::i;:::-;;:::i;10744:76::-;;;;;;;;;;-1:-1:-1;10744:76:0;;;;-1:-1:-1;;;;;10744:76:0;;;12976:167;;;;;;;;;;-1:-1:-1;12976:167:0;;;;;:::i;:::-;;:::i;16054:311::-;;;;;;;;;;;;;:::i;18496:171::-;;;;;;;;;;-1:-1:-1;18496:171:0;;;;;:::i;:::-;;:::i;14297:525::-;;;;;;;;;;-1:-1:-1;14297:525:0;;;;;:::i;:::-;;:::i;13151:143::-;;;;;;;;;;-1:-1:-1;13151:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13259:18:0;;;13232:7;13259:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13151:143;17750:109;;;;;;;;;;-1:-1:-1;17750:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;17835:16:0;17811:4;17835:16;;;:10;:16;;;;;;;;;17750:109;8327:244;;;;;;;;;;-1:-1:-1;8327:244:0;;;;;:::i;:::-;;:::i;16863:123::-;;;;;;;;;;-1:-1:-1;16863:123:0;;;;;:::i;:::-;;:::i;17521:221::-;;;;;;;;;;-1:-1:-1;17521:221:0;;;;;:::i;:::-;;:::i;12469:83::-;12506:13;12539:5;12532:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12469:83;:::o;13302:161::-;13377:4;13394:39;4381:10;13417:7;13426:6;13394:8;:39::i;:::-;-1:-1:-1;13451:4:0;13302:161;;;;;:::o;17220:293::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;;;;;;;;;17346:21;:32;;;;:12:::1;17389:30:::0;;;;17430:22;:34;17475:20;:30;17220:293::o;13471:313::-;13569:4;13586:36;13596:6;13604:9;13615:6;13586:9;:36::i;:::-;13633:121;13642:6;4381:10;13664:89;13702:6;13664:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13664:19:0;;;;;;:11;:19;;;;;;;;4381:10;13664:33;;;;;;;;;;:37;:89::i;:::-;13633:8;:121::i;:::-;-1:-1:-1;13772:4:0;13471:313;;;;;:::o;14830:135::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;14934:23:::1;:15:::0;14952:5:::1;14934:23;:::i;:::-;14915:16;:42:::0;-1:-1:-1;14830:135:0:o;13792:218::-;4381:10;13880:4;13929:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13929:34:0;;;;;;;;;;13880:4;;13897:83;;13920:7;;13929:50;;13968:10;13929:38;:50::i;14973:161::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;15085:41:::1;15098:9;;15109:16;15085:12;:41::i;:::-;14973:161:::0;;;:::o;19123:130::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;19212:17:::1;:33:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;19212:33:0;;::::1;::::0;;;::::1;::::0;;19123:130::o;8171:148::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;8278:1:::1;8262:6:::0;;8241:40:::1;::::0;-1:-1:-1;;;;;8262:6:0;;::::1;::::0;8241:40:::1;::::0;8278:1;;8241:40:::1;8309:1;8292:19:::0;;-1:-1:-1;;;;;;8292:19:0::1;::::0;;8171:148::o;15307:157::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;15417:39:::1;15434:9;;15445:10;15417:16;:39::i;15857:189::-:0;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;15965:13:::1;:30:::0;;;;16006:14:::1;:32:::0;15857:189::o;17867:128::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;17951:36:::1;17971:9;17982:4;17951:19;:36::i;:::-;17867:128:::0;:::o;18712:272::-;18814:16;;;18828:1;18814:16;;;;;;;;18772:4;;;;18814:16;18828:1;18814:16;;;;;;;;;;-1:-1:-1;18814:16:0;18790:40;;18859:4;18841;18846:1;18841:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;18841:23:0;;;:7;;;;;;;;;;:23;;;;18885:15;;:22;;;-1:-1:-1;;;18885:22:0;;;;:15;;;;;:20;;:22;;;;;18841:7;;18885:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18875:4;18880:1;18875:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;18875:32:0;;;:7;;;;;;;;;:32;18925:15;;:48;;-1:-1:-1;;;18925:48:0;;:15;;;:29;;:48;;18955:11;;18968:4;;18925:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18925:48:0;;;;;;;;;;;;:::i;:::-;18974:1;18925:51;;;;;;;;:::i;:::-;;;;;;;18918:58;;;18712:272;;;:::o;21862:209::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;21960:16:::1;;21948:8;:28:::0;21940:85:::1;;;::::0;-1:-1:-1;;;21940:85:0;;12497:2:1;21940:85:0::1;::::0;::::1;12479:21:1::0;12536:2;12516:18;;;12509:30;12575:34;12555:18;;;12548:62;-1:-1:-1;;;12626:18:1;;;12619:42;12678:19;;21940:85:0::1;12295:408:1::0;21940:85:0::1;22036:16;:27:::0;21862:209::o;12560:87::-;12599:13;12632:7;12625:14;;;;;:::i;15142:157::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;15247:44:::1;15266:9;;15277:13;15247:18;:44::i;16994:218::-:0;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;17099:7:::1;:23:::0;;;;17133:15;:25;17169:20;:35;16994:218::o;22835:166::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;22926:15:::1;:67:::0;;-1:-1:-1;;;;;;22926:67:0::1;-1:-1:-1::0;;;;;22926:67:0;;;::::1;::::0;;;::::1;::::0;;22835:166::o;18003:131::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;18089:37:::1;18109:9;18120:5;18089:19;:37::i;14018:269::-:0;14111:4;14128:129;4381:10;14151:7;14160:96;14199:15;14160:96;;;;;;;;;;;;;;;;;4381:10;14160:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14160:34:0;;;;;;;;;;;;:38;:96::i;12976:167::-;13054:4;13071:42;4381:10;13095:9;13106:6;13071:9;:42::i;16054:311::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;16116:13:::1;::::0;-1:-1:-1;;;;;16116:13:0::1;:27:::0;16108:73:::1;;;::::0;-1:-1:-1;;;16108:73:0;;12910:2:1;16108:73:0::1;::::0;::::1;12892:21:1::0;12949:2;12929:18;;;12922:30;12988:34;12968:18;;;12961:62;-1:-1:-1;;;13039:18:1;;;13032:32;13081:19;;16108:73:0::1;12708:398:1::0;16108:73:0::1;16226:15;;;;;;;;;-1:-1:-1::0;;;;;16226:15:0::1;-1:-1:-1::0;;;;;16226:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;16208:55:0::1;;16272:4;16279:15;;;;;;;;;-1:-1:-1::0;;;;;16279:15:0::1;-1:-1:-1::0;;;;;16279:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16208:94;::::0;-1:-1:-1;;;;;;16208:94:0::1;::::0;;;;;;-1:-1:-1;;;;;13341:15:1;;;16208:94:0::1;::::0;::::1;13323:34:1::0;13393:15;;13373:18;;;13366:43;13258:18;;16208:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16192:13;:110:::0;;-1:-1:-1;;;;;;16192:110:0::1;-1:-1:-1::0;;;;;16192:110:0;;;::::1;::::0;;::::1;::::0;;-1:-1:-1;16313:37:0;;;:22:::1;:37;::::0;;;;:44;;-1:-1:-1;;16313:44:0::1;-1:-1:-1::0;16313:44:0::1;::::0;;16054:311::o;18496:171::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;18573:21:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;18573:32:0;;::::1;;::::0;;18621:38:::1;::::0;::::1;::::0;::::1;::::0;18597:8;1419:14:1;1412:22;1394:41;;1382:2;1367:18;;1254:187;18621:38:0::1;;;;;;;;18496:171:::0;:::o;14297:525::-;4381:10;14394:16;14433:32;;;:18;:32;;;;;;;;14425:90;;;;-1:-1:-1;;;14425:90:0;;13622:2:1;14425:90:0;;;13604:21:1;13661:2;13641:18;;;13634:30;13700:34;13680:18;;;13673:62;-1:-1:-1;;;13751:18:1;;;13744:43;13804:19;;14425:90:0;13420:409:1;14425:90:0;14534:35;;;14526:90;;;;-1:-1:-1;;;14526:90:0;;14036:2:1;14526:90:0;;;14018:21:1;14075:2;14055:18;;;14048:30;14114:34;14094:18;;;14087:62;-1:-1:-1;;;14165:18:1;;;14158:40;14215:19;;14526:90:0;13834:406:1;14526:90:0;14633:28;;;14627:188;;;14677:98;4381:10;14706;;14717:8;14706:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;14728:7;;14736:8;14728:17;;;;;;;:::i;:::-;;;;;;;14748:5;14728:25;;;;:::i;:::-;14755:5;14762;14769;14677:14;:98::i;:::-;14790:13;14802:1;14790:13;;:::i;:::-;;;14627:188;;;14383:439;14297:525;;;;:::o;8327:244::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8416:22:0;::::1;8408:73;;;::::0;-1:-1:-1;;;8408:73:0;;14580:2:1;8408:73:0::1;::::0;::::1;14562:21:1::0;14619:2;14599:18;;;14592:30;14658:34;14638:18;;;14631:62;-1:-1:-1;;;14709:18:1;;;14702:36;14755:19;;8408:73:0::1;14378:402:1::0;8408:73:0::1;8518:6;::::0;;8497:38:::1;::::0;-1:-1:-1;;;;;8497:38:0;;::::1;::::0;8518:6;::::1;::::0;8497:38:::1;::::0;::::1;8546:6;:17:::0;;-1:-1:-1;;;;;;8546:17:0::1;-1:-1:-1::0;;;;;8546:17:0;;;::::1;::::0;;;::::1;::::0;;8327:244::o;16863:123::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;16958:20:::1;:12:::0;16973:5:::1;16958:20;:::i;:::-;16942:13;:36:::0;-1:-1:-1;16863:123:0:o;17521:221::-;8084:6;;-1:-1:-1;;;;;8084:6:0;4381:10;8084:22;8076:67;;;;-1:-1:-1;;;8076:67:0;;;;;;;:::i;:::-;17636:10:::1;:20:::0;;-1:-1:-1;;;;;17636:20:0;;::::1;-1:-1:-1::0;;;;;;17636:20:0;;::::1;;::::0;;;17667:14:::1;:24:::0;;;;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;17702:16:::1;:32:::0;;;;;::::1;::::0;::::1;;::::0;;17521:221::o;19261:337::-;-1:-1:-1;;;;;19354:19:0;;19346:68;;;;-1:-1:-1;;;19346:68:0;;14987:2:1;19346:68:0;;;14969:21:1;15026:2;15006:18;;;14999:30;15065:34;15045:18;;;15038:62;-1:-1:-1;;;15116:18:1;;;15109:34;15160:19;;19346:68:0;14785:400:1;19346:68:0;-1:-1:-1;;;;;19433:21:0;;19425:68;;;;-1:-1:-1;;;19425:68:0;;15392:2:1;19425:68:0;;;15374:21:1;15431:2;15411:18;;;15404:30;15470:34;15450:18;;;15443:62;-1:-1:-1;;;15521:18:1;;;15514:32;15563:19;;19425:68:0;15190:398:1;19425:68:0;-1:-1:-1;;;;;19506:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19558:32;;160:25:1;;;19558:32:0;;133:18:1;19558:32:0;;;;;;;19261:337;;;:::o;19606:1796::-;-1:-1:-1;;;;;19694:18:0;;19686:68;;;;-1:-1:-1;;;19686:68:0;;15795:2:1;19686:68:0;;;15777:21:1;15834:2;15814:18;;;15807:30;15873:34;15853:18;;;15846:62;-1:-1:-1;;;15924:18:1;;;15917:35;15969:19;;19686:68:0;15593:401:1;19686:68:0;-1:-1:-1;;;;;19773:16:0;;19765:64;;;;-1:-1:-1;;;19765:64:0;;16201:2:1;19765:64:0;;;16183:21:1;16240:2;16220:18;;;16213:30;16279:34;16259:18;;;16252:62;-1:-1:-1;;;16330:18:1;;;16323:33;16373:19;;19765:64:0;15999:399:1;19765:64:0;19857:1;19848:6;:10;19840:64;;;;-1:-1:-1;;;19840:64:0;;16605:2:1;19840:64:0;;;16587:21:1;16644:2;16624:18;;;16617:30;16683:34;16663:18;;;16656:62;-1:-1:-1;;;16734:18:1;;;16727:39;16783:19;;19840:64:0;16403:405:1;19840:64:0;19923:13;;-1:-1:-1;;;;;19923:13:0;19915:69;;;;-1:-1:-1;;;19915:69:0;;17015:2:1;19915:69:0;;;16997:21:1;17054:2;17034:18;;;17027:30;17093:32;17073:18;;;17066:60;17143:18;;19915:69:0;16813:354:1;19915:69:0;-1:-1:-1;;;;;20042:24:0;;19995:11;20042:24;;;:18;:24;;;;;;19995:11;;20042:24;;20041:25;:52;;;;-1:-1:-1;;;;;;20071:22:0;;;;;;:18;:22;;;;;;;;20070:23;20041:52;:71;;;;-1:-1:-1;7995:7:0;8022:6;-1:-1:-1;;;;;20097:15:0;;;8022:6;;20097:15;;20041:71;:88;;;;-1:-1:-1;7995:7:0;8022:6;-1:-1:-1;;;;;20116:13:0;;;8022:6;;20116:13;;20041:88;20025:104;;20140:21;20164:25;20182:6;20164:13;20174:2;-1:-1:-1;;;;;12942:18:0;12915:7;12942:18;;;:9;:18;;;;;;;12849:119;20164:13;:17;;:25::i;:::-;20140:49;;20300:7;7995;8022:6;-1:-1:-1;;;;;8022:6:0;;7957:79;20300:7;-1:-1:-1;;;;;20292:15:0;:4;-1:-1:-1;;;;;20292:15:0;;;:32;;;;-1:-1:-1;7995:7:0;8022:6;-1:-1:-1;;;;;20311:13:0;;;8022:6;;20311:13;;20292:32;:52;;;;-1:-1:-1;20334:10:0;;-1:-1:-1;;;;;20328:16:0;;;20334:10;;20328:16;;20292:52;20289:180;;;-1:-1:-1;;;;;20370:16:0;;;;;;:10;:16;;;;;;;;20369:17;:36;;;;-1:-1:-1;;;;;;20391:14:0;;;;;;:10;:14;;;;;;;;20390:15;20369:36;20361:96;;;;-1:-1:-1;;;20361:96:0;;17374:2:1;20361:96:0;;;17356:21:1;17413:2;17393:18;;;17386:30;17452:34;17432:18;;;17425:62;-1:-1:-1;;;17503:18:1;;;17496:45;17558:19;;20361:96:0;17172:411:1;20361:96:0;20490:13;;-1:-1:-1;;;;;20482:21:0;;;20490:13;;20482:21;;:47;;-1:-1:-1;;;;;;20507:22:0;;;;;;:16;:22;;;;;;;;20482:47;20479:253;;;20564:13;;20554:6;:23;;20546:76;;;;-1:-1:-1;;;20546:76:0;;17790:2:1;20546:76:0;;;17772:21:1;17829:2;17809:18;;;17802:30;17868:34;17848:18;;;17841:62;-1:-1:-1;;;17919:18:1;;;17912:38;17967:19;;20546:76:0;17588:404:1;20546:76:0;20662:16;;20645:13;:33;;20637:83;;;;-1:-1:-1;;;20637:83:0;;;;;;;:::i;:::-;20753:13;;-1:-1:-1;;;;;20745:21:0;;;20753:13;;20745:21;;;;:44;;-1:-1:-1;20776:13:0;;-1:-1:-1;;;;;20770:19:0;;;20776:13;;20770:19;20745:44;:97;;;-1:-1:-1;;;;;;20795:22:0;;;;;;:16;:22;;;;;;;;20794:23;:47;;;;-1:-1:-1;;;;;;20821:20:0;;;;;;:16;:20;;;;;;;;20794:47;20742:307;;;20938:4;20929:13;;20957:15;:13;:15::i;:::-;21070:13;;-1:-1:-1;;;;;21062:21:0;;;21070:13;;21062:21;;;;:44;;-1:-1:-1;21093:13:0;;-1:-1:-1;;;;;21087:19:0;;;21093:13;;21087:19;;21062:44;:71;;;;-1:-1:-1;;;;;;21111:22:0;;;;;;:16;:22;;;;;;;;21110:23;21062:71;:96;;;;-1:-1:-1;;;;;;21138:20:0;;;;;;:16;:20;;;;;;;;21137:21;21062:96;21059:269;;;21186:17;;;;;;;:32;;21214:4;21186:32;;;21206:5;21186:32;21175:43;;21258:16;;21241:13;:33;;21233:83;;;;-1:-1:-1;;;21233:83:0;;;;;;;:::i;:::-;21338:56;21353:4;21359:2;21363:6;21371:8;21381:6;21389:4;21338:14;:56::i;:::-;19675:1727;;;19606:1796;;;:::o;2773:192::-;2859:7;2895:12;2887:6;;;;2879:29;;;;-1:-1:-1;;;2879:29:0;;;;;;;;:::i;:::-;-1:-1:-1;2919:9:0;2931:5;2935:1;2931;:5;:::i;:::-;2919:17;2773:192;-1:-1:-1;;;;;2773:192:0:o;2440:181::-;2498:7;;2530:5;2534:1;2530;:5;:::i;:::-;2518:17;;2559:1;2554;:6;;2546:46;;;;-1:-1:-1;;;2546:46:0;;18735:2:1;2546:46:0;;;18717:21:1;18774:2;18754:18;;;18747:30;18813:29;18793:18;;;18786:57;18860:18;;2546:46:0;18533:351:1;2546:46:0;2612:1;2440:181;-1:-1:-1;;;2440:181:0:o;16619:236::-;16706:9;16701:147;16721:20;;;16701:147;;;16763:12;16778:9;;16788:1;16778:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;16805:24:0;;;;;:18;:24;;;;;:31;;-1:-1:-1;;16805:31:0;;;;;;;-1:-1:-1;16743:3:0;;;;:::i;:::-;;;;16701:147;;;;16619:236;;;:::o;15605:244::-;15696:9;15691:151;15711:20;;;15691:151;;;15753:12;15768:9;;15778:1;15768:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;15795:28:0;;;;;:22;:28;;;;;:35;;-1:-1:-1;;15795:35:0;;;;;;;-1:-1:-1;15733:3:0;;;;:::i;:::-;;;;15691:151;;18142:346;18237:9;18232:249;18256:9;:16;18252:1;:20;18232:249;;;18294:12;18309:9;18319:1;18309:12;;;;;;;;:::i;:::-;;;;;;;18294:27;;18339:7;18336:134;;;-1:-1:-1;;;;;18367:16:0;;;;;;:10;:16;;;;;:23;;-1:-1:-1;;18367:23:0;18386:4;18367:23;;;18336:134;;;-1:-1:-1;;;;;18438:16:0;;;;;;:10;:16;;;;;18431:23;;-1:-1:-1;;18431:23:0;;;18336:134;-1:-1:-1;18274:3:0;;;;:::i;:::-;;;;18232:249;;16371:240;16464:9;16459:145;16479:20;;;16459:145;;;16521:12;16536:9;;16546:1;16536:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;16563:22:0;;;;;:16;:22;;;;;:29;;-1:-1:-1;;16563:29:0;;;;;;;-1:-1:-1;16501:3:0;;;;:::i;:::-;;;;16459:145;;23908:1373;24054:17;24074:8;:50;;24123:1;24074:50;;;24096:7;:14;24085:35;;24116:3;;24085:26;;:6;;:10;:26::i;:::-;:30;;:35::i;:::-;24054:70;;24138:8;:18;;;;;24150:6;24138:18;24135:355;;;24196:15;;24185:36;;24217:3;;24185:27;;:6;;:10;:27::i;:36::-;24239:20;;24173:48;;-1:-1:-1;24239:24:0;24236:243;;24284:13;24300:19;24312:6;24300:11;:19::i;:::-;24284:35;;24353:13;;24341:8;:25;24338:126;;24414:20;;24403:41;;24440:3;;24403:32;;:6;;:10;:32::i;:41::-;24391:53;;24338:126;24265:214;24236:243;24500:22;24525:21;:6;24536:9;24525:10;:21::i;:::-;-1:-1:-1;;;;;24577:17:0;;;;;;:9;:17;;;;;;24500:46;;-1:-1:-1;24577:29:0;;24599:6;24577:21;:29::i;:::-;-1:-1:-1;;;;;24557:17:0;;;;;;;:9;:17;;;;;;:49;;;;24640:20;;;;;;;:40;;24665:14;24640:24;:40::i;:::-;-1:-1:-1;;;;;24617:20:0;;;;;;:9;:20;;;;;;:63;;;;24736:4;24718:24;;;;:39;;24747:9;24718:28;:39::i;:::-;24709:4;24691:24;;;;:9;:24;;;;;;;;;:66;;;;24773:35;160:25:1;;;-1:-1:-1;;;;;24773:35:0;;;;;;;;;;133:18:1;24773:35:0;;;;;;;24824:17;24821:453;;;24862:15;;:39;;-1:-1:-1;;;24862:39:0;;-1:-1:-1;;;;;2602:32:1;;;24862:39:0;;;2584:51:1;24862:15:0;;;;:31;;2557:18:1;;24862:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24858:54;24930:15;;:42;;-1:-1:-1;;;24930:42:0;;-1:-1:-1;;;;;2602:32:1;;;24930:42:0;;;2584:51:1;24930:15:0;;;;:31;;2557:18:1;;24930:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24926:57;25001:15;;25025:16;;25001:41;;-1:-1:-1;;;;;;25001:41:0;;-1:-1:-1;;;;;25001:15:0;;;;:23;;:41;;;;160:25:1;;;148:2;133:18;;14:177;25001:41:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25001:41:0;;;;;;;;-1:-1:-1;;25001:41:0;;;;;;;;;;;;:::i;:::-;;;24997:266;;;25211:16;;25140:99;;;5152:25:1;;;5208:2;5193:18;;5186:34;;;5236:18;;;5229:34;;;5294:2;5279:18;;5272:34;;;;25140:99:0;25229:9;;25205:4;;25140:99;;;;;5139:3:1;25140:99:0;;;25043:212;;;24997:266;24043:1238;;23908:1373;;;;;;:::o;21410:444::-;21503:4;21454:28;12942:18;;;:9;:18;;;;;;21523:24;;21520:327;;21564:13;21580:33;21592:20;21580:11;:33::i;:::-;21564:49;;21644:14;;21632:8;:26;;:47;;;;-1:-1:-1;21663:16:0;;;;21662:17;21632:47;:72;;;;-1:-1:-1;21683:21:0;;;;;;;21632:72;21628:208;;;21782:38;21799:20;21782:16;:38::i;:::-;21549:298;21443:411;21410:444::o;2973:471::-;3031:7;3276:1;3281;3276:6;3272:47;;-1:-1:-1;3306:1:0;3299:8;;3272:47;3331:9;3343:5;3347:1;3343;:5;:::i;:::-;3331:17;-1:-1:-1;3376:1:0;3367:5;3371:1;3331:17;3367:5;:::i;:::-;:10;3359:56;;;;-1:-1:-1;;;3359:56:0;;19764:2:1;3359:56:0;;;19746:21:1;19803:2;19783:18;;;19776:30;19842:34;19822:18;;;19815:62;-1:-1:-1;;;19893:18:1;;;19886:31;19934:19;;3359:56:0;19562:397:1;3452:132:0;3510:7;3537:39;3541:1;3544;3537:39;;;;;;;;;;;;;;;;;:3;:39::i;2629:136::-;2687:7;2714:43;2718:1;2721;2714:43;;;;;;;;;;;;;;;;;:3;:43::i;22079:748::-;9523:16;:23;;-1:-1:-1;;9523:23:0;9542:4;9523:23;;;22166:38:::1;22183:20:::0;22166:16:::1;:38::i;:::-;22318:22:::0;;22241:21:::1;::::0;22215:23:::1;::::0;22298:52:::1;::::0;22346:3:::1;::::0;22298:43:::1;::::0;22241:21;;22298:19:::1;:43::i;:52::-;22273:77;;22361:21;22385:51;22432:3;22385:42;22405:12;:21;;;22385:15;:19;;:42;;;;:::i;:51::-;22361:75;;22447:20;22470:50;22516:3;22470:41;22490:12;:20;;;22470:15;:19;;:41;;;;:::i;:50::-;22447:73;;22531:20;22554:50;22600:3;22554:41;22574:12;:20;;;22554:15;:19;;:41;;;;:::i;:50::-;22623:16;::::0;22615:50:::1;::::0;22531:73;;-1:-1:-1;;;;;;22623:16:0::1;::::0;22615:50;::::1;;;::::0;22650:14;;22623:16:::1;22615:50:::0;22623:16;22615:50;22650:14;22623:16;22615:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;22676:31;22693:13;22676:16;:31::i;:::-;22726:10;::::0;22718:42:::1;::::0;-1:-1:-1;;;;;22726:10:0;;::::1;::::0;22718:42;::::1;;;::::0;22747:12;;22726:10:::1;22718:42:::0;22726:10;22718:42;22747:12;22726:10;22718:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;22779:14:0::1;::::0;22771:46:::1;::::0;-1:-1:-1;;;;;22779:14:0;;::::1;::::0;22771:46;::::1;;;::::0;22804:12;;22779:14:::1;22771:46:::0;22779:14;22771:46;22804:12;22779:14;22771:46;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;9569:16:0;:24;;-1:-1:-1;;9569:24:0;;;-1:-1:-1;;;;;22079:748:0:o;3592:278::-;3678:7;3713:12;3706:5;3698:28;;;;-1:-1:-1;;;3698:28:0;;;;;;;;:::i;:::-;-1:-1:-1;3737:9:0;3749:5;3753:1;3749;:5;:::i;23242:585::-;23392:16;;;23406:1;23392:16;;;;;;;;23368:21;;23392:16;;;;;;;;;;-1:-1:-1;23392:16:0;23368:40;;23437:4;23419;23424:1;23419:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;23419:23:0;;;:7;;;;;;;;;;:23;;;;23463:15;;:22;;;-1:-1:-1;;;23463:22:0;;;;:15;;;;;:20;;:22;;;;;23419:7;;23463:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;23453:4;23458:1;23453:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;23453:32:0;;;:7;;;;;;;;;:32;23528:15;;23496:62;;23513:4;;23528:15;23546:11;23496:8;:62::i;:::-;23595:15;;:224;;-1:-1:-1;;;23595:224:0;;-1:-1:-1;;;;;23595:15:0;;;;:66;;:224;;23676:11;;23595:15;;23746:4;;23773;;23793:15;;23595:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23009:221;23099:15;;23091:52;;23074:12;;-1:-1:-1;;;;;23099:15:0;;23129:9;;23074:12;23091:52;23074:12;23091:52;23129:9;23099:15;23091:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23073:70;;;23158:7;23154:69;;;23187:24;;160:25:1;;;23187:24:0;;148:2:1;133:18;23187:24:0;;;;;;;23062:168;23009:221;:::o;196:597:1:-;308:4;337:2;366;355:9;348:21;398:6;392:13;441:6;436:2;425:9;421:18;414:34;466:1;476:140;490:6;487:1;484:13;476:140;;;585:14;;;581:23;;575:30;551:17;;;570:2;547:26;540:66;505:10;;476:140;;;634:6;631:1;628:13;625:91;;;704:1;699:2;690:6;679:9;675:22;671:31;664:42;625:91;-1:-1:-1;777:2:1;756:15;-1:-1:-1;;752:29:1;737:45;;;;784:2;733:54;;196:597;-1:-1:-1;;;196:597:1:o;798:131::-;-1:-1:-1;;;;;873:31:1;;863:42;;853:70;;919:1;916;909:12;934:315;1002:6;1010;1063:2;1051:9;1042:7;1038:23;1034:32;1031:52;;;1079:1;1076;1069:12;1031:52;1118:9;1105:23;1137:31;1162:5;1137:31;:::i;:::-;1187:5;1239:2;1224:18;;;;1211:32;;-1:-1:-1;;;934:315:1:o;1770:247::-;1829:6;1882:2;1870:9;1861:7;1857:23;1853:32;1850:52;;;1898:1;1895;1888:12;1850:52;1937:9;1924:23;1956:31;1981:5;1956:31;:::i;2022:385::-;2108:6;2116;2124;2132;2185:3;2173:9;2164:7;2160:23;2156:33;2153:53;;;2202:1;2199;2192:12;2153:53;-1:-1:-1;;2225:23:1;;;2295:2;2280:18;;2267:32;;-1:-1:-1;2346:2:1;2331:18;;2318:32;;2397:2;2382:18;2369:32;;-1:-1:-1;2022:385:1;-1:-1:-1;2022:385:1:o;2646:456::-;2723:6;2731;2739;2792:2;2780:9;2771:7;2767:23;2763:32;2760:52;;;2808:1;2805;2798:12;2760:52;2847:9;2834:23;2866:31;2891:5;2866:31;:::i;:::-;2916:5;-1:-1:-1;2973:2:1;2958:18;;2945:32;2986:33;2945:32;2986:33;:::i;:::-;2646:456;;3038:7;;-1:-1:-1;;;3092:2:1;3077:18;;;;3064:32;;2646:456::o;3107:180::-;3166:6;3219:2;3207:9;3198:7;3194:23;3190:32;3187:52;;;3235:1;3232;3225:12;3187:52;-1:-1:-1;3258:23:1;;3107:180;-1:-1:-1;3107:180:1:o;3689:367::-;3752:8;3762:6;3816:3;3809:4;3801:6;3797:17;3793:27;3783:55;;3834:1;3831;3824:12;3783:55;-1:-1:-1;3857:20:1;;3900:18;3889:30;;3886:50;;;3932:1;3929;3922:12;3886:50;3969:4;3961:6;3957:17;3945:29;;4029:3;4022:4;4012:6;4009:1;4005:14;3997:6;3993:27;3989:38;3986:47;3983:67;;;4046:1;4043;4036:12;3983:67;3689:367;;;;;:::o;4061:160::-;4126:20;;4182:13;;4175:21;4165:32;;4155:60;;4211:1;4208;4201:12;4155:60;4061:160;;;:::o;4226:505::-;4318:6;4326;4334;4387:2;4375:9;4366:7;4362:23;4358:32;4355:52;;;4403:1;4400;4393:12;4355:52;4443:9;4430:23;4476:18;4468:6;4465:30;4462:50;;;4508:1;4505;4498:12;4462:50;4547:70;4609:7;4600:6;4589:9;4585:22;4547:70;:::i;:::-;4636:8;;-1:-1:-1;4521:96:1;-1:-1:-1;4690:35:1;;-1:-1:-1;4721:2:1;4706:18;;4690:35;:::i;:::-;4680:45;;4226:505;;;;;:::o;4736:180::-;4792:6;4845:2;4833:9;4824:7;4820:23;4816:32;4813:52;;;4861:1;4858;4851:12;4813:52;4884:26;4900:9;4884:26;:::i;5317:248::-;5385:6;5393;5446:2;5434:9;5425:7;5421:23;5417:32;5414:52;;;5462:1;5459;5452:12;5414:52;-1:-1:-1;;5485:23:1;;;5555:2;5540:18;;;5527:32;;-1:-1:-1;5317:248:1:o;5570:127::-;5631:10;5626:3;5622:20;5619:1;5612:31;5662:4;5659:1;5652:15;5686:4;5683:1;5676:15;5702:275;5773:2;5767:9;5838:2;5819:13;;-1:-1:-1;;5815:27:1;5803:40;;5873:18;5858:34;;5894:22;;;5855:62;5852:88;;;5920:18;;:::i;:::-;5956:2;5949:22;5702:275;;-1:-1:-1;5702:275:1:o;5982:183::-;6042:4;6075:18;6067:6;6064:30;6061:56;;;6097:18;;:::i;:::-;-1:-1:-1;6142:1:1;6138:14;6154:4;6134:25;;5982:183::o;6170:966::-;6254:6;6285:2;6328;6316:9;6307:7;6303:23;6299:32;6296:52;;;6344:1;6341;6334:12;6296:52;6384:9;6371:23;6417:18;6409:6;6406:30;6403:50;;;6449:1;6446;6439:12;6403:50;6472:22;;6525:4;6517:13;;6513:27;-1:-1:-1;6503:55:1;;6554:1;6551;6544:12;6503:55;6590:2;6577:16;6613:60;6629:43;6669:2;6629:43;:::i;:::-;6613:60;:::i;:::-;6707:15;;;6789:1;6785:10;;;;6777:19;;6773:28;;;6738:12;;;;6813:19;;;6810:39;;;6845:1;6842;6835:12;6810:39;6869:11;;;;6889:217;6905:6;6900:3;6897:15;6889:217;;;6985:3;6972:17;7002:31;7027:5;7002:31;:::i;:::-;7046:18;;6922:12;;;;7084;;;;6889:217;;;7125:5;6170:966;-1:-1:-1;;;;;;;6170:966:1:o;7141:316::-;7218:6;7226;7234;7287:2;7275:9;7266:7;7262:23;7258:32;7255:52;;;7303:1;7300;7293:12;7255:52;-1:-1:-1;;7326:23:1;;;7396:2;7381:18;;7368:32;;-1:-1:-1;7447:2:1;7432:18;;;7419:32;;7141:316;-1:-1:-1;7141:316:1:o;7462:773::-;7584:6;7592;7600;7608;7661:2;7649:9;7640:7;7636:23;7632:32;7629:52;;;7677:1;7674;7667:12;7629:52;7717:9;7704:23;7746:18;7787:2;7779:6;7776:14;7773:34;;;7803:1;7800;7793:12;7773:34;7842:70;7904:7;7895:6;7884:9;7880:22;7842:70;:::i;:::-;7931:8;;-1:-1:-1;7816:96:1;-1:-1:-1;8019:2:1;8004:18;;7991:32;;-1:-1:-1;8035:16:1;;;8032:36;;;8064:1;8061;8054:12;8032:36;;8103:72;8167:7;8156:8;8145:9;8141:24;8103:72;:::i;:::-;7462:773;;;;-1:-1:-1;8194:8:1;-1:-1:-1;;;;7462:773:1:o;8240:388::-;8308:6;8316;8369:2;8357:9;8348:7;8344:23;8340:32;8337:52;;;8385:1;8382;8375:12;8337:52;8424:9;8411:23;8443:31;8468:5;8443:31;:::i;:::-;8493:5;-1:-1:-1;8550:2:1;8535:18;;8522:32;8563:33;8522:32;8563:33;:::i;:::-;8615:7;8605:17;;;8240:388;;;;;:::o;8633:529::-;8710:6;8718;8726;8779:2;8767:9;8758:7;8754:23;8750:32;8747:52;;;8795:1;8792;8785:12;8747:52;8834:9;8821:23;8853:31;8878:5;8853:31;:::i;:::-;8903:5;-1:-1:-1;8960:2:1;8945:18;;8932:32;8973:33;8932:32;8973:33;:::i;:::-;9025:7;-1:-1:-1;9084:2:1;9069:18;;9056:32;9097:33;9056:32;9097:33;:::i;:::-;9149:7;9139:17;;;8633:529;;;;;:::o;9167:380::-;9246:1;9242:12;;;;9289;;;9310:61;;9364:4;9356:6;9352:17;9342:27;;9310:61;9417:2;9409:6;9406:14;9386:18;9383:38;9380:161;;9463:10;9458:3;9454:20;9451:1;9444:31;9498:4;9495:1;9488:15;9526:4;9523:1;9516:15;9380:161;;9167:380;;;:::o;9552:356::-;9754:2;9736:21;;;9773:18;;;9766:30;9832:34;9827:2;9812:18;;9805:62;9899:2;9884:18;;9552:356::o;9913:127::-;9974:10;9969:3;9965:20;9962:1;9955:31;10005:4;10002:1;9995:15;10029:4;10026:1;10019:15;10045:168;10085:7;10151:1;10147;10143:6;10139:14;10136:1;10133:21;10128:1;10121:9;10114:17;10110:45;10107:71;;;10158:18;;:::i;:::-;-1:-1:-1;10198:9:1;;10045:168::o;10218:127::-;10279:10;10274:3;10270:20;10267:1;10260:31;10310:4;10307:1;10300:15;10334:4;10331:1;10324:15;10350:251;10420:6;10473:2;10461:9;10452:7;10448:23;10444:32;10441:52;;;10489:1;10486;10479:12;10441:52;10521:9;10515:16;10540:31;10565:5;10540:31;:::i;10606:461::-;10659:3;10697:5;10691:12;10724:6;10719:3;10712:19;10750:4;10779:2;10774:3;10770:12;10763:19;;10816:2;10809:5;10805:14;10837:1;10847:195;10861:6;10858:1;10855:13;10847:195;;;10926:13;;-1:-1:-1;;;;;10922:39:1;10910:52;;10982:12;;;;11017:15;;;;10958:1;10876:9;10847:195;;;-1:-1:-1;11058:3:1;;10606:461;-1:-1:-1;;;;;10606:461:1:o;11072:332::-;11279:6;11268:9;11261:25;11322:2;11317;11306:9;11302:18;11295:30;11242:4;11342:56;11394:2;11383:9;11379:18;11371:6;11342:56;:::i;:::-;11334:64;11072:332;-1:-1:-1;;;;11072:332:1:o;11409:881::-;11504:6;11535:2;11578;11566:9;11557:7;11553:23;11549:32;11546:52;;;11594:1;11591;11584:12;11546:52;11627:9;11621:16;11660:18;11652:6;11649:30;11646:50;;;11692:1;11689;11682:12;11646:50;11715:22;;11768:4;11760:13;;11756:27;-1:-1:-1;11746:55:1;;11797:1;11794;11787:12;11746:55;11826:2;11820:9;11849:60;11865:43;11905:2;11865:43;:::i;11849:60::-;11943:15;;;12025:1;12021:10;;;;12013:19;;12009:28;;;11974:12;;;;12049:19;;;12046:39;;;12081:1;12078;12071:12;12046:39;12105:11;;;;12125:135;12141:6;12136:3;12133:15;12125:135;;;12207:10;;12195:23;;12158:12;;;;12238;;;;12125:135;;14245:128;14285:3;14316:1;14312:6;14309:1;14306:13;14303:39;;;14322:18;;:::i;:::-;-1:-1:-1;14358:9:1;;14245:128::o;17997:401::-;18199:2;18181:21;;;18238:2;18218:18;;;18211:30;18277:34;18272:2;18257:18;;18250:62;-1:-1:-1;;;18343:2:1;18328:18;;18321:35;18388:3;18373:19;;17997:401::o;18403:125::-;18443:4;18471:1;18468;18465:8;18462:34;;;18476:18;;:::i;:::-;-1:-1:-1;18513:9:1;;18403:125::o;18889:135::-;18928:3;18949:17;;;18946:43;;18969:18;;:::i;:::-;-1:-1:-1;19016:1:1;19005:13;;18889:135::o;19029:306::-;19117:6;19125;19133;19186:2;19174:9;19165:7;19161:23;19157:32;19154:52;;;19202:1;19199;19192:12;19154:52;19231:9;19225:16;19215:26;;19281:2;19270:9;19266:18;19260:25;19250:35;;19325:2;19314:9;19310:18;19304:25;19294:35;;19029:306;;;;;:::o;19340:217::-;19380:1;19406;19396:132;;19450:10;19445:3;19441:20;19438:1;19431:31;19485:4;19482:1;19475:15;19513:4;19510:1;19503:15;19396:132;-1:-1:-1;19542:9:1;;19340:217::o;19964:582::-;20263:6;20252:9;20245:25;20306:6;20301:2;20290:9;20286:18;20279:34;20349:3;20344:2;20333:9;20329:18;20322:31;20226:4;20370:57;20422:3;20411:9;20407:19;20399:6;20370:57;:::i;:::-;-1:-1:-1;;;;;20463:32:1;;;;20458:2;20443:18;;20436:60;-1:-1:-1;20527:3:1;20512:19;20505:35;20362:65;19964:582;-1:-1:-1;;;19964:582:1:o

Swarm Source

ipfs://2cd96cec508c1f2cbf70e51bd4c3484715b4d3924691b43be6565cb3bc9e1e6a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.