ETH Price: $2,475.39 (-0.05%)

Token

Ample Gold (AMPLG)
 

Overview

Max Total Supply

301,468.230954426 AMPLG

Holders

248 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
11.701854917 AMPLG

Value
$0.00
0x8269b28735481bdd0335658da0ec5159451af748
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

AMPLG is a gold pegged defi protocol that is based on Ampleforths elastic token supply model aims for base price target of 1 AMPLG: 0.01G gold

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AMPLGToken

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

/* 

    _    __  __ ____  _     _____ ____       _     _       _       
   / \  |  \/  |  _ \| |   | ____/ ___| ___ | | __| |     (_) ___  
  / _ \ | |\/| | |_) | |   |  _|| |  _ / _ \| |/ _` |     | |/ _ \ 
 / ___ \| |  | |  __/| |___| |__| |_| | (_) | | (_| |  _  | | (_) |
/_/   \_\_|  |_|_|   |_____|_____\____|\___/|_|\__,_| (_) |_|\___/ 
                                

    Ample Gold $AMPLG is a goldpegged defi protocol that is based on Ampleforths elastic tokensupply model. 
    AMPLG is designed to maintain its base price target of 0.01g of Gold with a progammed inflation adjustment (rebase).
    
    Forked from Ampleforth: https://github.com/ampleforth/uFragments (Credits to Ampleforth team for implementation of rebasing on the ethereum network)
    
    GPL 3.0 license
    
    AMPLG.sol - AMPLG ERC20 Token
  
*/

pragma solidity ^0.4.24;

contract Initializable {

  bool private initialized;
  bool private initializing;

  modifier initializer() {
    require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized");

    bool wasInitializing = initializing;
    initializing = true;
    initialized = true;

    _;

    initializing = wasInitializing;
  }

  function isConstructor() private view returns (bool) {
    uint256 cs;
    assembly { cs := extcodesize(address) }
    return cs == 0;
  }

  uint256[50] private ______gap;
}

contract Ownable is Initializable {

  address private _owner;
  uint256 private _ownershipLocked;

  event OwnershipLocked(address lockedOwner);
  event OwnershipRenounced(address indexed previousOwner);
  event OwnershipTransferred(
    address indexed previousOwner,
    address indexed newOwner
  );


  function initialize(address sender) internal initializer {
    _owner = sender;
  _ownershipLocked = 0;
  }

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

  modifier onlyOwner() {
    require(isOwner());
    _;
  }

  function isOwner() public view returns(bool) {
    return msg.sender == _owner;
  }

  function transferOwnership(address newOwner) public onlyOwner {
    _transferOwnership(newOwner);
  }

  function _transferOwnership(address newOwner) internal {
    require(_ownershipLocked == 0);
    require(newOwner != address(0));
    emit OwnershipTransferred(_owner, newOwner);
    _owner = newOwner;
  }
  
  // Set _ownershipLocked flag to lock contract owner forever
  function lockOwnership() public onlyOwner {
  require(_ownershipLocked == 0);
  emit OwnershipLocked(_owner);
    _ownershipLocked = 1;
  }

  uint256[50] private ______gap;
}

interface IERC20 {
  function totalSupply() external view returns (uint256);

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

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

  function transfer(address to, uint256 value) external returns (bool);

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

  function transferFrom(address from, address to, uint256 value)
    external returns (bool);

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

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

contract ERC20Detailed is Initializable, IERC20 {
  string private _name;
  string private _symbol;
  uint8 private _decimals;

  function initialize(string name, string symbol, uint8 decimals) internal initializer {
    _name = name;
    _symbol = symbol;
    _decimals = decimals;
  }

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

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

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

  uint256[50] private ______gap;
}

library SafeMath {

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

        return c;
    }

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

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

        return c;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

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

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

        return c;
    }

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

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

/*
MIT License

Copyright (c) 2018 requestnetwork
Copyright (c) 2018 Fragments, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

library SafeMathInt {

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

    function mul(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        int256 c = a * b;

        // Detect overflow when multiplying MIN_INT256 with -1
        require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
        require((b == 0) || (c / b == a));
        return c;
    }

    function div(int256 a, int256 b)
        internal
        pure
        returns (int256)
    {
        // Prevent overflow when dividing MIN_INT256 by -1
        require(b != -1 || a != MIN_INT256);

        // Solidity already throws when dividing by 0.
        return a / b;
    }

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

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

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

contract AMPLGToken is Ownable, ERC20Detailed {

    //AmpleGold $AMPLG

    //AmpleGold (code name AMPLG) is a goldpegged defi protocol that is based on Ampleforths elastic tokensupply model. AMPLG is designed to maintain its base price target of 0.01g of Gold with a progammed inflation adjustment (rebase).
    
    //Where Ampleforth rose to a 300m mcap in merely weeks, there were a couple of flaws in their model. We have remodeled and reprogrammed these flaws into a new version of the ample defi protocol.

    //We are all about decentralization and one thing we distrust most is the current economic fiat system. When the current financial system collapses and the dollar crashes, we strive to remain truly stable by pegging our token to the goldprice. Where 1 AMPLG = 0.01gram of Gold.

    //Also there were issues with the rebasing protocol. Because its always at a fixed time and date, there was huge volatility right before and after each rebase caused by bots, algorithms and traders. This has been tackled by RMPL and has been implemented in AMPLG. WE do this by using a randomized rebase event, that triggers an average of 365 times a year but at at random times.

    using SafeMath for uint256;
    using SafeMathInt for int256;

    event LogRebasePaused(bool paused);
    event LogTokenPaused(bool paused);

    event LogGoldPolicyUpdated(address goldPolicy);

    // Used for authentication
    address public goldPolicy;

    modifier onlyGoldPolicy() {
        require(msg.sender == goldPolicy);
        _;
    }

  struct Transaction {
        bool enabled;
        address destination;
        bytes data;
    }

    event TransactionFailed(address indexed destination, uint index, bytes data);
  
    Transaction[] public transactions;

    event LogRebase(uint256 indexed epoch, uint256 totalSupply);

    modifier validRecipient(address to) {
        require(to != address(0x0));
        require(to != address(this));
        _;
    }

     // Precautionary emergency controls.
    bool public rebasePaused;
    bool public tokenPaused;

    modifier whenRebaseNotPaused() {
        require(!rebasePaused);
        _;
    }

    modifier whenTokenNotPaused() {
        require(!tokenPaused);
        _;
    }

    uint256 private constant DECIMALS = 9;
    uint256 private constant MAX_UINT256 = ~uint256(0);
    uint256 private constant INITIAL_FRAGMENTS_SUPPLY = 30 * 10**5 * 10**DECIMALS;

    // TOTAL_GONS is a multiple of INITIAL_FRAGMENTS_SUPPLY so that _gonsPerFragment is an integer.
    // Use the highest value that fits in a uint256 for max granularity.
    uint256 private constant TOTAL_GONS = MAX_UINT256 - (MAX_UINT256 % INITIAL_FRAGMENTS_SUPPLY);

    // MAX_SUPPLY = maximum integer < (sqrt(4*TOTAL_GONS + 1) - 1) / 2
    uint256 private constant MAX_SUPPLY = ~uint128(0);  // (2^128) - 1
  
    uint256 private _epoch;

    uint256 private _totalSupply;
    uint256 private _gonsPerFragment;
    mapping(address => uint256) private _gonBalances;
  
    // This is denominated in Fragments, because the gons-fragments conversion might change before
    // it's fully paid.
    mapping (address => mapping (address => uint256)) private _allowedFragments;

    /**
     * @param _goldPolicy The address of the AMPLG $AMPLG Gold policy contract to use for authentication.
     */
    function setGoldPolicy(address _goldPolicy)
        external
        onlyOwner
    {
        goldPolicy = _goldPolicy;
        emit LogGoldPolicyUpdated(_goldPolicy);
    }

    /**
     * @dev Pauses or unpauses the execution of rebase operations.
     * @param paused Pauses rebase operations if this is true.
     */
    function setRebasePaused(bool paused)
        external
        onlyOwner
    {
        rebasePaused = paused;
        emit LogRebasePaused(paused);
    }

    /**
     * @dev Pauses or unpauses execution of ERC-20 transactions.
     * @param paused Pauses ERC-20 transactions if this is true.
     */
    function setTokenPaused(bool paused)
        external
        onlyOwner
    {
        tokenPaused = paused;
        emit LogTokenPaused(paused);
    }

  /**
     * @dev Notifies Fragments contract about a new rebase cycle.
     * @param supplyDelta The number of new fragment tokens to add into circulation via expansion.
     * @return The total number of fragments after the supply adjustment.
     */
    function rebase(int256 supplyDelta)
        external
        onlyOwner
        returns (uint256)
    { 
        _epoch = _epoch.add(1);
    
        if (supplyDelta == 0) {
            emit LogRebase(_epoch, _totalSupply);
            return _totalSupply;
        }

        if (supplyDelta < 0) {
            _totalSupply = _totalSupply.sub(uint256(supplyDelta.abs()));
        } else {
            _totalSupply = _totalSupply.add(uint256(supplyDelta));
        }

        if (_totalSupply > MAX_SUPPLY) {
            _totalSupply = MAX_SUPPLY;
        }

        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);
 
        emit LogRebase(_epoch, _totalSupply);

        for (uint i = 0; i < transactions.length; i++) {
              Transaction storage t = transactions[i];
              if (t.enabled) {
                  bool result = externalCall(t.destination, t.data);
                  if (!result) {
                      emit TransactionFailed(t.destination, i, t.data);
                      revert("Transaction Failed");
                  }
              }
          }
    
        return _totalSupply;
    }
    
     /**
     * @dev Notifies Fragments contract about a new rebase cycle.
     * @param supplyDelta The number of new fragment tokens to add into circulation via expansion.
     * @return The total number of fragments after the supply adjustment.
     */
    function rebaseGold(uint256 epoch, int256 supplyDelta)
        external
        onlyGoldPolicy
        returns (uint256)
    {
        if (supplyDelta == 0) {
            emit LogRebase(epoch, _totalSupply);
            return _totalSupply;
        }

        if (supplyDelta < 0) {
            _totalSupply = _totalSupply.sub(uint256(supplyDelta.abs()));
        } else {
            _totalSupply = _totalSupply.add(uint256(supplyDelta));
        }

        if (_totalSupply > MAX_SUPPLY) {
            _totalSupply = MAX_SUPPLY;
        }

        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        emit LogRebase(epoch, _totalSupply);
        return _totalSupply;
    }

  constructor(address _goldPolicy) public {
  
    Ownable.initialize(msg.sender);
    ERC20Detailed.initialize("Ample Gold", "AMPLG", uint8(DECIMALS));

        rebasePaused = false;
        tokenPaused = false;
        
        _totalSupply = INITIAL_FRAGMENTS_SUPPLY;
        _gonBalances[msg.sender] = TOTAL_GONS;
        _gonsPerFragment = TOTAL_GONS.div(_totalSupply);

        goldPolicy = _goldPolicy;

        emit Transfer(address(0x0), msg.sender, _totalSupply);
    }
  
  /**
     * @return The total number of fragments.
     */

    function totalSupply()  
    public
    view
        returns (uint256)
    {
        return _totalSupply;
    }
  
  /**
     * @param who The address to query.
     * @return The balance of the specified address.
     */

    function balanceOf(address who)
        public
        view
        returns (uint256)
    {
        return _gonBalances[who].div(_gonsPerFragment);
    }

  /**
     * @dev Transfer tokens to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     * @return True on success, false otherwise.
     */
   
    function transfer(address to, uint256 value)
        public
        whenTokenNotPaused
        validRecipient(to)
        returns (bool)
    {
        uint256 merValue = value.mul(_gonsPerFragment);
        _gonBalances[msg.sender] = _gonBalances[msg.sender].sub(merValue);
        _gonBalances[to] = _gonBalances[to].add(merValue);
        emit Transfer(msg.sender, to, value);
        return true;
    }

  /**
     * @dev Function to check the amount of tokens that an owner has allowed to a spender.
     * @param owner_ The address which owns the funds.
     * @param spender The address which will spend the funds.
     * @return The number of tokens still available for the spender.
     */
   
    function allowance(address owner_, address spender)
        public
        view
        returns (uint256)
    {
        return _allowedFragments[owner_][spender];
    }
  
  /**
     * @dev Transfer tokens from one address to another.
     * @param from The address you want to send tokens from.
     * @param to The address you want to transfer to.
     * @param value The amount of tokens to be transferred.
     */

    function transferFrom(address from, address to, uint256 value)
        public
        whenTokenNotPaused
        validRecipient(to)
        returns (bool)
    {
        _allowedFragments[from][msg.sender] = _allowedFragments[from][msg.sender].sub(value);

        uint256 merValue = value.mul(_gonsPerFragment);
        _gonBalances[from] = _gonBalances[from].sub(merValue);
        _gonBalances[to] = _gonBalances[to].add(merValue);
        emit Transfer(from, to, value);

        return true;
    }
  
  /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of
     * msg.sender. This method is included for ERC20 compatibility.
     * increaseAllowance and decreaseAllowance should be used instead.
     * Changing an allowance with this method brings the risk that someone may transfer both
     * the old and the new allowance - if they are both greater than zero - if a transfer
     * transaction is mined before the later approve() call is mined.
     *
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */

    function approve(address spender, uint256 value)
        public
        whenTokenNotPaused
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] = value;
        emit Approval(msg.sender, spender, value);
        return true;
    }
  
  /**
     * @dev Increase the amount of tokens that an owner has allowed to a spender.
     * This method should be used instead of approve() to avoid the double approval vulnerability
     * described above.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */

    function increaseAllowance(address spender, uint256 addedValue)
        public
        whenTokenNotPaused
        returns (bool)
    {
        _allowedFragments[msg.sender][spender] =
            _allowedFragments[msg.sender][spender].add(addedValue);
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }
  
  /**
     * @dev Decrease the amount of tokens that an owner has allowed to a spender.
     *
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */

    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        whenTokenNotPaused
        returns (bool)
    {
        uint256 oldValue = _allowedFragments[msg.sender][spender];
        if (subtractedValue >= oldValue) {
            _allowedFragments[msg.sender][spender] = 0;
        } else {
            _allowedFragments[msg.sender][spender] = oldValue.sub(subtractedValue);
        }
        emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
        return true;
    }
  
  /**
     * @notice Adds a transaction that gets called for a downstream receiver of rebases
     * @param destination Address of contract destination
     * @param data Transaction data payload
     */
  
    function addTransaction(address destination, bytes data)
        external
        onlyOwner
    {
        transactions.push(Transaction({
            enabled: true,
            destination: destination,
            data: data
        }));
    }
  
  /**
     * @param index Index of transaction to remove.
     *              Transaction ordering may have changed since adding.
     */

    function removeTransaction(uint index)
        external
        onlyOwner
    {
        require(index < transactions.length, "index out of bounds");

        if (index < transactions.length - 1) {
            transactions[index] = transactions[transactions.length - 1];
        }

        transactions.length--;
    }
  
  /**
     * @param index Index of transaction. Transaction ordering may have changed since adding.
     * @param enabled True for enabled, false for disabled.
     */

    function setTransactionEnabled(uint index, bool enabled)
        external
        onlyOwner
    {
        require(index < transactions.length, "index must be in range of stored tx list");
        transactions[index].enabled = enabled;
    }
  
  /**
     * @return Number of transactions, both enabled and disabled, in transactions list.
     */

    function transactionsSize()
        external
        view
        returns (uint256)
    {
        return transactions.length;
    }
  
  /**
     * @dev wrapper to call the encoded transactions on downstream consumers.
     * @param destination Address of destination contract.
     * @param data The encoded data payload.
     * @return True on success
     */

    function externalCall(address destination, bytes data)
        internal
        returns (bool)
    {
        bool result;
        assembly {  // solhint-disable-line no-inline-assembly
            // "Allocate" memory for output
            // (0x40 is where "free memory" pointer is stored by convention)
            let outputAddress := mload(0x40)

            // First 32 bytes are the padded length of data, so exclude that
            let dataAddress := add(data, 32)

            result := call(
                // 34710 is the value that solidity is currently emitting
                // It includes callGas (700) + callVeryLow (3, to pay for SUB)
                // + callValueTransferGas (9000) + callNewAccountGas
                // (25000, in case the destination address does not exist and needs creating)
                sub(gas, 34710),


                destination,
                0, // transfer value in wei
                dataAddress,
                mload(data),  // Size of the input, in bytes. Stored in position 0 of the array.
                outputAddress,
                0  // Output is ignored, therefore the output size is zero
            )
        }
        return result;
    }
}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[],"name":"lockOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"supplyDelta","type":"int256"}],"name":"rebase","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"destination","type":"address"},{"name":"data","type":"bytes"}],"name":"addTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"paused","type":"bool"}],"name":"setRebasePaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"paused","type":"bool"}],"name":"setTokenPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"index","type":"uint256"}],"name":"removeTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rebasePaused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"epoch","type":"uint256"},{"name":"supplyDelta","type":"int256"}],"name":"rebaseGold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"index","type":"uint256"},{"name":"enabled","type":"bool"}],"name":"setTransactionEnabled","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenPaused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transactionsSize","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"transactions","outputs":[{"name":"enabled","type":"bool"},{"name":"destination","type":"address"},{"name":"data","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_goldPolicy","type":"address"}],"name":"setGoldPolicy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"goldPolicy","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner_","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_goldPolicy","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"paused","type":"bool"}],"name":"LogRebasePaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"paused","type":"bool"}],"name":"LogTokenPaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"goldPolicy","type":"address"}],"name":"LogGoldPolicyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"destination","type":"address"},{"indexed":false,"name":"index","type":"uint256"},{"indexed":false,"name":"data","type":"bytes"}],"name":"TransactionFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"epoch","type":"uint256"},{"indexed":false,"name":"totalSupply","type":"uint256"}],"name":"LogRebase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"lockedOwner","type":"address"}],"name":"OwnershipLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

60806040523480156200001157600080fd5b50604051602080620038548339810180604052810190808051906020019092919050505062000054336200027b6401000000000262002cf6176401000000009004565b620000e06040805190810160405280600a81526020017f416d706c6520476f6c64000000000000000000000000000000000000000000008152506040805190810160405280600581526020017f414d504c4700000000000000000000000000000000000000000000000000000081525060096200040e6401000000000262002e75176401000000009004565b6000609e60006101000a81548160ff0219169083151502179055506000609e60016101000a81548160ff0219169083151502179055506009600a0a622dc6c00260a0819055506009600a0a622dc6c0026000198115156200013d57fe5b066000190360a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550620001c560a0546009600a0a622dc6c002600019811515620001a357fe5b0660001903620005a76401000000000262002710179091906401000000009004565b60a18190555080609c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60a0546040518082815260200191505060405180910390a35062000791565b60008060019054906101000a900460ff1680620002ad5750620002ac62000602640100000000026401000000009004565b5b80620002c557506000809054906101000a900460ff16155b151562000360576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f436f6e747261637420696e7374616e63652068617320616c726561647920626581526020017f656e20696e697469616c697a656400000000000000000000000000000000000081525060400191505060405180910390fd5b600060019054906101000a900460ff1690506001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff02191690831515021790555081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060348190555080600060016101000a81548160ff0219169083151502179055505050565b60008060019054906101000a900460ff16806200044057506200043f62000602640100000000026401000000009004565b5b806200045857506000809054906101000a900460ff16155b1515620004f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f436f6e747261637420696e7374616e63652068617320616c726561647920626581526020017f656e20696e697469616c697a656400000000000000000000000000000000000081525060400191505060405180910390fd5b600060019054906101000a900460ff1690506001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff021916908315150217905550836067908051906020019062000552929190620006e2565b5082606890805190602001906200056b929190620006e2565b5081606960006101000a81548160ff021916908360ff16021790555080600060016101000a81548160ff02191690831515021790555050505050565b6000620005fa83836040805190810160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525062000613640100000000026401000000009004565b905092915050565b600080303b90506000811491505090565b6000806000841183901515620006c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156200068b5780820151818401526020810190506200066e565b50505050905090810190601f168015620006b95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508385811515620006d457fe5b049050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200072557805160ff191683800117855562000756565b8280016001018555821562000756579182015b828111156200075557825182559160200191906001019062000738565b5b50905062000765919062000769565b5090565b6200078e91905b808211156200078a57600081600090555060010162000770565b5090565b90565b6130b380620007a16000396000f30060806040526004361061016a576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680630577c02b1461016f57806306fdde0314610186578063095ea7b3146102165780630ab114f91461027b578063126e19be146102bc57806318160ddd1461031757806322872e0b1461034257806323b872dd1461037157806329519457146103f6578063313ce56714610425578063395093511461045657806346c3bd1f146104bb57806353ca9f24146104e8578063579b64f5146105175780636e9dde991461056257806370a082311461059b57806386c75e74146105f25780638da5cb5b146106215780638f32d59b1461067857806391d4ec18146106a757806395d89b41146106d25780639ace38c214610762578063a457c2d714610846578063a50aa278146108ab578063a9059cbb146108ee578063aed1fb2214610953578063dd62ed3e146109aa578063f2fde38b14610a21575b600080fd5b34801561017b57600080fd5b50610184610a64565b005b34801561019257600080fd5b5061019b610b17565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101db5780820151818401526020810190506101c0565b50505050905090810190601f1680156102085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022257600080fd5b50610261600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bb9565b604051808215151515815260200191505060405180910390f35b34801561028757600080fd5b506102a660048036038101908080359060200190929190505050610cc7565b6040518082815260200191505060405180910390f35b3480156102c857600080fd5b50610315600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019082018035906020019190919293919293905050506110e7565b005b34801561032357600080fd5b5061032c61121a565b6040518082815260200191505060405180910390f35b34801561034e57600080fd5b5061036f600480360381019080803515159060200190929190505050611224565b005b34801561037d57600080fd5b506103dc600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061128f565b604051808215151515815260200191505060405180910390f35b34801561040257600080fd5b506104236004803603810190808035151590602001909291905050506115e8565b005b34801561043157600080fd5b5061043a611653565b604051808260ff1660ff16815260200191505060405180910390f35b34801561046257600080fd5b506104a1600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061166a565b604051808215151515815260200191505060405180910390f35b3480156104c757600080fd5b506104e660048036038101908080359060200190929190505050611882565b005b3480156104f457600080fd5b506104fd611a3c565b604051808215151515815260200191505060405180910390f35b34801561052357600080fd5b5061054c6004803603810190808035906020019092919080359060200190929190505050611a4f565b6040518082815260200191505060405180910390f35b34801561056e57600080fd5b5061059960048036038101908080359060200190929190803515159060200190929190505050611bfc565b005b3480156105a757600080fd5b506105dc600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ced565b6040518082815260200191505060405180910390f35b3480156105fe57600080fd5b50610607611d4a565b604051808215151515815260200191505060405180910390f35b34801561062d57600080fd5b50610636611d5d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561068457600080fd5b5061068d611d87565b604051808215151515815260200191505060405180910390f35b3480156106b357600080fd5b506106bc611ddf565b6040518082815260200191505060405180910390f35b3480156106de57600080fd5b506106e7611dec565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561072757808201518184015260208101905061070c565b50505050905090810190601f1680156107545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561076e57600080fd5b5061078d60048036038101908080359060200190929190505050611e8e565b60405180841515151581526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156108095780820151818401526020810190506107ee565b50505050905090810190601f1680156108365780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b34801561085257600080fd5b50610891600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611f8c565b604051808215151515815260200191505060405180910390f35b3480156108b757600080fd5b506108ec600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061223a565b005b3480156108fa57600080fd5b50610939600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122f4565b604051808215151515815260200191505060405180910390f35b34801561095f57600080fd5b5061096861253d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109b657600080fd5b50610a0b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612563565b6040518082815260200191505060405180910390f35b348015610a2d57600080fd5b50610a62600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125ea565b005b610a6c611d87565b1515610a7757600080fd5b6000603454141515610a8857600080fd5b7f88edfb4ea96673000ad101b18d1c7dbd727c5d92217c8d0b9966f2aaf77e93f4603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a16001603481905550565b606060678054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b6000609e60019054906101000a900460ff16151515610bd757600080fd5b8160a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600080600080610cd5611d87565b1515610ce057600080fd5b610cf66001609f5461260990919063ffffffff16565b609f819055506000851415610d4b57609f547f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f260a0546040518082815260200191505060405180910390a260a05493506110df565b6000851215610d7c57610d71610d6086612693565b60a0546126c690919063ffffffff16565b60a081905550610d98565b610d918560a05461260990919063ffffffff16565b60a0819055505b6000196fffffffffffffffffffffffffffffffff1660a0541115610dd2576000196fffffffffffffffffffffffffffffffff1660a0819055505b610e0160a0546009600a0a622dc6c002600019811515610dee57fe5b066000190361271090919063ffffffff16565b60a181905550609f547f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f260a0546040518082815260200191505060405180910390a2600092505b609d805490508310156110d957609d83815481101515610e6457fe5b906000526020600020906002020191508160000160009054906101000a900460ff16156110cc57610f558260000160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836001018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b505050505061275a565b90508015156110cb578160000160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8091ecaaa54ebb82e02d36c2c336528e0fcb9b3430fc1291ac88295032b9c2638484600101604051808381526020018060200182810382528381815460018160011615610100020316600290048152602001915080546001816001161561010002031660029004801561104e5780601f106110235761010080835404028352916020019161104e565b820191906000526020600020905b81548152906001019060200180831161103157829003601f168201915b5050935050505060405180910390a26040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f5472616e73616374696f6e204661696c6564000000000000000000000000000081525060200191505060405180910390fd5b5b8280600101935050610e48565b60a05493505b505050919050565b6110ef611d87565b15156110fa57600080fd5b609d6060604051908101604052806001151581526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184848080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050508152509080600181540180825580915050906001820390600052602060002090600202016000909192909190915060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816001019080519060200190611211929190612ae6565b50505050505050565b600060a054905090565b61122c611d87565b151561123757600080fd5b80609e60006101000a81548160ff0219169083151502179055507fb36927c68760751ec71d827eb30be804be612d87c7c6b6a1f255258c6a1bea6681604051808215151515815260200191505060405180910390a150565b600080609e60019054906101000a900460ff161515156112ae57600080fd5b83600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156112eb57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561132657600080fd5b6113b58460a360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c690919063ffffffff16565b60a360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061144a60a1548561278190919063ffffffff16565b915061149e8260a260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c690919063ffffffff16565b60a260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115338260a260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461260990919063ffffffff16565b60a260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a36001925050509392505050565b6115f0611d87565b15156115fb57600080fd5b80609e60016101000a81548160ff0219169083151502179055507f398c4e18c8ef7f11eb3921fe2d01d3b469329a5f01febf5ba17f2462f27f439c81604051808215151515815260200191505060405180910390a150565b6000606960009054906101000a900460ff16905090565b6000609e60019054906101000a900460ff1615151561168857600080fd5b6117178260a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461260990919063ffffffff16565b60a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b61188a611d87565b151561189557600080fd5b609d8054905081101515611911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f696e646578206f7574206f6620626f756e64730000000000000000000000000081525060200191505060405180910390fd5b6001609d8054905003811015611a2357609d6001609d805490500381548110151561193857fe5b9060005260206000209060020201609d8281548110151561195557fe5b90600052602060002090600202016000820160009054906101000a900460ff168160000160006101000a81548160ff0219169083151502179055506000820160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160000160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060018201816001019080546001816001161561010002031660029004611a1e929190612b66565b509050505b609d805480919060019003611a389190612bed565b5050565b609e60009054906101000a900460ff1681565b6000609c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611aad57600080fd5b6000821415611afa57827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f260a0546040518082815260200191505060405180910390a260a0549050611bf6565b6000821215611b2b57611b20611b0f83612693565b60a0546126c690919063ffffffff16565b60a081905550611b47565b611b408260a05461260990919063ffffffff16565b60a0819055505b6000196fffffffffffffffffffffffffffffffff1660a0541115611b81576000196fffffffffffffffffffffffffffffffff1660a0819055505b611bb060a0546009600a0a622dc6c002600019811515611b9d57fe5b066000190361271090919063ffffffff16565b60a181905550827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f260a0546040518082815260200191505060405180910390a260a05490505b92915050565b611c04611d87565b1515611c0f57600080fd5b609d8054905082101515611cb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001807f696e646578206d75737420626520696e2072616e6765206f662073746f72656481526020017f207478206c69737400000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80609d83815481101515611cc157fe5b906000526020600020906002020160000160006101000a81548160ff0219169083151502179055505050565b6000611d4360a15460a260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461271090919063ffffffff16565b9050919050565b609e60019054906101000a900460ff1681565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000609d80549050905090565b606060688054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e845780601f10611e5957610100808354040283529160200191611e84565b820191906000526020600020905b815481529060010190602001808311611e6757829003601f168201915b5050505050905090565b609d81815481101515611e9d57fe5b90600052602060002090600202016000915090508060000160009054906101000a900460ff16908060000160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f825780601f10611f5757610100808354040283529160200191611f82565b820191906000526020600020905b815481529060010190602001808311611f6557829003601f168201915b5050505050905083565b600080609e60019054906101000a900460ff16151515611fab57600080fd5b60a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080831015156120ba57600060a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061214e565b6120cd83826126c690919063ffffffff16565b60a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b612242611d87565b151561224d57600080fd5b80609c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f28518474aa3bc7a5438ab8ccfa153472148ee35771d4308319c2af1b9adc0a4881604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600080609e60019054906101000a900460ff1615151561231357600080fd5b83600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561235057600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561238b57600080fd5b6123a060a1548561278190919063ffffffff16565b91506123f48260a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c690919063ffffffff16565b60a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124898260a260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461260990919063ffffffff16565b60a260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b609c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060a360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6125f2611d87565b15156125fd57600080fd5b6126068161284e565b50565b6000808284019050838110151515612689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600060ff60019060020a0282141515156126ac57600080fd5b600082126126ba57816126bf565b816000035b9050919050565b600061270883836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061295b565b905092915050565b600061275283836040805190810160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a1c565b905092915050565b6000806040516020840160008286518360008a6187965a03f1925050508091505092915050565b60008060008414156127965760009150612847565b82840290508284828115156127a757fe5b04141515612843576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f81526020017f770000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8091505b5092915050565b600060345414151561285f57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561289b57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808484111583901515612a0b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129d05780820151818401526020810190506129b5565b50505050905090810190601f1680156129fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508385039050809150509392505050565b6000806000841183901515612acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a91578082015181840152602081019050612a76565b50505050905090810190601f168015612abe5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508385811515612ad857fe5b049050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612b2757805160ff1916838001178555612b55565b82800160010185558215612b55579182015b82811115612b54578251825591602001919060010190612b39565b5b509050612b629190612c1f565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612b9f5780548555612bdc565b82800160010185558215612bdc57600052602060002091601f016020900482015b82811115612bdb578254825591600101919060010190612bc0565b5b509050612be99190612c1f565b5090565b815481835581811115612c1a57600202816002028360005260206000209182019101612c199190612c44565b5b505050565b612c4191905b80821115612c3d576000816000905550600101612c25565b5090565b90565b612cab91905b80821115612ca757600080820160006101000a81549060ff02191690556000820160016101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600182016000612c9e9190612cae565b50600201612c4a565b5090565b90565b50805460018160011615610100020316600290046000825580601f10612cd45750612cf3565b601f016020900490600052602060002090810190612cf29190612c1f565b5b50565b60008060019054906101000a900460ff1680612d165750612d15612ff6565b5b80612d2d57506000809054906101000a900460ff16155b1515612dc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f436f6e747261637420696e7374616e63652068617320616c726561647920626581526020017f656e20696e697469616c697a656400000000000000000000000000000000000081525060400191505060405180910390fd5b600060019054906101000a900460ff1690506001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff02191690831515021790555081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060348190555080600060016101000a81548160ff0219169083151502179055505050565b60008060019054906101000a900460ff1680612e955750612e94612ff6565b5b80612eac57506000809054906101000a900460ff16155b1515612f46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f436f6e747261637420696e7374616e63652068617320616c726561647920626581526020017f656e20696e697469616c697a656400000000000000000000000000000000000081525060400191505060405180910390fd5b600060019054906101000a900460ff1690506001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055508360679080519060200190612fa3929190613007565b508260689080519060200190612fba929190613007565b5081606960006101000a81548160ff021916908360ff16021790555080600060016101000a81548160ff02191690831515021790555050505050565b600080303b90506000811491505090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061304857805160ff1916838001178555613076565b82800160010185558215613076579182015b8281111561307557825182559160200191906001019061305a565b5b5090506130839190612c1f565b50905600a165627a7a72305820e19ec4da2efbf422ebd11997cd6570b98f327608437268b1c35733332023b470002900000000000000000000000034af6c2e8bd1c58f066b401e9df249c1af128d75

Deployed Bytecode

0x60806040526004361061016a576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680630577c02b1461016f57806306fdde0314610186578063095ea7b3146102165780630ab114f91461027b578063126e19be146102bc57806318160ddd1461031757806322872e0b1461034257806323b872dd1461037157806329519457146103f6578063313ce56714610425578063395093511461045657806346c3bd1f146104bb57806353ca9f24146104e8578063579b64f5146105175780636e9dde991461056257806370a082311461059b57806386c75e74146105f25780638da5cb5b146106215780638f32d59b1461067857806391d4ec18146106a757806395d89b41146106d25780639ace38c214610762578063a457c2d714610846578063a50aa278146108ab578063a9059cbb146108ee578063aed1fb2214610953578063dd62ed3e146109aa578063f2fde38b14610a21575b600080fd5b34801561017b57600080fd5b50610184610a64565b005b34801561019257600080fd5b5061019b610b17565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101db5780820151818401526020810190506101c0565b50505050905090810190601f1680156102085780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022257600080fd5b50610261600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bb9565b604051808215151515815260200191505060405180910390f35b34801561028757600080fd5b506102a660048036038101908080359060200190929190505050610cc7565b6040518082815260200191505060405180910390f35b3480156102c857600080fd5b50610315600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019082018035906020019190919293919293905050506110e7565b005b34801561032357600080fd5b5061032c61121a565b6040518082815260200191505060405180910390f35b34801561034e57600080fd5b5061036f600480360381019080803515159060200190929190505050611224565b005b34801561037d57600080fd5b506103dc600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061128f565b604051808215151515815260200191505060405180910390f35b34801561040257600080fd5b506104236004803603810190808035151590602001909291905050506115e8565b005b34801561043157600080fd5b5061043a611653565b604051808260ff1660ff16815260200191505060405180910390f35b34801561046257600080fd5b506104a1600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061166a565b604051808215151515815260200191505060405180910390f35b3480156104c757600080fd5b506104e660048036038101908080359060200190929190505050611882565b005b3480156104f457600080fd5b506104fd611a3c565b604051808215151515815260200191505060405180910390f35b34801561052357600080fd5b5061054c6004803603810190808035906020019092919080359060200190929190505050611a4f565b6040518082815260200191505060405180910390f35b34801561056e57600080fd5b5061059960048036038101908080359060200190929190803515159060200190929190505050611bfc565b005b3480156105a757600080fd5b506105dc600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ced565b6040518082815260200191505060405180910390f35b3480156105fe57600080fd5b50610607611d4a565b604051808215151515815260200191505060405180910390f35b34801561062d57600080fd5b50610636611d5d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561068457600080fd5b5061068d611d87565b604051808215151515815260200191505060405180910390f35b3480156106b357600080fd5b506106bc611ddf565b6040518082815260200191505060405180910390f35b3480156106de57600080fd5b506106e7611dec565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561072757808201518184015260208101905061070c565b50505050905090810190601f1680156107545780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561076e57600080fd5b5061078d60048036038101908080359060200190929190505050611e8e565b60405180841515151581526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156108095780820151818401526020810190506107ee565b50505050905090810190601f1680156108365780820380516001836020036101000a031916815260200191505b5094505050505060405180910390f35b34801561085257600080fd5b50610891600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611f8c565b604051808215151515815260200191505060405180910390f35b3480156108b757600080fd5b506108ec600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061223a565b005b3480156108fa57600080fd5b50610939600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506122f4565b604051808215151515815260200191505060405180910390f35b34801561095f57600080fd5b5061096861253d565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156109b657600080fd5b50610a0b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612563565b6040518082815260200191505060405180910390f35b348015610a2d57600080fd5b50610a62600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506125ea565b005b610a6c611d87565b1515610a7757600080fd5b6000603454141515610a8857600080fd5b7f88edfb4ea96673000ad101b18d1c7dbd727c5d92217c8d0b9966f2aaf77e93f4603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a16001603481905550565b606060678054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610baf5780601f10610b8457610100808354040283529160200191610baf565b820191906000526020600020905b815481529060010190602001808311610b9257829003601f168201915b5050505050905090565b6000609e60019054906101000a900460ff16151515610bd757600080fd5b8160a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a36001905092915050565b600080600080610cd5611d87565b1515610ce057600080fd5b610cf66001609f5461260990919063ffffffff16565b609f819055506000851415610d4b57609f547f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f260a0546040518082815260200191505060405180910390a260a05493506110df565b6000851215610d7c57610d71610d6086612693565b60a0546126c690919063ffffffff16565b60a081905550610d98565b610d918560a05461260990919063ffffffff16565b60a0819055505b6000196fffffffffffffffffffffffffffffffff1660a0541115610dd2576000196fffffffffffffffffffffffffffffffff1660a0819055505b610e0160a0546009600a0a622dc6c002600019811515610dee57fe5b066000190361271090919063ffffffff16565b60a181905550609f547f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f260a0546040518082815260200191505060405180910390a2600092505b609d805490508310156110d957609d83815481101515610e6457fe5b906000526020600020906002020191508160000160009054906101000a900460ff16156110cc57610f558260000160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836001018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f4b5780601f10610f2057610100808354040283529160200191610f4b565b820191906000526020600020905b815481529060010190602001808311610f2e57829003601f168201915b505050505061275a565b90508015156110cb578160000160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8091ecaaa54ebb82e02d36c2c336528e0fcb9b3430fc1291ac88295032b9c2638484600101604051808381526020018060200182810382528381815460018160011615610100020316600290048152602001915080546001816001161561010002031660029004801561104e5780601f106110235761010080835404028352916020019161104e565b820191906000526020600020905b81548152906001019060200180831161103157829003601f168201915b5050935050505060405180910390a26040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f5472616e73616374696f6e204661696c6564000000000000000000000000000081525060200191505060405180910390fd5b5b8280600101935050610e48565b60a05493505b505050919050565b6110ef611d87565b15156110fa57600080fd5b609d6060604051908101604052806001151581526020018573ffffffffffffffffffffffffffffffffffffffff16815260200184848080601f0160208091040260200160405190810160405280939291908181526020018383808284378201915050505050508152509080600181540180825580915050906001820390600052602060002090600202016000909192909190915060008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040820151816001019080519060200190611211929190612ae6565b50505050505050565b600060a054905090565b61122c611d87565b151561123757600080fd5b80609e60006101000a81548160ff0219169083151502179055507fb36927c68760751ec71d827eb30be804be612d87c7c6b6a1f255258c6a1bea6681604051808215151515815260200191505060405180910390a150565b600080609e60019054906101000a900460ff161515156112ae57600080fd5b83600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141515156112eb57600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561132657600080fd5b6113b58460a360008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c690919063ffffffff16565b60a360008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061144a60a1548561278190919063ffffffff16565b915061149e8260a260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c690919063ffffffff16565b60a260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506115338260a260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461260990919063ffffffff16565b60a260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a36001925050509392505050565b6115f0611d87565b15156115fb57600080fd5b80609e60016101000a81548160ff0219169083151502179055507f398c4e18c8ef7f11eb3921fe2d01d3b469329a5f01febf5ba17f2462f27f439c81604051808215151515815260200191505060405180910390a150565b6000606960009054906101000a900460ff16905090565b6000609e60019054906101000a900460ff1615151561168857600080fd5b6117178260a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461260990919063ffffffff16565b60a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a36001905092915050565b61188a611d87565b151561189557600080fd5b609d8054905081101515611911576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f696e646578206f7574206f6620626f756e64730000000000000000000000000081525060200191505060405180910390fd5b6001609d8054905003811015611a2357609d6001609d805490500381548110151561193857fe5b9060005260206000209060020201609d8281548110151561195557fe5b90600052602060002090600202016000820160009054906101000a900460ff168160000160006101000a81548160ff0219169083151502179055506000820160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160000160016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060018201816001019080546001816001161561010002031660029004611a1e929190612b66565b509050505b609d805480919060019003611a389190612bed565b5050565b609e60009054906101000a900460ff1681565b6000609c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16141515611aad57600080fd5b6000821415611afa57827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f260a0546040518082815260200191505060405180910390a260a0549050611bf6565b6000821215611b2b57611b20611b0f83612693565b60a0546126c690919063ffffffff16565b60a081905550611b47565b611b408260a05461260990919063ffffffff16565b60a0819055505b6000196fffffffffffffffffffffffffffffffff1660a0541115611b81576000196fffffffffffffffffffffffffffffffff1660a0819055505b611bb060a0546009600a0a622dc6c002600019811515611b9d57fe5b066000190361271090919063ffffffff16565b60a181905550827f72725a3b1e5bd622d6bcd1339bb31279c351abe8f541ac7fd320f24e1b1641f260a0546040518082815260200191505060405180910390a260a05490505b92915050565b611c04611d87565b1515611c0f57600080fd5b609d8054905082101515611cb1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260288152602001807f696e646578206d75737420626520696e2072616e6765206f662073746f72656481526020017f207478206c69737400000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80609d83815481101515611cc157fe5b906000526020600020906002020160000160006101000a81548160ff0219169083151502179055505050565b6000611d4360a15460a260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461271090919063ffffffff16565b9050919050565b609e60019054906101000a900460ff1681565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6000609d80549050905090565b606060688054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611e845780601f10611e5957610100808354040283529160200191611e84565b820191906000526020600020905b815481529060010190602001808311611e6757829003601f168201915b5050505050905090565b609d81815481101515611e9d57fe5b90600052602060002090600202016000915090508060000160009054906101000a900460ff16908060000160019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806001018054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f825780601f10611f5757610100808354040283529160200191611f82565b820191906000526020600020905b815481529060010190602001808311611f6557829003601f168201915b5050505050905083565b600080609e60019054906101000a900460ff16151515611fab57600080fd5b60a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080831015156120ba57600060a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061214e565b6120cd83826126c690919063ffffffff16565b60a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b8373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560a360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546040518082815260200191505060405180910390a3600191505092915050565b612242611d87565b151561224d57600080fd5b80609c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f28518474aa3bc7a5438ab8ccfa153472148ee35771d4308319c2af1b9adc0a4881604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b600080609e60019054906101000a900460ff1615151561231357600080fd5b83600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561235057600080fd5b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561238b57600080fd5b6123a060a1548561278190919063ffffffff16565b91506123f48260a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546126c690919063ffffffff16565b60a260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506124898260a260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461260990919063ffffffff16565b60a260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508473ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a360019250505092915050565b609c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060a360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6125f2611d87565b15156125fd57600080fd5b6126068161284e565b50565b6000808284019050838110151515612689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600060ff60019060020a0282141515156126ac57600080fd5b600082126126ba57816126bf565b816000035b9050919050565b600061270883836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061295b565b905092915050565b600061275283836040805190810160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612a1c565b905092915050565b6000806040516020840160008286518360008a6187965a03f1925050508091505092915050565b60008060008414156127965760009150612847565b82840290508284828115156127a757fe5b04141515612843576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f81526020017f770000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8091505b5092915050565b600060345414151561285f57600080fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561289b57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff16603360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808484111583901515612a0b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156129d05780820151818401526020810190506129b5565b50505050905090810190601f1680156129fd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508385039050809150509392505050565b6000806000841183901515612acc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612a91578082015181840152602081019050612a76565b50505050905090810190601f168015612abe5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508385811515612ad857fe5b049050809150509392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612b2757805160ff1916838001178555612b55565b82800160010185558215612b55579182015b82811115612b54578251825591602001919060010190612b39565b5b509050612b629190612c1f565b5090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10612b9f5780548555612bdc565b82800160010185558215612bdc57600052602060002091601f016020900482015b82811115612bdb578254825591600101919060010190612bc0565b5b509050612be99190612c1f565b5090565b815481835581811115612c1a57600202816002028360005260206000209182019101612c199190612c44565b5b505050565b612c4191905b80821115612c3d576000816000905550600101612c25565b5090565b90565b612cab91905b80821115612ca757600080820160006101000a81549060ff02191690556000820160016101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600182016000612c9e9190612cae565b50600201612c4a565b5090565b90565b50805460018160011615610100020316600290046000825580601f10612cd45750612cf3565b601f016020900490600052602060002090810190612cf29190612c1f565b5b50565b60008060019054906101000a900460ff1680612d165750612d15612ff6565b5b80612d2d57506000809054906101000a900460ff16155b1515612dc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f436f6e747261637420696e7374616e63652068617320616c726561647920626581526020017f656e20696e697469616c697a656400000000000000000000000000000000000081525060400191505060405180910390fd5b600060019054906101000a900460ff1690506001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff02191690831515021790555081603360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060348190555080600060016101000a81548160ff0219169083151502179055505050565b60008060019054906101000a900460ff1680612e955750612e94612ff6565b5b80612eac57506000809054906101000a900460ff16155b1515612f46576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e8152602001807f436f6e747261637420696e7374616e63652068617320616c726561647920626581526020017f656e20696e697469616c697a656400000000000000000000000000000000000081525060400191505060405180910390fd5b600060019054906101000a900460ff1690506001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055508360679080519060200190612fa3929190613007565b508260689080519060200190612fba929190613007565b5081606960006101000a81548160ff021916908360ff16021790555080600060016101000a81548160ff02191690831515021790555050505050565b600080303b90506000811491505090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061304857805160ff1916838001178555613076565b82800160010185558215613076579182015b8281111561307557825182559160200191906001019061305a565b5b5090506130839190612c1f565b50905600a165627a7a72305820e19ec4da2efbf422ebd11997cd6570b98f327608437268b1c35733332023b4700029

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

00000000000000000000000034af6c2e8bd1c58f066b401e9df249c1af128d75

-----Decoded View---------------
Arg [0] : _goldPolicy (address): 0x34aF6c2e8bd1C58f066b401E9DF249c1aF128d75

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000034af6c2e8bd1c58f066b401e9df249c1af128d75


Deployed Bytecode Sourcemap

8019:15087:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2551:143;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2551:143:0;;;;;;3745:69;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3745:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3745:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18164:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18164:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12507:1157;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12507:1157:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20198:253;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20198:253:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15213:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15213:117:0;;;;;;;;;;;;;;;;;;;;;;;11768:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11768:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17005:515;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17005:515:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12085:156;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12085:156:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3899:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3899:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;18800:371;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18800:371:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20605:328;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20605:328:0;;;;;;;;;;;;;;;;;;;;;;;;;;10078:24;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10078:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;13937:703;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13937:703:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21117:246;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21117:246:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15453:159;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15453:159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10109:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10109:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;1926:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1926:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;2070:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2070:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;21480:137;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21480:137:0;;;;;;;;;;;;;;;;;;;;;;;3820:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3820:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;3820:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9784:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9784:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;9784:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19435:540;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19435:540:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11432:178;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11432:178:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15841:416;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15841:416:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9458:25;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9458:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;16567:174;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16567:174:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2161:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2161:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2551:143;2040:9;:7;:9::i;:::-;2032:18;;;;;;;;2626:1;2606:16;;:21;2598:30;;;;;;;;2638:23;2654:6;;;;;;;;;;;2638:23;;;;;;;;;;;;;;;;;;;;;;2687:1;2668:16;:20;;;;2551:143::o;3745:69::-;3781:6;3803:5;3796:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3745:69;:::o;18164:261::-;18275:4;10283:11;;;;;;;;;;;10282:12;10274:21;;;;;;;;18338:5;18297:17;:29;18315:10;18297:29;;;;;;;;;;;;;;;:38;18327:7;18297:38;;;;;;;;;;;;;;;:46;;;;18380:7;18359:36;;18368:10;18359:36;;;18389:5;18359:36;;;;;;;;;;;;;;;;;;18413:4;18406:11;;18164:261;;;;:::o;12507:1157::-;12598:7;13209:6;13268:21;13360:11;2040:9;:7;:9::i;:::-;2032:18;;;;;;;;12633:13;12644:1;12633:6;;:10;;:13;;;;:::i;:::-;12624:6;:22;;;;12682:1;12667:11;:16;12663:119;;;12715:6;;12705:31;12723:12;;12705:31;;;;;;;;;;;;;;;;;;12758:12;;12751:19;;;;12663:119;12812:1;12798:11;:15;12794:193;;;12845:44;12870:17;:11;:15;:17::i;:::-;12845:12;;:16;;:44;;;;:::i;:::-;12830:12;:59;;;;12794:193;;;12937:38;12962:11;12937:12;;:16;;:38;;;;:::i;:::-;12922:12;:53;;;;12794:193;10905:1;10896:11;13018:10;;13003:12;;:25;12999:83;;;10905:1;10896:11;13060:10;;13045:12;:25;;;;12999:83;13113:28;13128:12;;10359:1;10489:2;:12;10476:10;:25;10415:1;10406:11;10738:38;;;;;;;;10415:1;10406:11;10723:54;13113:14;;:28;;;;:::i;:::-;13094:16;:47;;;;13170:6;;13160:31;13178:12;;13160:31;;;;;;;;;;;;;;;;;;13218:1;13209:10;;13204:417;13225:12;:19;;;;13221:1;:23;13204:417;;;13292:12;13305:1;13292:15;;;;;;;;;;;;;;;;;;;;13268:39;;13328:1;:9;;;;;;;;;;;;13324:284;;;13374:35;13387:1;:13;;;;;;;;;;;;13402:1;:6;;13374:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:12;:35::i;:::-;13360:49;;13435:6;13434:7;13430:161;;;13491:1;:13;;;;;;;;;;;;13473:43;;;13506:1;13509;:6;;13473:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13541:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13430:161;13324:284;13246:3;;;;;;;13204:417;;;13644:12;;13637:19;;2057:1;12507:1157;;;;;;:::o;20198:253::-;2040:9;:7;:9::i;:::-;2032:18;;;;;;;;20308:12;20326:116;;;;;;;;;20362:4;20326:116;;;;;;20394:11;20326:116;;;;;;20426:4;;20326:116;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20308:135;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;20308:135:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;20198:253;;;:::o;15213:117::-;15278:7;15310:12;;15303:19;;15213:117;:::o;11768:159::-;2040:9;:7;:9::i;:::-;2032:18;;;;;;;;11874:6;11859:12;;:21;;;;;;;;;;;;;;;;;;11896:23;11912:6;11896:23;;;;;;;;;;;;;;;;;;;;;;11768:159;:::o;17005:515::-;17158:4;17277:16;10283:11;;;;;;;;;;;10282:12;10274:21;;;;;;;;17136:2;9963:3;9949:18;;:2;:18;;;;9941:27;;;;;;;;10001:4;9987:19;;:2;:19;;;;9979:28;;;;;;;;17218:46;17258:5;17218:17;:23;17236:4;17218:23;;;;;;;;;;;;;;;:35;17242:10;17218:35;;;;;;;;;;;;;;;;:39;;:46;;;;:::i;:::-;17180:17;:23;17198:4;17180:23;;;;;;;;;;;;;;;:35;17204:10;17180:35;;;;;;;;;;;;;;;:84;;;;17296:27;17306:16;;17296:5;:9;;:27;;;;:::i;:::-;17277:46;;17355:32;17378:8;17355:12;:18;17368:4;17355:18;;;;;;;;;;;;;;;;:22;;:32;;;;:::i;:::-;17334:12;:18;17347:4;17334:18;;;;;;;;;;;;;;;:53;;;;17417:30;17438:8;17417:12;:16;17430:2;17417:16;;;;;;;;;;;;;;;;:20;;:30;;;;:::i;:::-;17398:12;:16;17411:2;17398:16;;;;;;;;;;;;;;;:49;;;;17478:2;17463:25;;17472:4;17463:25;;;17482:5;17463:25;;;;;;;;;;;;;;;;;;17508:4;17501:11;;10306:1;17005:515;;;;;;:::o;12085:156::-;2040:9;:7;:9::i;:::-;2032:18;;;;;;;;12189:6;12175:11;;:20;;;;;;;;;;;;;;;;;;12211:22;12226:6;12211:22;;;;;;;;;;;;;;;;;;;;;;12085:156;:::o;3899:76::-;3939:5;3960:9;;;;;;;;;;;3953:16;;3899:76;:::o;18800:371::-;18926:4;10283:11;;;;;;;;;;;10282:12;10274:21;;;;;;;;19002:54;19045:10;19002:17;:29;19020:10;19002:29;;;;;;;;;;;;;;;:38;19032:7;19002:38;;;;;;;;;;;;;;;;:42;;:54;;;;:::i;:::-;18948:17;:29;18966:10;18948:29;;;;;;;;;;;;;;;:38;18978:7;18948:38;;;;;;;;;;;;;;;:108;;;;19093:7;19072:69;;19081:10;19072:69;;;19102:17;:29;19120:10;19102:29;;;;;;;;;;;;;;;:38;19132:7;19102:38;;;;;;;;;;;;;;;;19072:69;;;;;;;;;;;;;;;;;;19159:4;19152:11;;18800:371;;;;:::o;20605:328::-;2040:9;:7;:9::i;:::-;2032:18;;;;;;;;20713:12;:19;;;;20705:5;:27;20697:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20803:1;20781:12;:19;;;;:23;20773:5;:31;20769:123;;;20843:12;20878:1;20856:12;:19;;;;:23;20843:37;;;;;;;;;;;;;;;;;;;;20821:12;20834:5;20821:19;;;;;;;;;;;;;;;;;;;;:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;20769:123;20904:12;:21;;;;;;;;;;;;:::i;:::-;;20605:328;:::o;10078:24::-;;;;;;;;;;;;;:::o;13937:703::-;14052:7;9551:10;;;;;;;;;;;9537:24;;:10;:24;;;9529:33;;;;;;;;14096:1;14081:11;:16;14077:118;;;14129:5;14119:30;14136:12;;14119:30;;;;;;;;;;;;;;;;;;14171:12;;14164:19;;;;14077:118;14225:1;14211:11;:15;14207:193;;;14258:44;14283:17;:11;:15;:17::i;:::-;14258:12;;:16;;:44;;;;:::i;:::-;14243:12;:59;;;;14207:193;;;14350:38;14375:11;14350:12;;:16;;:38;;;;:::i;:::-;14335:12;:53;;;;14207:193;10905:1;10896:11;14431:10;;14416:12;;:25;14412:83;;;10905:1;10896:11;14473:10;;14458:12;:25;;;;14412:83;14526:28;14541:12;;10359:1;10489:2;:12;10476:10;:25;10415:1;10406:11;10738:38;;;;;;;;10415:1;10406:11;10723:54;14526:14;;:28;;;;:::i;:::-;14507:16;:47;;;;14582:5;14572:30;14589:12;;14572:30;;;;;;;;;;;;;;;;;;14620:12;;14613:19;;9573:1;13937:703;;;;:::o;21117:246::-;2040:9;:7;:9::i;:::-;2032:18;;;;;;;;21243:12;:19;;;;21235:5;:27;21227:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21348:7;21318:12;21331:5;21318:19;;;;;;;;;;;;;;;;;;;;:27;;;:37;;;;;;;;;;;;;;;;;;21117:246;;:::o;15453:159::-;15533:7;15565:39;15587:16;;15565:12;:17;15578:3;15565:17;;;;;;;;;;;;;;;;:21;;:39;;;;:::i;:::-;15558:46;;15453:159;;;:::o;10109:23::-;;;;;;;;;;;;;:::o;1926:72::-;1963:7;1986:6;;;;;;;;;;;1979:13;;1926:72;:::o;2070:85::-;2109:4;2143:6;;;;;;;;;;;2129:20;;:10;:20;;;2122:27;;2070:85;:::o;21480:137::-;21558:7;21590:12;:19;;;;21583:26;;21480:137;:::o;3820:73::-;3858:6;3880:7;3873:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3820:73;:::o;9784:33::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19435:540::-;19566:4;19588:16;10283:11;;;;;;;;;;;10282:12;10274:21;;;;;;;;19607:17;:29;19625:10;19607:29;;;;;;;;;;;;;;;:38;19637:7;19607:38;;;;;;;;;;;;;;;;19588:57;;19679:8;19660:15;:27;;19656:205;;;19745:1;19704:17;:29;19722:10;19704:29;;;;;;;;;;;;;;;:38;19734:7;19704:38;;;;;;;;;;;;;;;:42;;;;19656:205;;;19820:29;19833:15;19820:8;:12;;:29;;;;:::i;:::-;19779:17;:29;19797:10;19779:29;;;;;;;;;;;;;;;:38;19809:7;19779:38;;;;;;;;;;;;;;;:70;;;;19656:205;19897:7;19876:69;;19885:10;19876:69;;;19906:17;:29;19924:10;19906:29;;;;;;;;;;;;;;;:38;19936:7;19906:38;;;;;;;;;;;;;;;;19876:69;;;;;;;;;;;;;;;;;;19963:4;19956:11;;19435:540;;;;;:::o;11432:178::-;2040:9;:7;:9::i;:::-;2032:18;;;;;;;;11542:11;11529:10;;:24;;;;;;;;;;;;;;;;;;11569:33;11590:11;11569:33;;;;;;;;;;;;;;;;;;;;;;11432:178;:::o;15841:416::-;15976:4;15998:16;10283:11;;;;;;;;;;;10282:12;10274:21;;;;;;;;15954:2;9963:3;9949:18;;:2;:18;;;;9941:27;;;;;;;;10001:4;9987:19;;:2;:19;;;;9979:28;;;;;;;;16017:27;16027:16;;16017:5;:9;;:27;;;;:::i;:::-;15998:46;;16082:38;16111:8;16082:12;:24;16095:10;16082:24;;;;;;;;;;;;;;;;:28;;:38;;;;:::i;:::-;16055:12;:24;16068:10;16055:24;;;;;;;;;;;;;;;:65;;;;16150:30;16171:8;16150:12;:16;16163:2;16150:16;;;;;;;;;;;;;;;;:20;;:30;;;;:::i;:::-;16131:12;:16;16144:2;16131:16;;;;;;;;;;;;;;;:49;;;;16217:2;16196:31;;16205:10;16196:31;;;16221:5;16196:31;;;;;;;;;;;;;;;;;;16245:4;16238:11;;10306:1;15841:416;;;;;:::o;9458:25::-;;;;;;;;;;;;;:::o;16567:174::-;16667:7;16699:17;:25;16717:6;16699:25;;;;;;;;;;;;;;;:34;16725:7;16699:34;;;;;;;;;;;;;;;;16692:41;;16567:174;;;;:::o;2161:103::-;2040:9;:7;:9::i;:::-;2032:18;;;;;;;;2230:28;2249:8;2230:18;:28::i;:::-;2161:103;:::o;4044:181::-;4102:7;4122:9;4138:1;4134;:5;4122:17;;4163:1;4158;:6;;4150:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4216:1;4209:8;;4044:181;;;;;:::o;7851:161::-;7924:6;6702:3;6696:1;6689:16;;;;7956:1;:15;;7948:24;;;;;;;;7994:1;7990;:5;:14;;8003:1;7990:14;;;7999:1;7998:2;;7990:14;7983:21;;7851:161;;;:::o;4233:136::-;4291:7;4318:43;4322:1;4325;4318:43;;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4311:50;;4233:136;;;;:::o;4835:132::-;4893:7;4920:39;4924:1;4927;4920:39;;;;;;;;;;;;;;;;;;:3;:39::i;:::-;4913:46;;4835:132;;;;:::o;21862:1241::-;21953:4;21975:11;22215:4;22209:11;22343:2;22337:4;22333:13;22988:1;22956:13;22864:4;22858:11;22828;22783:1;22753:11;22724:5;22719:3;22715:15;22372:689;22362:699;;22006:1066;;23089:6;23082:13;;21862:1241;;;;;:::o;4577:250::-;4635:7;4714:9;4664:1;4659;:6;4655:47;;;4689:1;4682:8;;;;4655:47;4730:1;4726;:5;4714:17;;4759:1;4754;4750;:5;;;;;;;;:10;4742:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4818:1;4811:8;;4577:250;;;;;;:::o;2270:210::-;2360:1;2340:16;;:21;2332:30;;;;;;;;2397:1;2377:22;;:8;:22;;;;2369:31;;;;;;;;2441:8;2412:38;;2433:6;;;;;;;;;;;2412:38;;;;;;;;;;;;2466:8;2457:6;;:17;;;;;;;;;;;;;;;;;;2270:210;:::o;4377:192::-;4463:7;4523:9;4496:1;4491;:6;;4499:12;4483:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;4483:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4539:1;4535;:5;4523:17;;4560:1;4553:8;;4377:192;;;;;;:::o;4975:191::-;5061:7;5120:9;5093:1;5089;:5;5096:12;5081:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;5081:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5136:1;5132;:5;;;;;;;;5120:17;;5157:1;5150:8;;4975:191;;;;;;:::o;8019:15087::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;1810:110::-;1157:20;1050:12;;;;;;;;;;;:31;;;;1066:15;:13;:15::i;:::-;1050:31;:47;;;;1086:11;;;;;;;;;;;1085:12;1050:47;1042:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1180:12;;;;;;;;;;;1157:35;;1214:4;1199:12;;:19;;;;;;;;;;;;;;;;;;1239:4;1225:11;;:18;;;;;;;;;;;;;;;;;;1883:6;1874;;:15;;;;;;;;;;;;;;;;;;1913:1;1894:16;:20;;;;1277:15;1262:12;;:30;;;;;;;;;;;;;;;;;;1810:110;;:::o;3579:160::-;1157:20;1050:12;;;;;;;;;;;:31;;;;1066:15;:13;:15::i;:::-;1050:31;:47;;;;1086:11;;;;;;;;;;;1085:12;1050:47;1042:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1180:12;;;;;;;;;;;1157:35;;1214:4;1199:12;;:19;;;;;;;;;;;;;;;;;;1239:4;1225:11;;:18;;;;;;;;;;;;;;;;;;3679:4;3671:5;:12;;;;;;;;;;;;:::i;:::-;;3700:6;3690:7;:16;;;;;;;;;;;;:::i;:::-;;3725:8;3713:9;;:20;;;;;;;;;;;;;;;;;;1277:15;1262:12;;:30;;;;;;;;;;;;;;;;;;3579:160;;;;:::o;1304:142::-;1351:4;1364:10;1410:7;1398:20;1392:26;;1439:1;1433:2;:7;1426:14;;1304:142;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o

Swarm Source

bzzr://e19ec4da2efbf422ebd11997cd6570b98f327608437268b1c35733332023b470
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.