ETH Price: $2,359.83 (+0.30%)

Token

Excryon Token (EXCRYON)
 

Overview

Max Total Supply

1,000,000,000 EXCRYON

Holders

126

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
banditen.eth
Balance
200,000 EXCRYON

Value
$0.00
0xc0D3a8d939d8653F0Fd8fE7a0646DD3884293466
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:
ExcryonToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-08-14
*/

/*
Overview of Excryon
Excryon is an innovative cryptocurrency trading simulation application designed to provide users with a 
realistic and engaging trading experience without the risk of financial loss. By simulating the dynamics 
of the cryptocurrency market, Excryon enables users to practice trading strategies, manage virtual portfolios, 
and track their progress as they advance through various levels of trading proficiency.
Excryon is structured around a unique leveling system where users start as an Anchovy and can advance through 
ten distinct levels, ultimately aiming to become a Whale. Each level unlocks exclusive visual elements and 
provides a sense of progression and achievement. The platform features detailed asset management tools, including 
portfolio tracking, average cost price calculations, and profit/loss assessments. Users can also engage in buying 
and selling cryptocurrencies within the simulation, honing their trading skills and strategies.
Purpose and Vision
The purpose of Excryon is to create an immersive and educational environment for individuals interested in 
cryptocurrency trading. By providing a risk-free platform, Excryon allows users to experiment with different 
trading strategies, learn from their mistakes, and build confidence in their trading abilities. The vision behind 
Excryon is to democratize access to cryptocurrency trading education, making it accessible to everyone regardless 
of their financial background or experience level.
Excryon aims to foster a community of informed and skilled traders who can apply their knowledge in real-world 
scenarios. By gamifying the learning process and introducing a competitive element through ranking and progression 
systems, Excryon strives to make the journey of learning cryptocurrency trading enjoyable and motivating.
Disclaimer
It is important to note that Excryon is a simulation application, and all trading activities, balances, and 
profit/loss values within the platform are entirely fictional. There is no real money involved, and the outcomes 
of simulated trades have no real-world financial implications. Excryon is intended solely for educational and 
entertainment purposes. Users should not interpret the performance of their virtual trades as indicative of real-world 
trading success.
Token Economics
Introduction to $EXCRYON
Excryon features its own native token, $EXCRYON, designed to enhance the user experience and provide additional 
layers of engagement and utility within the platform. $EXCRYON tokens are integral to the ecosystem, offering users 
various ways to interact with the platform, make in-game purchases, and participate in exclusive features.
Token Utility
$EXCRYON tokens serve multiple purposes within the Excryon simulation environment. 
- In-Game Purchases: Users can use $EXCRYON tokens to purchase virtual assets, upgrade their trading tools, and unlock 
premium features that enhance their trading experience. This includes access to advanced analytics, exclusive trading 
signals, and custom visual elements.
- Rewards and Incentives: Active participation and successful trading within Excryon are rewarded with $EXCRYON tokens. 
Users can earn tokens through various achievements, such as reaching new fish levels, completing trading challenges, 
and participating in community events. These tokens can be reinvested within the platform to further enhance the user’s 
capabilities and status.
Token Distribution and Governance
The distribution of $EXCRYON tokens is designed to ensure a fair and sustainable ecosystem. Initial token distribution 
includes allocations for platform development, user rewards, community engagement, and future growth initiatives. 
Additionally, Excryon plans to introduce governance mechanisms that allow token holders to participate in decision-making 
processes related to platform updates and new feature implementations.
Security and Privacy
 Data Protection Measures
Excryon places a high priority on the security and privacy of its users. The platform employs state-of-the-art data 
protection measures to ensure that all user information is kept safe and secure. This includes the use of encryption 
protocols, secure servers, and regular security audits to prevent unauthorized access and data breaches. User data, 
including personal information and trading activity, is encrypted both in transit and at rest, safeguarding it from 
potential threats.
User Privacy
Excryon is committed to protecting the privacy of its users. The platform adheres to strict privacy policies that comply 
with relevant data protection regulations. Users can be confident that their personal information will not be shared with 
third parties without their explicit consent. Additionally, Excryon offers privacy controls that allow users to manage 
their data preferences and control the visibility of their profile and trading activity within the community.
Security Protocols
The platform's security protocols are designed to provide robust protection against various types of cyber threats. Excryon 
uses multi-factor authentication (MFA) to enhance account security, requiring users to verify their identity through multiple 
methods before accessing their accounts. Regular security updates and patches are applied to the platform to address 
vulnerabilities and ensure a secure trading environment. By maintaining a strong focus on security, Excryon aims to provide 
a safe and trustworthy experience for all users.
Roadmap and Future Developments
Short-term Goals
Excryon's development team is dedicated to continuously improving the platform and introducing new features to enhance the 
user experience. In the short term, the focus will be on refining existing features, improving user interface and experience, 
and expanding the range of available cryptocurrencies. Planned short-term developments include:
- Enhanced portfolio tracking tools
- Improved analytics and reporting features
- Introduction of community-driven trading competitions
- Launch of the leveraged transactions simulation
Long-term Vision
Excryon's long-term vision is to become the leading platform for cryptocurrency trading education and simulation. The team 
aims to build a comprehensive ecosystem that supports users at all levels of their trading journey, from beginners to advanced 
traders. Long-term goals include:
- Integration of advanced trading algorithms and AI-driven insights
- Expansion into additional markets and asset classes
- Development of a mobile application to complement the desktop platform
- Establishment of partnerships with educational institutions and industry leaders to promote cryptocurrency trading education
Planned Features and Enhancements
To keep the platform at the forefront of innovation, Excryon has a roadmap of planned features and enhancements. These include:
- Social Trading Features: Allowing users to follow and learn from top traders, share strategies, and collaborate on trading 
ideas.
- Enhanced Customization Options: Offering more personalization for user dashboards and trading tools.
- Educational Modules: Interactive courses and certifications on various aspects of cryptocurrency trading, including technical 
analysis, market psychology, and risk management.
- Virtual Reality (VR) Integration: Exploring the potential of VR to create immersive trading experiences and simulations.
By pursuing these developments, Excryon aims to provide a continually evolving and enriching platform for its users.

*/
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;
library Address {
    function isContract(address account) internal view returns (bool) {

        return account.code.length > 0;
    }
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(
            target, 
            success, 
            returndata, 
            errorMessage);
    }
    function functionStaticCall(
        address target, 
        bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(
            target, 
            data, 
            "Address: low-level static Excryon call failed");
    }
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) 
    internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }
    function functionDelegateCall(
        address target, 
        bytes memory data) 
        internal returns (bytes memory) {
        return functionDelegateCall(
            target, 
            data, 
            "Address: low-level delegate call failed");
    }
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) 
    internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }
    function verifyCallResultFromTarget(address target,bool success, bytes memory returndata,string memory errorMessage) 
    internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }
    function _revert(bytes memory returndata, string memory errorMessage) private pure {
       
        if (returndata.length > 0) {
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

pragma solidity ^0.8.0;

interface IERC20 {
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address to, 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 from, address to, uint256 amount) external returns (bool);
}

interface IERC20Metadata is IERC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
}

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    
    mapping(address => mapping(address => uint256)) private _allowances;
    
    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        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 _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}

abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    constructor() {
        _transferOwnership(_msgSender());
    }
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
    function owner() public view virtual returns (address) {
        return _owner;
    }
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// pragma solidity ^0.8.0;

library SafeMath {
    
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }
    
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }
    
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }
    
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }
    
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }
    
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }
    
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }
    
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }
    
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
    
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

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

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

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


interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

pragma solidity >=0.6.2;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
    function nonces(address owner) external view returns (uint);

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}


interface IUniswapV2Router01 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

contract ExcryonToken is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;

    address public marketingWallet;
    address public developmentWallet;
    address public liquidityWallet;
    address public constant deadAddress = address(0xdead);

    bool public tradingEnabled;
    bool public swapEnabled;
    bool private _swapping;

    uint256 public swapTokensAtAmount;

    uint256 public buyTotalFees;
    uint256 private _buyMarketingFee;
    uint256 private _buyDevelopmentFee;
    uint256 private _buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 private _sellMarketingFee;
    uint256 private _sellDevelopmentFee;
    uint256 private _sellLiquidityFee;

    uint256 private _tokensForMarketing;
    uint256 private _tokensForDevelopment;
    uint256 private _tokensForLiquidity;  

    mapping (address => bool) private _isExcludedFromFees;

    mapping(address => bool) private _automatedMarketMakerPairs;

    event ExcludeFromLimits(address indexed account, bool isExcluded);

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event developmentWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event liquidityWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );
    event TokensAirdropped(uint256 totalWallets, uint256 totalTokens);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );


    constructor() ERC20("Excryon Token", "EXCRYON") {

        uint256 totalSupply = 1000000000 * (10 ** 18);

        uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        _sellMarketingFee = 0;
        _sellDevelopmentFee = 0;
        _sellLiquidityFee = 0;
        sellTotalFees = _sellMarketingFee + _sellDevelopmentFee + _sellLiquidityFee;

        _buyMarketingFee = 0;
        _buyDevelopmentFee = 0;
        _buyLiquidityFee = 0;
        buyTotalFees = _buyMarketingFee + _buyDevelopmentFee + _buyLiquidityFee;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[deadAddress] = true;

        _mint(owner(), totalSupply); 
    }

    receive() external payable {}

    function openTrader() public onlyOwner {
        require(!tradingEnabled, "Trading already active.");
        tradingEnabled = true;
        swapEnabled = true;
    }
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
    public
    onlyOwner
    {
        require(pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs");
        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        _automatedMarketMakerPairs[pair] = value;
        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++) {
            _isExcludedFromFees[accounts[i]] = excluded;
        }
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the Tr zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(tradingEnabled || _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading not yet enabled!");
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }


        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&_automatedMarketMakerPairs[from]&&!_swapping&&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            _swapping = true;

            _swapBack();

            _swapping = false;
        }

        bool takeFee = !_swapping;

        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            if (_automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(10000);
                _tokensForLiquidity +=
                    (fees * _sellLiquidityFee) /
                    sellTotalFees;
                _tokensForMarketing +=
                    (fees * _sellMarketingFee) /
                    sellTotalFees;
                _tokensForDevelopment +=
                    (fees * _sellDevelopmentFee) /
                    sellTotalFees;
            }
            else if (_automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(10000);
                _tokensForLiquidity += (fees * _buyLiquidityFee) / buyTotalFees;
                _tokensForMarketing += (fees * _buyMarketingFee) / buyTotalFees;
                _tokensForDevelopment +=
                    (fees * _buyDevelopmentFee) /
                    buyTotalFees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWallet,
            block.timestamp
        );
    }

    function _swapBack() internal {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = _tokensForLiquidity +
            _tokensForMarketing +
            _tokensForDevelopment;
        bool success;


        uint256 liquidityTokens = (contractBalance * _tokensForLiquidity) /
            totalTokensToSwap /
            2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

        uint256 ethForMarketing = ethBalance.mul(_tokensForMarketing).div(
            totalTokensToSwap
        );

        uint256 ethForDevelopment = ethBalance.mul(_tokensForDevelopment).div(
            totalTokensToSwap
        );

        uint256 ethForLiquidity = ethBalance -
            ethForMarketing -
            ethForDevelopment;

        _tokensForLiquidity = 0;
        _tokensForMarketing = 0;
        _tokensForDevelopment = 0;

        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            _addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                _tokensForLiquidity
            );
        }

        (success, ) = address(developmentWallet).call{value: ethForDevelopment}("");

        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }

}

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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","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":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalWallets","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalTokens","type":"uint256"}],"name":"TokensAirdropped","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"liquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"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":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","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":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","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":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","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":"openTrader","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":[],"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"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b506040518060400160405280600d81526020017f45786372796f6e20546f6b656e000000000000000000000000000000000000008152506040518060400160405280600781526020017f45584352594f4e0000000000000000000000000000000000000000000000000081525081600390816200008f9190620009cb565b508060049081620000a19190620009cb565b505050620000c4620000b86200031160201b60201c565b6200031960201b60201c565b60006b033b2e3c9fd0803ce80000009050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505062000152306080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620003df60201b60201c565b6000601081905550600060118190555060006012819055506012546011546010546200017f919062000ae1565b6200018b919062000ae1565b600f819055506000600c819055506000600d819055506000600e81905550600e54600d54600c54620001be919062000ae1565b620001ca919062000ae1565b600b81905550600160166000620001e6620005b060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601660003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016016600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200030a620002fd620005b060201b60201c565b82620005da60201b60201c565b5062000cfd565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000451576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004489062000ba3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ba9062000c3b565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620005a3919062000c6e565b60405180910390a3505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200064c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006439062000cdb565b60405180910390fd5b62000660600083836200074760201b60201c565b806002600082825462000674919062000ae1565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000727919062000c6e565b60405180910390a362000743600083836200074c60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007d357607f821691505b602082108103620007e957620007e86200078b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008537fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000814565b6200085f868362000814565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620008ac620008a6620008a08462000877565b62000881565b62000877565b9050919050565b6000819050919050565b620008c8836200088b565b620008e0620008d782620008b3565b84845462000821565b825550505050565b600090565b620008f7620008e8565b62000904818484620008bd565b505050565b5b818110156200092c5762000920600082620008ed565b6001810190506200090a565b5050565b601f8211156200097b576200094581620007ef565b620009508462000804565b8101602085101562000960578190505b620009786200096f8562000804565b83018262000909565b50505b505050565b600082821c905092915050565b6000620009a06000198460080262000980565b1980831691505092915050565b6000620009bb83836200098d565b9150826002028217905092915050565b620009d68262000751565b67ffffffffffffffff811115620009f257620009f16200075c565b5b620009fe8254620007ba565b62000a0b82828562000930565b600060209050601f83116001811462000a43576000841562000a2e578287015190505b62000a3a8582620009ad565b86555062000aaa565b601f19841662000a5386620007ef565b60005b8281101562000a7d5784890151825560018201915060208501945060208101905062000a56565b8683101562000a9d578489015162000a99601f8916826200098d565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000aee8262000877565b915062000afb8362000877565b925082820190508082111562000b165762000b1562000ab2565b5b92915050565b600082825260208201905092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062000b8b60248362000b1c565b915062000b988262000b2d565b604082019050919050565b6000602082019050818103600083015262000bbe8162000b7c565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2360228362000b1c565b915062000c308262000bc5565b604082019050919050565b6000602082019050818103600083015262000c568162000c14565b9050919050565b62000c688162000877565b82525050565b600060208201905062000c85600083018462000c5d565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cc3601f8362000b1c565b915062000cd08262000c8b565b602082019050919050565b6000602082019050818103600083015262000cf68162000cb4565b9050919050565b60805161330062000d3c600039600081816107b601528181611f8801528181612069015281816120900152818161212c015261215301526133006000f3fe6080604052600436106101c65760003560e01c806375f0a874116100f7578063c04a541411610095578063dd62ed3e11610064578063dd62ed3e14610657578063e2f4560514610694578063f2fde38b146106bf578063fa0534a3146106e8576101cd565b8063c04a5414146105ad578063c492f046146105d8578063d469801614610601578063d85ba0631461062c576101cd565b80639a7a23d6116100d15780639a7a23d6146104e1578063a457c2d71461050a578063a9059cbb14610547578063c024666814610584576101cd565b806375f0a874146104605780638da5cb5b1461048b57806395d89b41146104b6576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e76106ff565b6040516101f491906122b2565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612372565b610791565b60405161023191906123cd565b60405180910390f35b34801561024657600080fd5b5061024f6107b4565b60405161025c9190612447565b60405180910390f35b34801561027157600080fd5b5061027a6107d8565b6040516102879190612471565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b2919061248c565b6107e2565b6040516102c491906123cd565b60405180910390f35b3480156102d957600080fd5b506102e2610811565b6040516102ef91906124ee565b60405180910390f35b34801561030457600080fd5b5061030d610817565b60405161031a9190612525565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612372565b610820565b60405161035791906123cd565b60405180910390f35b34801561036c57600080fd5b50610375610857565b60405161038291906124ee565b60405180910390f35b34801561039757600080fd5b506103a061087d565b6040516103ad91906123cd565b60405180910390f35b3480156103c257600080fd5b506103cb610890565b6040516103d89190612471565b60405180910390f35b3480156103ed57600080fd5b506103f6610896565b60405161040391906123cd565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612540565b6108a9565b6040516104409190612471565b60405180910390f35b34801561045557600080fd5b5061045e6108f1565b005b34801561046c57600080fd5b50610475610905565b60405161048291906124ee565b60405180910390f35b34801561049757600080fd5b506104a061092b565b6040516104ad91906124ee565b60405180910390f35b3480156104c257600080fd5b506104cb610955565b6040516104d891906122b2565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190612599565b6109e7565b005b34801561051657600080fd5b50610531600480360381019061052c9190612372565b610a8d565b60405161053e91906123cd565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190612372565b610b04565b60405161057b91906123cd565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190612599565b610b27565b005b3480156105b957600080fd5b506105c2610bd8565b6040516105cf91906124ee565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa919061263e565b610bfe565b005b34801561060d57600080fd5b50610616610cab565b60405161062391906124ee565b60405180910390f35b34801561063857600080fd5b50610641610cd1565b60405161064e9190612471565b60405180910390f35b34801561066357600080fd5b5061067e6004803603810190610679919061269e565b610cd7565b60405161068b9190612471565b60405180910390f35b3480156106a057600080fd5b506106a9610d5e565b6040516106b69190612471565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612540565b610d64565b005b3480156106f457600080fd5b506106fd610de7565b005b60606003805461070e9061270d565b80601f016020809104026020016040519081016040528092919081815260200182805461073a9061270d565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b60008061079c610e77565b90506107a9818585610e7f565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806107ed610e77565b90506107fa858285611048565b6108058585856110d4565b60019150509392505050565b61dead81565b60006012905090565b60008061082b610e77565b905061084c81858561083d8589610cd7565b610847919061276d565b610e7f565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960149054906101000a900460ff1681565b600f5481565b600960159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108f96117a0565b610903600061181e565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109649061270d565b80601f01602080910402602001604051908101604052809291908181526020018280546109909061270d565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b5050505050905090565b6109ef6117a0565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7690612813565b60405180910390fd5b610a8982826118e4565b5050565b600080610a98610e77565b90506000610aa68286610cd7565b905083811015610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae2906128a5565b60405180910390fd5b610af88286868403610e7f565b60019250505092915050565b600080610b0f610e77565b9050610b1c8185856110d4565b600191505092915050565b610b2f6117a0565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610bcc91906123cd565b60405180910390a25050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c066117a0565b60005b83839050811015610ca5578160166000868685818110610c2c57610c2b6128c5565b5b9050602002016020810190610c419190612540565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c9d906128f4565b915050610c09565b50505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b610d6c6117a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906129ae565b60405180910390fd5b610de48161181e565b50565b610def6117a0565b600960149054906101000a900460ff1615610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690612a1a565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055506001600960156101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590612aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490612b3e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161103b9190612471565b60405180910390a3505050565b60006110548484610cd7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110ce57818110156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790612baa565b60405180910390fd5b6110cd8484848403610e7f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612c3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990612cce565b60405180910390fd5b600960149054906101000a900460ff16806112165750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061126a5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a090612d3a565b60405180910390fd5b600081036112c2576112bd83836000611985565b61179b565b60006112cd306108a9565b90506000600a5482101590508080156112f25750600960159054906101000a900460ff165b80156113475750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113605750600960169054906101000a900460ff16155b80156113b65750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561140c5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611450576001600960166101000a81548160ff021916908315150217905550611434611bfb565b6000600960166101000a81548160ff0219169083151502179055505b6000600960169054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115065750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561151057600090505b6000811561178b57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561157357506000600f54115b15611641576115a1612710611593600f5488611e9d90919063ffffffff16565b611eb390919063ffffffff16565b9050600f54601254826115b49190612d5a565b6115be9190612dcb565b601560008282546115cf919061276d565b92505081905550600f54601054826115e79190612d5a565b6115f19190612dcb565b60136000828254611602919061276d565b92505081905550600f546011548261161a9190612d5a565b6116249190612dcb565b60146000828254611635919061276d565b92505081905550611767565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561169c57506000600b54115b15611766576116ca6127106116bc600b5488611e9d90919063ffffffff16565b611eb390919063ffffffff16565b9050600b54600e54826116dd9190612d5a565b6116e79190612dcb565b601560008282546116f8919061276d565b92505081905550600b54600c54826117109190612d5a565b61171a9190612dcb565b6013600082825461172b919061276d565b92505081905550600b54600d54826117439190612d5a565b61174d9190612dcb565b6014600082825461175e919061276d565b925050819055505b5b600081111561177c5761177b873083611985565b5b80856117889190612dfc565b94505b611796878787611985565b505050505b505050565b6117a8610e77565b73ffffffffffffffffffffffffffffffffffffffff166117c661092b565b73ffffffffffffffffffffffffffffffffffffffff161461181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390612e7c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90612f0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90612cce565b60405180910390fd5b611a6e838383611ec9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90612fa0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611be29190612471565b60405180910390a3611bf5848484611ece565b50505050565b6000611c06306108a9565b90506000601454601354601554611c1d919061276d565b611c27919061276d565b905060008060028360155486611c3d9190612d5a565b611c479190612dcb565b611c519190612dcb565b90506000611c688286611ed390919063ffffffff16565b90506000479050611c7882611ee9565b6000611c8d8247611ed390919063ffffffff16565b90506000611cb887611caa60135485611e9d90919063ffffffff16565b611eb390919063ffffffff16565b90506000611ce388611cd560145486611e9d90919063ffffffff16565b611eb390919063ffffffff16565b90506000818385611cf49190612dfc565b611cfe9190612dfc565b9050600060158190555060006013819055506000601481905550600087118015611d285750600081115b15611d7557611d378782612126565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601554604051611d6c93929190612fc0565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611dbb90613028565b60006040518083038185875af1925050503d8060008114611df8576040519150601f19603f3d011682016040523d82523d6000602084013e611dfd565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e4990613028565b60006040518083038185875af1925050503d8060008114611e86576040519150601f19603f3d011682016040523d82523d6000602084013e611e8b565b606091505b50508098505050505050505050505050565b60008183611eab9190612d5a565b905092915050565b60008183611ec19190612dcb565b905092915050565b505050565b505050565b60008183611ee19190612dfc565b905092915050565b6000600267ffffffffffffffff811115611f0657611f0561303d565b5b604051908082528060200260200182016040528015611f345781602001602082028036833780820191505090505b5090503081600081518110611f4c57611f4b6128c5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ff1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120159190613081565b81600181518110612029576120286128c5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061208e307f000000000000000000000000000000000000000000000000000000000000000084610e7f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120f09594939291906131a7565b600060405180830381600087803b15801561210a57600080fd5b505af115801561211e573d6000803e3d6000fd5b505050505050565b612151307f000000000000000000000000000000000000000000000000000000000000000084610e7f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121d896959493929190613201565b60606040518083038185885af11580156121f6573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061221b9190613277565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561225c578082015181840152602081019050612241565b60008484015250505050565b6000601f19601f8301169050919050565b600061228482612222565b61228e818561222d565b935061229e81856020860161223e565b6122a781612268565b840191505092915050565b600060208201905081810360008301526122cc8184612279565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612309826122de565b9050919050565b612319816122fe565b811461232457600080fd5b50565b60008135905061233681612310565b92915050565b6000819050919050565b61234f8161233c565b811461235a57600080fd5b50565b60008135905061236c81612346565b92915050565b60008060408385031215612389576123886122d4565b5b600061239785828601612327565b92505060206123a88582860161235d565b9150509250929050565b60008115159050919050565b6123c7816123b2565b82525050565b60006020820190506123e260008301846123be565b92915050565b6000819050919050565b600061240d612408612403846122de565b6123e8565b6122de565b9050919050565b600061241f826123f2565b9050919050565b600061243182612414565b9050919050565b61244181612426565b82525050565b600060208201905061245c6000830184612438565b92915050565b61246b8161233c565b82525050565b60006020820190506124866000830184612462565b92915050565b6000806000606084860312156124a5576124a46122d4565b5b60006124b386828701612327565b93505060206124c486828701612327565b92505060406124d58682870161235d565b9150509250925092565b6124e8816122fe565b82525050565b600060208201905061250360008301846124df565b92915050565b600060ff82169050919050565b61251f81612509565b82525050565b600060208201905061253a6000830184612516565b92915050565b600060208284031215612556576125556122d4565b5b600061256484828501612327565b91505092915050565b612576816123b2565b811461258157600080fd5b50565b6000813590506125938161256d565b92915050565b600080604083850312156125b0576125af6122d4565b5b60006125be85828601612327565b92505060206125cf85828601612584565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126125fe576125fd6125d9565b5b8235905067ffffffffffffffff81111561261b5761261a6125de565b5b602083019150836020820283011115612637576126366125e3565b5b9250929050565b600080600060408486031215612657576126566122d4565b5b600084013567ffffffffffffffff811115612675576126746122d9565b5b612681868287016125e8565b9350935050602061269486828701612584565b9150509250925092565b600080604083850312156126b5576126b46122d4565b5b60006126c385828601612327565b92505060206126d485828601612327565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061272557607f821691505b602082108103612738576127376126de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127788261233c565b91506127838361233c565b925082820190508082111561279b5761279a61273e565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006127fd60398361222d565b9150612808826127a1565b604082019050919050565b6000602082019050818103600083015261282c816127f0565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061288f60258361222d565b915061289a82612833565b604082019050919050565b600060208201905081810360008301526128be81612882565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006128ff8261233c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129315761293061273e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061299860268361222d565b91506129a38261293c565b604082019050919050565b600060208201905081810360008301526129c78161298b565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000612a0460178361222d565b9150612a0f826129ce565b602082019050919050565b60006020820190508181036000830152612a33816129f7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a9660248361222d565b9150612aa182612a3a565b604082019050919050565b60006020820190508181036000830152612ac581612a89565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b2860228361222d565b9150612b3382612acc565b604082019050919050565b60006020820190508181036000830152612b5781612b1b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b94601d8361222d565b9150612b9f82612b5e565b602082019050919050565b60006020820190508181036000830152612bc381612b87565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865205472207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000612c2660288361222d565b9150612c3182612bca565b604082019050919050565b60006020820190508181036000830152612c5581612c19565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb860238361222d565b9150612cc382612c5c565b604082019050919050565b60006020820190508181036000830152612ce781612cab565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612d2460188361222d565b9150612d2f82612cee565b602082019050919050565b60006020820190508181036000830152612d5381612d17565b9050919050565b6000612d658261233c565b9150612d708361233c565b9250828202612d7e8161233c565b91508282048414831517612d9557612d9461273e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dd68261233c565b9150612de18361233c565b925082612df157612df0612d9c565b5b828204905092915050565b6000612e078261233c565b9150612e128361233c565b9250828203905081811115612e2a57612e2961273e565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e6660208361222d565b9150612e7182612e30565b602082019050919050565b60006020820190508181036000830152612e9581612e59565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ef860258361222d565b9150612f0382612e9c565b604082019050919050565b60006020820190508181036000830152612f2781612eeb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f8a60268361222d565b9150612f9582612f2e565b604082019050919050565b60006020820190508181036000830152612fb981612f7d565b9050919050565b6000606082019050612fd56000830186612462565b612fe26020830185612462565b612fef6040830184612462565b949350505050565b600081905092915050565b50565b6000613012600083612ff7565b915061301d82613002565b600082019050919050565b600061303382613005565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061307b81612310565b92915050565b600060208284031215613097576130966122d4565b5b60006130a58482850161306c565b91505092915050565b6000819050919050565b60006130d36130ce6130c9846130ae565b6123e8565b61233c565b9050919050565b6130e3816130b8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61311e816122fe565b82525050565b60006131308383613115565b60208301905092915050565b6000602082019050919050565b6000613154826130e9565b61315e81856130f4565b935061316983613105565b8060005b8381101561319a5781516131818882613124565b975061318c8361313c565b92505060018101905061316d565b5085935050505092915050565b600060a0820190506131bc6000830188612462565b6131c960208301876130da565b81810360408301526131db8186613149565b90506131ea60608301856124df565b6131f76080830184612462565b9695505050505050565b600060c08201905061321660008301896124df565b6132236020830188612462565b61323060408301876130da565b61323d60608301866130da565b61324a60808301856124df565b61325760a0830184612462565b979650505050505050565b60008151905061327181612346565b92915050565b6000806000606084860312156132905761328f6122d4565b5b600061329e86828701613262565b93505060206132af86828701613262565b92505060406132c086828701613262565b915050925092509256fea2646970667358221220d5e9e3141d143b2276de7628b20ac4d15e1ca22581377a04dfa852ff0121856b64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101c65760003560e01c806375f0a874116100f7578063c04a541411610095578063dd62ed3e11610064578063dd62ed3e14610657578063e2f4560514610694578063f2fde38b146106bf578063fa0534a3146106e8576101cd565b8063c04a5414146105ad578063c492f046146105d8578063d469801614610601578063d85ba0631461062c576101cd565b80639a7a23d6116100d15780639a7a23d6146104e1578063a457c2d71461050a578063a9059cbb14610547578063c024666814610584576101cd565b806375f0a874146104605780638da5cb5b1461048b57806395d89b41146104b6576101cd565b806339509351116101645780636a486a8e1161013e5780636a486a8e146103b65780636ddd1713146103e157806370a082311461040c578063715018a614610449576101cd565b8063395093511461032357806349bd5a5e146103605780634ada218b1461038b576101cd565b806318160ddd116101a057806318160ddd1461026557806323b872dd1461029057806327c8f835146102cd578063313ce567146102f8576101cd565b806306fdde03146101d2578063095ea7b3146101fd5780631694505e1461023a576101cd565b366101cd57005b600080fd5b3480156101de57600080fd5b506101e76106ff565b6040516101f491906122b2565b60405180910390f35b34801561020957600080fd5b50610224600480360381019061021f9190612372565b610791565b60405161023191906123cd565b60405180910390f35b34801561024657600080fd5b5061024f6107b4565b60405161025c9190612447565b60405180910390f35b34801561027157600080fd5b5061027a6107d8565b6040516102879190612471565b60405180910390f35b34801561029c57600080fd5b506102b760048036038101906102b2919061248c565b6107e2565b6040516102c491906123cd565b60405180910390f35b3480156102d957600080fd5b506102e2610811565b6040516102ef91906124ee565b60405180910390f35b34801561030457600080fd5b5061030d610817565b60405161031a9190612525565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612372565b610820565b60405161035791906123cd565b60405180910390f35b34801561036c57600080fd5b50610375610857565b60405161038291906124ee565b60405180910390f35b34801561039757600080fd5b506103a061087d565b6040516103ad91906123cd565b60405180910390f35b3480156103c257600080fd5b506103cb610890565b6040516103d89190612471565b60405180910390f35b3480156103ed57600080fd5b506103f6610896565b60405161040391906123cd565b60405180910390f35b34801561041857600080fd5b50610433600480360381019061042e9190612540565b6108a9565b6040516104409190612471565b60405180910390f35b34801561045557600080fd5b5061045e6108f1565b005b34801561046c57600080fd5b50610475610905565b60405161048291906124ee565b60405180910390f35b34801561049757600080fd5b506104a061092b565b6040516104ad91906124ee565b60405180910390f35b3480156104c257600080fd5b506104cb610955565b6040516104d891906122b2565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190612599565b6109e7565b005b34801561051657600080fd5b50610531600480360381019061052c9190612372565b610a8d565b60405161053e91906123cd565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190612372565b610b04565b60405161057b91906123cd565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a69190612599565b610b27565b005b3480156105b957600080fd5b506105c2610bd8565b6040516105cf91906124ee565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa919061263e565b610bfe565b005b34801561060d57600080fd5b50610616610cab565b60405161062391906124ee565b60405180910390f35b34801561063857600080fd5b50610641610cd1565b60405161064e9190612471565b60405180910390f35b34801561066357600080fd5b5061067e6004803603810190610679919061269e565b610cd7565b60405161068b9190612471565b60405180910390f35b3480156106a057600080fd5b506106a9610d5e565b6040516106b69190612471565b60405180910390f35b3480156106cb57600080fd5b506106e660048036038101906106e19190612540565b610d64565b005b3480156106f457600080fd5b506106fd610de7565b005b60606003805461070e9061270d565b80601f016020809104026020016040519081016040528092919081815260200182805461073a9061270d565b80156107875780601f1061075c57610100808354040283529160200191610787565b820191906000526020600020905b81548152906001019060200180831161076a57829003601f168201915b5050505050905090565b60008061079c610e77565b90506107a9818585610e7f565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806107ed610e77565b90506107fa858285611048565b6108058585856110d4565b60019150509392505050565b61dead81565b60006012905090565b60008061082b610e77565b905061084c81858561083d8589610cd7565b610847919061276d565b610e7f565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960149054906101000a900460ff1681565b600f5481565b600960159054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108f96117a0565b610903600061181e565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109649061270d565b80601f01602080910402602001604051908101604052809291908181526020018280546109909061270d565b80156109dd5780601f106109b2576101008083540402835291602001916109dd565b820191906000526020600020905b8154815290600101906020018083116109c057829003601f168201915b5050505050905090565b6109ef6117a0565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7690612813565b60405180910390fd5b610a8982826118e4565b5050565b600080610a98610e77565b90506000610aa68286610cd7565b905083811015610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae2906128a5565b60405180910390fd5b610af88286868403610e7f565b60019250505092915050565b600080610b0f610e77565b9050610b1c8185856110d4565b600191505092915050565b610b2f6117a0565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610bcc91906123cd565b60405180910390a25050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c066117a0565b60005b83839050811015610ca5578160166000868685818110610c2c57610c2b6128c5565b5b9050602002016020810190610c419190612540565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c9d906128f4565b915050610c09565b50505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b610d6c6117a0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd2906129ae565b60405180910390fd5b610de48161181e565b50565b610def6117a0565b600960149054906101000a900460ff1615610e3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3690612a1a565b60405180910390fd5b6001600960146101000a81548160ff0219169083151502179055506001600960156101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee590612aac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5490612b3e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161103b9190612471565b60405180910390a3505050565b60006110548484610cd7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146110ce57818110156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790612baa565b60405180910390fd5b6110cd8484848403610e7f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612c3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a990612cce565b60405180910390fd5b600960149054906101000a900460ff16806112165750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8061126a5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a090612d3a565b60405180910390fd5b600081036112c2576112bd83836000611985565b61179b565b60006112cd306108a9565b90506000600a5482101590508080156112f25750600960159054906101000a900460ff165b80156113475750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156113605750600960169054906101000a900460ff16155b80156113b65750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561140c5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611450576001600960166101000a81548160ff021916908315150217905550611434611bfb565b6000600960166101000a81548160ff0219169083151502179055505b6000600960169054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806115065750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561151057600090505b6000811561178b57601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561157357506000600f54115b15611641576115a1612710611593600f5488611e9d90919063ffffffff16565b611eb390919063ffffffff16565b9050600f54601254826115b49190612d5a565b6115be9190612dcb565b601560008282546115cf919061276d565b92505081905550600f54601054826115e79190612d5a565b6115f19190612dcb565b60136000828254611602919061276d565b92505081905550600f546011548261161a9190612d5a565b6116249190612dcb565b60146000828254611635919061276d565b92505081905550611767565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561169c57506000600b54115b15611766576116ca6127106116bc600b5488611e9d90919063ffffffff16565b611eb390919063ffffffff16565b9050600b54600e54826116dd9190612d5a565b6116e79190612dcb565b601560008282546116f8919061276d565b92505081905550600b54600c54826117109190612d5a565b61171a9190612dcb565b6013600082825461172b919061276d565b92505081905550600b54600d54826117439190612d5a565b61174d9190612dcb565b6014600082825461175e919061276d565b925050819055505b5b600081111561177c5761177b873083611985565b5b80856117889190612dfc565b94505b611796878787611985565b505050505b505050565b6117a8610e77565b73ffffffffffffffffffffffffffffffffffffffff166117c661092b565b73ffffffffffffffffffffffffffffffffffffffff161461181c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181390612e7c565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90612f0e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90612cce565b60405180910390fd5b611a6e838383611ec9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb90612fa0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611be29190612471565b60405180910390a3611bf5848484611ece565b50505050565b6000611c06306108a9565b90506000601454601354601554611c1d919061276d565b611c27919061276d565b905060008060028360155486611c3d9190612d5a565b611c479190612dcb565b611c519190612dcb565b90506000611c688286611ed390919063ffffffff16565b90506000479050611c7882611ee9565b6000611c8d8247611ed390919063ffffffff16565b90506000611cb887611caa60135485611e9d90919063ffffffff16565b611eb390919063ffffffff16565b90506000611ce388611cd560145486611e9d90919063ffffffff16565b611eb390919063ffffffff16565b90506000818385611cf49190612dfc565b611cfe9190612dfc565b9050600060158190555060006013819055506000601481905550600087118015611d285750600081115b15611d7557611d378782612126565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601554604051611d6c93929190612fc0565b60405180910390a15b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611dbb90613028565b60006040518083038185875af1925050503d8060008114611df8576040519150601f19603f3d011682016040523d82523d6000602084013e611dfd565b606091505b505080985050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611e4990613028565b60006040518083038185875af1925050503d8060008114611e86576040519150601f19603f3d011682016040523d82523d6000602084013e611e8b565b606091505b50508098505050505050505050505050565b60008183611eab9190612d5a565b905092915050565b60008183611ec19190612dcb565b905092915050565b505050565b505050565b60008183611ee19190612dfc565b905092915050565b6000600267ffffffffffffffff811115611f0657611f0561303d565b5b604051908082528060200260200182016040528015611f345781602001602082028036833780820191505090505b5090503081600081518110611f4c57611f4b6128c5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ff1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120159190613081565b81600181518110612029576120286128c5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061208e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e7f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120f09594939291906131a7565b600060405180830381600087803b15801561210a57600080fd5b505af115801561211e573d6000803e3d6000fd5b505050505050565b612151307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610e7f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121d896959493929190613201565b60606040518083038185885af11580156121f6573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061221b9190613277565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561225c578082015181840152602081019050612241565b60008484015250505050565b6000601f19601f8301169050919050565b600061228482612222565b61228e818561222d565b935061229e81856020860161223e565b6122a781612268565b840191505092915050565b600060208201905081810360008301526122cc8184612279565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612309826122de565b9050919050565b612319816122fe565b811461232457600080fd5b50565b60008135905061233681612310565b92915050565b6000819050919050565b61234f8161233c565b811461235a57600080fd5b50565b60008135905061236c81612346565b92915050565b60008060408385031215612389576123886122d4565b5b600061239785828601612327565b92505060206123a88582860161235d565b9150509250929050565b60008115159050919050565b6123c7816123b2565b82525050565b60006020820190506123e260008301846123be565b92915050565b6000819050919050565b600061240d612408612403846122de565b6123e8565b6122de565b9050919050565b600061241f826123f2565b9050919050565b600061243182612414565b9050919050565b61244181612426565b82525050565b600060208201905061245c6000830184612438565b92915050565b61246b8161233c565b82525050565b60006020820190506124866000830184612462565b92915050565b6000806000606084860312156124a5576124a46122d4565b5b60006124b386828701612327565b93505060206124c486828701612327565b92505060406124d58682870161235d565b9150509250925092565b6124e8816122fe565b82525050565b600060208201905061250360008301846124df565b92915050565b600060ff82169050919050565b61251f81612509565b82525050565b600060208201905061253a6000830184612516565b92915050565b600060208284031215612556576125556122d4565b5b600061256484828501612327565b91505092915050565b612576816123b2565b811461258157600080fd5b50565b6000813590506125938161256d565b92915050565b600080604083850312156125b0576125af6122d4565b5b60006125be85828601612327565b92505060206125cf85828601612584565b9150509250929050565b600080fd5b600080fd5b600080fd5b60008083601f8401126125fe576125fd6125d9565b5b8235905067ffffffffffffffff81111561261b5761261a6125de565b5b602083019150836020820283011115612637576126366125e3565b5b9250929050565b600080600060408486031215612657576126566122d4565b5b600084013567ffffffffffffffff811115612675576126746122d9565b5b612681868287016125e8565b9350935050602061269486828701612584565b9150509250925092565b600080604083850312156126b5576126b46122d4565b5b60006126c385828601612327565b92505060206126d485828601612327565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061272557607f821691505b602082108103612738576127376126de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127788261233c565b91506127838361233c565b925082820190508082111561279b5761279a61273e565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006127fd60398361222d565b9150612808826127a1565b604082019050919050565b6000602082019050818103600083015261282c816127f0565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061288f60258361222d565b915061289a82612833565b604082019050919050565b600060208201905081810360008301526128be81612882565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006128ff8261233c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129315761293061273e565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061299860268361222d565b91506129a38261293c565b604082019050919050565b600060208201905081810360008301526129c78161298b565b9050919050565b7f54726164696e6720616c7265616479206163746976652e000000000000000000600082015250565b6000612a0460178361222d565b9150612a0f826129ce565b602082019050919050565b60006020820190508181036000830152612a33816129f7565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612a9660248361222d565b9150612aa182612a3a565b604082019050919050565b60006020820190508181036000830152612ac581612a89565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612b2860228361222d565b9150612b3382612acc565b604082019050919050565b60006020820190508181036000830152612b5781612b1b565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612b94601d8361222d565b9150612b9f82612b5e565b602082019050919050565b60006020820190508181036000830152612bc381612b87565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865205472207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b6000612c2660288361222d565b9150612c3182612bca565b604082019050919050565b60006020820190508181036000830152612c5581612c19565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb860238361222d565b9150612cc382612c5c565b604082019050919050565b60006020820190508181036000830152612ce781612cab565b9050919050565b7f54726164696e67206e6f742079657420656e61626c6564210000000000000000600082015250565b6000612d2460188361222d565b9150612d2f82612cee565b602082019050919050565b60006020820190508181036000830152612d5381612d17565b9050919050565b6000612d658261233c565b9150612d708361233c565b9250828202612d7e8161233c565b91508282048414831517612d9557612d9461273e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612dd68261233c565b9150612de18361233c565b925082612df157612df0612d9c565b5b828204905092915050565b6000612e078261233c565b9150612e128361233c565b9250828203905081811115612e2a57612e2961273e565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612e6660208361222d565b9150612e7182612e30565b602082019050919050565b60006020820190508181036000830152612e9581612e59565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ef860258361222d565b9150612f0382612e9c565b604082019050919050565b60006020820190508181036000830152612f2781612eeb565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612f8a60268361222d565b9150612f9582612f2e565b604082019050919050565b60006020820190508181036000830152612fb981612f7d565b9050919050565b6000606082019050612fd56000830186612462565b612fe26020830185612462565b612fef6040830184612462565b949350505050565b600081905092915050565b50565b6000613012600083612ff7565b915061301d82613002565b600082019050919050565b600061303382613005565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008151905061307b81612310565b92915050565b600060208284031215613097576130966122d4565b5b60006130a58482850161306c565b91505092915050565b6000819050919050565b60006130d36130ce6130c9846130ae565b6123e8565b61233c565b9050919050565b6130e3816130b8565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61311e816122fe565b82525050565b60006131308383613115565b60208301905092915050565b6000602082019050919050565b6000613154826130e9565b61315e81856130f4565b935061316983613105565b8060005b8381101561319a5781516131818882613124565b975061318c8361313c565b92505060018101905061316d565b5085935050505092915050565b600060a0820190506131bc6000830188612462565b6131c960208301876130da565b81810360408301526131db8186613149565b90506131ea60608301856124df565b6131f76080830184612462565b9695505050505050565b600060c08201905061321660008301896124df565b6132236020830188612462565b61323060408301876130da565b61323d60608301866130da565b61324a60808301856124df565b61325760a0830184612462565b979650505050505050565b60008151905061327181612346565b92915050565b6000806000606084860312156132905761328f6122d4565b5b600061329e86828701613262565b93505060206132af86828701613262565b92505060406132c086828701613262565b915050925092509256fea2646970667358221220d5e9e3141d143b2276de7628b20ac4d15e1ca22581377a04dfa852ff0121856b64736f6c63430008110033

Deployed Bytecode Sourcemap

29189:8621:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13203:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14121:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29271:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13518:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14328:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29479:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13419:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14595:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29329:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29541:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29832:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29574:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13632:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18481:103;;;;;;;;;;;;;:::i;:::-;;29366:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18250:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13309:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32296:257;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14839:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13765:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32106:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29403:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32756:235;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29442:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29677:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13964:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29635:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18590:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31930:170;;;;;;;;;;;;;:::i;:::-;;13203:100;13257:13;13290:5;13283:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13203:100;:::o;14121:201::-;14204:4;14221:13;14237:12;:10;:12::i;:::-;14221:28;;14260:32;14269:5;14276:7;14285:6;14260:8;:32::i;:::-;14310:4;14303:11;;;14121:201;;;;:::o;29271:51::-;;;:::o;13518:108::-;13579:7;13606:12;;13599:19;;13518:108;:::o;14328:261::-;14425:4;14442:15;14460:12;:10;:12::i;:::-;14442:30;;14483:38;14499:4;14505:7;14514:6;14483:15;:38::i;:::-;14532:27;14542:4;14548:2;14552:6;14532:9;:27::i;:::-;14577:4;14570:11;;;14328:261;;;;;:::o;29479:53::-;29525:6;29479:53;:::o;13419:93::-;13477:5;13502:2;13495:9;;13419:93;:::o;14595:238::-;14683:4;14700:13;14716:12;:10;:12::i;:::-;14700:28;;14739:64;14748:5;14755:7;14792:10;14764:25;14774:5;14781:7;14764:9;:25::i;:::-;:38;;;;:::i;:::-;14739:8;:64::i;:::-;14821:4;14814:11;;;14595:238;;;;:::o;29329:28::-;;;;;;;;;;;;;:::o;29541:26::-;;;;;;;;;;;;;:::o;29832:28::-;;;;:::o;29574:23::-;;;;;;;;;;;;;:::o;13632:127::-;13706:7;13733:9;:18;13743:7;13733:18;;;;;;;;;;;;;;;;13726:25;;13632:127;;;:::o;18481:103::-;18211:13;:11;:13::i;:::-;18546:30:::1;18573:1;18546:18;:30::i;:::-;18481:103::o:0;29366:30::-;;;;;;;;;;;;;:::o;18250:87::-;18296:7;18323:6;;;;;;;;;;;18316:13;;18250:87;:::o;13309:104::-;13365:13;13398:7;13391:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13309:104;:::o;32296:257::-;18211:13;:11;:13::i;:::-;32418::::1;;;;;;;;;;;32410:21;;:4;:21;;::::0;32402:91:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;32504:41;32533:4;32539:5;32504:28;:41::i;:::-;32296:257:::0;;:::o;14839:436::-;14932:4;14949:13;14965:12;:10;:12::i;:::-;14949:28;;14988:24;15015:25;15025:5;15032:7;15015:9;:25::i;:::-;14988:52;;15079:15;15059:16;:35;;15051:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15172:60;15181:5;15188:7;15216:15;15197:16;:34;15172:8;:60::i;:::-;15263:4;15256:11;;;;14839:436;;;;:::o;13765:193::-;13844:4;13861:13;13877:12;:10;:12::i;:::-;13861:28;;13900;13910:5;13917:2;13921:6;13900:9;:28::i;:::-;13946:4;13939:11;;;13765:193;;;;:::o;32106:182::-;18211:13;:11;:13::i;:::-;32222:8:::1;32191:19;:28;32211:7;32191:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;32262:7;32246:34;;;32271:8;32246:34;;;;;;:::i;:::-;;;;;;;;32106:182:::0;;:::o;29403:32::-;;;;;;;;;;;;;:::o;32756:235::-;18211:13;:11;:13::i;:::-;32873:9:::1;32869:115;32892:8;;:15;;32888:1;:19;32869:115;;;32964:8;32929:19;:32;32949:8;;32958:1;32949:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;32929:32;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;32909:3;;;;;:::i;:::-;;;;32869:115;;;;32756:235:::0;;;:::o;29442:30::-;;;;;;;;;;;;;:::o;29677:27::-;;;;:::o;13964:151::-;14053:7;14080:11;:18;14092:5;14080:18;;;;;;;;;;;;;;;:27;14099:7;14080:27;;;;;;;;;;;;;;;;14073:34;;13964:151;;;;:::o;29635:33::-;;;;:::o;18590:201::-;18211:13;:11;:13::i;:::-;18699:1:::1;18679:22;;:8;:22;;::::0;18671:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;18755:28;18774:8;18755:18;:28::i;:::-;18590:201:::0;:::o;31930:170::-;18211:13;:11;:13::i;:::-;31989:14:::1;;;;;;;;;;;31988:15;31980:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;32059:4;32042:14;;:21;;;;;;;;;;;;;;;;;;32088:4;32074:11;;:18;;;;;;;;;;;;;;;;;;31930:170::o:0;12579:98::-;12632:7;12659:10;12652:17;;12579:98;:::o;16972:346::-;17091:1;17074:19;;:5;:19;;;17066:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17172:1;17153:21;;:7;:21;;;17145:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17256:6;17226:11;:18;17238:5;17226:18;;;;;;;;;;;;;;;:27;17245:7;17226:27;;;;;;;;;;;;;;;:36;;;;17294:7;17278:32;;17287:5;17278:32;;;17303:6;17278:32;;;;;;:::i;:::-;;;;;;;;16972:346;;;:::o;17324:419::-;17425:24;17452:25;17462:5;17469:7;17452:9;:25::i;:::-;17425:52;;17512:17;17492:16;:37;17488:248;;17574:6;17554:16;:26;;17546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17658:51;17667:5;17674:7;17702:6;17683:16;:25;17658:8;:51::i;:::-;17488:248;17414:329;17324:419;;;:::o;32999:2328::-;33147:1;33131:18;;:4;:18;;;33123:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33227:1;33213:16;;:2;:16;;;33205:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33288:14;;;;;;;;;;;:43;;;;33306:19;:25;33326:4;33306:25;;;;;;;;;;;;;;;;;;;;;;;;;33288:43;:70;;;;33335:19;:23;33355:2;33335:23;;;;;;;;;;;;;;;;;;;;;;;;;33288:70;33280:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;33412:1;33402:6;:11;33398:93;;33430:28;33446:4;33452:2;33456:1;33430:15;:28::i;:::-;33473:7;;33398:93;33505:28;33536:24;33554:4;33536:9;:24::i;:::-;33505:55;;33573:12;33612:18;;33588:20;:42;;33573:57;;33661:7;:35;;;;;33685:11;;;;;;;;;;;33661:35;:70;;;;;33699:26;:32;33726:4;33699:32;;;;;;;;;;;;;;;;;;;;;;;;;33661:70;:82;;;;;33734:9;;;;;;;;;;;33733:10;33661:82;:124;;;;;33760:19;:25;33780:4;33760:25;;;;;;;;;;;;;;;;;;;;;;;;;33759:26;33661:124;:165;;;;;33803:19;:23;33823:2;33803:23;;;;;;;;;;;;;;;;;;;;;;;;;33802:24;33661:165;33643:300;;;33865:4;33853:9;;:16;;;;;;;;;;;;;;;;;;33886:11;:9;:11::i;:::-;33926:5;33914:9;;:17;;;;;;;;;;;;;;;;;;33643:300;33955:12;33971:9;;;;;;;;;;;33970:10;33955:25;;33997:19;:25;34017:4;33997:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;34026:19;:23;34046:2;34026:23;;;;;;;;;;;;;;;;;;;;;;;;;33997:52;33993:100;;;34076:5;34066:15;;33993:100;34105:12;34138:7;34134:1140;;;34166:26;:30;34193:2;34166:30;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;34216:1;34200:13;;:17;34166:51;34162:963;;;34245:36;34275:5;34245:25;34256:13;;34245:6;:10;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;34238:43;;34394:13;;34352:17;;34345:4;:24;;;;:::i;:::-;34344:63;;;;:::i;:::-;34300:19;;:107;;;;;;;:::i;:::-;;;;;;;;34520:13;;34478:17;;34471:4;:24;;;;:::i;:::-;34470:63;;;;:::i;:::-;34426:19;;:107;;;;;;;:::i;:::-;;;;;;;;34650:13;;34606:19;;34599:4;:26;;;;:::i;:::-;34598:65;;;;:::i;:::-;34552:21;;:111;;;;;;;:::i;:::-;;;;;;;;34162:963;;;34702:26;:32;34729:4;34702:32;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;;34753:1;34738:12;;:16;34702:52;34698:427;;;34782:35;34811:5;34782:24;34793:12;;34782:6;:10;;:24;;;;:::i;:::-;:28;;:35;;;;:::i;:::-;34775:42;;34887:12;;34867:16;;34860:4;:23;;;;:::i;:::-;34859:40;;;;:::i;:::-;34836:19;;:63;;;;;;;:::i;:::-;;;;;;;;34969:12;;34949:16;;34942:4;:23;;;;:::i;:::-;34941:40;;;;:::i;:::-;34918:19;;:63;;;;;;;:::i;:::-;;;;;;;;35097:12;;35054:18;;35047:4;:25;;;;:::i;:::-;35046:63;;;;:::i;:::-;35000:21;;:109;;;;;;;:::i;:::-;;;;;;;;34698:427;34162:963;35152:1;35145:4;:8;35141:91;;;35174:42;35190:4;35204;35211;35174:15;:42::i;:::-;35141:91;35258:4;35248:14;;;;;:::i;:::-;;;34134:1140;35286:33;35302:4;35308:2;35312:6;35286:15;:33::i;:::-;33112:2215;;;;32999:2328;;;;:::o;18343:132::-;18418:12;:10;:12::i;:::-;18407:23;;:7;:5;:7::i;:::-;:23;;;18399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18343:132::o;18797:191::-;18871:16;18890:6;;;;;;;;;;;18871:25;;18916:8;18907:6;;:17;;;;;;;;;;;;;;;;;;18971:8;18940:40;;18961:8;18940:40;;;;;;;;;;;;18860:128;18797:191;:::o;32561:187::-;32679:5;32644:26;:32;32671:4;32644:32;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;32734:5;32700:40;;32728:4;32700:40;;;;;;;;;;;;32561:187;;:::o;15283:641::-;15396:1;15380:18;;:4;:18;;;15372:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15473:1;15459:16;;:2;:16;;;15451:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15528:38;15549:4;15555:2;15559:6;15528:20;:38::i;:::-;15579:19;15601:9;:15;15611:4;15601:15;;;;;;;;;;;;;;;;15579:37;;15650:6;15635:11;:21;;15627:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15767:6;15753:11;:20;15735:9;:15;15745:4;15735:15;;;;;;;;;;;;;;;:38;;;;15805:6;15788:9;:13;15798:2;15788:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15855:2;15840:26;;15849:4;15840:26;;;15859:6;15840:26;;;;;;:::i;:::-;;;;;;;;15879:37;15899:4;15905:2;15909:6;15879:19;:37::i;:::-;15361:563;15283:641;;;:::o;36198:1607::-;36239:23;36265:24;36283:4;36265:9;:24::i;:::-;36239:50;;36300:25;36398:21;;36363:19;;36328;;:54;;;;:::i;:::-;:91;;;;:::i;:::-;36300:119;;36430:12;36457:23;36571:1;36538:17;36502:19;;36484:15;:37;;;;:::i;:::-;36483:72;;;;:::i;:::-;:89;;;;:::i;:::-;36457:115;;36583:26;36612:36;36632:15;36612;:19;;:36;;;;:::i;:::-;36583:65;;36661:25;36689:21;36661:49;;36723:37;36741:18;36723:17;:37::i;:::-;36773:18;36794:44;36820:17;36794:21;:25;;:44;;;;:::i;:::-;36773:65;;36851:23;36877:82;36931:17;36877:35;36892:19;;36877:10;:14;;:35;;;;:::i;:::-;:39;;:82;;;;:::i;:::-;36851:108;;36972:25;37000:84;37056:17;37000:37;37015:21;;37000:10;:14;;:37;;;;:::i;:::-;:41;;:84;;;;:::i;:::-;36972:112;;37097:23;37180:17;37149:15;37123:10;:41;;;;:::i;:::-;:74;;;;:::i;:::-;37097:100;;37232:1;37210:19;:23;;;;37266:1;37244:19;:23;;;;37302:1;37278:21;:25;;;;37338:1;37320:15;:19;:42;;;;;37361:1;37343:15;:19;37320:42;37316:280;;;37379:47;37393:15;37410;37379:13;:47::i;:::-;37446:138;37479:18;37516:15;37550:19;;37446:138;;;;;;;;:::i;:::-;;;;;;;;37316:280;37630:17;;;;;;;;;;;37622:31;;37661:17;37622:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37608:75;;;;;37718:15;;;;;;;;;;;37710:29;;37761:21;37710:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37696:101;;;;;36228:1577;;;;;;;;;;36198:1607::o;20571:98::-;20629:7;20660:1;20656;:5;;;;:::i;:::-;20649:12;;20571:98;;;;:::o;20681:::-;20739:7;20770:1;20766;:5;;;;:::i;:::-;20759:12;;20681:98;;;;:::o;17749:91::-;;;;:::o;17846:90::-;;;;:::o;20461:98::-;20519:7;20550:1;20546;:5;;;;:::i;:::-;20539:12;;20461:98;;;;:::o;35335:475::-;35403:21;35441:1;35427:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35403:40;;35472:4;35454;35459:1;35454:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;35498:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35488:4;35493:1;35488:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;35533:62;35550:4;35565:15;35583:11;35533:8;:62::i;:::-;35606:15;:66;;;35687:11;35713:1;35729:4;35756;35776:15;35606:196;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35392:418;35335:475;:::o;35818:372::-;35901:62;35918:4;35933:15;35951:11;35901:8;:62::i;:::-;35976:15;:31;;;36015:9;36048:4;36068:11;36094:1;36110;36126:15;;;;;;;;;;;36156;35976:206;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;35818:372;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:153::-;3869:9;3902:37;3933:5;3902:37;:::i;:::-;3889:50;;3792:153;;;:::o;3951:185::-;4065:64;4123:5;4065:64;:::i;:::-;4060:3;4053:77;3951:185;;:::o;4142:276::-;4262:4;4300:2;4289:9;4285:18;4277:26;;4313:98;4408:1;4397:9;4393:17;4384:6;4313:98;:::i;:::-;4142:276;;;;:::o;4424:118::-;4511:24;4529:5;4511:24;:::i;:::-;4506:3;4499:37;4424:118;;:::o;4548:222::-;4641:4;4679:2;4668:9;4664:18;4656:26;;4692:71;4760:1;4749:9;4745:17;4736:6;4692:71;:::i;:::-;4548:222;;;;:::o;4776:619::-;4853:6;4861;4869;4918:2;4906:9;4897:7;4893:23;4889:32;4886:119;;;4924:79;;:::i;:::-;4886:119;5044:1;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5015:117;5171:2;5197:53;5242:7;5233:6;5222:9;5218:22;5197:53;:::i;:::-;5187:63;;5142:118;5299:2;5325:53;5370:7;5361:6;5350:9;5346:22;5325:53;:::i;:::-;5315:63;;5270:118;4776:619;;;;;:::o;5401:118::-;5488:24;5506:5;5488:24;:::i;:::-;5483:3;5476:37;5401:118;;:::o;5525:222::-;5618:4;5656:2;5645:9;5641:18;5633:26;;5669:71;5737:1;5726:9;5722:17;5713:6;5669:71;:::i;:::-;5525:222;;;;:::o;5753:86::-;5788:7;5828:4;5821:5;5817:16;5806:27;;5753:86;;;:::o;5845:112::-;5928:22;5944:5;5928:22;:::i;:::-;5923:3;5916:35;5845:112;;:::o;5963:214::-;6052:4;6090:2;6079:9;6075:18;6067:26;;6103:67;6167:1;6156:9;6152:17;6143:6;6103:67;:::i;:::-;5963:214;;;;:::o;6183:329::-;6242:6;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6417:1;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6388:117;6183:329;;;;:::o;6518:116::-;6588:21;6603:5;6588:21;:::i;:::-;6581:5;6578:32;6568:60;;6624:1;6621;6614:12;6568:60;6518:116;:::o;6640:133::-;6683:5;6721:6;6708:20;6699:29;;6737:30;6761:5;6737:30;:::i;:::-;6640:133;;;;:::o;6779:468::-;6844:6;6852;6901:2;6889:9;6880:7;6876:23;6872:32;6869:119;;;6907:79;;:::i;:::-;6869:119;7027:1;7052:53;7097:7;7088:6;7077:9;7073:22;7052:53;:::i;:::-;7042:63;;6998:117;7154:2;7180:50;7222:7;7213:6;7202:9;7198:22;7180:50;:::i;:::-;7170:60;;7125:115;6779:468;;;;;:::o;7253:117::-;7362:1;7359;7352:12;7376:117;7485:1;7482;7475:12;7499:117;7608:1;7605;7598:12;7639:568;7712:8;7722:6;7772:3;7765:4;7757:6;7753:17;7749:27;7739:122;;7780:79;;:::i;:::-;7739:122;7893:6;7880:20;7870:30;;7923:18;7915:6;7912:30;7909:117;;;7945:79;;:::i;:::-;7909:117;8059:4;8051:6;8047:17;8035:29;;8113:3;8105:4;8097:6;8093:17;8083:8;8079:32;8076:41;8073:128;;;8120:79;;:::i;:::-;8073:128;7639:568;;;;;:::o;8213:698::-;8305:6;8313;8321;8370:2;8358:9;8349:7;8345:23;8341:32;8338:119;;;8376:79;;:::i;:::-;8338:119;8524:1;8513:9;8509:17;8496:31;8554:18;8546:6;8543:30;8540:117;;;8576:79;;:::i;:::-;8540:117;8689:80;8761:7;8752:6;8741:9;8737:22;8689:80;:::i;:::-;8671:98;;;;8467:312;8818:2;8844:50;8886:7;8877:6;8866:9;8862:22;8844:50;:::i;:::-;8834:60;;8789:115;8213:698;;;;;:::o;8917:474::-;8985:6;8993;9042:2;9030:9;9021:7;9017:23;9013:32;9010:119;;;9048:79;;:::i;:::-;9010:119;9168:1;9193:53;9238:7;9229:6;9218:9;9214:22;9193:53;:::i;:::-;9183:63;;9139:117;9295:2;9321:53;9366:7;9357:6;9346:9;9342:22;9321:53;:::i;:::-;9311:63;;9266:118;8917:474;;;;;:::o;9397:180::-;9445:77;9442:1;9435:88;9542:4;9539:1;9532:15;9566:4;9563:1;9556:15;9583:320;9627:6;9664:1;9658:4;9654:12;9644:22;;9711:1;9705:4;9701:12;9732:18;9722:81;;9788:4;9780:6;9776:17;9766:27;;9722:81;9850:2;9842:6;9839:14;9819:18;9816:38;9813:84;;9869:18;;:::i;:::-;9813:84;9634:269;9583:320;;;:::o;9909:180::-;9957:77;9954:1;9947:88;10054:4;10051:1;10044:15;10078:4;10075:1;10068:15;10095:191;10135:3;10154:20;10172:1;10154:20;:::i;:::-;10149:25;;10188:20;10206:1;10188:20;:::i;:::-;10183:25;;10231:1;10228;10224:9;10217:16;;10252:3;10249:1;10246:10;10243:36;;;10259:18;;:::i;:::-;10243:36;10095:191;;;;:::o;10292:244::-;10432:34;10428:1;10420:6;10416:14;10409:58;10501:27;10496:2;10488:6;10484:15;10477:52;10292:244;:::o;10542:366::-;10684:3;10705:67;10769:2;10764:3;10705:67;:::i;:::-;10698:74;;10781:93;10870:3;10781:93;:::i;:::-;10899:2;10894:3;10890:12;10883:19;;10542:366;;;:::o;10914:419::-;11080:4;11118:2;11107:9;11103:18;11095:26;;11167:9;11161:4;11157:20;11153:1;11142:9;11138:17;11131:47;11195:131;11321:4;11195:131;:::i;:::-;11187:139;;10914:419;;;:::o;11339:224::-;11479:34;11475:1;11467:6;11463:14;11456:58;11548:7;11543:2;11535:6;11531:15;11524:32;11339:224;:::o;11569:366::-;11711:3;11732:67;11796:2;11791:3;11732:67;:::i;:::-;11725:74;;11808:93;11897:3;11808:93;:::i;:::-;11926:2;11921:3;11917:12;11910:19;;11569:366;;;:::o;11941:419::-;12107:4;12145:2;12134:9;12130:18;12122:26;;12194:9;12188:4;12184:20;12180:1;12169:9;12165:17;12158:47;12222:131;12348:4;12222:131;:::i;:::-;12214:139;;11941:419;;;:::o;12366:180::-;12414:77;12411:1;12404:88;12511:4;12508:1;12501:15;12535:4;12532:1;12525:15;12552:233;12591:3;12614:24;12632:5;12614:24;:::i;:::-;12605:33;;12660:66;12653:5;12650:77;12647:103;;12730:18;;:::i;:::-;12647:103;12777:1;12770:5;12766:13;12759:20;;12552:233;;;:::o;12791:225::-;12931:34;12927:1;12919:6;12915:14;12908:58;13000:8;12995:2;12987:6;12983:15;12976:33;12791:225;:::o;13022:366::-;13164:3;13185:67;13249:2;13244:3;13185:67;:::i;:::-;13178:74;;13261:93;13350:3;13261:93;:::i;:::-;13379:2;13374:3;13370:12;13363:19;;13022:366;;;:::o;13394:419::-;13560:4;13598:2;13587:9;13583:18;13575:26;;13647:9;13641:4;13637:20;13633:1;13622:9;13618:17;13611:47;13675:131;13801:4;13675:131;:::i;:::-;13667:139;;13394:419;;;:::o;13819:173::-;13959:25;13955:1;13947:6;13943:14;13936:49;13819:173;:::o;13998:366::-;14140:3;14161:67;14225:2;14220:3;14161:67;:::i;:::-;14154:74;;14237:93;14326:3;14237:93;:::i;:::-;14355:2;14350:3;14346:12;14339:19;;13998:366;;;:::o;14370:419::-;14536:4;14574:2;14563:9;14559:18;14551:26;;14623:9;14617:4;14613:20;14609:1;14598:9;14594:17;14587:47;14651:131;14777:4;14651:131;:::i;:::-;14643:139;;14370:419;;;:::o;14795:223::-;14935:34;14931:1;14923:6;14919:14;14912:58;15004:6;14999:2;14991:6;14987:15;14980:31;14795:223;:::o;15024:366::-;15166:3;15187:67;15251:2;15246:3;15187:67;:::i;:::-;15180:74;;15263:93;15352:3;15263:93;:::i;:::-;15381:2;15376:3;15372:12;15365:19;;15024:366;;;:::o;15396:419::-;15562:4;15600:2;15589:9;15585:18;15577:26;;15649:9;15643:4;15639:20;15635:1;15624:9;15620:17;15613:47;15677:131;15803:4;15677:131;:::i;:::-;15669:139;;15396:419;;;:::o;15821:221::-;15961:34;15957:1;15949:6;15945:14;15938:58;16030:4;16025:2;16017:6;16013:15;16006:29;15821:221;:::o;16048:366::-;16190:3;16211:67;16275:2;16270:3;16211:67;:::i;:::-;16204:74;;16287:93;16376:3;16287:93;:::i;:::-;16405:2;16400:3;16396:12;16389:19;;16048:366;;;:::o;16420:419::-;16586:4;16624:2;16613:9;16609:18;16601:26;;16673:9;16667:4;16663:20;16659:1;16648:9;16644:17;16637:47;16701:131;16827:4;16701:131;:::i;:::-;16693:139;;16420:419;;;:::o;16845:179::-;16985:31;16981:1;16973:6;16969:14;16962:55;16845:179;:::o;17030:366::-;17172:3;17193:67;17257:2;17252:3;17193:67;:::i;:::-;17186:74;;17269:93;17358:3;17269:93;:::i;:::-;17387:2;17382:3;17378:12;17371:19;;17030:366;;;:::o;17402:419::-;17568:4;17606:2;17595:9;17591:18;17583:26;;17655:9;17649:4;17645:20;17641:1;17630:9;17626:17;17619:47;17683:131;17809:4;17683:131;:::i;:::-;17675:139;;17402:419;;;:::o;17827:227::-;17967:34;17963:1;17955:6;17951:14;17944:58;18036:10;18031:2;18023:6;18019:15;18012:35;17827:227;:::o;18060:366::-;18202:3;18223:67;18287:2;18282:3;18223:67;:::i;:::-;18216:74;;18299:93;18388:3;18299:93;:::i;:::-;18417:2;18412:3;18408:12;18401:19;;18060:366;;;:::o;18432:419::-;18598:4;18636:2;18625:9;18621:18;18613:26;;18685:9;18679:4;18675:20;18671:1;18660:9;18656:17;18649:47;18713:131;18839:4;18713:131;:::i;:::-;18705:139;;18432:419;;;:::o;18857:222::-;18997:34;18993:1;18985:6;18981:14;18974:58;19066:5;19061:2;19053:6;19049:15;19042:30;18857:222;:::o;19085:366::-;19227:3;19248:67;19312:2;19307:3;19248:67;:::i;:::-;19241:74;;19324:93;19413:3;19324:93;:::i;:::-;19442:2;19437:3;19433:12;19426:19;;19085:366;;;:::o;19457:419::-;19623:4;19661:2;19650:9;19646:18;19638:26;;19710:9;19704:4;19700:20;19696:1;19685:9;19681:17;19674:47;19738:131;19864:4;19738:131;:::i;:::-;19730:139;;19457:419;;;:::o;19882:174::-;20022:26;20018:1;20010:6;20006:14;19999:50;19882:174;:::o;20062:366::-;20204:3;20225:67;20289:2;20284:3;20225:67;:::i;:::-;20218:74;;20301:93;20390:3;20301:93;:::i;:::-;20419:2;20414:3;20410:12;20403:19;;20062:366;;;:::o;20434:419::-;20600:4;20638:2;20627:9;20623:18;20615:26;;20687:9;20681:4;20677:20;20673:1;20662:9;20658:17;20651:47;20715:131;20841:4;20715:131;:::i;:::-;20707:139;;20434:419;;;:::o;20859:410::-;20899:7;20922:20;20940:1;20922:20;:::i;:::-;20917:25;;20956:20;20974:1;20956:20;:::i;:::-;20951:25;;21011:1;21008;21004:9;21033:30;21051:11;21033:30;:::i;:::-;21022:41;;21212:1;21203:7;21199:15;21196:1;21193:22;21173:1;21166:9;21146:83;21123:139;;21242:18;;:::i;:::-;21123:139;20907:362;20859:410;;;;:::o;21275:180::-;21323:77;21320:1;21313:88;21420:4;21417:1;21410:15;21444:4;21441:1;21434:15;21461:185;21501:1;21518:20;21536:1;21518:20;:::i;:::-;21513:25;;21552:20;21570:1;21552:20;:::i;:::-;21547:25;;21591:1;21581:35;;21596:18;;:::i;:::-;21581:35;21638:1;21635;21631:9;21626:14;;21461:185;;;;:::o;21652:194::-;21692:4;21712:20;21730:1;21712:20;:::i;:::-;21707:25;;21746:20;21764:1;21746:20;:::i;:::-;21741:25;;21790:1;21787;21783:9;21775:17;;21814:1;21808:4;21805:11;21802:37;;;21819:18;;:::i;:::-;21802:37;21652:194;;;;:::o;21852:182::-;21992:34;21988:1;21980:6;21976:14;21969:58;21852:182;:::o;22040:366::-;22182:3;22203:67;22267:2;22262:3;22203:67;:::i;:::-;22196:74;;22279:93;22368:3;22279:93;:::i;:::-;22397:2;22392:3;22388:12;22381:19;;22040:366;;;:::o;22412:419::-;22578:4;22616:2;22605:9;22601:18;22593:26;;22665:9;22659:4;22655:20;22651:1;22640:9;22636:17;22629:47;22693:131;22819:4;22693:131;:::i;:::-;22685:139;;22412:419;;;:::o;22837:224::-;22977:34;22973:1;22965:6;22961:14;22954:58;23046:7;23041:2;23033:6;23029:15;23022:32;22837:224;:::o;23067:366::-;23209:3;23230:67;23294:2;23289:3;23230:67;:::i;:::-;23223:74;;23306:93;23395:3;23306:93;:::i;:::-;23424:2;23419:3;23415:12;23408:19;;23067:366;;;:::o;23439:419::-;23605:4;23643:2;23632:9;23628:18;23620:26;;23692:9;23686:4;23682:20;23678:1;23667:9;23663:17;23656:47;23720:131;23846:4;23720:131;:::i;:::-;23712:139;;23439:419;;;:::o;23864:225::-;24004:34;24000:1;23992:6;23988:14;23981:58;24073:8;24068:2;24060:6;24056:15;24049:33;23864:225;:::o;24095:366::-;24237:3;24258:67;24322:2;24317:3;24258:67;:::i;:::-;24251:74;;24334:93;24423:3;24334:93;:::i;:::-;24452:2;24447:3;24443:12;24436:19;;24095:366;;;:::o;24467:419::-;24633:4;24671:2;24660:9;24656:18;24648:26;;24720:9;24714:4;24710:20;24706:1;24695:9;24691:17;24684:47;24748:131;24874:4;24748:131;:::i;:::-;24740:139;;24467:419;;;:::o;24892:442::-;25041:4;25079:2;25068:9;25064:18;25056:26;;25092:71;25160:1;25149:9;25145:17;25136:6;25092:71;:::i;:::-;25173:72;25241:2;25230:9;25226:18;25217:6;25173:72;:::i;:::-;25255;25323:2;25312:9;25308:18;25299:6;25255:72;:::i;:::-;24892:442;;;;;;:::o;25340:147::-;25441:11;25478:3;25463:18;;25340:147;;;;:::o;25493:114::-;;:::o;25613:398::-;25772:3;25793:83;25874:1;25869:3;25793:83;:::i;:::-;25786:90;;25885:93;25974:3;25885:93;:::i;:::-;26003:1;25998:3;25994:11;25987:18;;25613:398;;;:::o;26017:379::-;26201:3;26223:147;26366:3;26223:147;:::i;:::-;26216:154;;26387:3;26380:10;;26017:379;;;:::o;26402:180::-;26450:77;26447:1;26440:88;26547:4;26544:1;26537:15;26571:4;26568:1;26561:15;26588:143;26645:5;26676:6;26670:13;26661:22;;26692:33;26719:5;26692:33;:::i;:::-;26588:143;;;;:::o;26737:351::-;26807:6;26856:2;26844:9;26835:7;26831:23;26827:32;26824:119;;;26862:79;;:::i;:::-;26824:119;26982:1;27007:64;27063:7;27054:6;27043:9;27039:22;27007:64;:::i;:::-;26997:74;;26953:128;26737:351;;;;:::o;27094:85::-;27139:7;27168:5;27157:16;;27094:85;;;:::o;27185:158::-;27243:9;27276:61;27294:42;27303:32;27329:5;27303:32;:::i;:::-;27294:42;:::i;:::-;27276:61;:::i;:::-;27263:74;;27185:158;;;:::o;27349:147::-;27444:45;27483:5;27444:45;:::i;:::-;27439:3;27432:58;27349:147;;:::o;27502:114::-;27569:6;27603:5;27597:12;27587:22;;27502:114;;;:::o;27622:184::-;27721:11;27755:6;27750:3;27743:19;27795:4;27790:3;27786:14;27771:29;;27622:184;;;;:::o;27812:132::-;27879:4;27902:3;27894:11;;27932:4;27927:3;27923:14;27915:22;;27812:132;;;:::o;27950:108::-;28027:24;28045:5;28027:24;:::i;:::-;28022:3;28015:37;27950:108;;:::o;28064:179::-;28133:10;28154:46;28196:3;28188:6;28154:46;:::i;:::-;28232:4;28227:3;28223:14;28209:28;;28064:179;;;;:::o;28249:113::-;28319:4;28351;28346:3;28342:14;28334:22;;28249:113;;;:::o;28398:732::-;28517:3;28546:54;28594:5;28546:54;:::i;:::-;28616:86;28695:6;28690:3;28616:86;:::i;:::-;28609:93;;28726:56;28776:5;28726:56;:::i;:::-;28805:7;28836:1;28821:284;28846:6;28843:1;28840:13;28821:284;;;28922:6;28916:13;28949:63;29008:3;28993:13;28949:63;:::i;:::-;28942:70;;29035:60;29088:6;29035:60;:::i;:::-;29025:70;;28881:224;28868:1;28865;28861:9;28856:14;;28821:284;;;28825:14;29121:3;29114:10;;28522:608;;;28398:732;;;;:::o;29136:831::-;29399:4;29437:3;29426:9;29422:19;29414:27;;29451:71;29519:1;29508:9;29504:17;29495:6;29451:71;:::i;:::-;29532:80;29608:2;29597:9;29593:18;29584:6;29532:80;:::i;:::-;29659:9;29653:4;29649:20;29644:2;29633:9;29629:18;29622:48;29687:108;29790:4;29781:6;29687:108;:::i;:::-;29679:116;;29805:72;29873:2;29862:9;29858:18;29849:6;29805:72;:::i;:::-;29887:73;29955:3;29944:9;29940:19;29931:6;29887:73;:::i;:::-;29136:831;;;;;;;;:::o;29973:807::-;30222:4;30260:3;30249:9;30245:19;30237:27;;30274:71;30342:1;30331:9;30327:17;30318:6;30274:71;:::i;:::-;30355:72;30423:2;30412:9;30408:18;30399:6;30355:72;:::i;:::-;30437:80;30513:2;30502:9;30498:18;30489:6;30437:80;:::i;:::-;30527;30603:2;30592:9;30588:18;30579:6;30527:80;:::i;:::-;30617:73;30685:3;30674:9;30670:19;30661:6;30617:73;:::i;:::-;30700;30768:3;30757:9;30753:19;30744:6;30700:73;:::i;:::-;29973:807;;;;;;;;;:::o;30786:143::-;30843:5;30874:6;30868:13;30859:22;;30890:33;30917:5;30890:33;:::i;:::-;30786:143;;;;:::o;30935:663::-;31023:6;31031;31039;31088:2;31076:9;31067:7;31063:23;31059:32;31056:119;;;31094:79;;:::i;:::-;31056:119;31214:1;31239:64;31295:7;31286:6;31275:9;31271:22;31239:64;:::i;:::-;31229:74;;31185:128;31352:2;31378:64;31434:7;31425:6;31414:9;31410:22;31378:64;:::i;:::-;31368:74;;31323:129;31491:2;31517:64;31573:7;31564:6;31553:9;31549:22;31517:64;:::i;:::-;31507:74;;31462:129;30935:663;;;;;:::o

Swarm Source

ipfs://d5e9e3141d143b2276de7628b20ac4d15e1ca22581377a04dfa852ff0121856b
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.