Token Apple Finance

 

Overview ERC-20

Price
$0.00 @ 0.000000 MATIC
Fully Diluted Market Cap
Total Supply:
8,904,929.736864 Apple

Holders:
7,312 addresses

Transfers:
-

Contract:
0xda8f20bf431d04a3661250f922d75e2bbe0b001c0xda8F20bf431d04a3661250F922D75e2bBE0B001C

Decimals:
18

Social Profiles:
Not Available, Update ?

 
Loading
[ Download CSV Export  ] 
Loading
[ Download CSV Export  ] 
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Comp

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at PolygonScan.com on 2021-06-21
*/

pragma solidity ^0.5.16;

contract Ownable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == msg.sender, "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


contract Operator is Ownable {
    address private _operator;

    event OperatorTransferred(
        address indexed previousOperator,
        address indexed newOperator
    );

    constructor() internal {
        _operator = msg.sender;
        emit OperatorTransferred(address(0), _operator);
    }

    function operator() public view returns (address) {
        return _operator;
    }

    modifier onlyOperator() {
        require(
            _operator == msg.sender,
            'operator: caller is not the operator'
        );
        _;
    }

    function isOperator() public view returns (bool) {
        return msg.sender == _operator;
    }

    function transferOperator(address newOperator_) public onlyOwner {
        _transferOperator(newOperator_);
    }

    function _transferOperator(address newOperator_) internal {
        require(
            newOperator_ != address(0),
            'operator: zero address given for new operator'
        );
        emit OperatorTransferred(address(0), newOperator_);
        _operator = newOperator_;
    }
}

contract Comp is Operator{
    /// @notice EIP-20 token name for this token
    string public constant name = "Apple Finance";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "Apple";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 18;

    /// @notice Total number of tokens in circulation
    uint256 public totalSupply = 200000e18; // 1 billion comp
    
    uint256 public constant MAXSUPPLY = 21000000e18;

    /// @notice Allowance amounts on behalf of others
    mapping(address => mapping(address => uint96)) internal allowances;

    /// @notice Official record of token balances for each account
    mapping(address => uint96) internal balances;

    /// @notice A record of each accounts delegate
    mapping(address => address) public delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint96 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping(address => mapping(uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping(address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH =
        keccak256(
            "EIP712Domain(string name,uint256 chainId,address verifyingContract)"
        );

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH =
        keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping(address => uint256) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(
        address indexed delegator,
        address indexed fromDelegate,
        address indexed toDelegate
    );

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(
        address indexed delegate,
        uint256 previousBalance,
        uint256 newBalance
    );

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /// @notice The standard EIP-20 approval event
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );

    /**
     * @notice Construct a new comp token
     * @param account The initial account to grant all the tokens
     */
    constructor(address account) public {
        balances[account] = uint96(totalSupply);
        emit Transfer(address(0), account, totalSupply);
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender)
        external
        view
        returns (uint256)
    {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint256 rawAmount)
        external
        returns (bool)
    {
        uint96 amount;
        if (rawAmount == uint256(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Comp::approve: amount exceeds 96 bits");
        }

        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint256) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint256 rawAmount) external returns (bool) {
        uint96 amount =
            safe96(rawAmount, "Comp::transfer: amount exceeds 96 bits");
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(
        address src,
        address dst,
        uint256 rawAmount
    ) external returns (bool) {
        address spender = msg.sender;
        uint96 spenderAllowance = allowances[src][spender];
        uint96 amount =
            safe96(rawAmount, "Comp::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance =
                sub96(
                    spenderAllowance,
                    amount,
                    "Comp::transferFrom: transfer amount exceeds spender allowance"
                );
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public {
        bytes32 domainSeparator =
            keccak256(
                abi.encode(
                    DOMAIN_TYPEHASH,
                    keccak256(bytes(name)),
                    getChainId(),
                    address(this)
                )
            );
        bytes32 structHash =
            keccak256(
                abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry)
            );
        bytes32 digest =
            keccak256(
                abi.encodePacked("\x19\x01", domainSeparator, structHash)
            );
        address signatory = ecrecover(digest, v, r, s);
        require(
            signatory != address(0),
            "Comp::delegateBySig: invalid signature"
        );
        require(
            nonce == nonces[signatory]++,
            "Comp::delegateBySig: invalid nonce"
        );
        require(now <= expiry, "Comp::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint96) {
        uint32 nCheckpoints = numCheckpoints[account];
        return
            nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint256 blockNumber)
        public
        view
        returns (uint96)
    {
        require(
            blockNumber < block.number,
            "Comp::getPriorVotes: not yet determined"
        );

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint96 delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _transferTokens(
        address src,
        address dst,
        uint96 amount
    ) internal {
        require(
            src != address(0),
            "Comp::_transferTokens: cannot transfer from the zero address"
        );
        require(
            dst != address(0),
            "Comp::_transferTokens: cannot transfer to the zero address"
        );

        balances[src] = sub96(
            balances[src],
            amount,
            "Comp::_transferTokens: transfer amount exceeds balance"
        );
        balances[dst] = add96(
            balances[dst],
            amount,
            "Comp::_transferTokens: transfer amount overflows"
        );
        emit Transfer(src, dst, amount);

        _moveDelegates(delegates[src], delegates[dst], amount);
    }

    function _moveDelegates(
        address srcRep,
        address dstRep,
        uint96 amount
    ) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint96 srcRepOld =
                    srcRepNum > 0
                        ? checkpoints[srcRep][srcRepNum - 1].votes
                        : 0;
                uint96 srcRepNew =
                    sub96(
                        srcRepOld,
                        amount,
                        "Comp::_moveVotes: vote amount underflows"
                    );
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint96 dstRepOld =
                    dstRepNum > 0
                        ? checkpoints[dstRep][dstRepNum - 1].votes
                        : 0;
                uint96 dstRepNew =
                    add96(
                        dstRepOld,
                        amount,
                        "Comp::_moveVotes: vote amount overflows"
                    );
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint96 oldVotes,
        uint96 newVotes
    ) internal {
        uint32 blockNumber =
            safe32(
                block.number,
                "Comp::_writeCheckpoint: block number exceeds 32 bits"
            );

        if (
            nCheckpoints > 0 &&
            checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber
        ) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(
                blockNumber,
                newVotes
            );
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint256 n, string memory errorMessage)
        internal
        pure
        returns (uint32)
    {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function safe96(uint256 n, string memory errorMessage)
        internal
        pure
        returns (uint96)
    {
        require(n < 2**96, errorMessage);
        return uint96(n);
    }

    function add96(
        uint96 a,
        uint96 b,
        string memory errorMessage
    ) internal pure returns (uint96) {
        uint96 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }
    
    function add256(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

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

    function getChainId() internal pure returns (uint256) {
        uint256 chainId;
        assembly {
            chainId := chainid()
        }
        return chainId;
    }
    
    function mint(address recipient_, uint256 amount_)
        public
        onlyOperator
        returns (bool){
        require(recipient_ != address(0), "ERC20: mint to the zero address");
        totalSupply = add256(totalSupply, amount_, "Comp::mint::exceeds 256bits");
        require(totalSupply <= MAXSUPPLY, "Comp::mint::exceeds MAXSUPPLY");
        balances[recipient_] = add96(balances[recipient_], uint96(amount_), "Comp::mint::exceeds 96bits");
        emit Transfer(address(0), recipient_, amount_);
        return true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"account","type":"address"}],"payable":false,"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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAXSUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

6080604052692a5a058fc295ed00000060025534801561001e57600080fd5b506040516120f03803806120f08339818101604052602081101561004157600080fd5b5051600080546001600160a01b03191633178082556040516001600160a01b039190911691907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600180546001600160a01b0319163317908190556040516001600160a01b0391909116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600280546001600160a01b038316600081815260046020908152604080832080546001600160601b0319166001600160601b0390961695909517909455935483519081529251919390927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a350611f938061015d6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a9059cbb11610097578063dd62ed3e11610071578063dd62ed3e14610539578063e7a324dc14610567578063f1127ed81461056f578063f2fde38b146105c9576101a9565b8063a9059cbb146104a0578063b4b5ea57146104cc578063c3cda520146104f2576101a9565b8063782d6fe1116100d3578063782d6fe1146104225780637ecebe001461046a5780638da5cb5b1461049057806395d89b4114610498576101a9565b806370a08231146103ec578063715018a614610412578063758b4e861461041a576101a9565b8063313ce56711610166578063570ca73511610140578063570ca7351461033d578063587cde1e146103615780635c19a95c146103875780636fcfff45146103ad576101a9565b8063313ce567146102eb57806340c10f19146103095780634456eda214610335576101a9565b806306fdde03146101ae578063095ea7b31461022b57806318160ddd1461026b57806320606b701461028557806323b872dd1461028d57806329605e77146102c3575b600080fd5b6101b66105ef565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b038135169060200135610618565b604080519115158252519081900360200190f35b6102736106d6565b60408051918252519081900360200190f35b6102736106dc565b610257600480360360608110156102a357600080fd5b506001600160a01b038135811691602081013590911690604001356106f7565b6102e9600480360360208110156102d957600080fd5b50356001600160a01b031661083c565b005b6102f36108a7565b6040805160ff9092168252519081900360200190f35b6102576004803603604081101561031f57600080fd5b506001600160a01b0381351690602001356108ac565b610257610ad9565b610345610aea565b604080516001600160a01b039092168252519081900360200190f35b6103456004803603602081101561037757600080fd5b50356001600160a01b0316610af9565b6102e96004803603602081101561039d57600080fd5b50356001600160a01b0316610b14565b6103d3600480360360208110156103c357600080fd5b50356001600160a01b0316610b1e565b6040805163ffffffff9092168252519081900360200190f35b6102736004803603602081101561040257600080fd5b50356001600160a01b0316610b36565b6102e9610b5a565b610273610c03565b61044e6004803603604081101561043857600080fd5b506001600160a01b038135169060200135610c12565b604080516001600160601b039092168252519081900360200190f35b6102736004803603602081101561048057600080fd5b50356001600160a01b0316610e3f565b610345610e51565b6101b6610e60565b610257600480360360408110156104b657600080fd5b506001600160a01b038135169060200135610e81565b61044e600480360360208110156104e257600080fd5b50356001600160a01b0316610ebd565b6102e9600480360360c081101561050857600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135610f2e565b6102736004803603604081101561054f57600080fd5b506001600160a01b03813581169160200135166111dc565b610273611210565b6105a16004803603604081101561058557600080fd5b5080356001600160a01b0316906020013563ffffffff1661122b565b6040805163ffffffff90931683526001600160601b0390911660208301528051918290030190f35b6102e9600480360360208110156105df57600080fd5b50356001600160a01b0316611260565b6040518060400160405280600d81526020016c4170706c652046696e616e636560981b81525081565b60008060001983141561062e5750600019610653565b61065083604051806060016040528060258152602001611c976025913961135f565b90505b3360008181526003602090815260408083206001600160a01b0389168085529083529281902080546001600160601b0319166001600160601b038716908117909155815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a360019150505b92915050565b60025481565b604051806043611e1e82396043019050604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b0390911692859261074f9288929190611c979083013961135f565b9050866001600160a01b0316836001600160a01b03161415801561077c57506001600160601b0382811614155b156108245760006107a683836040518060600160405280603d8152602001611ec1603d91396113f9565b6001600160a01b038981166000818152600360209081526040808320948a168084529482529182902080546001600160601b0319166001600160601b03871690811790915582519081529151949550929391927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92592918290030190a3505b61082f878783611466565b5060019695505050505050565b6000546001600160a01b0316331461089b576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6108a48161164b565b50565b601281565b6001546000906001600160a01b031633146108f85760405162461bcd60e51b8152600401808060200182810382526024815260200180611e9d6024913960400191505060405180910390fd5b6001600160a01b038316610953576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610995600254836040518060400160405280601b81526020017f436f6d703a3a6d696e743a3a65786365656473203235366269747300000000008152506116e8565b60028190556a115eec47f6cf7e3500000010156109f9576040805162461bcd60e51b815260206004820152601d60248201527f436f6d703a3a6d696e743a3a65786365656473204d4158535550504c59000000604482015290519081900360640190fd5b6001600160a01b038316600090815260046020908152604091829020548251808401909352601a83527f436f6d703a3a6d696e743a3a657863656564732039366269747300000000000091830191909152610a61916001600160601b03909116908490611746565b6001600160a01b038416600081815260046020908152604080832080546001600160601b0319166001600160601b03969096169590951790945583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a350600192915050565b6001546001600160a01b0316331490565b6001546001600160a01b031690565b6005602052600090815260409020546001600160a01b031681565b6108a433826117a7565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b6000546001600160a01b03163314610bb9576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6a115eec47f6cf7e3500000081565b6000438210610c525760405162461bcd60e51b8152600401808060200182810382526027815260200180611cbc6027913960400191505060405180910390fd5b6001600160a01b03831660009081526007602052604090205463ffffffff1680610c805760009150506106d0565b6001600160a01b038416600090815260066020908152604080832063ffffffff600019860181168552925290912054168310610cfc576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b031690506106d0565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff16831015610d375760009150506106d0565b600060001982015b8163ffffffff168163ffffffff161115610dfa57600282820363ffffffff16048103610d69611bd7565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610dd5576020015194506106d09350505050565b805163ffffffff16871115610dec57819350610df3565b6001820392505b5050610d3f565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b6000546001600160a01b031690565b604051806040016040528060058152602001644170706c6560d81b81525081565b600080610ea683604051806060016040528060268152602001611ce36026913961135f565b9050610eb3338583611466565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610ee8576000610f27565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03165b9392505050565b60006040518080611e1e6043913960408051918290036043018220828201909152600d82526c4170706c652046696e616e636560981b60209092019190915290507f328db15f17d034c8b8c704fbec3d08cea0830d8fb7d9d07502ae98311c6451f9610f98611831565b3060405160200180858152602001848152602001838152602001826001600160a01b03166001600160a01b0316815260200194505050505060405160208183030381529060405280519060200120905060006040518080611f25603a91396040805191829003603a0182206020808401919091526001600160a01b038c1683830152606083018b905260808084018b90528251808503909101815260a08401835280519082012061190160f01b60c085015260c2840187905260e2808501829052835180860390910181526101028501808552815191840191909120600091829052610122860180865281905260ff8c1661014287015261016286018b905261018286018a9052935191965092945091926001926101a28083019392601f198301929081900390910190855afa1580156110d6573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166111285760405162461bcd60e51b8152600401808060200182810382526026815260200180611c4b6026913960400191505060405180910390fd5b6001600160a01b038116600090815260086020526040902080546001810190915589146111865760405162461bcd60e51b8152600401808060200182810382526022815260200180611d3d6022913960400191505060405180910390fd5b874211156111c55760405162461bcd60e51b8152600401808060200182810382526026815260200180611c716026913960400191505060405180910390fd5b6111cf818b6117a7565b505050505b505050505050565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b60405180603a611f258239603a019050604051809103902081565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b6000546001600160a01b031633146112bf576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166113045760405162461bcd60e51b8152600401808060200182810382526026815260200180611c256026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600081600160601b84106113f15760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156113b657818101518382015260200161139e565b50505050905090810190601f1680156113e35780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b6000836001600160601b0316836001600160601b03161115829061145e5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113b657818101518382015260200161139e565b505050900390565b6001600160a01b0383166114ab5760405162461bcd60e51b815260040180806020018281038252603c815260200180611e61603c913960400191505060405180910390fd5b6001600160a01b0382166114f05760405162461bcd60e51b815260040180806020018281038252603a815260200180611d5f603a913960400191505060405180910390fd5b6001600160a01b03831660009081526004602090815260409182902054825160608101909352603680845261153b936001600160601b039092169285929190611bef908301396113f9565b6001600160a01b03848116600090815260046020908152604080832080546001600160601b0319166001600160601b039687161790559286168252908290205482516060810190935260308084526115a39491909116928592909190611dee90830139611746565b6001600160a01b0383811660008181526004602090815260409182902080546001600160601b0319166001600160601b039687161790558151948616855290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a36001600160a01b0380841660009081526005602052604080822054858416835291205461164692918216911683611835565b505050565b6001600160a01b0381166116905760405162461bcd60e51b815260040180806020018281038252602d815260200180611d99602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600180546001600160a01b0319166001600160a01b0392909216919091179055565b6000838301828582101561173d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113b657818101518382015260200161139e565b50949350505050565b6000838301826001600160601b03808716908316101561173d5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113b657818101518382015260200161139e565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461182b828483611835565b50505050565b4690565b816001600160a01b0316836001600160a01b03161415801561186057506000816001600160601b0316115b15611646576001600160a01b03831615611918576001600160a01b03831660009081526007602052604081205463ffffffff1690816118a05760006118df565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006119068285604051806060016040528060288152602001611dc6602891396113f9565b9050611914868484846119c3565b5050505b6001600160a01b03821615611646576001600160a01b03821660009081526007602052604081205463ffffffff169081611953576000611992565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006119b98285604051806060016040528060278152602001611efe60279139611746565b90506111d4858484845b60006119e743604051806060016040528060348152602001611d0960349139611b82565b905060008463ffffffff16118015611a3057506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611a8f576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611b2e565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b604080516001600160601b0380861682528416602082015281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081600160201b84106113f15760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156113b657818101518382015260200161139e565b60408051808201909152600080825260208201529056fe436f6d703a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373436f6d703a3a64656c656761746542795369673a20696e76616c6964207369676e6174757265436f6d703a3a64656c656761746542795369673a207369676e61747572652065787069726564436f6d703a3a617070726f76653a20616d6f756e7420657863656564732039362062697473436f6d703a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564436f6d703a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473436f6d703a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473436f6d703a3a64656c656761746542795369673a20696e76616c6964206e6f6e6365436f6d703a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e7366657220746f20746865207a65726f20616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72436f6d703a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773436f6d703a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e747261637429436f6d703a3a5f7472616e73666572546f6b656e733a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f20616464726573736f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72436f6d703a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365436f6d703a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777344656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e743235362065787069727929a265627a7a72315820687ba8acbc1617ecb90134d10c6fdd2d18f27db6f9e4d464fc6a49b942fc347e64736f6c634300051100320000000000000000000000001284af164b538f7099ae616e8b056d57675ff6f2

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000001284af164b538f7099ae616e8b056d57675ff6f2

-----Decoded View---------------
Arg [0] : account (address): 0x1284af164b538f7099ae616e8b056d57675ff6f2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001284af164b538f7099ae616e8b056d57675ff6f2


Deployed ByteCode Sourcemap

2770:15531:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2770:15531:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2852:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;2852:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6631:448;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6631:448:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3159:38;;;:::i;:::-;;;;;;;;;;;;;;;;4133:155;;;:::i;8221:821::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8221:821:0;;;;;;;;;;;;;;;;;:::i;2346:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2346:115:0;-1:-1:-1;;;;;2346:115:0;;:::i;:::-;;3060:35;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17751:547;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;17751:547:0;;;;;;;;:::i;2240:98::-;;;:::i;1975:85::-;;;:::i;:::-;;;;-1:-1:-1;;;;;1975:85:0;;;;;;;;;;;;;;3587:44;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3587:44:0;-1:-1:-1;;;;;3587:44:0;;:::i;9190:102::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9190:102:0;-1:-1:-1;;;;;9190:102:0;;:::i;4012:48::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4012:48:0;-1:-1:-1;;;;;4012:48:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;7282:111;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7282:111:0;-1:-1:-1;;;;;7282:111:0;;:::i;1113:140::-;;;:::i;3228:47::-;;;:::i;11761:1290::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11761:1290:0;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;11761:1290:0;;;;;;;;;;;;;;4589:41;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4589:41:0;-1:-1:-1;;;;;4589:41:0;;:::i;473:79::-;;;:::i;2958:39::-;;;:::i;7657:254::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7657:254:0;;;;;;;;:::i;11095:235::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11095:235:0;-1:-1:-1;;;;;11095:235:0;;:::i;9726:1168::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;9726:1168:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;5982:171::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5982:171:0;;;;;;;;;;:::i;4382:126::-;;;:::i;3875:68::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3875:68:0;;-1:-1:-1;;;;;3875:68:0;;;;;;;;:::i;:::-;;;;;;;;;;-1:-1:-1;;;;;3875:68:0;;;;;;;;;;;;;;;;1408:236;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;1408:236:0;-1:-1:-1;;;;;1408:236:0;;:::i;2852:45::-;;;;;;;;;;;;;;-1:-1:-1;;;2852:45:0;;;;:::o;6631:448::-;6720:4;6742:13;-1:-1:-1;;6770:9:0;:24;6766:176;;;-1:-1:-1;;;6766:176:0;;;6872:58;6879:9;6872:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;6863:67;;6766:176;6965:10;6954:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;6954:31:0;;;;;;;;;;;;:40;;-1:-1:-1;;;;;;6954:40:0;-1:-1:-1;;;;;6954:40:0;;;;;;;;7012:37;;;;;;;6954:31;;6965:10;7012:37;;;;;;;;;;;7067:4;7060:11;;;6631:448;;;;;:::o;3159:38::-;;;;:::o;4133:155::-;4184:104;;;;;;;;;;;;;;;;;;4133:155;:::o;8221:821::-;-1:-1:-1;;;;;8422:15:0;;8340:4;8422:15;;;:10;:15;;;;;;;;8375:10;8422:24;;;;;;;;;;8486:58;;;;;;;;;;;;8375:10;;-1:-1:-1;;;;;8422:24:0;;;;8340:4;;8486:58;;8493:9;;8486:58;;;;;;;:6;:58::i;:::-;8457:87;;8572:3;-1:-1:-1;;;;;8561:14:0;:7;-1:-1:-1;;;;;8561:14:0;;;:48;;;;-1:-1:-1;;;;;;8579:30:0;;;;;8561:48;8557:410;;;8626:19;8665:178;8693:16;8732:6;8665:178;;;;;;;;;;;;;;;;;:5;:178::i;:::-;-1:-1:-1;;;;;8858:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;:39;;-1:-1:-1;;;;;;8858:39:0;-1:-1:-1;;;;;8858:39:0;;;;;;;;8919:36;;;;;;;8858:39;;-1:-1:-1;8858:24:0;;:15;;8919:36;;;;;;;;;8557:410;;8979:33;8995:3;9000;9005:6;8979:15;:33::i;:::-;-1:-1:-1;9030:4:0;;8221:821;-1:-1:-1;;;;;;8221:821:0:o;2346:115::-;685:6;;-1:-1:-1;;;;;685:6:0;695:10;685:20;677:65;;;;;-1:-1:-1;;;677:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2422:31;2440:12;2422:17;:31::i;:::-;2346:115;:::o;3060:35::-;3093:2;3060:35;:::o;17751:547::-;2125:9;;17858:4;;-1:-1:-1;;;;;2125:9:0;2138:10;2125:23;2103:109;;;;-1:-1:-1;;;2103:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17882:24:0;;17874:68;;;;;-1:-1:-1;;;17874:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17967:59;17974:11;;17987:7;17967:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;17953:11;:73;;;3264:11;-1:-1:-1;18045:24:0;18037:66;;;;;-1:-1:-1;;;18037:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18143:20:0;;;;;;:8;:20;;;;;;;;;;18137:74;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18143:20:0;;;;18172:7;;18137:5;:74::i;:::-;-1:-1:-1;;;;;18114:20:0;;;;;;:8;:20;;;;;;;;:97;;-1:-1:-1;;;;;;18114:97:0;-1:-1:-1;;;;;18114:97:0;;;;;;;;;;;18227:41;;;;;;;18114:20;;;;18227:41;;;;;;;;;;-1:-1:-1;18286:4:0;17751:547;;;;:::o;2240:98::-;2321:9;;-1:-1:-1;;;;;2321:9:0;2307:10;:23;;2240:98::o;1975:85::-;2043:9;;-1:-1:-1;;;;;2043:9:0;1975:85;:::o;3587:44::-;;;;;;;;;;;;-1:-1:-1;;;;;3587:44:0;;:::o;9190:102::-;9252:32;9262:10;9274:9;9252;:32::i;4012:48::-;;;;;;;;;;;;;;;:::o;7282:111::-;-1:-1:-1;;;;;7368:17:0;7341:7;7368:17;;;:8;:17;;;;;;-1:-1:-1;;;;;7368:17:0;;7282:111::o;1113:140::-;685:6;;-1:-1:-1;;;;;685:6:0;695:10;685:20;677:65;;;;;-1:-1:-1;;;677:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1212:1;1196:6;;1175:40;;-1:-1:-1;;;;;1196:6:0;;;;1175:40;;1212:1;;1175:40;1243:1;1226:19;;-1:-1:-1;;;;;;1226:19:0;;;1113:140::o;3228:47::-;3264:11;3228:47;:::o;11761:1290::-;11870:6;11930:12;11916:11;:26;11894:115;;;;-1:-1:-1;;;11894:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12044:23:0;;12022:19;12044:23;;;:14;:23;;;;;;;;12082:17;12078:58;;12123:1;12116:8;;;;;12078:58;-1:-1:-1;;;;;12196:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;12217:16:0;;12196:38;;;;;;;;;:48;;:63;-1:-1:-1;12192:147:0;;-1:-1:-1;;;;;12283:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;12304:16:0;;;;12283:38;;;;;;;;:44;-1:-1:-1;;;12283:44:0;;-1:-1:-1;;;;;12283:44:0;;-1:-1:-1;12276:51:0;;12192:147;-1:-1:-1;;;;;12400:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;12396:88:0;;;12471:1;12464:8;;;;;12396:88;12496:12;-1:-1:-1;;12538:16:0;;12565:428;12580:5;12572:13;;:5;:13;;;12565:428;;;12644:1;12627:13;;;12626:19;;;12618:27;;12687:20;;:::i;:::-;-1:-1:-1;;;;;;12710:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;12687:51;;;;;;;;;;;;;;;-1:-1:-1;;;12687:51:0;;;-1:-1:-1;;;;;12687:51:0;;;;;;;;;12757:27;;12753:229;;;12812:8;;;;-1:-1:-1;12805:15:0;;-1:-1:-1;;;;12805:15:0;12753:229;12846:12;;:26;;;-1:-1:-1;12842:140:0;;;12901:6;12893:14;;12842:140;;;12965:1;12956:6;:10;12948:18;;12842:140;12565:428;;;;;-1:-1:-1;;;;;;13010:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;13010:33:0;;;;;-1:-1:-1;;11761:1290:0;;;;:::o;4589:41::-;;;;;;;;;;;;;:::o;473:79::-;511:7;538:6;-1:-1:-1;;;;;538:6:0;473:79;:::o;2958:39::-;;;;;;;;;;;;;;-1:-1:-1;;;2958:39:0;;;;:::o;7657:254::-;7725:4;7742:13;7771:59;7778:9;7771:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;7742:88;;7841:40;7857:10;7869:3;7874:6;7841:15;:40::i;:::-;-1:-1:-1;7899:4:0;;7657:254;-1:-1:-1;;;7657:254:0:o;11095:235::-;-1:-1:-1;;;;;11201:23:0;;11160:6;11201:23;;;:14;:23;;;;;;;;11255:16;:67;;11321:1;11255:67;;;-1:-1:-1;;;;;11274:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;11295:16:0;;11274:38;;;;;;;;;:44;-1:-1:-1;;;11274:44:0;;-1:-1:-1;;;;;11274:44:0;11255:67;11235:87;11095:235;-1:-1:-1;;;11095:235:0:o;9726:1168::-;9909:23;4184:104;;;;;;;;;;;;;;;;;;;10063:4;;;;;;;;;-1:-1:-1;;;10063:4:0;;;;;;;;4184:104;-1:-1:-1;10047:22:0;10092:12;:10;:12::i;:::-;10135:4;9976:183;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9976:183:0;-1:-1:-1;;;;;9976:183:0;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;9976:183:0;;;9948:226;;;;;;9909:265;;10185:18;4437:71;;;;;;;;;;;;;;;;;;;10247:57;;;;;;;;-1:-1:-1;;;;;10247:57:0;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;10247:57:0;;;;;10219:100;;;;;;-1:-1:-1;;;10388:57:0;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;10388:57:0;;;;;;10360:100;;;;;;;;;-1:-1:-1;10491:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10219:100;;-1:-1:-1;10360:100:0;;-1:-1:-1;;;10491:26:0;;;;;;;10247:57;-1:-1:-1;;10491:26:0;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;10491:26:0;;-1:-1:-1;;10491:26:0;;;-1:-1:-1;;;;;;;10550:23:0;;10528:111;;;;-1:-1:-1;;;10528:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10681:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;10672:28;;10650:112;;;;-1:-1:-1;;;10650:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10788:6;10781:3;:13;;10773:64;;;;-1:-1:-1;;;10773:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10855:31;10865:9;10876;10855;:31::i;:::-;10848:38;;;;9726:1168;;;;;;;:::o;5982:171::-;-1:-1:-1;;;;;6117:19:0;;;6085:7;6117:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;-1:-1:-1;;;;;6117:28:0;;5982:171::o;4382:126::-;4437:71;;;;;;;;;;;;;;;;;;4382:126;:::o;3875:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;3875:68:0;;-1:-1:-1;;;;;3875:68:0;;:::o;1408:236::-;685:6;;-1:-1:-1;;;;;685:6:0;695:10;685:20;677:65;;;;;-1:-1:-1;;;677:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1489:22:0;;1481:73;;;;-1:-1:-1;;;1481:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1591:6;;;1570:38;;-1:-1:-1;;;;;1570:38:0;;;;1591:6;;;1570:38;;;1619:6;:17;;-1:-1:-1;;;;;;1619:17:0;-1:-1:-1;;;;;1619:17:0;;;;;;;;;;1408:236::o;16681:196::-;16786:6;16829:12;-1:-1:-1;;;16818:9:0;;16810:32;;;;-1:-1:-1;;;16810:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;16810:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16867:1:0;;16681:196;-1:-1:-1;;16681:196:0:o;17354:199::-;17474:6;17506:1;-1:-1:-1;;;;;17501:6:0;:1;-1:-1:-1;;;;;17501:6:0;;;17509:12;17493:29;;;;;-1:-1:-1;;;17493:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;17493:29:0;-1:-1:-1;;;17540:5:0;;;17354:199::o;13442:822::-;-1:-1:-1;;;;;13584:17:0;;13562:127;;;;-1:-1:-1;;;13562:127:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13722:17:0;;13700:125;;;;-1:-1:-1;;;13700:125:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13874:13:0;;;;;;:8;:13;;;;;;;;;;13854:136;;;;;;;;;;;;;;-1:-1:-1;;;;;13874:13:0;;;;13902:6;;13854:136;;;;;;;:5;:136::i;:::-;-1:-1:-1;;;;;13838:13:0;;;;;;;:8;:13;;;;;;;;:152;;-1:-1:-1;;;;;;13838:152:0;-1:-1:-1;;;;;13838:152:0;;;;;;14037:13;;;;;;;;;;14017:130;;;;;;;;;;;;;;14037:13;;;;;14065:6;;14017:130;;;;;;;;:5;:130::i;:::-;-1:-1:-1;;;;;14001:13:0;;;;;;;:8;:13;;;;;;;;;:146;;-1:-1:-1;;;;;;14001:146:0;-1:-1:-1;;;;;14001:146:0;;;;;;14163:26;;;;;;;;;14001:13;;14163:26;;;;;;;;;;;;;;;-1:-1:-1;;;;;14217:14:0;;;;;;;:9;:14;;;;;;;14233;;;;;;;;14202:54;;14217:14;;;;14233;14249:6;14202:14;:54::i;:::-;13442:822;;;:::o;2469:294::-;-1:-1:-1;;;;;2560:26:0;;2538:121;;;;-1:-1:-1;;;2538:121:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2675:45;;-1:-1:-1;;;;;2675:45:0;;;2703:1;;2675:45;;2703:1;;2675:45;2731:9;:24;;-1:-1:-1;;;;;;2731:24:0;-1:-1:-1;;;;;2731:24:0;;;;;;;;;;2469:294::o;17119:227::-;17242:7;17274:5;;;17306:12;17298:6;;;;17290:29;;;;-1:-1:-1;;;17290:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;17290:29:0;-1:-1:-1;17337:1:0;17119:227;-1:-1:-1;;;;17119:227:0:o;16885:222::-;17005:6;17035:5;;;17067:12;-1:-1:-1;;;;;17059:6:0;;;;;;;;17051:29;;;;-1:-1:-1;;;17051:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;13059:375:0;-1:-1:-1;;;;;13162:20:0;;;13136:23;13162:20;;;:9;:20;;;;;;;;;;13219:8;:19;;;;;;13249:20;;;;:32;;;-1:-1:-1;;;;;;13249:32:0;;;;;;;13299:54;;13162:20;;;;;-1:-1:-1;;;;;13219:19:0;;;;13249:32;;13162:20;;;13299:54;;13136:23;13299:54;13366:60;13381:15;13398:9;13409:16;13366:14;:60::i;:::-;13059:375;;;;:::o;17561:178::-;17687:9;17561:178;:::o;14272:1353::-;14411:6;-1:-1:-1;;;;;14401:16:0;:6;-1:-1:-1;;;;;14401:16:0;;;:30;;;;;14430:1;14421:6;-1:-1:-1;;;;;14421:10:0;;14401:30;14397:1221;;;-1:-1:-1;;;;;14452:20:0;;;14448:572;;-1:-1:-1;;;;;14512:22:0;;14493:16;14512:22;;;:14;:22;;;;;;;;;14593:13;:110;;14702:1;14593:110;;;-1:-1:-1;;;;;14634:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;14654:13:0;;14634:34;;;;;;;;;:40;-1:-1:-1;;;14634:40:0;;-1:-1:-1;;;;;14634:40:0;14593:110;14553:150;;14722:16;14762:166;14794:9;14830:6;14762:166;;;;;;;;;;;;;;;;;:5;:166::i;:::-;14722:206;;14947:57;14964:6;14972:9;14983;14994;14947:16;:57::i;:::-;14448:572;;;;-1:-1:-1;;;;;15040:20:0;;;15036:571;;-1:-1:-1;;;;;15100:22:0;;15081:16;15100:22;;;:14;:22;;;;;;;;;15181:13;:110;;15290:1;15181:110;;;-1:-1:-1;;;;;15222:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;15242:13:0;;15222:34;;;;;;;;;:40;-1:-1:-1;;;15222:40:0;;-1:-1:-1;;;;;15222:40:0;15181:110;15141:150;;15310:16;15350:165;15382:9;15418:6;15350:165;;;;;;;;;;;;;;;;;:5;:165::i;:::-;15310:205;;15534:57;15551:6;15559:9;15570;15581;15633:836;15796:18;15830:125;15855:12;15830:125;;;;;;;;;;;;;;;;;:6;:125::i;:::-;15796:159;;16001:1;15986:12;:16;;;:98;;;;-1:-1:-1;;;;;;16019:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;16042:16:0;;16019:40;;;;;;;;;:50;:65;;;:50;;:65;15986:98;15968:425;;;-1:-1:-1;;;;;16111:22:0;;;;;;:11;:22;;;;;;;;-1:-1:-1;;16134:16:0;;16111:40;;;;;;;;;:57;;-1:-1:-1;;16111:57:0;-1:-1:-1;;;;;;;;16111:57:0;;;;;;15968:425;;;16240:82;;;;;;;;;;;;;;-1:-1:-1;;;;;16240:82:0;;;;;;;;;;-1:-1:-1;;;;;16201:22:0;;-1:-1:-1;16201:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:121;;;;;;;;;-1:-1:-1;;;16201:121:0;-1:-1:-1;;16201:121:0;;;-1:-1:-1;;16201:121:0;;;;;;;;;;;;;;;16337:25;;;:14;:25;;;;;;;:44;;16201:121;16365:16;;16337:44;;;;;;;;;;;;;15968:425;16410:51;;;-1:-1:-1;;;;;16410:51:0;;;;;;;;;;;;;-1:-1:-1;;;;;16410:51:0;;;;;;;;;;;15633:836;;;;;:::o;16477:196::-;16582:6;16625:12;-1:-1:-1;;;16614:9:0;;16606:32;;;;-1:-1:-1;;;16606:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;2770:15531:0;;;;;;;;;;-1:-1:-1;2770:15531:0;;;;;;;;:::o

Swarm Source

bzzr://687ba8acbc1617ecb90134d10c6fdd2d18f27db6f9e4d464fc6a49b942fc347e
Loading